Révision 241
tmp/org.txm.index.core/META-INF/MANIFEST.MF (revision 241) | ||
---|---|---|
3 | 3 |
Bundle-Name: Index Core |
4 | 4 |
Bundle-SymbolicName: org.txm.index.core |
5 | 5 |
Bundle-Version: 1.0.0.qualifier |
6 |
Require-Bundle: org.txm.r;bundle-version="1.0.0",
|
|
6 |
Require-Bundle: org.txm.statsengine.r.core;bundle-version="1.0.0",
|
|
7 | 7 |
org.eclipse.core.runtime, |
8 | 8 |
org.txm.core;bundle-version="0.7.0", |
9 | 9 |
org.txm.utils;bundle-version="1.0.0" |
10 | 10 |
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 |
11 | 11 |
Bundle-ActivationPolicy: lazy |
12 | 12 |
Export-Package: org.txm.index.core.functions, |
13 |
org.txm.index.core.messages, |
|
13 | 14 |
org.txm.macro.r, |
14 | 15 |
org.txm.test |
15 |
Import-Package: org.txm.stat.engine.r |
tmp/org.txm.index.core/src/org/txm/index/core/messages/messages.properties (revision 241) | ||
---|---|---|
1 |
IndexEditor_17=Index\:\n\tPartition {0}\n\tquery {1}\n\tproperties {2}\n\tFmin {3}\n\tFmax {4} |
|
2 |
IndexEditor_18=Index\:\n\tCorpus {0}\n\tquery {1}\n\tproperties {2}\n\tFmin {3}\n\tFmax {4} |
|
1 |
|
|
2 |
DetailsFromCorpus = Index:\n\ Corpus {0}\n\ query {1}\n\ properties {2}\n\ Fmin {3}\n\ Fmax {4} |
|
3 |
|
|
4 |
DetailsFromPartition = Index:\n\ Partition {0}\n\ query {1}\n\ properties {2}\n\ Fmin {3}\n\ Fmax {4} |
|
5 |
|
|
6 |
RESULT_TYPE = Index |
tmp/org.txm.index.core/src/org/txm/index/core/messages/IndexCoreMessages.java (revision 241) | ||
---|---|---|
8 | 8 |
private static final String BUNDLE_NAME = "org.txm.index.core.messages.messages"; //$NON-NLS-1$ |
9 | 9 |
|
10 | 10 |
|
11 |
public static String IndexEditor_17;
|
|
12 |
public static String IndexEditor_18;
|
|
11 |
public static String DetailsFromPartition;
|
|
12 |
public static String DetailsFromCorpus;
|
|
13 | 13 |
|
14 |
|
|
15 |
public static String RESULT_TYPE; |
|
14 | 16 |
|
15 | 17 |
|
16 | 18 |
static { |
tmp/org.txm.index.core/src/org/txm/index/core/messages/messages_ru.properties (revision 241) | ||
---|---|---|
1 |
IndexEditor_17=Индекс:\n\tРаспределение {0}\n\tЗапрос {1}\n\tсвойства {2}\n\tFmin {3}\n\tFmax {4} |
|
2 |
IndexEditor_18=Индекс:\n\tКорпус {0}\n\tЗапрос {1}\n\tсвойства {2}\n\tFmin {3}\n\tFmax {4} |
|
1 |
|
|
2 |
DetailsFromCorpus = Индекс:\n\ Корпус {0}\n\ Запрос {1}\n\ свойства {2}\n\ Fmin {3}\n\ Fmax {4} |
|
3 |
|
|
4 |
DetailsFromPartition = Индекс:\n\ Распределение {0}\n\ Запрос {1}\n\ свойства {2}\n\ Fmin {3}\n\ Fmax {4} |
|
5 |
|
|
6 |
RESULT_TYPE = Индекс |
tmp/org.txm.index.core/src/org/txm/index/core/messages/messages_fr.properties (revision 241) | ||
---|---|---|
1 |
IndexEditor_17=Index\:\n\tPartition {0}\n\tRequ\u00EAte {1}\n\tpropriétés {2}\n\tFmin {3}\n\tFmax {4} |
|
2 |
IndexEditor_18=Index\:\n\tCorpus {0}\n\tRequ\u00EAte {1}\n\tpropriétés {2}\n\tFmin {3}\n\tFmax {4} |
|
1 |
|
|
2 |
DetailsFromCorpus = Index:\n\ Corpus {0}\n\ Requête {1}\n\ propriétés {2}\n\ Fmin {3}\n\ Fmax {4} |
|
3 |
|
|
4 |
DetailsFromPartition = Index:\n\ Partition {0}\n\ Requête {1}\n\ propriétés {2}\n\ Fmin {3}\n\ Fmax {4} |
|
5 |
|
|
6 |
RESULT_TYPE = Index |
tmp/org.txm.index.core/src/org/txm/index/core/functions/Index.java (revision 241) | ||
---|---|---|
42 | 42 |
|
43 | 43 |
import org.apache.commons.lang.StringUtils; |
44 | 44 |
import org.eclipse.osgi.util.NLS; |
45 |
import org.txm.Messages; |
|
46 | 45 |
import org.txm.Toolbox; |
46 |
import org.txm.core.messages.TXMCoreMessages; |
|
47 | 47 |
import org.txm.functions.Function; |
48 | 48 |
import org.txm.index.core.messages.IndexCoreMessages; |
49 | 49 |
import org.txm.searchengine.cqp.ICqiClient; |
... | ... | |
59 | 59 |
import org.txm.searchengine.cqp.corpus.query.Match; |
60 | 60 |
import org.txm.searchengine.cqp.corpus.query.Query; |
61 | 61 |
import org.txm.searchengine.cqp.serverException.CqiServerError; |
62 |
import org.txm.stat.engine.r.RWorkspace;
|
|
63 |
import org.txm.stat.engine.r.RWorkspaceException;
|
|
62 |
import org.txm.statsengine.r.core.RWorkspace;
|
|
63 |
import org.txm.statsengine.r.core.RWorkspaceException;
|
|
64 | 64 |
import org.txm.utils.logger.Log; |
65 | 65 |
|
66 | 66 |
// TODO: Auto-generated Javadoc |
... | ... | |
620 | 620 |
try { |
621 | 621 |
toTxt(outfile, 0, lines.size(), encoding, colseparator, txtseparator); |
622 | 622 |
} catch (Exception e) { |
623 |
System.err.println(Messages.Index_7 + Log.toString(e)); |
|
623 |
System.err.println(TXMCoreMessages.Index_7 + Log.toString(e));
|
|
624 | 624 |
return false; |
625 | 625 |
} |
626 | 626 |
return true; |
... | ... | |
728 | 728 |
* @throws IOException Signals that an I/O exception has occurred. |
729 | 729 |
*/ |
730 | 730 |
public void toConsole() throws CqiClientException, IOException { |
731 |
System.out.println(Messages.Index_1 + (lines.size())); |
|
731 |
System.out.println(TXMCoreMessages.Index_1 + (lines.size()));
|
|
732 | 732 |
toConsole(0, lines.size()); |
733 | 733 |
} |
734 | 734 |
|
... | ... | |
1047 | 1047 |
|
1048 | 1048 |
@Override |
1049 | 1049 |
public String getName() { |
1050 |
return "Index: " + this.getSimpleName(); |
|
1050 |
try { |
|
1051 |
return IndexCoreMessages.RESULT_TYPE + ": " + this.parent.getSimpleName() + ": " + this.getSimpleName(); |
|
1052 |
} |
|
1053 |
catch(Exception e) { |
|
1054 |
} |
|
1055 |
return ""; |
|
1051 | 1056 |
} |
1052 | 1057 |
|
1053 | 1058 |
@Override |
1054 | 1059 |
public String getSimpleName() { |
1055 | 1060 |
try { |
1056 |
String name = query.getQueryString() + ":"; //$NON-NLS-1$ |
|
1061 |
String name = query.getQueryString() + ": "; //$NON-NLS-1$
|
|
1057 | 1062 |
for (Property s : props) { |
1058 | 1063 |
name += s + propSeparator; |
1059 | 1064 |
} |
... | ... | |
1073 | 1078 |
Object[] params = new Object[]{this.parent.getSimpleName(), this.getQuery().getQueryString(), this.getProperties(), this.getFmin(), this.getFmax()}; |
1074 | 1079 |
String str; |
1075 | 1080 |
if(this.parent instanceof Partition) { |
1076 |
str = IndexCoreMessages.IndexEditor_17;
|
|
1081 |
str = IndexCoreMessages.DetailsFromPartition;
|
|
1077 | 1082 |
} |
1078 | 1083 |
else { |
1079 |
str = IndexCoreMessages.IndexEditor_18;
|
|
1084 |
str = IndexCoreMessages.DetailsFromCorpus;
|
|
1080 | 1085 |
} |
1081 | 1086 |
return NLS.bind(str, params); |
1082 | 1087 |
} |
... | ... | |
1084 | 1089 |
return ""; |
1085 | 1090 |
} |
1086 | 1091 |
} |
1092 |
|
|
1087 | 1093 |
|
1088 |
// @Override |
|
1089 |
// public boolean delete() { |
|
1090 |
// return getParent().removeResult(this); |
|
1091 |
// } |
|
1092 |
// |
|
1093 |
// ArrayList<Object> results = new ArrayList<Object>(); |
|
1094 |
// @Override |
|
1095 |
// public List<Object> getResults() { |
|
1096 |
// return results; |
|
1097 |
// } |
|
1098 |
// |
|
1099 |
// @Override |
|
1100 |
// public boolean removeResult(Object result) { |
|
1101 |
// return results.remove(result); |
|
1102 |
// } |
|
1103 |
// |
|
1104 |
// @Override |
|
1105 |
// public List<HasResults> getSubHasResults() { |
|
1106 |
// return new ArrayList<HasResults>(); |
|
1107 |
// } |
|
1108 |
// |
|
1109 |
// @Override |
|
1110 |
// public void storeResult(Object result) { |
|
1111 |
// results.add(result); |
|
1112 |
// } |
|
1113 |
|
|
1114 | 1094 |
} |
tmp/org.txm.core/src/java/org/txm/Messages.java (revision 241) | ||
---|---|---|
1 |
package org.txm; |
|
2 |
|
|
3 |
import org.eclipse.osgi.util.NLS; |
|
4 |
import org.txm.core.messages.TXMCoreMessages; |
|
5 |
|
|
6 |
/** |
|
7 |
* The keys of all messages in the Toolbox |
|
8 |
* |
|
9 |
* @author mdecorde |
|
10 |
* |
|
11 |
*/ |
|
12 |
public class Messages extends NLS { |
|
13 |
|
|
14 |
// The Constant BUNDLE_NAME. |
|
15 |
private static final String BUNDLE_NAME = "org.txm.messages"; //$NON-NLS-1$ |
|
16 |
public static String FAILED; |
|
17 |
public static String DONE; |
|
18 |
public static String AbsoluteFrequency_1; |
|
19 |
public static String AbstractCqiClient_2; |
|
20 |
public static String ArrayIndex_0; |
|
21 |
public static String ArrayIndex_1; |
|
22 |
public static String Base_0; |
|
23 |
public static String Base_22; |
|
24 |
public static String Base_3; |
|
25 |
public static String Base_4; |
|
26 |
public static String Base_5; |
|
27 |
public static String Base_6; |
|
28 |
public static String BuildCwbEncodeArgs_0; |
|
29 |
public static String CAH_0; |
|
30 |
public static String CA_0; |
|
31 |
public static String CA_16; |
|
32 |
public static String CA_2; |
|
33 |
public static String CA_4; |
|
34 |
public static String CHAR_VECTOR_ADDED_TO_WORKSPACE; |
|
35 |
public static String CONNECTED_TO_STATS_MODULE; |
|
36 |
public static String CONNECTING_CQI_CLIENT; |
|
37 |
public static String CONNECTION_OK; |
|
38 |
public static String CQI_CLIENT_CONNECTED; |
|
39 |
public static String CREATING_PART; |
|
40 |
public static String CREATING_SUBCORPUS; |
|
41 |
public static String CatalogManager_0; |
|
42 |
public static String CatalogManager_1; |
|
43 |
public static String Catalog_0; |
|
44 |
public static String CompositeComparator_0; |
|
45 |
public static String Concordance_0; |
|
46 |
public static String Concordance_1; |
|
47 |
public static String Concordance_12; |
|
48 |
public static String Concordance_13; |
|
49 |
public static String Concordance_14; |
|
50 |
public static String Concordance_15; |
|
51 |
public static String Concordance_16; |
|
52 |
public static String Concordance_17; |
|
53 |
public static String Concordance_18; |
|
54 |
public static String Concordance_19; |
|
55 |
public static String Concordance_2; |
|
56 |
public static String Concordance_3; |
|
57 |
public static String Concordance_4; |
|
58 |
public static String Concordance_5; |
|
59 |
public static String Concordance_6; |
|
60 |
public static String Concordance_7; |
|
61 |
public static String Concordance_8; |
|
62 |
public static String Contrasts_0; |
|
63 |
public static String Convert5To6_1; |
|
64 |
public static String Convert5To6_10; |
|
65 |
public static String Convert5To6_11; |
|
66 |
public static String Convert5To6_12; |
|
67 |
public static String Convert5To6_15; |
|
68 |
public static String Convert5To6_19; |
|
69 |
public static String Convert5To6_30; |
|
70 |
public static String Convert5To6_46; |
|
71 |
public static String Convert5To6_6; |
|
72 |
public static String Convert5To6_7; |
|
73 |
public static String Convert5To6_8; |
|
74 |
public static String Convert5To6_9; |
|
75 |
public static String Cooccurrence_0; |
|
76 |
public static String Cooccurrence_1; |
|
77 |
public static String Cooccurrence_10; |
|
78 |
public static String Cooccurrence_102; |
|
79 |
public static String Cooccurrence_103; |
|
80 |
public static String Cooccurrence_105; |
|
81 |
public static String Cooccurrence_106; |
|
82 |
public static String Cooccurrence_107; |
|
83 |
public static String Cooccurrence_11; |
|
84 |
public static String Cooccurrence_12; |
|
85 |
public static String Cooccurrence_13; |
|
86 |
public static String Cooccurrence_14; |
|
87 |
public static String Cooccurrence_15; |
|
88 |
public static String Cooccurrence_16; |
|
89 |
public static String Cooccurrence_2; |
|
90 |
public static String Cooccurrence_22; |
|
91 |
public static String Cooccurrence_23; |
|
92 |
public static String Cooccurrence_3; |
|
93 |
public static String Cooccurrence_4; |
|
94 |
public static String Cooccurrence_5; |
|
95 |
public static String Cooccurrence_6; |
|
96 |
public static String Cooccurrence_7; |
|
97 |
public static String Cooccurrence_8; |
|
98 |
public static String Cooccurrence_9; |
|
99 |
public static String CorpusManager_0; |
|
100 |
public static String CorpusManager_1; |
|
101 |
public static String Corpus_12; |
|
102 |
public static String Corpus_13; |
|
103 |
public static String Corpus_14; |
|
104 |
public static String Corpus_15; |
|
105 |
public static String Corpus_19; |
|
106 |
public static String Corpus_2; |
|
107 |
public static String Corpus_3; |
|
108 |
public static String Corpus_4; |
|
109 |
public static String Corpus_5; |
|
110 |
public static String Corpus_6; |
|
111 |
public static String Corpus_7; |
|
112 |
public static String Corpus_8; |
|
113 |
public static String CqiClient_0; |
|
114 |
public static String CqiClient_1; |
|
115 |
public static String CqiClient_3; |
|
116 |
public static String CqiClient_32; |
|
117 |
public static String CqiClient_33; |
|
118 |
public static String CqiClient_34; |
|
119 |
public static String CwbEncode_0; |
|
120 |
public static String CwbEncode_21; |
|
121 |
public static String CwbEncode_23; |
|
122 |
public static String CwbEncode_25; |
|
123 |
public static String CwbEncode_27; |
|
124 |
public static String CwbEncode_29; |
|
125 |
public static String CwbEncode_32; |
|
126 |
public static String CwbProcess_1; |
|
127 |
public static String CwbProcess_3; |
|
128 |
public static String CwbProcess_4; |
|
129 |
public static String CwbProcess_5; |
|
130 |
public static String DOUBLE_VECTOR_ADDED_TO_WORKSPACE; |
|
131 |
public static String DROP_PARTITION; |
|
132 |
public static String DROP_QUERYRESULT; |
|
133 |
public static String DROP_SUBCORPUS; |
|
134 |
public static String Diagnostic_0; |
|
135 |
public static String Diagnostic_1; |
|
136 |
public static String Diagnostic_10; |
|
137 |
public static String Diagnostic_11; |
|
138 |
public static String Diagnostic_12; |
|
139 |
public static String Diagnostic_13; |
|
140 |
public static String Diagnostic_14; |
|
141 |
public static String Diagnostic_15; |
|
142 |
public static String Diagnostic_16; |
|
143 |
public static String Diagnostic_17; |
|
144 |
public static String Diagnostic_18; |
|
145 |
public static String Diagnostic_19; |
|
146 |
public static String Diagnostic_2; |
|
147 |
public static String Diagnostic_20; |
|
148 |
public static String Diagnostic_22; |
|
149 |
public static String Diagnostic_23; |
|
150 |
public static String Diagnostic_26; |
|
151 |
public static String Diagnostic_3; |
|
152 |
public static String Diagnostic_4; |
|
153 |
public static String Diagnostic_40; |
|
154 |
public static String Diagnostic_41; |
|
155 |
public static String Diagnostic_43; |
|
156 |
public static String Diagnostic_49; |
|
157 |
public static String Diagnostic_5; |
|
158 |
public static String Diagnostic_6; |
|
159 |
public static String Diagnostic_7; |
|
160 |
public static String Diagnostic_8; |
|
161 |
public static String Diagnostic_9; |
|
162 |
public static String END_SUBCORPUS_LEXICON; |
|
163 |
public static String END_SUBCORPUS_SIZE; |
|
164 |
public static String ERROR_EXTRACT_ITEM; |
|
165 |
public static String EVALUATED_EXPRESSION; |
|
166 |
public static String ExecTimer_0; |
|
167 |
public static String ExecTimer_1; |
|
168 |
public static String ExecTimer_2; |
|
169 |
public static String ExecTimer_3; |
|
170 |
public static String FAILED_INIT_CONNECTION_R; |
|
171 |
public static String FactoMineRCA_2; |
|
172 |
public static String FactoMineRCA_3; |
|
173 |
public static String FactoMineRCA_4; |
|
174 |
public static String FactoMineRCA_5; |
|
175 |
public static String Factor_0; |
|
176 |
public static String FileCopy_0; |
|
177 |
public static String FileCopy_2; |
|
178 |
public static String FileCopy_4; |
|
179 |
public static String FilterManager_0; |
|
180 |
public static String FilterManager_1; |
|
181 |
public static String Filter_7; |
|
182 |
public static String Focus_1; |
|
183 |
public static String GroovyImportScriptRunner_0; |
|
184 |
public static String GroovyImportScriptRunner_1; |
|
185 |
public static String GroovyImportScriptRunner_3; |
|
186 |
public static String INT_VECTOR_ADDED_TO_WORKSPACE; |
|
187 |
public static String InternalView_3; |
|
188 |
public static String InternalView_6; |
|
189 |
public static String InternalView_7; |
|
190 |
public static String LEXICON; |
|
191 |
public static String LEXICON_ADDED; |
|
192 |
public static String LIBBRARY_NOT_LOADED; |
|
193 |
public static String LS_0; |
|
194 |
public static String LS_1; |
|
195 |
public static String LexicalTableImpl_0; |
|
196 |
public static String LexicalTableImpl_1; |
|
197 |
public static String LexicalTableImpl_10; |
|
198 |
public static String LexicalTableImpl_12; |
|
199 |
public static String LexicalTableImpl_13; |
|
200 |
public static String LexicalTableImpl_3; |
|
201 |
public static String LexicalTableImpl_5; |
|
202 |
public static String LexicalTableImpl_8; |
|
203 |
public static String LexicalTableImpl_9; |
|
204 |
public static String LexicographicKeywordComparator_0; |
|
205 |
public static String LexicographicLeftContextComparator_0; |
|
206 |
public static String LexicographicRightContextComparator_0; |
|
207 |
public static String Lexicon_0; |
|
208 |
public static String Lexicon_3; |
|
209 |
public static String Localizer_0; |
|
210 |
public static String Localizer_1; |
|
211 |
public static String Log_3; |
|
212 |
public static String Log_5; |
|
213 |
public static String Log_8; |
|
214 |
public static String MATRIX_ADDED_TO_WORKSPACE; |
|
215 |
public static String MainCorpus_0; |
|
216 |
public static String MainCorpus_1; |
|
217 |
public static String MainCorpus_2; |
|
218 |
public static String MatrixImpl_0; |
|
219 |
public static String MatrixImpl_1; |
|
220 |
public static String MatrixImpl_10; |
|
221 |
public static String MatrixImpl_11; |
|
222 |
public static String MatrixImpl_13; |
|
223 |
public static String MatrixImpl_14; |
|
224 |
public static String MatrixImpl_19; |
|
225 |
public static String MatrixImpl_2; |
|
226 |
public static String MatrixImpl_20; |
|
227 |
public static String MatrixImpl_21; |
|
228 |
public static String MatrixImpl_22; |
|
229 |
public static String MatrixImpl_23; |
|
230 |
public static String MatrixImpl_28; |
|
231 |
public static String MatrixImpl_29; |
|
232 |
public static String MatrixImpl_4; |
|
233 |
public static String MatrixImpl_5; |
|
234 |
public static String MatrixImpl_6; |
|
235 |
public static String MatrixImpl_67; |
|
236 |
public static String MatrixImpl_7; |
|
237 |
public static String MatrixImpl_73; |
|
238 |
public static String MatrixImpl_79; |
|
239 |
public static String MatrixImpl_88; |
|
240 |
public static String MemCqiClient_0; |
|
241 |
public static String MemCqiClient_1; |
|
242 |
public static String MemCqiClient_10; |
|
243 |
public static String MemCqiClient_11; |
|
244 |
public static String MemCqiClient_2; |
|
245 |
public static String MemCqiClient_3; |
|
246 |
public static String MemCqiClient_5; |
|
247 |
public static String MemCqiClient_7; |
|
248 |
public static String MemCqiClient_9; |
|
249 |
public static String MessageBox_0; |
|
250 |
public static String MessageBox_1; |
|
251 |
public static String MessageBox_2; |
|
252 |
public static String NEW_PARTION; |
|
253 |
public static String NOT_FOUND_IN_R; |
|
254 |
public static String NetCqiClient_1; |
|
255 |
public static String NetCqiClient_3; |
|
256 |
public static String NetCqiClient_5; |
|
257 |
public static String NetCqiClient_97; |
|
258 |
public static String NetCqiServer_0; |
|
259 |
public static String NetCqiServer_1; |
|
260 |
public static String NullComparator_0; |
|
261 |
public static String PACKAGE_LOADED; |
|
262 |
public static String PARTITION_CREATED; |
|
263 |
public static String PART_CREATED; |
|
264 |
public static String Page_3; |
|
265 |
public static String Pair_0; |
|
266 |
public static String Pair_1; |
|
267 |
public static String PartitionFocus_1; |
|
268 |
public static String PartitionFocus_2; |
|
269 |
public static String PartitionFocus_3; |
|
270 |
public static String PartitionFocus_4; |
|
271 |
public static String Partition_1; |
|
272 |
public static String Partition_18; |
|
273 |
public static String Partition_2; |
|
274 |
public static String Partition_21; |
|
275 |
public static String Partition_4; |
|
276 |
public static String Partition_9; |
|
277 |
public static String PatchCwbRegistry_0; |
|
278 |
public static String PatchCwbRegistry_1; |
|
279 |
public static String PatchCwbRegistry_13; |
|
280 |
public static String PatchCwbRegistry_16; |
|
281 |
public static String PatchCwbRegistry_2; |
|
282 |
public static String PatchCwbRegistry_23; |
|
283 |
public static String PatchCwbRegistry_27; |
|
284 |
public static String PatchCwbRegistry_28; |
|
285 |
public static String PatchCwbRegistry_29; |
|
286 |
public static String PatchCwbRegistry_3; |
|
287 |
public static String PatchCwbRegistry_34; |
|
288 |
public static String PatchCwbRegistry_35; |
|
289 |
public static String PatchCwbRegistry_4; |
|
290 |
public static String PatchCwbRegistry_5; |
|
291 |
public static String Project_0; |
|
292 |
public static String Project_1; |
|
293 |
public static String Project_10; |
|
294 |
public static String Project_11; |
|
295 |
public static String Project_12; |
|
296 |
public static String Project_13; |
|
297 |
public static String Project_14; |
|
298 |
public static String Project_15; |
|
299 |
public static String Project_16; |
|
300 |
public static String Project_17; |
|
301 |
public static String Project_18; |
|
302 |
public static String Project_2; |
|
303 |
public static String Project_25; |
|
304 |
public static String Project_26; |
|
305 |
public static String Project_27; |
|
306 |
public static String Project_28; |
|
307 |
public static String Project_3; |
|
308 |
public static String Project_31; |
|
309 |
public static String Project_4; |
|
310 |
public static String Project_5; |
|
311 |
public static String Project_6; |
|
312 |
public static String Project_7; |
|
313 |
public static String Project_8; |
|
314 |
public static String Project_9; |
|
315 |
public static String PropertiesReferenceComparator_0; |
|
316 |
public static String QUERY; |
|
317 |
public static String QUERYING_PARTITION; |
|
318 |
public static String QuantitativeDataStructureImpl_0; |
|
319 |
public static String QuantitativeDataStructureImpl_1; |
|
320 |
public static String QuantitativeDataStructureImpl_2; |
|
321 |
public static String QueryIndex_2; |
|
322 |
public static String QueryIndex_3; |
|
323 |
public static String QueryResult_0; |
|
324 |
public static String READING_2D_INT_ARRAY_FROM_CQI_SERVER; |
|
325 |
public static String READING_BOOLEAN_FROM_CQI_SERVER; |
|
326 |
public static String READING_HEADER_FROM_CQI_SERVER; |
|
327 |
public static String READING_INTEGER_FROM_CQI_SERVER; |
|
328 |
public static String READING_INT_ARRAY_FROM_CQI_SERVER; |
|
329 |
public static String READING_STRING_ARRAY_FROM_CQI_SERVER; |
|
330 |
public static String READING_STRING_FROM_CQI_SERVER; |
|
331 |
public static String READ_2D_INT_ARRAY_FROM_CQI_SERVER; |
|
332 |
public static String READ_BOOLEAN_FROM_CQI_SERVER; |
|
333 |
public static String READ_BYTE_FROM_CQI_SERVER; |
|
334 |
public static String READ_HEADER_FROM_CQI_SERVER; |
|
335 |
public static String READ_INTEGER_FROM_CQI_SERVER; |
|
336 |
public static String READ_INT_ARRAY_FROM_CQI_SERVER; |
|
337 |
public static String READ_STRING_ARRAY_FROM_CQI_SERVER; |
|
338 |
public static String READ_STRING_FROM_CQI_SERVER; |
|
339 |
public static String REQUESTED_OBJECT; |
|
340 |
public static String RETURNING_CACHED_LEXICON; |
|
341 |
public static String RETURN_FROM_QUERY; |
|
342 |
public static String RException_0; |
|
343 |
public static String RException_1; |
|
344 |
public static String RException_2; |
|
345 |
public static String RSERVE_ACTIVATED; |
|
346 |
public static String RSERVE_PATH_NOT_SET_ERROR; |
|
347 |
public static String RSERVE_PATH_SET_ERROR; |
|
348 |
public static String RWorkspace_0; |
|
349 |
public static String RWorkspace_1; |
|
350 |
public static String RWorkspace_10; |
|
351 |
public static String RWorkspace_11; |
|
352 |
public static String RWorkspace_2; |
|
353 |
public static String RWorkspace_21; |
|
354 |
public static String RWorkspace_3; |
|
355 |
public static String RWorkspace_4; |
|
356 |
public static String RWorkspace_5; |
|
357 |
public static String RWorkspace_6; |
|
358 |
public static String RWorkspace_7; |
|
359 |
public static String RWorkspace_8; |
|
360 |
public static String R_EXPR; |
|
361 |
public static String R_READ_CONSOLE; |
|
362 |
public static String R_SAVE_HISTORY; |
|
363 |
public static String R_SHOW_MESSAGE; |
|
364 |
public static String R_WRITE_CONSOLE; |
|
365 |
public static String ReferencePattern_3; |
|
366 |
public static String Referencer_1; |
|
367 |
public static String Referencer_2; |
|
368 |
public static String RelativeFrequency_3; |
|
369 |
public static String Progression_1; |
|
370 |
public static String Progression_10; |
|
371 |
public static String Progression_11; |
|
372 |
public static String Progression_12; |
|
373 |
public static String Progression_13; |
|
374 |
public static String Progression_14; |
|
375 |
public static String Progression_2; |
|
376 |
public static String Progression_3; |
|
377 |
public static String Progression_9; |
|
378 |
public static String SERVER_STARTED; |
|
379 |
public static String SERVER_STOPED; |
|
380 |
public static String STARTING_SERVER; |
|
381 |
public static String STOPING_SERVER; |
|
382 |
public static String SUBCORPUS_CREATED; |
|
383 |
public static String SUBCORPUS_LEXICON; |
|
384 |
public static String SUBCORPUS_SIZE; |
|
385 |
public static String Selection_0; |
|
386 |
public static String Selection_1; |
|
387 |
public static String Selection_2; |
|
388 |
public static String Selection_26; |
|
389 |
public static String Selection_3; |
|
390 |
public static String Selection_4; |
|
391 |
public static String Selection_5; |
|
392 |
public static String Selection_6; |
|
393 |
public static String Selection_7; |
|
394 |
public static String Selection_8; |
|
395 |
public static String Selection_9; |
|
396 |
public static String Sh_4; |
|
397 |
public static String SpecificitesResult_0; |
|
398 |
public static String SpecificitesResult_1; |
|
399 |
public static String SpecificitesResult_10; |
|
400 |
public static String SpecificitesResult_2; |
|
401 |
public static String SpecificitesResult_3; |
|
402 |
public static String SpecificitesResult_4; |
|
403 |
public static String SpecificitesResult_5; |
|
404 |
public static String SpecificitesResult_6; |
|
405 |
public static String SpecificitesResult_7; |
|
406 |
public static String SpecificitesResult_8; |
|
407 |
public static String Specificites_0; |
|
408 |
public static String Specificites_1; |
|
409 |
public static String Specificites_2; |
|
410 |
public static String StartRserve_0; |
|
411 |
public static String StartRserve_2; |
|
412 |
public static String StartRserve_21; |
|
413 |
public static String StartRserve_22; |
|
414 |
public static String StartRserve_28; |
|
415 |
public static String StartRserve_29; |
|
416 |
public static String StartRserve_3; |
|
417 |
public static String StartRserve_4; |
|
418 |
public static String StartRserve_6; |
|
419 |
public static String StreamGobbler_0; |
|
420 |
public static String StreamGobbler_1; |
|
421 |
public static String StreamGobbler_2; |
|
422 |
public static String StreamGobbler_3; |
|
423 |
public static String StructuralUnitProperty_0; |
|
424 |
public static String Subcorpus_1; |
|
425 |
public static String Subcorpus_2; |
|
426 |
public static String Subcorpus_3; |
|
427 |
public static String Summary_13; |
|
428 |
public static String Summary_14; |
|
429 |
public static String Summary_15; |
|
430 |
public static String Summary_16; |
|
431 |
public static String Summary_17; |
|
432 |
public static String TSCmd_30; |
|
433 |
public static String TSCmd_31; |
|
434 |
public static String TSCorpusManager_0; |
|
435 |
public static String TSCorpusManager_1; |
|
436 |
public static String TSCorpus_0; |
|
437 |
public static String TSResult_0; |
|
438 |
public static String TSResult_13; |
|
439 |
public static String TSResult_14; |
|
440 |
public static String TSResult_18; |
|
441 |
public static String TSResult_2; |
|
442 |
public static String TSResult_7; |
|
443 |
public static String TSResult_8; |
|
444 |
public static String TigerXmlIndexing_2; |
|
445 |
public static String TigerXmlIndexing_3; |
|
446 |
public static String TigerXmlIndexing_6; |
|
447 |
public static String TigerXmlIndexing_7; |
|
448 |
public static String Toolbox_0; |
|
449 |
public static String Toolbox_1; |
|
450 |
public static String Toolbox_10; |
|
451 |
public static String Toolbox_11; |
|
452 |
public static String Toolbox_12; |
|
453 |
public static String Toolbox_14; |
|
454 |
public static String Toolbox_15; |
|
455 |
public static String Toolbox_16; |
|
456 |
public static String Toolbox_17; |
|
457 |
public static String Toolbox_18; |
|
458 |
public static String Toolbox_2; |
|
459 |
public static String Toolbox_21; |
|
460 |
public static String Toolbox_22; |
|
461 |
public static String Toolbox_23; |
|
462 |
public static String Toolbox_24; |
|
463 |
public static String Toolbox_25; |
|
464 |
public static String Toolbox_26; |
|
465 |
public static String Toolbox_27; |
|
466 |
public static String Toolbox_28; |
|
467 |
public static String Toolbox_29; |
|
468 |
public static String Toolbox_3; |
|
469 |
public static String Toolbox_30; |
|
470 |
public static String Toolbox_31; |
|
471 |
public static String Toolbox_33; |
|
472 |
public static String Toolbox_34; |
|
473 |
public static String Toolbox_35; |
|
474 |
public static String Toolbox_37; |
|
475 |
public static String Toolbox_38; |
|
476 |
public static String Toolbox_39; |
|
477 |
public static String Toolbox_4; |
|
478 |
public static String Toolbox_40; |
|
479 |
public static String Toolbox_43; |
|
480 |
public static String Toolbox_45; |
|
481 |
public static String Toolbox_47; |
|
482 |
public static String Toolbox_5; |
|
483 |
public static String Toolbox_7; |
|
484 |
public static String Toolbox_8; |
|
485 |
public static String Toolbox_9; |
|
486 |
public static String Toolbox_connected_to_corpus_sever; |
|
487 |
public static String Toolbox_wait_failed; |
|
488 |
public static String Toolbox_workspace_init; |
|
489 |
public static String Toolbox_workspace_init_failed; |
|
490 |
public static String Toolbox_wrong_port; |
|
491 |
public static String TxmObject_0; |
|
492 |
public static String TxmObject_1; |
|
493 |
public static String TxmObject_2; |
|
494 |
public static String TxmRenderer_1; |
|
495 |
public static String TxmRenderer_5; |
|
496 |
public static String TxmRenderer_6; |
|
497 |
public static String TxmRenderer_7; |
|
498 |
public static String VARIABLE_REMOVED; |
|
499 |
public static String ValidateXml_0; |
|
500 |
public static String ValidateXml_1; |
|
501 |
public static String ValidateXml_2; |
|
502 |
public static String ValidateXml_3; |
|
503 |
public static String VectorizeArray_0; |
|
504 |
public static String VectorizeArray_1; |
|
505 |
public static String VectorizeArray_10; |
|
506 |
public static String VectorizeArray_11; |
|
507 |
public static String VectorizeArray_3; |
|
508 |
public static String VectorizeArray_4; |
|
509 |
public static String VectorizeArray_5; |
|
510 |
public static String VectorizeArray_7; |
|
511 |
public static String VectorizeArray_8; |
|
512 |
public static String VectorizeArray_9; |
|
513 |
public static String Index_0; |
|
514 |
public static String Index_1; |
|
515 |
public static String Index_7; |
|
516 |
public static String WORKSPACE_PURGED; |
|
517 |
public static String Workspace_0; |
|
518 |
public static String Workspace_1; |
|
519 |
public static String Workspace_10; |
|
520 |
public static String Workspace_2; |
|
521 |
public static String Workspace_26; |
|
522 |
public static String Workspace_27; |
|
523 |
public static String Workspace_28; |
|
524 |
public static String Workspace_29; |
|
525 |
public static String Workspace_3; |
|
526 |
public static String Workspace_30; |
|
527 |
public static String Workspace_31; |
|
528 |
public static String Workspace_4; |
|
529 |
public static String Workspace_5; |
|
530 |
public static String Workspace_6; |
|
531 |
public static String Workspace_7; |
|
532 |
public static String Workspace_8; |
|
533 |
|
|
534 |
static { |
|
535 |
// initialize resource bundle |
|
536 |
TXMCoreMessages.initializeMessages(BUNDLE_NAME, Messages.class); |
|
537 |
//NLS.initializeMessages(BUNDLE_NAME, Messages.class); |
|
538 |
} |
|
539 |
|
|
540 |
private Messages() { |
|
541 |
} |
|
542 |
} |
|
543 |
|
tmp/org.txm.core/src/java/org/txm/messages_fr.properties (revision 241) | ||
---|---|---|
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 : |
|
516 |
Workspace_7=\ pages |
|
517 |
Workspace_8=Le fichier XML d'espace de travail est mal formé. Un nouveau doit être regénéré... |
tmp/org.txm.core/src/java/org/txm/messages.properties (revision 241) | ||
---|---|---|
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 |
Formats disponibles : Unified diff