Révision 248

tmp/org.txm.wordcloud.rcp/src/org/txm/wordcloud/rcp/handlers/ComputeWordCloud.java (revision 248)
29 29

  
30 30
import java.io.IOException;
31 31

  
32
import org.eclipse.core.commands.AbstractHandler;
33 32
import org.eclipse.core.commands.ExecutionEvent;
34 33
import org.eclipse.core.commands.ExecutionException;
35 34
import org.eclipse.jface.viewers.IStructuredSelection;
36 35
import org.eclipse.ui.handlers.HandlerUtil;
37
import org.txm.Toolbox;
38 36
import org.txm.chartsengine.rcp.SWTChartsComponentsProvider;
39 37
import org.txm.index.core.functions.Index;
38
import org.txm.rcp.handlers.BaseAbstractHandler;
40 39
import org.txm.rcpapplication.StatusLine;
41 40
import org.txm.rcpapplication.commands.OpenBrowser;
42 41
import org.txm.rcpapplication.views.corpora.CorporaView;
......
46 45
import org.txm.searchengine.cqp.serverException.CqiServerError;
47 46
import org.txm.utils.logger.Log;
48 47
import org.txm.wordcloud.core.functions.WordCloud;
49
import org.txm.wordcloud.core.messages.TBXWordCloudMessages;
48
import org.txm.wordcloud.core.messages.WordCloudCoreMessages;
50 49
import org.txm.wordcloud.core.preferences.WordCloudPreferences;
51
import org.txm.wordcloud.rcp.editors.WordCloudEditorInput;
52 50

  
53 51
/**
54 52
 * Open the WordCloud Editor.
......
56 54
 * @author mdecorde
57 55
 * @author sjacquot
58 56
 */
59
public class ComputeWordCloud extends AbstractHandler {
57
public class ComputeWordCloud extends BaseAbstractHandler {
60 58
	
61 59

  
62 60
	// adds a double click listener to the Corpus View
......
72 70
	 */
73 71
	@Override
74 72
	public Object execute(final ExecutionEvent event) throws ExecutionException {
75
		if (!Toolbox.isStatEngineInitialized()) {
76
			System.out.println(TBXWordCloudMessages.Log_Stats_Engine_not_ready);
73

  
74
		
75
		if(!this.checkStatsEngine()) {
77 76
			return null;
78
		};
77
		}
79 78

  
79

  
80 80
		IStructuredSelection selection = (IStructuredSelection) HandlerUtil.getCurrentSelection(event);
81 81
		Object s = selection.getFirstElement();
82 82
		
......
129 129
			}
130 130
		
131 131
			if(wordCloud != null)	{
132
				StatusLine.setMessage(TBXWordCloudMessages.StatusBar_Opening_result);
132
				StatusLine.setMessage(WordCloudCoreMessages.StatusBar_Opening_result);
133 133

  
134 134
				//FIXME: 
135 135
//				WordCloudEditorInput editorInput = new WordCloudEditorInput(wordCloud);
tmp/org.txm.wordcloud.rcp/src/org/txm/wordcloud/rcp/preferences/WordCloudPreferencePage.java (revision 248)
38 38
import org.txm.rcp.preferences.TXMPreferenceStore;
39 39
import org.txm.wordcloud.core.preferences.WordCloudPreferences;
40 40
import org.txm.wordcloud.rcp.adapters.WordCloudAdapterFactory;
41
import org.txm.wordcloud.rcp.messages.Messages;
41
import org.txm.wordcloud.rcp.messages.WordCloudUIMessages;
42 42

  
43 43
/**
44 44
 * Word cloud preference page.
......
72 72
		// Charts rendering
73 73
		Composite chartsTab = SWTChartsComponentsProvider.createChartsRenderingPreferencesTabFolderComposite(this.getFieldEditorParent());
74 74
		
75
		this.addField(new IntegerFieldEditor(WordCloudPreferences.MAX_WORDS, Messages.PreferencePage_Number_of_used_words, chartsTab));
76
		this.addField(new IntegerFieldEditor(WordCloudPreferences.FMIN, Messages.PreferencePage_Minimal_frequency, chartsTab));
77
		this.addField(new IntegerFieldEditor(WordCloudPreferences.ROT, Messages.PreferencePage_Percent_of_rotated_words, chartsTab));
78
		this.addField(new BooleanFieldEditor(WordCloudPreferences.RANDOM_POSITION, Messages.PreferencePage_Random_word_positions, chartsTab));
75
		this.addField(new IntegerFieldEditor(WordCloudPreferences.MAX_WORDS, WordCloudUIMessages.PreferencePage_Number_of_used_words, chartsTab));
76
		this.addField(new IntegerFieldEditor(WordCloudPreferences.FMIN, WordCloudUIMessages.PreferencePage_Minimal_frequency, chartsTab));
77
		this.addField(new IntegerFieldEditor(WordCloudPreferences.ROT, WordCloudUIMessages.PreferencePage_Percent_of_rotated_words, chartsTab));
78
		this.addField(new BooleanFieldEditor(WordCloudPreferences.RANDOM_POSITION, WordCloudUIMessages.PreferencePage_Random_word_positions, chartsTab));
79 79
		
80 80
		// other shared preferences
81 81
		SWTChartsComponentsProvider.createChartsRenderingPreferencesFields(this, chartsTab);
tmp/org.txm.wordcloud.rcp/src/org/txm/wordcloud/rcp/messages/Messages.java (revision 248)
1
package org.txm.wordcloud.rcp.messages;
2

  
3
import org.eclipse.osgi.util.NLS;
4
import org.txm.core.messages.TXMCoreMessages;
5

  
6
public class Messages extends NLS {
7
	
8

  
9
	//private static final String BUNDLE_NAME = "org.txm.rcp.wordcloud.messages.messages"; //$NON-NLS-1$
10
	// FIXME: use the same properties file than the bundle	
11
	private static final String BUNDLE_NAME = "l10n.bundle"; //$NON-NLS-1$
12
	
13
	
14
	
15
	public static String EditorName;
16
	public static String EditorToolBar_vmax;
17
	public static String EditorToolBar_fmin;
18
	public static String EditorToolBar_Percent_of_rotated_labels;
19
	public static String EditorToolBar_Randomize_positions;
20
	public static String EditorToolBar_Draw;
21
	public static String Log_Wrong_input_object;
22
	public static String Log_WordCloud_ready;
23
	public static String WordCloudEditor_7;
24
	public static String WordCloudEditor_8;
25
	public static String WordCloudEditor_9;
26
	public static String PreferencePage_Number_of_used_words;
27
	public static String PreferencePage_Minimal_frequency;
28
	public static String PreferencePage_Percent_of_rotated_words;
29
	public static String PreferencePage_Random_word_positions;
30
	static {
31
		// initialize resource bundle
32
		TXMCoreMessages.initializeMessages(BUNDLE_NAME, Messages.class);
33
		//NLS.initializeMessages(BUNDLE_NAME, Messages.class);
34
	}
35

  
36
	private Messages() {
37
	}
38
}
tmp/org.txm.wordcloud.rcp/src/org/txm/wordcloud/rcp/messages/WordCloudUIMessages.java (revision 248)
1
package org.txm.wordcloud.rcp.messages;
2

  
3
import org.eclipse.osgi.util.NLS;
4
import org.txm.core.messages.TXMCoreMessages;
5

  
6
public class WordCloudUIMessages extends NLS {
7
	
8

  
9
	private static final String BUNDLE_NAME = "org.txm.wordcloud.rcp.messages.messages"; //$NON-NLS-1$
10
	
11
	public static String EditorToolBar_vmax;
12
	public static String EditorToolBar_fmin;
13
	public static String EditorToolBar_Percent_of_rotated_labels;
14
	public static String EditorToolBar_Randomize_positions;
15
	public static String EditorToolBar_Draw;
16
	public static String Log_WordCloud_ready;
17
	public static String PreferencePage_Number_of_used_words;
18
	public static String PreferencePage_Minimal_frequency;
19
	public static String PreferencePage_Percent_of_rotated_words;
20
	public static String PreferencePage_Random_word_positions;
21

  
22

  
23
	//FIXME: unused keys
24
	public static String EditorName;
25
	public static String Log_Wrong_input_object;
26
	public static String WordCloudEditor_7;
27
	public static String WordCloudEditor_8;
28
	public static String WordCloudEditor_9;
29
	//end of fixme
30
	
31
	static {
32
		// initialize resource bundle
33
		TXMCoreMessages.initializeMessages(BUNDLE_NAME, WordCloudUIMessages.class);
34
	}
35

  
36
	private WordCloudUIMessages() {
37
	}
38
}
0 39

  
tmp/org.txm.wordcloud.rcp/src/org/txm/wordcloud/rcp/messages/messages_fr.properties (revision 248)
1
EditorToolBar_Draw=Calculer
2
EditorToolBar_fmin=Fmin : 
3
EditorToolBar_Percent_of_rotated_labels=% de labels verticaux : 
4
EditorToolBar_Randomize_positions=Position aléatoire
5
EditorToolBar_vmax=Vmax : 
6
Log_WordCloud_ready=WordCloud est prêt : 
7
Log_Wrong_input_object=Object non-compatible avec la fonctionnalité Nuage de mots
8
PreferencePage_Minimal_frequency=Filtre en fréquence minimal des mots à utiliser
9
PreferencePage_Number_of_used_words=Filtre en nombre de mots à utiliser
10
PreferencePage_Percent_of_rotated_words=Pourcentage de mots verticaux
11
PreferencePage_Random_word_positions=Position aléatoire des mots
12
WordCloudEditor_7=Dessin en cours...
13
WordCloudEditor_8=Sauvegarde dans le fichier {0} 
14
WordCloudEditor_9=Rafraîchissement 
15
EditorName=Nuage de mots
0 16

  
tmp/org.txm.wordcloud.rcp/src/org/txm/wordcloud/rcp/messages/messages.properties (revision 248)
1
EditorToolBar_Draw=Compute
2
EditorToolBar_fmin=Fmin: 
3
EditorToolBar_Percent_of_rotated_labels=% of rotated labels: 
4
EditorToolBar_Randomize_positions=Randomize positions
5
EditorToolBar_vmax=Vmax: 
6
Log_WordCloud_ready=WordCloud ready: 
7
Log_Wrong_input_object=Wrong WordCloud input object
8
PreferencePage_Minimal_frequency=Minimal frequency for used words
9
PreferencePage_Number_of_used_words=Number of used words
10
PreferencePage_Percent_of_rotated_words=Percent of rotated words
11
PreferencePage_Random_word_positions=Random word positions
12
WordCloudEditor_7=WordClouding...
13
WordCloudEditor_8=Drawing in {0}
14
WordCloudEditor_9=WordCloud refreshed
15
EditorName=WordCloud
0 16

  
tmp/org.txm.wordcloud.rcp/src/org/txm/wordcloud/rcp/editors/WordCloudEditor.java (revision 248)
12 12
import org.txm.core.preferences.TXMPreferences;
13 13
import org.txm.utils.logger.Log;
14 14
import org.txm.wordcloud.core.preferences.WordCloudPreferences;
15
import org.txm.wordcloud.rcp.messages.Messages;
15
import org.txm.wordcloud.rcp.messages.WordCloudUIMessages;
16 16

  
17 17
/**
18 18
 * Word cloud editor. 
......
55 55
		//Composite p = this.getCommandParametersComposite();
56 56
		
57 57
		// max words
58
		new Label(p, SWT.NONE).setText(Messages.EditorToolBar_vmax);
58
		new Label(p, SWT.NONE).setText(WordCloudUIMessages.EditorToolBar_vmax);
59 59
		final Spinner maxWordsSpinner = new Spinner(p, SWT.BORDER);
60 60
		maxWordsSpinner.setMinimum(10);
61 61
		maxWordsSpinner.setIncrement(1);
......
63 63
		maxWordsSpinner.setSelection(TXMPreferences.getInt(WordCloudPreferences.PREFERENCES_NODE, this.getResultData(), WordCloudPreferences.MAX_WORDS));
64 64
		
65 65
		// fmin
66
		new Label(p, SWT.NONE).setText(Messages.EditorToolBar_fmin);
66
		new Label(p, SWT.NONE).setText(WordCloudUIMessages.EditorToolBar_fmin);
67 67
		final Spinner minFreqSpinner = new Spinner(p, SWT.BORDER);
68 68
		minFreqSpinner.setMinimum(1);
69 69
		minFreqSpinner.setIncrement(1);
......
71 71
		minFreqSpinner.setSelection(TXMPreferences.getInt(WordCloudPreferences.PREFERENCES_NODE, this.getResultData(), WordCloudPreferences.FMIN));
72 72
		
73 73
		// rotation percent
74
		new Label(p, SWT.NONE).setText(Messages.EditorToolBar_Percent_of_rotated_labels);
74
		new Label(p, SWT.NONE).setText(WordCloudUIMessages.EditorToolBar_Percent_of_rotated_labels);
75 75
		final Spinner rotPerSpinner = new Spinner(p, SWT.BORDER);
76 76
		rotPerSpinner.setMinimum(0);
77 77
		rotPerSpinner.setIncrement(1);
......
80 80
		
81 81
		// random positions
82 82
		final Button randomOrderButton = new Button(p, SWT.CHECK);
83
		randomOrderButton.setText(Messages.EditorToolBar_Randomize_positions);
83
		randomOrderButton.setText(WordCloudUIMessages.EditorToolBar_Randomize_positions);
84 84
		randomOrderButton.setSelection(TXMPreferences.getBoolean(WordCloudPreferences.PREFERENCES_NODE, this.getResultData(), WordCloudPreferences.RANDOM_POSITION));
85 85

  
86 86
		
87 87
		// compute button
88 88
		Button okButton = new Button(p, SWT.PUSH);
89
		okButton.setText(Messages.EditorToolBar_Draw);
89
		okButton.setText(WordCloudUIMessages.EditorToolBar_Draw);
90 90
		okButton.addSelectionListener(new SelectionListener() {
91 91
			@Override
92 92
			public void widgetSelected(SelectionEvent e) {
......
110 110
		p.pack();
111 111
		
112 112
		this.computeChart("Compute Wordcloud", false);
113
		Log.info(Messages.Log_WordCloud_ready + this.getResultData());
113
		Log.info(WordCloudUIMessages.Log_WordCloud_ready + this.getResultData());
114 114

  
115 115
	}
116 116

  
tmp/org.txm.wordcloud.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 248)
2 2
command.label = Nuage de mots
3 3
command.name = Nuage de mots
4 4
editor.name = Nuage de mots
5
EditorToolBar_Draw=Calculer
6
EditorToolBar_fmin=Fmin : 
7
EditorToolBar_Percent_of_rotated_labels=% de labels verticaux : 
8
EditorToolBar_Randomize_positions=Position aléatoire
9
EditorToolBar_vmax=Vmax : 
10
Log_WordCloud_ready=WordCloud est prêt : 
11
Log_Wrong_input_object=Object non-compatible avec la fonctionnalité Nuage de mots
12 5
page.name = Nuage de mots
13
perspective.name = RCP Perspective
14
PreferencePage_Minimal_frequency=Filtre en fréquence minimal des mots à utiliser
15
PreferencePage_Number_of_used_words=Filtre en nombre de mots à utiliser
16
PreferencePage_Percent_of_rotated_words=Pourcentage de mots verticaux
17
PreferencePage_Random_word_positions=Position aléatoire des mots
18
WordCloudEditor_7=Dessin en cours...
19
WordCloudEditor_8=Sauvegarde dans le fichier {0} 
20
WordCloudEditor_9=Rafraîchissement 
21
EditorName=Nuage de mots
6
perspective.name = RCP Perspective
tmp/org.txm.wordcloud.rcp/OSGI-INF/l10n/bundle.properties (revision 248)
2 2
command.label=WordCloud
3 3
command.name=WordCloud
4 4
editor.name=WordCloud
5
EditorToolBar_Draw=Compute
6
EditorToolBar_fmin=Fmin: 
7
EditorToolBar_Percent_of_rotated_labels=% of rotated labels: 
8
EditorToolBar_Randomize_positions=Randomize positions
9
EditorToolBar_vmax=Vmax: 
10
Log_WordCloud_ready=WordCloud ready: 
11
Log_Wrong_input_object=Wrong WordCloud input object
12 5
page.name = WordCloud
13
perspective.name = RCP Perspective
14
PreferencePage_Minimal_frequency=Minimal frequency for used words
15
PreferencePage_Number_of_used_words=Number of used words
16
PreferencePage_Percent_of_rotated_words=Percent of rotated words
17
PreferencePage_Random_word_positions=Random word positions
18
WordCloudEditor_7=WordClouding...
19
WordCloudEditor_8=Drawing in {0}
20
WordCloudEditor_9=WordCloud refreshed
21
EditorName=WordCloud
6
perspective.name = RCP Perspective
tmp/org.txm.wordcloud.rcp/.classpath (revision 248)
2 2
<classpath>
3 3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4 4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
5
	<classpathentry kind="src" path="OSGI-INF"/>
6 5
	<classpathentry kind="src" path="src"/>
7 6
	<classpathentry kind="output" path="bin"/>
8 7
</classpath>
tmp/org.txm.utils/.classpath (revision 248)
3 3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4 4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
5 5
	<classpathentry kind="src" path="src"/>
6
	<classpathentry exported="true" kind="lib" path="saxon9he.jar"/>
7 6
	<classpathentry exported="true" kind="lib" path="commons-cli-1.2.jar"/>
8 7
	<classpathentry exported="true" kind="lib" path="commons-io-1.4.jar"/>
9 8
	<classpathentry exported="true" kind="lib" path="commons-lang-2.4.jar"/>
tmp/org.txm.utils/META-INF/MANIFEST.MF (revision 248)
4 4
Bundle-SymbolicName: org.txm.utils
5 5
Bundle-Version: 1.0.0.qualifier
6 6
Bundle-Activator: org.txm.utils.Activator
7
Require-Bundle: org.eclipse.ui,
7
Require-Bundle: org.txm.core;bundle-version="0.7.0",
8
 org.txm.libs.saxon;bundle-version="9.0.0";visibility:=reexport,
9
 org.eclipse.ui,
8 10
 org.eclipse.core.runtime,
9 11
 org.eclipse.core.net;bundle-version="1.2.200"
10 12
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
11 13
Bundle-ActivationPolicy: lazy
12
Export-Package: javax.xml.xquery,
13
 net.sf.saxon,
14
 net.sf.saxon.dom,
15
 net.sf.saxon.event,
16
 net.sf.saxon.evpull,
17
 net.sf.saxon.expr,
18
 net.sf.saxon.expr.flwor,
19
 net.sf.saxon.expr.instruct,
20
 net.sf.saxon.expr.number,
21
 net.sf.saxon.expr.parser,
22
 net.sf.saxon.expr.sort,
23
 net.sf.saxon.functions,
24
 net.sf.saxon.functions.regex,
25
 net.sf.saxon.java,
26
 net.sf.saxon.lib,
27
 net.sf.saxon.om,
28
 net.sf.saxon.pattern,
29
 net.sf.saxon.pull,
30
 net.sf.saxon.query,
31
 net.sf.saxon.s9api,
32
 net.sf.saxon.serialize,
33
 net.sf.saxon.serialize.charcode,
34
 net.sf.saxon.serialize.codenorm,
35
 net.sf.saxon.style,
36
 net.sf.saxon.sxpath,
37
 net.sf.saxon.trace,
38
 net.sf.saxon.trans,
39
 net.sf.saxon.tree,
40
 net.sf.saxon.tree.iter,
41
 net.sf.saxon.tree.linked,
42
 net.sf.saxon.tree.tiny,
43
 net.sf.saxon.tree.util,
44
 net.sf.saxon.tree.wrapper,
45
 net.sf.saxon.type,
46
 net.sf.saxon.value,
47
 net.sf.saxon.xpath,
48
 net.sf.saxon.xqj,
49
 org.apache.commons.cli,
14
Export-Package: org.apache.commons.cli,
50 15
 org.apache.commons.io,
51 16
 org.apache.commons.io.comparator,
52 17
 org.apache.commons.io.filefilter,
......
97 62
 org.mozilla.universalchardet.prober.distributionanalysis,
98 63
 org.mozilla.universalchardet.prober.sequence,
99 64
 org.mozilla.universalchardet.prober.statemachine,
100
 org.txm,
101 65
 org.txm.functions,
102 66
 org.txm.utils,
103 67
 org.txm.utils.i18n,
......
109 73
 org.txm.utils.xml,
110 74
 org.txm.utils.zip
111 75
Bundle-ClassPath: .,
112
 saxon9he.jar,
113 76
 commons-cli-1.2.jar,
114 77
 commons-io-1.4.jar,
115 78
 commons-lang-2.4.jar,
tmp/org.txm.utils/src/messages.properties (revision 248)
1
FAILED=Failed.
2
DONE=Done.
3
AbsoluteFrequency_1=Absolute Frequency
4
AbstractCqiClient_2=No error.
5
ArrayIndex_0=** The index array can not be null or empty.
6
ArrayIndex_1=** A zero-based index cannot be < 0 or > to the number of indexed elements.
7
Base_0=Binary directory 
8
Base_22='corpora' element missing from 'base' element
9
Base_3=\ does not exist?
10
Base_4=Parent directory 
11
Base_5=\ does not exist?
12
Base_6=Error: linkGrp/link/@target malformed: 
13
BuildCwbEncodeArgs_0=The file ''{0}'' cannot be found.
14
CAH_0=Error while exporting CAH result : 
15
CA_0=** The lexical table was not found in the R workspace.
16
CA_16=** Cannot load the 'ca' library
17
CA_2=** Error while computing correspondance analysis: 
18
CA_4=Unable to extract singular values 
19
CHAR_VECTOR_ADDED_TO_WORKSPACE=Vector "{1}" ({0,number,integer} "character") has been transmited to the Statistics Engine.
20
CONNECTED_TO_STATS_MODULE= connected.
21
CONNECTING_CQI_CLIENT=Connecting to the Search Engine with the following parameters: {0}:{1}@{2}{3}
22
CONNECTION_OK=Connected to the Statistics Engine.
23
CQI_CLIENT_CONNECTED=Connected to the Search Engine.
24
CREATING_PART=Part {0} created with query {1}
25
CREATING_SUBCORPUS=Subcorpus {1} created from corpus {0} with the query {2}
26
CatalogManager_0=** Manager Error during initialization: 
27
CatalogManager_1=\ does not exist.
28
Catalog_0=** Catalog File Not found 
29
CompositeComparator_0=Composite: 
30
Concordance_0=\ 
31
Concordance_1=** Failed to retrieve text_id property from lines
32
Concordance_12=** Failed to export Concordance: 
33
Concordance_13=Reference
34
Concordance_14=LeftContext
35
Concordance_15=Keyword
36
Concordance_16=RightContext
37
Concordance_17=Reference
38
Concordance_18=
39
Concordance_19=Context
40
Concordance_2=undefined
41
Concordance_3=\ results retrieved in 
42
Concordance_4=Failed to remove QueryResult from CQP: 
43
Concordance_5=
44
Concordance_6=Retrieving 
45
Concordance_7=\ results
46
Concordance_8=Failed to get texts limits: 
47
Contrasts_0=Computing: 
48
Convert5To6_1= is missing
49
Convert5To6_10='registry' file is missing: 
50
Convert5To6_11='html' directory is missing: 
51
Convert5To6_12=processing...
52
Convert5To6_15=reorganizing files of 
53
Convert5To6_19=Read corpus infos from old import.xml file: 
54
Convert5To6_30=Fill import.xml with: 
55
Convert5To6_46=processing text: 
56
Convert5To6_6=checking binary format...
57
Convert5To6_7='txm' directory is missing: 
58
Convert5To6_8='html' directory is missing: 
59
Convert5To6_9='data' directory is missing: 
60
Cooccurrence_0=Coocurrence: 
61
Cooccurrence_1=** Error: can't find 'n' or 'o': 
62
Cooccurrence_10=\ properties: 
63
Cooccurrence_102=** Error: negative argument in 'factln' function
64
Cooccurrence_103=** Error: negative argument in 'rbicoln' function
65
Cooccurrence_105=Occ\tFreq\tCoFreq\tScore\tMeanDist\tMode
66
Cooccurrence_106=\n
67
Cooccurrence_107=** Error: 
68
Cooccurrence_11=Occ
69
Cooccurrence_12=Freq
70
Cooccurrence_13=CoFreq
71
Cooccurrence_14=Score
72
Cooccurrence_15=MeanDist
73
Cooccurrence_16=Mode
74
Cooccurrence_2=Cooc: 
75
Cooccurrence_22=Error: ref_forms.length ! ref_freqs.length
76
Cooccurrence_23=Error: no cooccurrents
77
Cooccurrence_3=\ (
78
Cooccurrence_4=\ F: 
79
Cooccurrence_5=** Impossible to compute cooccurrences with this concordance 
80
Cooccurrence_6=Occ\tFreq\tCoFreq\tScore\tMeanDist\tMode
81
Cooccurrence_7=\ Occ:
82
Cooccurrence_8=\ Score:
83
Cooccurrence_9=\ MeanDist:
84
CorpusManager_0=** CQi Client not initialized
85
CorpusManager_1=** Error: This exception should not be thrown
86
Corpus_12=** Failed to restore subcorpus 
87
Corpus_13=Corpus:getLocale: CQP is not ready to answer: 
88
Corpus_14=Warning: can't load corpus 
89
Corpus_15= informations from workspace (selfElement  null)
90
Corpus_19=** Failed to restore partition 
91
Corpus_2=Corpus: 
92
Corpus_3=, Encoding : 
93
Corpus_4=, Language : 
94
Corpus_5=No values given
95
Corpus_6=** Corpus: the reference to text 
96
Corpus_7=\ is broken
97
Corpus_8=\ in 								
98
CqiClient_0=Get Last CQP error
99
CqiClient_1=Read CQI CTRL LAST GENERAL ERROR
100
CqiClient_3=** Failed to get last CQP error
101
CqiClient_32=Search Engine launched...
102
CqiClient_33=** failed to connect to Search Engine.
103
CqiClient_34=Running SearchEngine in memory mode.
104
CwbEncode_0=The directory does not exists: 
105
CwbEncode_21=The "binary" directory does not exists: 
106
CwbEncode_23=The "registry" directory does not exists:  
107
CwbEncode_25=The "corpora" directory does not exists: 
108
CwbEncode_27=Processing corpus...
109
CwbEncode_29=The "data" directory does not exists: 
110
CwbEncode_32=Fixing registry file {0} with {1}
111
CwbProcess_1=Starting process with command: 
112
CwbProcess_3=Stopping process: 
113
CwbProcess_4=Process stoped: 
114
CwbProcess_5=** Can't find CQP location : 
115
DOUBLE_VECTOR_ADDED_TO_WORKSPACE=Vector "{1}" ({0,number,integer} "doubles") transmitted to the Statistics Engine.
116
DROP_PARTITION=Deleting partition {0}
117
DROP_QUERYRESULT=Deleting query results {0}
118
DROP_SUBCORPUS=Deleting subcorpus {0}
119
Diagnostic_0=* Structural Units properties\n
120
Diagnostic_1=** Failed to access corpus 
121
Diagnostic_10=Partition name: 
122
Diagnostic_11=\ structures
123
Diagnostic_12=Number of parts: 
124
Diagnostic_13=Partition size: 
125
Diagnostic_14=Lexical Units properties (max {0} values)
126
Diagnostic_15=Part number: 
127
Diagnostic_16=Number of structural units 
128
Diagnostic_17=Part names: 
129
Diagnostic_18=Part sizes: 
130
Diagnostic_19=Part properties: 
131
Diagnostic_2=** Error
132
Diagnostic_20=Parts queries: 
133
Diagnostic_22=Structural Units properties (max {0} values)
134
Diagnostic_23=\ values)
135
Diagnostic_26=No property
136
Diagnostic_3=Description of 
137
Diagnostic_4=\ properties
138
Diagnostic_40=* General Statistics\n
139
Diagnostic_41=- T 
140
Diagnostic_43=- Word properties 
141
Diagnostic_49=- S 
142
Diagnostic_5=General Statistics
143
Diagnostic_6=** Failed to access corpus 
144
Diagnostic_7=Number of words 
145
Diagnostic_8=\ lexicon
146
Diagnostic_9=Number of word properties 
147
END_SUBCORPUS_LEXICON=Lexicon of subcorpus {0} computed in {1} ms
148
END_SUBCORPUS_SIZE=size of subcorpus {0} ({1}) computed in {2} ms
149
ERROR_EXTRACT_ITEM=** Error extracting list item: 
150
EVALUATED_EXPRESSION=Expression "{0}" evaluated.
151
ExecTimer_0= msec
152
ExecTimer_1= sec
153
ExecTimer_2= min and 
154
ExecTimer_3=h, 
155
FAILED_INIT_CONNECTION_R=** Failed to connect to Statistics Engine.
156
FactoMineRCA_2=** Fail to get contrib column: 
157
FactoMineRCA_3=** Fail to get cos\u00B2 column: 
158
FactoMineRCA_4=** Fail to get contrib row: 
159
FactoMineRCA_5=** Fail to get cos\u00B2 row: 
160
Factor_0=** Not implemented
161
FileCopy_0=** File copy: failed to find source: 
162
FileCopy_2=** File copy: access right restriction to source: 
163
FileCopy_4=** File copy: failed to create directory: 
164
FilterManager_0=** Filter manager error : initialization 
165
FilterManager_1=\ does not exist.
166
Filter_7=** Read error
167
Focus_1=** The focus is empty or null.
168
GroovyImportScriptRunner_0=Initialization of GroovyImportScriptRunner
169
GroovyImportScriptRunner_1=> beginning execution of 
170
GroovyImportScriptRunner_3=> end of execution 
171
INT_VECTOR_ADDED_TO_WORKSPACE=Vector "{1}" ({0,number,integer} "int") transmitted to Statistics Engine.
172
InternalView_3=\ \ Structure informations: 
173
InternalView_6=InternalView: failed to retrieve struct properties values: 
174
InternalView_7=\ \ No structure informations
175
LEXICON=Lexicon 
176
LEXICON_ADDED=Lexicon "{1}" ({0,number,integer} entries) transmitted to Statistics Engine.
177
LIBBRARY_NOT_LOADED=Failed to load the {0} library: {1}
178
LS_0=Error: 
179
LS_1= is not a Directory!
180
LexicalTableImpl_0=
181
LexicalTableImpl_1=Building lexical table with: 
182
LexicalTableImpl_10= columns
183
LexicalTableImpl_12=Error: margin 
184
LexicalTableImpl_13= is higher than the partition size
185
LexicalTableImpl_3=\ <no partition> /
186
LexicalTableImpl_5=not enough columns: minimum 2 (here: 
187
LexicalTableImpl_8=line
188
LexicalTableImpl_9= does not have 
189
LexicographicKeywordComparator_0=Keyword
190
LexicographicLeftContextComparator_0=Left context
191
LexicographicRightContextComparator_0=Right context
192
Lexicon_0=Forms and frequencies tables must be of the same length.
193
Lexicon_3=Lexicon : 
194
Localizer_0=[Missing translation] 
195
Localizer_1=messages
196
Log_3=Copying logs in 
197
Log_5=Start loging in 
198
Log_8=\nstack:\n
199
MATRIX_ADDED_TO_WORKSPACE=Matrix "{2}" ({0,number,integer} rows and {1,number,integer} columns) transmitted to Statistics Engine.
200
MainCorpus_0=\ is not a valid CQP ID for a corpus. It must be in uppercase characters.
201
MainCorpus_1=\ in 
202
MainCorpus_2=Delete binary directory: 
203
MatrixImpl_0=A variable ("
204
MatrixImpl_1=") does not exist in the R workspace.
205
MatrixImpl_10=Row index (
206
MatrixImpl_11=) too big (max 
207
MatrixImpl_13=Col index (
208
MatrixImpl_14=) too big (max 
209
MatrixImpl_19=R object evaluated to null.
210
MatrixImpl_2=dim(
211
MatrixImpl_20=Unknown type: 
212
MatrixImpl_21=mode
213
MatrixImpl_22=Row index (
214
MatrixImpl_23=) too big (max 
215
MatrixImpl_28=Column index (
216
MatrixImpl_29=) too big (max 
217
MatrixImpl_4=Row names of a contingency table cannot be null.
218
MatrixImpl_5=Row names vector length must be equal to the number of rows of the matrix.
219
MatrixImpl_6=Column names of a contingency table cannot be null
220
MatrixImpl_67=Matrix: failed to get nrow: 
221
MatrixImpl_7=Col names vector length must be equals to the number of columns of the matrix (
222
MatrixImpl_73=MatrixImpl: Error: column size differs: original
223
MatrixImpl_79=Failed to get row names
224
MatrixImpl_88=Cannot delete all lines
225
MemCqiClient_0=Internal CQi error: 
226
MemCqiClient_1=CL error: 
227
MemCqiClient_10=Unknown CQP codes : b1 
228
MemCqiClient_11=Query ERROR
229
MemCqiClient_2=CQP error: 
230
MemCqiClient_3=Unknown CQP error : b1 
231
MemCqiClient_5=Unknown CQP cqi error : b1 
232
MemCqiClient_7=Unknown CQP code : b1 
233
MemCqiClient_9= b2 
234
MessageBox_0=Error
235
MessageBox_1=Warning
236
MessageBox_2=Information
237
NEW_PARTION=Creating new partion of corpus {0}: {1}
238
NOT_FOUND_IN_R=) was not found in the R workspace.
239
NetCqiClient_1=getLastCQiError: 
240
NetCqiClient_3=getLastCQPError: 
241
NetCqiClient_5=Could not reconnect to server: 
242
NetCqiClient_97=client.dumpSubCorpus(subcorpus, NetCqiClient.CQI_CONST_FIELD_MATCH, 1, 2) : 
243
NetCqiServer_0=** cqpserver stdout: 
244
NetCqiServer_1=** cqpserver stderr: 
245
NullComparator_0=None
246
PACKAGE_LOADED=Library {0} loaded.
247
PARTITION_CREATED=Partition {0} created in {1} ms
248
PART_CREATED=Part {0} created in {1} ms
249
Page_3=** Malformed URL, file 
250
Pair_0=\ should be false
251
Pair_1=\ should be true
252
PartitionFocus_1=The focus cannot be null or empty.
253
PartitionFocus_2=Focus is empty or null
254
PartitionFocus_3=The {0} part focus doesn''t belong to partition {1}.
255
PartitionFocus_4=** Unknown partition name.
256
Partition_1=\ in 
257
Partition_18=Failed to get last CQP error: 
258
Partition_2=\ in 
259
Partition_21=Warning: the partition could not be saved in workspace: 
260
Partition_4=\ query: 
261
Partition_9=** Failed to create part: 
262
PatchCwbRegistry_0="{0}" corpus registry update
263
PatchCwbRegistry_1=' corpus
264
PatchCwbRegistry_13=Source registry does not exists: 
265
PatchCwbRegistry_16=Can't find registry file
266
PatchCwbRegistry_2=Updating 
267
PatchCwbRegistry_23= encoding to 
268
PatchCwbRegistry_27=data directory 
269
PatchCwbRegistry_28=Could not patch registry
270
PatchCwbRegistry_29= could not be found in registry file 
271
PatchCwbRegistry_3=** The target corpus doesn't exist
272
PatchCwbRegistry_34=Updating 
273
PatchCwbRegistry_35= language to 
274
PatchCwbRegistry_4=Add Alignment attribute to corpus 
275
PatchCwbRegistry_5= registry: 
276
Project_0=Use directory name to build corpus declaration
277
Project_1=The corpus declaration file is not found too: 
278
Project_10=Project.load: workspace XML file error: 
279
Project_11=Failed to load base parameters from file: 
280
Project_12=Loading {0} corpus...  
281
Project_13=Adding texts: 
282
Project_14=Error: no version in import.xml file
283
Project_15=Error: the corpus version is too old to be loaded.
284
Project_16=Corpus name has been changed from {0} to {1} 
285
Project_17=Error: skipping the loading of corpus: 
286
Project_18=PARAMS: 
287
Project_2=Warning in corpus definition: no name attribute defined in its XML file : {0}
288
Project_25=Error: registry directory does not exist ! 
289
Project_26=** Error: ''{0}'' corpus directory is not conformant to TXM corpus binary format: corpus skipped." 
290
Project_27=Error while patching registry file: 
291
Project_28=TXM needs folders: 
292
Project_3=Project: load: malformed base node: duplicated 
293
Project_31= and file 
294
Project_4=Remove duplicate corpus from corpus list: 
295
Project_5=Analysing directory...
296
Project_6=Failed to load corpus with params: 
297
Project_7=Failed to load base with parameters file: 
298
Project_8=Can't read corpus parameters file: 
299
Project_9= base
300
PropertiesReferenceComparator_0=References
301
QUERY=Query on {0} : {1} <- {2}
302
QUERYING_PARTITION=Querying partition {0}
303
QuantitativeDataStructureImpl_0=No object with name "
304
QuantitativeDataStructureImpl_1=" in the workspace
305
QuantitativeDataStructureImpl_2=** Cannot delete a non-existing object.
306
QueryIndex_2=Warning : duplicate query entry : 
307
QueryIndex_3=Warning: query failed: 
308
QueryResult_0=\ is not a valid CQP Id for a subcorpus. It must be an uppercase characters followed by lowercase characters.
309
READING_2D_INT_ARRAY_FROM_CQI_SERVER=Reading an integer table from the CQi server
310
READING_BOOLEAN_FROM_CQI_SERVER=Reading boolean from the CQi server
311
READING_HEADER_FROM_CQI_SERVER=Reading header from the CQi server
312
READING_INTEGER_FROM_CQI_SERVER=Reading integer from the CQi server
313
READING_INT_ARRAY_FROM_CQI_SERVER=Reading integer array from the CQi server
314
READING_STRING_ARRAY_FROM_CQI_SERVER=Reading string array from the CQi server
315
READING_STRING_FROM_CQI_SERVER=Reading string from the CQi server
316
READ_2D_INT_ARRAY_FROM_CQI_SERVER=Read string 2D integer from the CQi server : {0}
317
READ_BOOLEAN_FROM_CQI_SERVER=Read boolean from the CQi server : {0}
318
READ_BYTE_FROM_CQI_SERVER=Read byte from the CQi server : {0}
319
READ_HEADER_FROM_CQI_SERVER=Read header from the CQi server : {0}
320
READ_INTEGER_FROM_CQI_SERVER=Read integer from the CQi server : {0}
321
READ_INT_ARRAY_FROM_CQI_SERVER=Read integer array from the CQi server : {0}
322
READ_STRING_ARRAY_FROM_CQI_SERVER=Read string array from the CQi server : {0}
323
READ_STRING_FROM_CQI_SERVER=Read string from the CQi server : {0}
324
REQUESTED_OBJECT=The object requested (
325
RETURNING_CACHED_LEXICON=Recycling the lexicon {0}
326
RETURN_FROM_QUERY={0} matches found in {1} ms
327
RException_0=** R error: "
328
RException_1="
329
RException_2=\nwhile evaluating: 
330
RSERVE_ACTIVATED=Statistics Engine running 
331
RSERVE_PATH_NOT_SET_ERROR=** The Statistics Engine program path is not set and we could not find it
332
RSERVE_PATH_SET_ERROR=** The Statistics Engine program path is set but we couldn't find it
333
RWorkspace_0=** Failed to connect to the R Workspace 
334
RWorkspace_1=** Evaluation Error: 
335
RWorkspace_10=Starting R using path: 
336
RWorkspace_11=Last safeeval: 
337
RWorkspace_2=try : connect to R at 
338
RWorkspace_21=Full command: 
339
RWorkspace_3=Saving graphic in file 
340
RWorkspace_4=
341
RWorkspace_5=
342
RWorkspace_6=** Failed to initialize file transfert: 
343
RWorkspace_7=Matrix is empty
344
RWorkspace_8=Failed to start RServe : 
345
R_EXPR=Expression sent to the Statistics Engine for evaluation: {0}.
346
R_READ_CONSOLE=The Statistics Engine waits for something to read from the console ({0}, {1}).
347
R_SAVE_HISTORY=The Statistics Engine has saved an history ({0}).
348
R_SHOW_MESSAGE=The Statistics Engine displayed this message: {0}.
349
R_WRITE_CONSOLE=The Statistics Engine displayed this message in the console: {0}.
350
ReferencePattern_3=Reference
351
Referencer_1=Referencer
352
Referencer_2=Referencer export failed: 
353
RelativeFrequency_3=Relative Frenquency %
354
Progression_1=Error: subcorpus with size 0
355
Progression_10=in
356
Progression_11=(density)
357
Progression_12=structure: 
358
Progression_13=, property: 
359
Progression_14=, value: 
360
Progression_2=Warning: discontinued subcorpus
361
Progression_3=Error: subcorpus with size 0
362
Progression_9=Progression of
363
SERVER_STARTED=Search Engine started 
364
SERVER_STOPED=Search Engine stopped
365
STARTING_SERVER=Starting Search Engine : {0}
366
STOPING_SERVER=Stopping the Search Engine
367
SUBCORPUS_CREATED=Subcorpus {0} created in {1} ms
368
SUBCORPUS_LEXICON=Computing the lexicon of subcorpus {0}
369
SUBCORPUS_SIZE=Computing the size of subcorpus {0}
370
Selection_0=\ number of words : 
371
Selection_1=\ number of texts : 
372
Selection_2=\ value : 
373
Selection_26=Failed to get sup values of 
374
Selection_3=Property : 
375
Selection_4=number of words : 
376
Selection_5=Text metadata: 
377
Selection_6=Selection error: the corpus 
378
Selection_7= has no base
379
Selection_8=Can't find structural unit for metadata with id: 
380
Selection_9=Error while getting metadatas from Base.importMetadatas: 
381
Sh_4=Process exited abnormally with code 
382
SpecificitesResult_0=** No specificity index array.
383
SpecificitesResult_1=** The specificity index array does not properly represent a matrix.
384
SpecificitesResult_10=** Reference to a non existing column.
385
SpecificitesResult_2=** The lexical table cannot be null.
386
SpecificitesResult_3=** Number of rows wanted (
387
SpecificitesResult_4=) and found (
388
SpecificitesResult_5=) mismatch.
389
SpecificitesResult_6=** Reference to non existing row.
390
SpecificitesResult_7=** number of columns given and found mismatch (
391
SpecificitesResult_8=Unit
392
Specificites_0=** Cannot compute specificites with less than 2 parts in the corpus.
393
Specificites_1=** Failed to get the specificites: 
394
Specificites_2=\ specificity index computed
395
StartRserve_0=Starting R with command line: 
396
StartRserve_2=No R path given, trying to find it...
397
StartRserve_21=** Failed to start Rserve with command: 
398
StartRserve_22=Statistical Engine launched
399
StartRserve_28=** Failed to run REG to find the location of R program: 
400
StartRserve_29=\ You need the 'R' software and you need to configure in the 'Tools/Preferences' window the correct path to it.
401
StartRserve_3=Rserve already running on port 
402
StartRserve_4=try R path : 'R'
403
StartRserve_6=try R path : 
404
StreamGobbler_0=Initializing log recorder
405
StreamGobbler_1=Starting log recorder
406
StreamGobbler_2=Stopping log recorder
407
StreamGobbler_3=Interrupting log recorder
408
StructuralUnitProperty_0=** Failed to access structural property values 
409
Subcorpus_1=\ in 
410
Subcorpus_2=Warning: the subcorpus could not be saved in workspace: 
411
Subcorpus_3=\ is not a valid CQP ID for a subcorpus. It must be an uppercase character followed by lowercase characters.
412
Summary_13=Error : text 
413
Summary_14= is null
414
Summary_15=Error : edition default is null
415
Summary_16=Error: textids
416
Summary_17= and wordids
417
TSCmd_30=Query was: 
418
TSCmd_31= matches found.
419
TSCorpusManager_0=Error reg dir: 
420
TSCorpusManager_1=Error configdir dir: 
421
TSCorpus_0=Couldn't read corpus: 
422
TSResult_0=Number of match 
423
TSResult_13=Cannot found tigerXml file: 
424
TSResult_14=Ts: conc: Failed to create xml file
425
TSResult_18=Starting injection
426
TSResult_2=Number of sub match 
427
TSResult_7=Can't find 
428
TSResult_8= in TS export methods 
429
TigerXmlIndexing_2=ERROR: !exists
430
TigerXmlIndexing_3=ERROR: !read
431
TigerXmlIndexing_6=IO: 
432
TigerXmlIndexing_7=SAX: 
433
Toolbox_0=** File
434
Toolbox_1=** Platform : the parameters SERVER_PATH_TO_EXECUTABLE, SERVER_PATH_TO_REGISTRY et SERVER_PATH_TO_INIT_FILE must be specified in a given '.properties' file.
435
Toolbox_10=** No worlspace found. Creating a new one.
436
Toolbox_11=Updating with : 
437
Toolbox_12=Loading workspace from file : 
438
Toolbox_14=** Error loadgin workspace from file : 
439
Toolbox_15=** Error : 
440
Toolbox_16=\ does not exists
441
Toolbox_17=End of CQP wait test
442
Toolbox_18=** Error while waiting for CQP
443
Toolbox_2=** Error: null value for key 
444
Toolbox_21=\ R: 
445
Toolbox_22=\ Workspace: 
446
Toolbox_23=Start StatEngine: user: 
447
Toolbox_24=\ remote:
448
Toolbox_25=\ port: 
449
Toolbox_26=** Error : while connection to search engine, with the following parameters : 
450
Toolbox_27=\ and 
451
Toolbox_28=Failed to start MemCqiClient: 
452
Toolbox_29=** Error while connecting to search engine.
453
Toolbox_3=true
454
Toolbox_30=- wrong login or password or port : 
455
Toolbox_31=Failed to exec 'taskkill /IM cqpserver.exe /F': 
456
Toolbox_33=- or the engine was not started with the command line : 
457
Toolbox_34=Failed to exec 'tskill cqpserver.exe': 
458
Toolbox_35=** Error while connecting to the stat engine.
459
Toolbox_37=kill `ps aux | grep cqpserver | awk '/-P 
460
Toolbox_38=/ {print $2}'`
461
Toolbox_39=Failed to exec '
462
Toolbox_4=With parameters: 
463
Toolbox_40=': 
464
Toolbox_43=Failed to exec 'taskkill /IM Rserve.exe /F': 
465
Toolbox_45=Failed to exec 'tskill Rserve.exe': 
466
Toolbox_47=Failed to exec 'killall -9 Rserve-bin.so': 
467
Toolbox_5= debug: 
468
Toolbox_7=The path to R program is null
469
Toolbox_8=Undefined keys : 
470
Toolbox_9=Platform parameters: 
471
Toolbox_connected_to_corpus_sever=connected
472
Toolbox_wait_failed=** Failed to wait for the interrupted process
473
Toolbox_workspace_init=Reloading subcorpora and partitions...
474
Toolbox_workspace_init_failed=** Error during workspace initialisation :
475
Toolbox_wrong_port=** Error : the connexion to the server failed : wrong port format
476
TxmObject_0=** Failed to get parent object
477
TxmObject_1=TxmObject: delete: parent object is null
478
TxmObject_2=Failed to save attribute 
479
TxmRenderer_1=TxmRenderer: error: no corpus found for result 
480
TxmRenderer_5=line: 
481
TxmRenderer_6= prop 
482
TxmRenderer_7=  mdc: 
483
VARIABLE_REMOVED=R Variable "{0}" deleted.
484
ValidateXml_0=XmlValidation: 
485
ValidateXml_1= is a directory
486
ValidateXml_2= does not exists
487
ValidateXml_3= is not read-able
488
VectorizeArray_0=** Nothing to do with an empty matrix
489
VectorizeArray_1=** Inner arrays must be of dimension > 0.
490
VectorizeArray_10=** An inner array cannot be null.
491
VectorizeArray_11=** All the inner array do not have the same length.
492
VectorizeArray_3=** All the inner array do not have the same length.
493
VectorizeArray_4=** Nothing to do with an empty matrix
494
VectorizeArray_5=** Inner arrays must be of dimension > 0.
495
VectorizeArray_7=** All the inner array do not have the same length.
496
VectorizeArray_8=** Nothing to do with an empty matrix
497
VectorizeArray_9=** Inner arrays must be of dimension > 0.
498
Index_0=** Error while computing lexicon:\n 
499
Index_1=Console : 
500
Index_7=** Failed to export Lexicon : 
501
WORKSPACE_PURGED=Statistics Engine cleaned up.
502
Workspace_0=, index 
503
Workspace_1=\t\t\tEdition: 
504
Workspace_10=corpus: 
505
Workspace_2=** Failed to load workspace: 
506
Workspace_26=\t\t\t\tPage: 
507
Workspace_27=\ wordid 
508
Workspace_28=\t\tScript: 
509
Workspace_29=, type:  
510
Workspace_3=Project: 
511
Workspace_30=\tCorpora: 
512
Workspace_31=\t\tText: 
513
Workspace_4=\tBase: 
514
Workspace_5=\t\tText: 
515
Workspace_6=** Failed to create empty workspace file: 
516
Workspace_7=\ pages
517
Workspace_8=Workspace XML file is mal formed. We need to recreate one...
tmp/org.txm.utils/src/messages_fr.properties (revision 248)
1
FAILED=Échec.
2
DONE=Terminé.
3
AbsoluteFrequency_1=Fréquence absolue
4
AbstractCqiClient_2=Pas d'erreur à notifier.
5
ArrayIndex_0=** Le tableau d'index ne peut pas être nul ou vide.
6
ArrayIndex_1=** Un index commençant à 0 ne peut pas être inférieur à 0 ou supérieur au nombre d'éléments indexés.
7
Base_0=Dossier binaire 
8
Base_22=L'élément 'corpora' est absent de l'élément 'base'
9
Base_3=\ n'existe pas ?
10
Base_4=Le dossier parent 
11
Base_5=\ n'existe pas ?
12
Base_6=Erreur: linkGrp/link/@target mal formé : 
13
BuildCwbEncodeArgs_0=Le fichier ''{0}'' est introuvable.
14
CAH_0=Erreur durant l'export du résultat CAH : 
15
CA_0=** La table lexicale n'a pas été trouvée dans l'espace de travail R.
16
CA_16=** Impossible de charger la librairie 'ca'
17
CA_2=** Erreur lors du calcul de l'analyse factorielle des correspondances : 
18
CA_4=** Impossible d'extraire les valeurs propres 
19
CHAR_VECTOR_ADDED_TO_WORKSPACE=Le vecteur "{1}" ({0,number,integer} valeurs "character") a été transmis au Moteur Statistique.
20
CONNECTED_TO_STATS_MODULE= connecté.
21
CONNECTING_CQI_CLIENT=Connexion au moteur de recherche avec les paramètres suivants : {0}:{1}@{2}{3}...
22
CONNECTION_OK=Connexion au Moteur Statistique établie.
23
CQI_CLIENT_CONNECTED=Connexion au moteur de recherche établie.
24
CREATING_PART=Partie {0} créée à partir de la requête {1}
25
CREATING_SUBCORPUS=Création du sous-corpus {1} à partir du corpus {0} et de la requête {2}
26
CatalogManager_0=** Erreur du gestionnaire de catalogue : initialisation 
27
CatalogManager_1=\ n'existe pas.
28
Catalog_0=** Fichier de catalogue introuvable
29
CompositeComparator_0=Composé : 
30
Concordance_0=\ 
31
Concordance_1=** Echec de récupération de la propriété 'text_id' des lignes 
32
Concordance_12=** Echec de l'exportation de la concordance : 
33
Concordance_13=Référence
34
Concordance_14=ContexteGauche
35
Concordance_15=Pivot
36
Concordance_16=ContexteDroit
37
Concordance_17=Référence
38
Concordance_18=
39
Concordance_19=Contexte
40
Concordance_2=indéfini
41
Concordance_3=\ résultats obtenus en\ 
42
Concordance_4=Echec de la suppression du QueryResult de CQP: 
43
Concordance_5=
44
Concordance_6=Récupération 
45
Concordance_7=\ résultats
46
Concordance_8=Echec de la récupération des limites de texte : 
47
Contrasts_0=Calcul: 
48
Convert5To6_1=''{0}'' est introuvable.
49
Convert5To6_10=le dossier 'registry' est manquant
50
Convert5To6_11=le dossier 'html' est manquant
51
Convert5To6_12=traitement en cours...
52
Convert5To6_15=Reorganisation des fichiers de 
53
Convert5To6_19=Lecture des informatins sur le corpus depuis le fichier import.xml : 
54
Convert5To6_30=Remplissage du fichier 'import.xml' avec : 
55
Convert5To6_46=traitement du fichier : 
56
Convert5To6_6=Vérification du format...
57
Convert5To6_7=le dossier 'txm' est manquant
58
Convert5To6_8=le dossier 'html' est manquant
59
Convert5To6_9=le dossier 'data' est manquant
60
Cooccurrence_0=Coocurrence : 
61
Cooccurrence_1=** Echec de la recherche de 'n' ou 'o' : 
62
Cooccurrence_10=\ propriétés : 
63
Cooccurrence_102=** Erreur : argument négatif dans la fonction 'factln'
64
Cooccurrence_103=** Erreur : argument négatif dans la fonction 'rbicoln'
65
Cooccurrence_105=Occ\tFréq\tCoFréq\tIndice\tDistMoy\tMode
66
Cooccurrence_106=\n
67
Cooccurrence_107=** Erreur : 
68
Cooccurrence_11=Occ
69
Cooccurrence_12=Fréq
70
Cooccurrence_13=CoFréq
71
Cooccurrence_14=Indice
72
Cooccurrence_15=DistMoy
73
Cooccurrence_16=Mode
74
Cooccurrence_2=Cooc : 
75
Cooccurrence_22=Erreur: ref_forms.length ! ref_freqs.length
76
Cooccurrence_23=Erreur: pas de cooccurrents
77
Cooccurrence_3=\ (
78
Cooccurrence_4=\ F : 
79
Cooccurrence_5=** Impossible de calculer des cooccurrences avec cette concordance
80
Cooccurrence_6=Occ\tFréq\tCoFréq\tIndice\tDistMoy\tMode
81
Cooccurrence_7=\ Occ :
82
Cooccurrence_8=\ Indice:
83
Cooccurrence_9=\ DistMoy:
84
CorpusManager_0=** Le client CQi n'est pas initilialisé
85
CorpusManager_1=** Erreur : Cette exception ne devrait pas se lever
86
Corpus_12=** Echec de la restauration du sous-corpus
87
Corpus_13=Corpus: getLocale: CQP est pas prêt à répondre : 
88
Corpus_14=Attention: le corpus ne peut pas être chargé 
89
Corpus_15= informations from workspace (selfElement  null)
90
Corpus_19=** Echec de la restauration de la partition
91
Corpus_2=Corpus : 
92
Corpus_3=, Encodage : 
93
Corpus_4=, Langue : 
94
Corpus_5= Pas de valeur donnée
95
Corpus_6=** Corpus : la référence au texte 
96
Corpus_7=\ est manquante
97
Corpus_8=\ dans
98
CqiClient_0=Récupération de la dernière erreur CQP
99
CqiClient_1=Lecture de CQI CTRL LAST GENERAL ERROR
100
CqiClient_3=** Echec de la lecture de la dernière erreur CQP
101
CqiClient_32=Moteur de recherche lancé...
102
CqiClient_33=** La connexion au moteur de recherche a échoué.
103
CqiClient_34=Moteur de recherche lancé.
104
CwbEncode_0=le dossier n'existe pas :
105
CwbEncode_21=Le dossier "bin" n'existe pas : 
106
CwbEncode_23=Le dossier "registry" n'existe pas : 
107
CwbEncode_25=Le dossier "corpora" n'existe pas :
108
CwbEncode_27=Traitement du corpus 
109
CwbEncode_29=Le dossier "data" n'existe pas :
110
CwbEncode_32=Patch le fichier registry {0} avec {1}
111
CwbProcess_1=Démarrage avec la ligne de commande : 
112
CwbProcess_3=Arrêt en cours du processus : 
113
CwbProcess_4=Processus arrêté : 
114
CwbProcess_5=** Echec de localisation de CQP : 
115
DOUBLE_VECTOR_ADDED_TO_WORKSPACE=Le vecteur "{1}" ({0,number,integer} valeurs numériques "doubles") a été transmis au Moteur Statistique.
116
DROP_PARTITION=Suppression de la partition {0}
117
DROP_QUERYRESULT=Suppression du résultat de requête {0}
118
DROP_SUBCORPUS=Suppression du sous-corpus {0}
119
Diagnostic_0=<h3>Propriétés des structures\n
120
Diagnostic_1=** Echec d'accès au corpus
121
Diagnostic_10=Nom de la partition : 
122
Diagnostic_11=\ structures
123
Diagnostic_12=Nombre de parties :
124
Diagnostic_13=Taille de la partition : 
125
Diagnostic_14=Propriétés des unités lexicales (max {0} valeurs)
126
Diagnostic_15=Numéro de la partie : 
127
Diagnostic_16=Nombre d'unités de structure 
128
Diagnostic_17=Nom des parties : 
129
Diagnostic_18=Taille des parties : 
130
Diagnostic_19=Propriétés des parties : 
131
Diagnostic_2=** Erreur
132
Diagnostic_20=Requêtes de parties : 
133
Diagnostic_22=Propriétés des structures (max {0} valeurs)
134
Diagnostic_23=\ valeurs)
135
Diagnostic_26=Pas de propriété
136
Diagnostic_3=Description du corpus 
137
Diagnostic_4=\ propriétés
138
Diagnostic_40=* Statistiques Générales\n
139
Diagnostic_41=- T
140
Diagnostic_43=- Propriétés de mot 
141
Diagnostic_49=- S
142
Diagnostic_5=Statistiques Générales
143
Diagnostic_6=** Echec d'accès au corpus
144
Diagnostic_7=Nombre de mots 
145
Diagnostic_8=\ lexique
146
Diagnostic_9=Nombre de propriétés de mot 
147
END_SUBCORPUS_LEXICON=Lexique du sous-corpus {0} calculé en {1} ms
148
END_SUBCORPUS_SIZE=Taille du sous-corpus {0} ({1}) calculée en {2} ms
149
ERROR_EXTRACT_ITEM=** Erreur lors de l'extraction de la liste d'items : 	
150
EVALUATED_EXPRESSION=L''expression ''{0}'' a été évaluée.
151
ExecTimer_0=\ msec
152
ExecTimer_1=\ sec
153
ExecTimer_2=\ min et 
154
ExecTimer_3=h, 
155
FAILED_INIT_CONNECTION_R=** Echec de connexion au serveur statistique.
156
FactoMineRCA_2=** Echec d'accès à la colonne des contributions : 
157
FactoMineRCA_3=** Echec d'accès à la colonne des cos\u00B2 : 
158
FactoMineRCA_4=** Echec d'accès à la ligne des contributions : 
159
FactoMineRCA_5=** Echec d'accès à la ligne des cos\u00B2 : 
160
Factor_0=** Non implémenté
161
FileCopy_0=** Copie de fichiers : échec d'accès à la source : 
162
FileCopy_2=** Copie de fichiers : droits d'accès insuffisants à la source : 
163
FileCopy_4=** Copie de fichiers : échec de création du dossier : 
164
FilterManager_0=** Erreur du gestionnaire de filtre : initialisation 
165
FilterManager_1=\ n'existe pas.
166
Filter_7=** Erreur de lecture
167
Focus_1=** Le focus est vide ou nul.
168
GroovyImportScriptRunner_0=Initialisation de GroovyImportScriptRunner
169
GroovyImportScriptRunner_1=> début de l'exécution de 
170
GroovyImportScriptRunner_3=> fin de l'exécution
171
INT_VECTOR_ADDED_TO_WORKSPACE=Le vecteur "{1}" ({0,number,integer} valeurs numériques "entières") a été transmis au Moteur Statistique.
172
InternalView_3=\ \ Information des structures :
173
InternalView_6=InternalView: erreur lors de la récupération des valeurs des propriétés de structure
174
InternalView_7=\ \ No d'informations sur les structures
175
LEXICON=Lexique
176
LEXICON_ADDED=Le lexique "{1}" ({0,number,integer} entrées) a été transmis au Moteur Statistique.
177
LIBBRARY_NOT_LOADED=LA librairie {0} n''a pu être chargée : {1}
178
LS_0=Erreur : 
179
LS_1=\ n'est pas un dossier
180
LexicalTableImpl_0=
181
LexicalTableImpl_1=Construction de la table lexicale avec : 
182
LexicalTableImpl_10=colonnes
183
LexicalTableImpl_12=Erreur: les marges
184
LexicalTableImpl_13=\ sont plus grandes que la taille des parties
185
LexicalTableImpl_3=\ <sans partition> /
186
LexicalTableImpl_5=pas assez de colonnes : minimum 2 (ici : 
187
LexicalTableImpl_8=ligne
188
LexicalTableImpl_9= n'a pas 
189
LexicographicKeywordComparator_0=Pivot
190
LexicographicLeftContextComparator_0=Contexte gauche
191
LexicographicRightContextComparator_0=Contexte droit
192
Lexicon_0=Le tableau des formes et des fréquences doivent avoir la même longueur.
193
Lexicon_3=Lexique :
194
Localizer_0=[Traduction manquante] 
195
Localizer_1=messages
196
Log_3=Copie des messages dans 
197
Log_5=Ecriture des messages dans
198
Log_8=\nstack:\n
199
MATRIX_ADDED_TO_WORKSPACE=La matrice "{2}" ({0,number,integer} lignes et {1,number,integer} colonnes) a été transmise au Moteur Statistique.
200
MainCorpus_0=\ n'est pas un identifiant de corpus CQP valide. Il doit être en majuscule.
201
MainCorpus_1=\ dans
202
MainCorpus_2=Suppression du dossier de corpus binaire : 
203
MatrixImpl_0=Une variable ("
204
MatrixImpl_1=") n'existe pas dans l'espace de travail R.
205
MatrixImpl_10=Index de ligne (
206
MatrixImpl_11=) trop grand (max 
207
MatrixImpl_13=Index de colonne (
208
MatrixImpl_14=) trop grand (max 
209
MatrixImpl_19=L'objet R a une valeur nulle.
210
MatrixImpl_2=dim(
211
MatrixImpl_20=Type inconnu : 
212
MatrixImpl_21=mode
213
MatrixImpl_22=Index de ligne (
214
MatrixImpl_23=) trop grand (max 
215
MatrixImpl_28=Index de colonne (
216
MatrixImpl_29=) trop grand (max 
217
MatrixImpl_4=Les noms de lignes d'une matrice de contingence ne peuvent pas être nuls.
218
MatrixImpl_5=La dimension du vecteur des noms de lignes doit être égale au nombre de lignes de la matrice.
219
MatrixImpl_6=Les noms de colonnes d'une matrice de contingence ne peuvent pas être nuls.
220
MatrixImpl_67=Matrice: impossible d'obtenir le nombre de lignes: 
221
MatrixImpl_7=La dimension du vecteur des noms de colonnes doit être égale au nombre de colonnes de la matrice (
222
MatrixImpl_73=MatrixImpl: Erreur: la taille des colonnes diffère de l'originale
223
MatrixImpl_79=Impossible d'obtenir les noms de lignes
224
MatrixImpl_88=Impossible de supprimer toutes les lignes
225
MemCqiClient_0=Erreur interne CQi : 
226
MemCqiClient_1=Erreur 
227
MemCqiClient_10=Codes CQP inconnus : b1 
228
MemCqiClient_11=Erreur de requête
229
MemCqiClient_2=Attention 
230
MemCqiClient_3=Erreur CQP inconnue : b1 
231
MemCqiClient_5=Erreur CQP cqi inconnue : b1 
232
MemCqiClient_7=Code CQP inconnu : b1 
233
MemCqiClient_9= b2 
234
MessageBox_0=Erreur
235
MessageBox_1=Attention
236
MessageBox_2=Information
237
NEW_PARTION=Création d''une nouvelle partition du corpus {0} : {1}
238
NOT_FOUND_IN_R=) n'a pas été trouvé dans l'espace de travail R.
239
NetCqiClient_1=Dernière erreur Cqi : 
240
NetCqiClient_3=Dernière erreur CQP
241
NetCqiClient_5=Echec de la reconnexion auserveur : 
242
NetCqiClient_97=client.dumpSubCorpus(subcorpus, NetCqiClient.CQI_CONST_FIELD_MATCH, 1, 2) : 
243
NetCqiServer_0=** cqpserver stdout: 
244
NetCqiServer_1=** cqpserver stderr: 
245
NullComparator_0=Aucun
246
PACKAGE_LOADED=Bibliothèque {0} chargée.
247
PARTITION_CREATED=Partition {0} créée en {1} ms
248
PART_CREATED=Partie {0} créée en {1} ms
249
Page_3=** URL mal formée, fichier 
250
Pair_0=\ devrait valoir faux
251
Pair_1=\ devrait valoir vrai
252
PartitionFocus_1=Le focus ne doit pas être vide ou nul.
253
PartitionFocus_2=Le focus est vide ou nul
254
PartitionFocus_3=Le focus de la partie {0} n''appartient pas à la partition {1}.
255
PartitionFocus_4=** Nom de partition inconnu.
256
Partition_1=\ dans
257
Partition_18=Erreur lors de la récupération de la dernière erreur CQP : 
258
Partition_2=\ dans
259
Partition_21=Attention : la partition n'a pu être sauvegardée
260
Partition_4=\ requête : 
261
Partition_9=** Echec de la création de la partie :
262
PatchCwbRegistry_0=Mise à jour du registre du corpus "{0}"
263
PatchCwbRegistry_1='
264
PatchCwbRegistry_13=Le fichier registry source n'existe pas
265
PatchCwbRegistry_16=Le fichier 'registry' est introuvable
266
PatchCwbRegistry_2=Mise à jour du corpus 
267
PatchCwbRegistry_23= pour l'encodage 
268
PatchCwbRegistry_27=dossier 'data'
269
PatchCwbRegistry_28=Erreur lors de la reécriture du fichier 'registry'
270
PatchCwbRegistry_29= n'a pu être trouvé dans 
271
PatchCwbRegistry_3=** Le corpus cible n'existe pas
272
PatchCwbRegistry_34=Mise à jour de la langue du corpus 
273
PatchCwbRegistry_35= à 
274
PatchCwbRegistry_4=Ajout au corpus 
275
PatchCwbRegistry_5= de l'attribut d'alignement 
276
Project_0=Utiliser le nom de dossier pour générer la déclaration de corpus
277
Project_1=Le fichier de déclaration de corpus n'a pas été trouvé
278
Project_10=Project.load: erreur dans le fichier XML du workspace: 
279
Project_11=Erreur lors  de la récupération des 
280
Project_12=Chargement du corpus {0}...
281
Project_13=Ajout des textes : 
282
Project_14=Erreur : le fichier 'import.xml' ne contient pas de version
283
Project_15=Erreur : la version du fichier 'import.xml' est trop ancienne pour que le corpus soit chargé
284
Project_16=Le nom de corpus a été changé de {0} à {1} 
285
Project_17=Erreur : le corpus ne sera pas chargé
286
Project_18=Paramètres : 
287
Project_2=Attention, l''attribut ''name'' du corpus n''est pas défini dans la définition XML du fichier {0}.
288
Project_25=Erreur : le dossier 'registry' n'existe pas
289
Project_26=** Erreur : le dossier d'entrée n'est pas conforme au format de corpus binaire de TXM :  
290
Project_27=Erreur lors de la reécriture du fichier 'registry' : 
291
Project_28=TXM a besoin des dossiers suivants : 
292
Project_3=Attention : deux corpus partagent le même identifiant (@name) dans leur fichier de configuration : {0}
293
Project_31= et le fichier
294
Project_4=Suppression des doublons de la liste des corpus:
295
Project_5=Analyse du dossier...
296
Project_6=Erreur lors du chargement du corpus avec : 
297
Project_7=Erreur lors du chargement du corpus avec : 
298
Project_8=Le fichier de paramétrage de corpus est introuvable (ou illisible). : {0}. Le corpus correspondant ne sera pas disponible. 
299
Project_9= base
300
PropertiesReferenceComparator_0=Références
301
QUERY=Requête sur {0} : {1} <- {2}
302
QUERYING_PARTITION=Requête sur la partition {0}
303
QuantitativeDataStructureImpl_0=Aucun objet de nom "
304
QuantitativeDataStructureImpl_1=" dans l'espace de travail
305
QuantitativeDataStructureImpl_2=** Impossible de supprimer un objet qui n'existe pas.
306
QueryIndex_2=Attention : requête dupliquée : 
307
QueryIndex_3=Attention: échec de la requête:
308
QueryResult_0=\ n'est pas un identifiant de sous-corpus CQP valide. Il doit être en majuscules suivies de caractères minuscules.
309
READING_2D_INT_ARRAY_FROM_CQI_SERVER=Lecture d'un tableau d'entiers du serveur CQi
310
READING_BOOLEAN_FROM_CQI_SERVER=Lecture d'un booléen du serveur CQi
311
READING_HEADER_FROM_CQI_SERVER=Lecture d'une entête du serveur CQi
312
READING_INTEGER_FROM_CQI_SERVER=Lecture d'un entier du serveur CQi
313
READING_INT_ARRAY_FROM_CQI_SERVER=Lecture d'un tableau d'entiers du serveur CQi
314
READING_STRING_ARRAY_FROM_CQI_SERVER=Lecture d'un tableau de chaines du serveur CQi
315
READING_STRING_FROM_CQI_SERVER=Lecture d'une chaine du serveur CQi
316
READ_2D_INT_ARRAY_FROM_CQI_SERVER=Tableau d''entiers reçu du serveur CQi : {0}
317
READ_BOOLEAN_FROM_CQI_SERVER=Booléen reçu du serveur CQi : {0}
318
READ_BYTE_FROM_CQI_SERVER=Octet reçu du serveur CQi : {0}
319
READ_HEADER_FROM_CQI_SERVER=Entête reçue du serveur CQi : {0}
320
READ_INTEGER_FROM_CQI_SERVER=Entier reçu du serveur CQi : {0}
321
READ_INT_ARRAY_FROM_CQI_SERVER=Tableau d''entiers reçu du serveur CQi : {0}
322
READ_STRING_ARRAY_FROM_CQI_SERVER=Tableau de chaines reçu du serveur CQi : {0}
323
READ_STRING_FROM_CQI_SERVER=Chaine reçue du serveur CQi : {0}
324
REQUESTED_OBJECT=L'objet demandé (
325
RETURNING_CACHED_LEXICON=Recyclage du lexique {0}
326
RETURN_FROM_QUERY={0} occurrences trouvées en {1} ms
327
RException_0=** Erreur R : "
328
RException_1="
329
RException_2=\n lors de l'évaluation de :
330
RSERVE_ACTIVATED=Moteur Statistique lancé 
331
RSERVE_PATH_NOT_SET_ERROR=** Le chemin du programme du serveur statistique n'a pas été renseigné et sa recherche a échoué
332
RSERVE_PATH_SET_ERROR=** Le chemin du programme du serveur statistique a été renseigné mais sa recherche a échoué
333
RWorkspace_0=** Echec de connexion à l'espace de travail R 
334
RWorkspace_1=** Erreur d'évaluation : 
335
RWorkspace_10=Démarrage de R avec le chemin d'accès: 
336
RWorkspace_11=Dernier 'safeeval'
337
RWorkspace_2=tentative de connexion à R : 
338
RWorkspace_21=Commande complète : 
339
RWorkspace_3=Sauvegarde du graphique dans le fichier 
340
RWorkspace_4=
341
RWorkspace_5=
342
RWorkspace_6=** Echec de l'initialisation du transfert : 
343
RWorkspace_7=La matrice est vide
344
RWorkspace_8=Impossible de démarrer RServe : 
345
R_EXPR=Expression transmise au Moteur Statistique pour évaluation : {0}.
346
R_READ_CONSOLE=Le Moteur Statistique attend une réponse de la console ({0}, {1}).
347
R_SAVE_HISTORY=Le Moteur Statistique a sauvegardé un historique ({0}).
348
R_SHOW_MESSAGE=Le Moteur Statistique a affiché ce message : {0}.
349
R_WRITE_CONSOLE=Le Moteur Statistique a afiché ce message dans la console: {0}.
350
ReferencePattern_3=Référence
351
Referencer_1=Références
352
Referencer_2=Références : l'export a échoué :  
353
RelativeFrequency_3=Fréquence Relative %
354
Progression_1=Erreur la taille du sous-corpus est 0
355
Progression_10= dans
356
Progression_11= (densité)
357
Progression_12=structure : 
358
Progression_13=, propriété : 
359
Progression_14=, valeur 
360
Progression_2=Attention, le corpus est discontinu
361
Progression_3=Erreur la taille du sous-corpus est 0
362
Progression_9=Progression de
363
SERVER_STARTED=Moteur de recherche lancé 
364
SERVER_STOPED=Moteur de recherche arrêté
365
STARTING_SERVER=Lancement du moteur de recherche : {0}
366
STOPING_SERVER=Arrêt du moteur de recherche
367
SUBCORPUS_CREATED=Sous-corpus {0} créé en {1} ms
368
SUBCORPUS_LEXICON=Calcul du lexique du sous-corpus {0}
369
SUBCORPUS_SIZE=Calcul de la taille du sous-corpus {0}
370
Selection_0=\ nombre de mots : 
371
Selection_1=\ nombre de textes : 
372
Selection_2=\ valeur : 
373
Selection_26=Echec de la récupération des valeurs de structures de
374
Selection_3=Propriété : 
375
Selection_4=nombre de mots : 
376
Selection_5=Métadonnées de textes : 
377
Selection_6=Erreur : le corpus
378
Selection_7=n'a pas de 'Base'
379
Selection_8=Erreur : pas de structures trouvées pour la métadonnée d'identifiant : 
380
Selection_9=Erreur lors de la récupération des metadonnées du corpus
381
Sh_4=Le processus a terminé avec le code d'erreur : 
382
SpecificitesResult_0=** Pas de tableau d'index de spécificité
383
SpecificitesResult_1=** Le tableau d'index des spécificités ne correspond pas à une matrice
384
SpecificitesResult_10=** Référence à une colonne inexistante.
385
SpecificitesResult_2=** La table lexicale ne peut être nulle.
386
SpecificitesResult_3=** Le nombre lignes prévu (
387
SpecificitesResult_4=) et trouvé (
388
SpecificitesResult_5=) ne correspondent pas
389
SpecificitesResult_6=** Référence à une ligne inexistante
390
SpecificitesResult_7=** Le nombre de colonnes données et le nombre de colonnes trouvées sont différents (
391
SpecificitesResult_8=Unité
392
Specificites_0=** Il faut au moins 2 parties pour calculer des spécificités
393
Specificites_1=** Echec d'accès aux spécificités : 
394
Specificites_2=\ spécificités calculées
395
StartRserve_0=Démarrage de R avec la ligne de commande: 
396
StartRserve_2=Chemin d'accès à R non fourni, tentative de résolution...
397
StartRserve_21=** Echec du lancement de Rserve avec la commande : 
398
StartRserve_22=Moteur statistique lancé
399
StartRserve_28=** Echec du lancement de REG pour localiser le programme R
400
StartRserve_29=\ Vous avez besoin du logiciel 'R' et de configurer ses chemins via la fenêtre de préférences 'Outils/Préférences'
401
StartRserve_3=Rserve déja démarré sur le port 
402
StartRserve_4=Essai du chemin de R : 'R'
403
StartRserve_6=Essai du chemin de R : 
404
StreamGobbler_0=Initialisation de l'enregistreur de journal
405
StreamGobbler_1=démarrage de l'enregistreur de journal
406
StreamGobbler_2=Arrêt de l'enregistreur de journal
407
StreamGobbler_3=Interruption de l'enregistreur de journal
408
StructuralUnitProperty_0=** Echec de lecture des valeurs de la propriété de structure 
409
Subcorpus_1=\ dans
410
Subcorpus_2=Attention : le sous-corpus n'a pu être sauvegardé.
411
Subcorpus_3=\ n'est pas un identifiant de sous-corpus CQP valide. Il doit être en majuscules suivies de caractères minuscules.
412
Summary_13=Erreur : text
413
Summary_14= a pour valeur  'null'
414
Summary_15=Erreur : edition a pour valeur 'null'
415
Summary_16=Erreur : textids
416
Summary_17= et wordids
417
TSCmd_30=La requête était : 
418
TSCmd_31= résultats trouvés
419
TSCorpusManager_0=Erreur dans le dossier registre :
420
TSCorpusManager_1=Erreur dans le dossier de configuration : 
421
TSCorpus_0=Erreur : le corpus n'a pas les droits de lecture
422
TSResult_0=Nombre de match
423
TSResult_13=Erreur : le fichier tigerXML est introuvable : 
424
TSResult_14=Erreur : la concordance n'a pu être enregistré dans le fichier XML
425
TSResult_18=Début de l'injection
426
TSResult_2=Nombre de sous graph
427
TSResult_7=Erreur : la méthode d'export 
428
TSResult_8=est introuvable
429
TigerXmlIndexing_2=Erreur : n'existe pas
430
TigerXmlIndexing_3=Erreur : n'a pas les droits de lecture
431
TigerXmlIndexing_6=IO :
432
TigerXmlIndexing_7=SAX : 
433
Toolbox_0=** Le fichier 
434
Toolbox_1=** Plateforme : les paramètres SERVER_PATH_TO_EXECUTABLE, SERVER_PATH_TO_REGISTRY et SERVER_PATH_TO_INIT_FILE doivent être renseignés dans le fichier '.properties' donné à la plateforme 
435
Toolbox_10=** Pas d'espace de travail trouvé, création d'un nouvel espace de travail dans le dossier 
436
Toolbox_11=Mis à jour avec : 
437
Toolbox_12=Chargement de l'espace de travail à partir du fichier 
438
Toolbox_14=** Echec de lecture de l'espace de travail à partir du fichier 
439
Toolbox_15=** Erreur :
440
Toolbox_16=\ n'existe pas.
441
Toolbox_17=Fin du test d'attente de CQP
442
Toolbox_18=** Echec du test d'attente de CQP : 
443
Toolbox_2=** Erreur : valeur nulle pour la clé 
444
Toolbox_21=\ R :
445
Toolbox_22=\ Espace de travail : 
446
Toolbox_23=Démarrage du moteur de statistiques par l'utilisateur : 
447
Toolbox_24=\ distant : 
448
Toolbox_25=\ port : 
449
Toolbox_26=** Echec de connexion au moteur de recherche avec les paramètres suivants : 
450
Toolbox_27=\ et  
451
Toolbox_28=Erreur lors du démarage du mode mémoire de CQP
452
Toolbox_29=** Échec de la connexion au moteur de recherche : 
453
Toolbox_3=vrai
454
Toolbox_30=- mauvais login/mot de passe/nom de machine/port :
455
Toolbox_31=Echec de la commande 'taskkill /IM cqpserver.exe /F': 
456
Toolbox_33=- ou le moteur de recherche n'a pas été lancé avec la ligne de commande : 
457
Toolbox_34=Echec de la commande 'tskill cqpserver.exe': 
458
Toolbox_35=** La connexion au moteur statistique a échoué
459
Toolbox_37=kill `ps aux | grep cqpserver | awk '/-P 
460
Toolbox_38=/ {print $2}'`
461
Toolbox_39=Echec de l'exécution de '
462
Toolbox_4=Avec les paramètres suivants :
463
Toolbox_40=' :
464
Toolbox_43=Echec de la commande 'taskkill /IM Rserve.exe /F': 
465
Toolbox_45=Echec de la commande 'tskill Rserve.exe': 
466
Toolbox_47=Echec de la commande 'killall -9 Rserve-bin.so': 
467
Toolbox_5= debug: 
468
Toolbox_7=Le chemin vers le programme R est null
469
Toolbox_8=Clés non définies :
470
Toolbox_9=Paramètres de la plateforme :
471
Toolbox_connected_to_corpus_sever=connecté.
472
Toolbox_wait_failed=** Echec de l'attente du processus interrompu
473
Toolbox_workspace_init=Chargement des sous-corpus et des partitions...
474
Toolbox_workspace_init_failed=** Echec de l'initialisation de l'espace de travail : 
475
Toolbox_wrong_port=** La connexion au moteur de recherche a échoué : le port fourni en paramètre n'est pas un nombre entier
476
TxmObject_0=** Echec de l'accès à l'objet parent
477
TxmObject_1=TxmObject : delete : l'objet parent est nul
478
TxmObject_2=Erreur de la sauvegarde de l'attribut
479
TxmRenderer_1=TxmRenderer: erreur: pas de corpus trouvé
480
TxmRenderer_5=ligne : 
481
TxmRenderer_6=prop
482
TxmRenderer_7=mdc :
483
VARIABLE_REMOVED=La variable R "{0}" a été supprimée.
484
ValidateXml_0=Validation XML : 
485
ValidateXml_1=est un dossier
486
ValidateXml_2=n'existe pas
487
ValidateXml_3=n'a pas les bon droits de lecture
488
VectorizeArray_0=** Rien à faire avec une matrice vide
489
VectorizeArray_1=** Les tableaux internes doivent avoir une dimension supérieure à 0
490
VectorizeArray_10=** Un tableau interne ne peut pas être nul
491
VectorizeArray_11=** Les tableaux internes n'ont pas tous la même dimension.
492
VectorizeArray_3=** Les tableaux internes n'ont pas tous la même dimension.
493
VectorizeArray_4=** Rien à faire avec une matrice vide
494
VectorizeArray_5=** Les tableaux internes doivent avoir une dimension supérieure à 0
495
VectorizeArray_7=* Les tableaux internes n'ont pas tous la même dimension.
496
VectorizeArray_8=** Rien à faire avec une matrice vide
497
VectorizeArray_9=** Les tableaux internes doivent avoir une dimension supérieure à 0
498
Index_0=** Erreur lors du calcul du lexique : \n
499
Index_1=console : 
500
Index_7=** Echec de l'exportation du Lexique : 
501
WORKSPACE_PURGED=Moteur Statistique nettoyé.
502
Workspace_0=, index 
503
Workspace_1=\t\t\tÉdition : 
504
Workspace_10=corpus :
505
Workspace_2=** Echec du chargement de l'espace de travail :
506
Workspace_26=\t\t\t\tPage : 
507
Workspace_27=\ identifiant de mot 
508
Workspace_28=\t\tScript : 
509
Workspace_29=, type :  
510
Workspace_3=Projet : 
511
Workspace_30=\tCorpus : 
512
Workspace_31=\t\tTexte : 
513
Workspace_4=\tBase : 
514
Workspace_5=\t\tTexte : 
515
Workspace_6=** Echec de la création du fichier d'espace de travail : 
... Ce différentiel a été tronqué car il excède la taille maximale pouvant être affichée.

Formats disponibles : Unified diff