Révision 1020
| tmp/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/corpus/Partition.java (revision 1020) | ||
|---|---|---|
| 177 | 177 |
this.name = pName; |
| 178 | 178 |
} |
| 179 | 179 |
|
| 180 |
Log.info(NLS.bind(TXMCoreMessages.NEW_PARTION, this.getParent(), this.name));
|
|
| 180 |
Log.info(NLS.bind(TXMCoreMessages.info_creatingNewPartition, this.getParent(), this.name));
|
|
| 181 | 181 |
long start = System.currentTimeMillis(); |
| 182 | 182 |
for (int i = 0; i < pQueries.size(); i++) {
|
| 183 | 183 |
String queryS = pQueries.get(i); |
| ... | ... | |
| 194 | 194 |
Part part = createPart(partitionName, partName, queryS); |
| 195 | 195 |
} |
| 196 | 196 |
long end = System.currentTimeMillis(); |
| 197 |
Log.info(NLS.bind(TXMCoreMessages.PARTITION_CREATED, this.name, (end - start)));
|
|
| 197 |
Log.info(NLS.bind(TXMCoreMessages.info_partitionCreatedInXMs, this.name, (end - start)));
|
|
| 198 | 198 |
|
| 199 | 199 |
return pQueries.size() > 0; |
| 200 | 200 |
} |
| ... | ... | |
| 291 | 291 |
protected boolean _compute() throws Exception {
|
| 292 | 292 |
|
| 293 | 293 |
name = null; |
| 294 |
Log.finest(NLS.bind(TXMCoreMessages.NEW_PARTION, this.getParent(), this.name));
|
|
| 294 |
Log.finest(NLS.bind(TXMCoreMessages.info_creatingNewPartition, this.getParent(), this.name));
|
|
| 295 | 295 |
|
| 296 | 296 |
if (pProperty != null) {
|
| 297 | 297 |
_compute_with_property(); |
| ... | ... | |
| 412 | 412 |
} |
| 413 | 413 |
} |
| 414 | 414 |
long end = System.currentTimeMillis(); |
| 415 |
Log.finest(NLS.bind(TXMCoreMessages.PART_CREATED, partitionName + "_" + partName, (end - start))); //$NON-NLS-1
|
|
| 415 |
Log.finest(NLS.bind(TXMCoreMessages.info_partCreatedInXMs, partitionName + "_" + partName, (end - start))); //$NON-NLS-1
|
|
| 416 | 416 |
|
| 417 | 417 |
return part; |
| 418 | 418 |
} |
| tmp/org.txm.index.rcp/src/org/txm/index/rcp/editors/IndexEditor.java (revision 1020) | ||
|---|---|---|
| 255 | 255 |
fMinSpinner.addKeyListener(computeKeyListener); |
| 256 | 256 |
|
| 257 | 257 |
Label lFmax = new Label(filtercontrols, SWT.NONE); |
| 258 |
lFmax.setText(TXMCoreMessages.FMAX_1);
|
|
| 258 |
lFmax.setText(TXMCoreMessages.common_fMax);
|
|
| 259 | 259 |
lFmax.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false)); |
| 260 | 260 |
|
| 261 | 261 |
fMaxSpinner = new Spinner(filtercontrols, SWT.BORDER); |
| tmp/org.txm.core/src/java/org/txm/Toolbox.java (revision 1020) | ||
|---|---|---|
| 292 | 292 |
Class<?> cl = bundle.loadClass(className); |
| 293 | 293 |
Constructor<?> cons = cl.getConstructor(String.class); |
| 294 | 294 |
TXMResult result = (TXMResult) cons.newInstance(nodeQualifier); |
| 295 |
result.setUserPersistable(true); |
|
| 296 |
|
|
| 295 |
// not an internal persistence (eg. corpus or partition) |
|
| 296 |
if(!result.isPersistable()) {
|
|
| 297 |
result.setUserPersistable(true); |
|
| 298 |
} |
|
| 297 | 299 |
} |
| 298 | 300 |
catch (Exception e) {
|
| 299 | 301 |
// TODO Auto-generated catch block |
| tmp/org.txm.core/src/java/org/txm/core/messages/TXMCoreMessages.java (revision 1020) | ||
|---|---|---|
| 16 | 16 |
|
| 17 | 17 |
private static final String BUNDLE_NAME = "org.txm.core.messages.messages"; //$NON-NLS-1$ |
| 18 | 18 |
|
| 19 |
|
|
| 19 | 20 |
public static String common_cols; |
| 20 | 21 |
public static String common_delete; |
| 21 | 22 |
public static String common_description; |
| 22 | 23 |
public static String common_done; |
| 24 |
public static String common_fMax; |
|
| 23 | 25 |
public static String common_fMin; |
| 26 |
public static String common_frequency; |
|
| 24 | 27 |
public static String common_lowestFrequency; |
| 25 | 28 |
public static String common_mode; |
| 26 | 29 |
public static String common_numberOfLines; |
| 27 | 30 |
public static String common_ok; |
| 28 |
|
|
| 29 | 31 |
public static String common_pleaseWait; |
| 30 | 32 |
public static String common_properties; |
| 31 | 33 |
public static String common_property; |
| 32 | 34 |
public static String common_queries; |
| 33 | 35 |
public static String common_query; |
| 36 |
public static String common_reference; |
|
| 34 | 37 |
public static String common_rows; |
| 35 |
public static String common_structure; |
|
| 36 | 38 |
public static String common_structuralUnit; |
| 39 |
public static String common_structure; |
|
| 37 | 40 |
public static String common_units; |
| 38 |
public static String common_frequency; |
|
| 39 | 41 |
|
| 40 |
public static String error_error; |
|
| 41 | 42 |
public static String error_error2; |
| 43 |
public static String error_error; |
|
| 42 | 44 |
|
| 45 |
public static String info_deletingPartition; |
|
| 46 |
public static String info_partitionCreatedInXMs; |
|
| 47 |
|
|
| 48 |
|
|
| 43 | 49 |
public static String ApplicationWorkbenchAdvisor_13; |
| 44 | 50 |
public static String ApplicationWorkbenchAdvisor_14; |
| 45 | 51 |
public static String ApplicationWorkbenchAdvisor_15; |
| 46 | 52 |
public static String ApplicationWorkbenchAdvisor_39; |
| 47 | 53 |
public static String ApplicationWorkbenchAdvisor_40; |
| 48 | 54 |
public static String ApplicationWorkbenchAdvisor_6; |
| 49 |
public static String FMAX_1; |
|
| 50 | 55 |
public static String FMAX_2; |
| 51 | 56 |
public static String FMIN_2; |
| 52 | 57 |
public static String T; |
| ... | ... | |
| 54 | 59 |
public static String VMAX_1; |
| 55 | 60 |
|
| 56 | 61 |
|
| 57 |
|
|
| 58 | 62 |
public static String AbsoluteFrequency_1; |
| 59 | 63 |
public static String AbstractCqiClient_2; |
| 60 | 64 |
public static String Base_0; |
| ... | ... | |
| 64 | 68 |
public static String Base_5; |
| 65 | 69 |
public static String Base_6; |
| 66 | 70 |
public static String BuildCwbEncodeArgs_0; |
| 67 |
public static String CONNECTING_CQI_CLIENT; |
|
| 68 |
public static String CQI_CLIENT_CONNECTED; |
|
| 69 |
public static String CREATING_PART; |
|
| 70 |
public static String CREATING_SUBCORPUS; |
|
| 71 |
public static String Catalog_0; |
|
| 71 | 72 |
public static String CatalogManager_0; |
| 72 | 73 |
public static String CatalogManager_1; |
| 73 |
public static String Catalog_0;
|
|
| 74 |
public static String CONNECTING_CQI_CLIENT;
|
|
| 74 | 75 |
public static String Contrasts_0; |
| 75 |
public static String Convert5To6_1; |
|
| 76 | 76 |
public static String Convert5To6_10; |
| 77 | 77 |
public static String Convert5To6_11; |
| 78 | 78 |
public static String Convert5To6_12; |
| 79 | 79 |
public static String Convert5To6_15; |
| 80 | 80 |
public static String Convert5To6_19; |
| 81 |
public static String Convert5To6_1; |
|
| 81 | 82 |
public static String Convert5To6_30; |
| 82 | 83 |
public static String Convert5To6_46; |
| 83 | 84 |
public static String Convert5To6_6; |
| 84 | 85 |
public static String Convert5To6_7; |
| 85 | 86 |
public static String Convert5To6_8; |
| 86 | 87 |
public static String Convert5To6_9; |
| 87 |
public static String CorpusManager_0; |
|
| 88 |
public static String CorpusManager_1; |
|
| 89 | 88 |
public static String Corpus_12; |
| 90 | 89 |
public static String Corpus_13; |
| 91 | 90 |
public static String Corpus_14; |
| ... | ... | |
| 96 | 95 |
public static String Corpus_4; |
| 97 | 96 |
public static String Corpus_5; |
| 98 | 97 |
public static String Corpus_8; |
| 98 |
public static String CorpusManager_0; |
|
| 99 |
public static String CorpusManager_1; |
|
| 100 |
public static String CQI_CLIENT_CONNECTED; |
|
| 99 | 101 |
public static String CqiClient_0; |
| 100 | 102 |
public static String CqiClient_32; |
| 101 | 103 |
public static String CqiClient_33; |
| 104 |
public static String CREATING_PART; |
|
| 105 |
public static String CREATING_SUBCORPUS; |
|
| 102 | 106 |
public static String CwbEncode_0; |
| 103 | 107 |
public static String CwbEncode_21; |
| 104 | 108 |
public static String CwbEncode_23; |
| ... | ... | |
| 110 | 114 |
public static String CwbProcess_3; |
| 111 | 115 |
public static String CwbProcess_4; |
| 112 | 116 |
public static String CwbProcess_5; |
| 113 |
public static String info_deletingPartition; |
|
| 114 | 117 |
public static String DROP_QUERYRESULT; |
| 115 | 118 |
public static String DROP_SUBCORPUS; |
| 116 | 119 |
public static String END_SUBCORPUS_SIZE; |
| 120 |
public static String Error_CONNECTION_FAILED; |
|
| 121 |
public static String Filter_7; |
|
| 117 | 122 |
public static String FilterManager_0; |
| 118 | 123 |
public static String FilterManager_1; |
| 119 |
public static String Filter_7; |
|
| 120 | 124 |
public static String Focus_1; |
| 121 | 125 |
public static String GroovyImportScriptRunner_0; |
| 122 | 126 |
public static String GroovyImportScriptRunner_1; |
| 123 | 127 |
public static String GroovyImportScriptRunner_3; |
| 124 |
|
|
| 125 | 128 |
public static String LEXICON; |
| 126 | 129 |
public static String MainCorpus_0; |
| 127 | 130 |
public static String MainCorpus_2; |
| 128 | 131 |
public static String MemCqiClient_0; |
| 129 |
public static String MemCqiClient_1; |
|
| 130 | 132 |
public static String MemCqiClient_10; |
| 131 | 133 |
public static String MemCqiClient_11; |
| 134 |
public static String MemCqiClient_1; |
|
| 132 | 135 |
public static String MemCqiClient_2; |
| 133 | 136 |
public static String MemCqiClient_3; |
| 134 | 137 |
public static String MemCqiClient_5; |
| 135 | 138 |
public static String MemCqiClient_7; |
| 136 | 139 |
public static String MemCqiClient_9; |
| 137 |
public static String NEW_PARTION; |
|
| 138 | 140 |
public static String NetCqiClient_1; |
| 139 | 141 |
public static String NetCqiClient_3; |
| 140 | 142 |
public static String NetCqiClient_5; |
| 141 | 143 |
public static String NetCqiClient_97; |
| 142 | 144 |
public static String NetCqiServer_0; |
| 143 | 145 |
public static String NetCqiServer_1; |
| 144 |
public static String PARTITION_CREATED; |
|
| 145 |
public static String PART_CREATED; |
|
| 146 |
public static String info_creatingNewPartition; |
|
| 146 | 147 |
public static String Page_3; |
| 148 |
public static String info_partCreatedInXMs; |
|
| 149 |
public static String Partition_18; |
|
| 150 |
public static String Partition_21; |
|
| 151 |
public static String Partition_9; |
|
| 147 | 152 |
public static String PartitionFocus_1; |
| 148 | 153 |
public static String PartitionFocus_2; |
| 149 | 154 |
public static String PartitionFocus_3; |
| 150 | 155 |
public static String PartitionFocus_4; |
| 151 |
public static String Partition_18; |
|
| 152 |
public static String Partition_21; |
|
| 153 |
public static String Partition_9; |
|
| 154 | 156 |
public static String PatchCwbRegistry_13; |
| 155 | 157 |
public static String PatchCwbRegistry_16; |
| 156 |
public static String PatchCwbRegistry_2; |
|
| 157 | 158 |
public static String PatchCwbRegistry_23; |
| 158 | 159 |
public static String PatchCwbRegistry_27; |
| 159 | 160 |
public static String PatchCwbRegistry_28; |
| 160 | 161 |
public static String PatchCwbRegistry_29; |
| 161 |
public static String PatchCwbRegistry_3;
|
|
| 162 |
public static String PatchCwbRegistry_2;
|
|
| 162 | 163 |
public static String PatchCwbRegistry_34; |
| 163 | 164 |
public static String PatchCwbRegistry_35; |
| 165 |
public static String PatchCwbRegistry_3; |
|
| 164 | 166 |
public static String PatchCwbRegistry_4; |
| 165 | 167 |
public static String PatchCwbRegistry_5; |
| 166 | 168 |
public static String Project_0; |
| 167 |
public static String Project_1; |
|
| 168 | 169 |
public static String Project_10; |
| 169 | 170 |
public static String Project_11; |
| 170 | 171 |
public static String Project_14; |
| 171 | 172 |
public static String Project_15; |
| 172 | 173 |
public static String Project_17; |
| 173 | 174 |
public static String Project_18; |
| 174 |
public static String Project_2;
|
|
| 175 |
public static String Project_1;
|
|
| 175 | 176 |
public static String Project_26; |
| 176 | 177 |
public static String Project_28; |
| 178 |
public static String Project_2; |
|
| 177 | 179 |
public static String Project_31; |
| 178 | 180 |
public static String Project_6; |
| 179 | 181 |
public static String Project_7; |
| 180 | 182 |
public static String Project_8; |
| 181 | 183 |
public static String QUERY; |
| 182 |
public static String QUERYING_PARTITION; |
|
| 183 | 184 |
public static String QueryIndex_2; |
| 184 | 185 |
public static String QueryIndex_3; |
| 186 |
public static String QUERYING_PARTITION; |
|
| 185 | 187 |
public static String QueryResult_0; |
| 186 |
public static String READING_2D_INT_ARRAY_FROM_CQI_SERVER; |
|
| 187 |
public static String READING_BOOLEAN_FROM_CQI_SERVER; |
|
| 188 |
public static String READING_HEADER_FROM_CQI_SERVER; |
|
| 189 |
public static String READING_INTEGER_FROM_CQI_SERVER; |
|
| 190 |
public static String READING_INT_ARRAY_FROM_CQI_SERVER; |
|
| 191 |
public static String READING_STRING_ARRAY_FROM_CQI_SERVER; |
|
| 192 |
public static String READING_STRING_FROM_CQI_SERVER; |
|
| 193 | 188 |
public static String READ_2D_INT_ARRAY_FROM_CQI_SERVER; |
| 194 | 189 |
public static String READ_BOOLEAN_FROM_CQI_SERVER; |
| 195 | 190 |
public static String READ_BYTE_FROM_CQI_SERVER; |
| 196 |
public static String READ_INTEGER_FROM_CQI_SERVER; |
|
| 197 | 191 |
public static String READ_INT_ARRAY_FROM_CQI_SERVER; |
| 192 |
public static String READ_INTEGER_FROM_CQI_SERVER; |
|
| 198 | 193 |
public static String READ_STRING_ARRAY_FROM_CQI_SERVER; |
| 199 | 194 |
public static String READ_STRING_FROM_CQI_SERVER; |
| 200 |
public static String common_reference; |
|
| 195 |
public static String READING_2D_INT_ARRAY_FROM_CQI_SERVER; |
|
| 196 |
public static String READING_BOOLEAN_FROM_CQI_SERVER; |
|
| 197 |
public static String READING_HEADER_FROM_CQI_SERVER; |
|
| 198 |
public static String READING_INT_ARRAY_FROM_CQI_SERVER; |
|
| 199 |
public static String READING_INTEGER_FROM_CQI_SERVER; |
|
| 200 |
public static String READING_STRING_ARRAY_FROM_CQI_SERVER; |
|
| 201 |
public static String READING_STRING_FROM_CQI_SERVER; |
|
| 201 | 202 |
public static String RelativeFrequency_3; |
| 202 |
public static String SERVER_STOPED; |
|
| 203 |
public static String STOPING_SERVER; |
|
| 204 |
public static String SUBCORPUS_CREATED; |
|
| 205 |
public static String SUBCORPUS_LEXICON; |
|
| 206 |
public static String SUBCORPUS_SIZE; |
|
| 207 | 203 |
public static String Selection_26; |
| 208 | 204 |
public static String Selection_5; |
| 209 | 205 |
public static String Selection_6; |
| 210 | 206 |
public static String Selection_7; |
| 211 | 207 |
public static String Selection_8; |
| 212 | 208 |
public static String Selection_9; |
| 209 |
public static String SERVER_STOPED; |
|
| 210 |
public static String STOPING_SERVER; |
|
| 213 | 211 |
public static String StructuralUnitProperty_0; |
| 214 | 212 |
public static String Subcorpus_2; |
| 215 | 213 |
public static String Subcorpus_3; |
| 214 |
public static String SUBCORPUS_CREATED; |
|
| 215 |
public static String SUBCORPUS_LEXICON; |
|
| 216 |
public static String SUBCORPUS_SIZE; |
|
| 216 | 217 |
public static String Summary_13; |
| 217 | 218 |
public static String Summary_14; |
| 218 | 219 |
public static String Summary_15; |
| 219 | 220 |
public static String Summary_16; |
| 220 | 221 |
public static String Summary_17; |
| 221 |
public static String TSCmd_30; |
|
| 222 |
public static String TSCmd_31; |
|
| 223 |
public static String TSCorpusManager_0; |
|
| 224 |
public static String TSCorpusManager_1; |
|
| 225 |
public static String TSCorpus_0; |
|
| 226 |
public static String TSResult_0; |
|
| 227 |
public static String TSResult_13; |
|
| 228 |
public static String TSResult_14; |
|
| 229 |
public static String TSResult_18; |
|
| 230 |
public static String TSResult_2; |
|
| 231 |
public static String TSResult_7; |
|
| 232 |
public static String TSResult_8; |
|
| 233 | 222 |
public static String TigerXmlIndexing_2; |
| 234 | 223 |
public static String TigerXmlIndexing_3; |
| 235 | 224 |
public static String TigerXmlIndexing_6; |
| ... | ... | |
| 243 | 232 |
public static String Toolbox_17; |
| 244 | 233 |
public static String Toolbox_18; |
| 245 | 234 |
public static String Toolbox_22; |
| 246 |
public static String Error_CONNECTION_FAILED; |
|
| 247 |
|
|
| 248 | 235 |
public static String Toolbox_27; |
| 249 | 236 |
public static String Toolbox_28; |
| 250 | 237 |
public static String Toolbox_29; |
| ... | ... | |
| 255 | 242 |
public static String Toolbox_37; |
| 256 | 243 |
public static String Toolbox_38; |
| 257 | 244 |
public static String Toolbox_39; |
| 258 |
public static String Toolbox_4; |
|
| 259 | 245 |
public static String Toolbox_40; |
| 246 |
public static String Toolbox_4; |
|
| 260 | 247 |
public static String Toolbox_connected_to_corpus_sever; |
| 261 | 248 |
public static String Toolbox_workspace_init; |
| 262 | 249 |
public static String Toolbox_workspace_init_failed; |
| 263 | 250 |
public static String Toolbox_wrong_port; |
| 251 |
public static String TSCmd_30; |
|
| 252 |
public static String TSCmd_31; |
|
| 253 |
public static String TSCorpus_0; |
|
| 254 |
public static String TSCorpusManager_0; |
|
| 255 |
public static String TSCorpusManager_1; |
|
| 256 |
public static String TSResult_0; |
|
| 257 |
public static String TSResult_13; |
|
| 258 |
public static String TSResult_14; |
|
| 259 |
public static String TSResult_18; |
|
| 260 |
public static String TSResult_2; |
|
| 261 |
public static String TSResult_7; |
|
| 262 |
public static String TSResult_8; |
|
| 264 | 263 |
public static String TxmObject_2; |
| 265 | 264 |
public static String ValidateXml_0; |
| 266 | 265 |
public static String ValidateXml_1; |
| tmp/org.txm.core/src/java/org/txm/core/messages/messages_fr.properties (revision 1020) | ||
|---|---|---|
| 81 | 81 |
|
| 82 | 82 |
Error_CONNECTION_FAILED = ** Echec de connexion au moteur de recherche avec les paramètres suivants : |
| 83 | 83 |
|
| 84 |
FMAX_1 = Fmax |
|
| 85 |
|
|
| 86 | 84 |
FilterManager_0 = ** Erreur du gestionnaire de filtre : initialisation |
| 87 | 85 |
FilterManager_1 = \ n'existe pas. |
| 88 | 86 |
|
| ... | ... | |
| 109 | 107 |
MemCqiClient_7 = Code CQP inconnu : b1 |
| 110 | 108 |
MemCqiClient_9 = b2 |
| 111 | 109 |
|
| 112 |
NEW_PARTION = Création d''une nouvelle partition du corpus {0} : {1}.
|
|
| 113 |
|
|
| 114 | 110 |
NetCqiClient_1 = Dernière erreur Cqi : |
| 115 | 111 |
NetCqiClient_3 = Dernière erreur CQP : |
| 116 | 112 |
NetCqiClient_5 = Echec de la reconnexion auserveur : |
| ... | ... | |
| 119 | 115 |
NetCqiServer_0 = ** cqpserver stdout: |
| 120 | 116 |
NetCqiServer_1 = ** cqpserver stderr: |
| 121 | 117 |
|
| 122 |
PARTITION_CREATED = Partition {0} créée en {1} ms
|
|
| 123 |
|
|
| 124 |
PART_CREATED = Partie {0} créée en {1} ms
|
|
| 125 |
|
|
| 126 | 118 |
Page_3 = ** URL mal formée, fichier |
| 127 | 119 |
|
| 128 | 120 |
PartitionFocus_1 = Le focus ne doit pas être vide ou nul. |
| ... | ... | |
| 280 | 272 |
common_delete = Supprimer |
| 281 | 273 |
common_description = Description |
| 282 | 274 |
common_done = Terminé. |
| 275 |
common_fMax = Fmax |
|
| 283 | 276 |
common_fMin = Fmin |
| 284 | 277 |
common_frequency = Fréquence |
| 285 | 278 |
common_lowestFrequency = Fréquence minimale |
| ... | ... | |
| 299 | 292 |
error_error = ** Erreur : {0}.
|
| 300 | 293 |
error_error2 = Erreur |
| 301 | 294 |
|
| 302 |
info_deletingPartition = Suppression de la partition {0}.
|
|
| 295 |
info_creatingNewPartition = Création d''une nouvelle partition du corpus {0} : {1}.
|
|
| 296 |
info_deletingPartition = Suppression de la partition {0}.
|
|
| 297 |
info_partCreatedInXMs = Partie {0} créée en {1} ms
|
|
| 298 |
info_partitionCreatedInXMs = Partition {0} créée en {1} ms
|
|
| tmp/org.txm.core/src/java/org/txm/core/messages/messages.properties (revision 1020) | ||
|---|---|---|
| 84 | 84 |
|
| 85 | 85 |
Error_CONNECTION_FAILED = ** Error : while connection to search engine, with the following parameters: |
| 86 | 86 |
|
| 87 |
FMAX_1 = Fmax |
|
| 88 | 87 |
FMAX_2 = , fmax |
| 89 | 88 |
|
| 90 | 89 |
FMIN_2 = , fmin |
| ... | ... | |
| 115 | 114 |
MemCqiClient_7 = Unknown CQP code: b1 |
| 116 | 115 |
MemCqiClient_9 = b2 |
| 117 | 116 |
|
| 118 |
NEW_PARTION = Creating new partion of corpus {0}: {1}.
|
|
| 119 |
|
|
| 120 | 117 |
NetCqiClient_1 = getLastCQiError: |
| 121 | 118 |
NetCqiClient_3 = getLastCQPError: |
| 122 | 119 |
NetCqiClient_5 = Could not reconnect to server: |
| ... | ... | |
| 125 | 122 |
NetCqiServer_0 = ** cqpserver stdout: |
| 126 | 123 |
NetCqiServer_1 = ** cqpserver stderr: |
| 127 | 124 |
|
| 128 |
PARTITION_CREATED = Partition {0} created in {1} ms
|
|
| 129 |
|
|
| 130 |
PART_CREATED = Part {0} created in {1} ms
|
|
| 131 |
|
|
| 132 | 125 |
Page_3 = ** Malformed URL, file |
| 133 | 126 |
|
| 134 | 127 |
PartitionFocus_1 = The focus cannot be null or empty. |
| ... | ... | |
| 292 | 285 |
common_delete = Delete |
| 293 | 286 |
common_description = Description |
| 294 | 287 |
common_done = Done. |
| 288 |
common_fMax = Fmax |
|
| 295 | 289 |
common_fMin = Fmin |
| 296 | 290 |
common_frequency = Frequency |
| 297 | 291 |
common_lowestFrequency = Lowest frequency |
| ... | ... | |
| 299 | 293 |
common_numberOfLines = Number of lines |
| 300 | 294 |
common_ok = OK |
| 301 | 295 |
common_pleaseWait = Please wait... |
| 302 |
common_properties = Property:
|
|
| 296 |
common_properties = Properties:
|
|
| 303 | 297 |
common_property = Property: |
| 304 | 298 |
common_queries = Queries: |
| 305 | 299 |
common_query = Query |
| ... | ... | |
| 312 | 306 |
error_error = ** Error: {0}.
|
| 313 | 307 |
error_error2 = Error |
| 314 | 308 |
|
| 315 |
info_deletingPartition = Deleting partition {0}.
|
|
| 309 |
info_creatingNewPartition = Creating new partion of corpus {0}: {1}.
|
|
| 310 |
info_deletingPartition = Deleting partition {0}.
|
|
| 311 |
info_partCreatedInXMs = Part {0} created in {1} ms
|
|
| 312 |
info_partitionCreatedInXMs = Partition {0} created in {1} ms
|
|
| tmp/org.txm.partition.core/src/org/txm/partition/core/messages/messages.properties (revision 1020) | ||
|---|---|---|
| 1 | 1 |
|
| 2 |
CHARTSENGINE_CANT_CREATE_PARTITION_DIMENSIONS_FILE_CHART = Can''t create dimensions partition chart file (charts engine: {0})
|
|
| 2 |
charts_error_cantCreatePartitionDismensionsFileChart=Can''t create dimensions partition chart file (charts engine: {0})
|
|
| 3 | 3 |
CHARTSENGINE_PARTITION_DIMENSIONS_CATEGORY = t |
| 4 | 4 |
CHARTSENGINE_PARTITION_DIMENSIONS_DIMENSIONS_OF_PARTITION = Dimensions of the {0} partition in the {1} corpus
|
| 5 | 5 |
CHARTSENGINE_PARTITION_DIMENSIONS_PARTS = Part(s) |
| tmp/org.txm.partition.core/src/org/txm/partition/core/messages/messages_fr.properties (revision 1020) | ||
|---|---|---|
| 2 | 2 |
PartsSize_18 = Dimensions : {0}
|
| 3 | 3 |
|
| 4 | 4 |
RESULT_TYPE = Propriétés |
| 5 |
|
|
| 6 |
charts_error_cantCreatePartitionDismensionsFileChart = Impossible de créer le fichier du graphique de dimensions de partition (moteur de graphique : {0})
|
|
| tmp/org.txm.partition.core/src/org/txm/partition/core/messages/PartitionCoreMessages.java (revision 1020) | ||
|---|---|---|
| 17 | 17 |
|
| 18 | 18 |
public static String RESULT_TYPE; |
| 19 | 19 |
|
| 20 |
public static String CHARTSENGINE_CANT_CREATE_PARTITION_DIMENSIONS_FILE_CHART;
|
|
| 20 |
public static String charts_error_cantCreatePartitionDismensionsFileChart;
|
|
| 21 | 21 |
public static String CHARTSENGINE_PARTITION_DIMENSIONS_SORTED_BY_SIZE; |
| 22 | 22 |
public static String CHARTSENGINE_PARTITION_DIMENSIONS_DIMENSIONS_OF_PARTITION; |
| 23 | 23 |
public static String CHARTSENGINE_PARTITION_DIMENSIONS_PARTS; |
| tmp/org.txm.partition.core/src/org/txm/partition/core/chartsengine/r/RPartitionDimensionsPieChartCreator.java (revision 1020) | ||
|---|---|---|
| 76 | 76 |
((RChartsEngine) this.chartsEngine).plot(file, cmd); |
| 77 | 77 |
} |
| 78 | 78 |
catch(Exception e) {
|
| 79 |
Log.severe(PartitionCoreMessages.bind(PartitionCoreMessages.CHARTSENGINE_CANT_CREATE_PARTITION_DIMENSIONS_FILE_CHART, RChartsEngine.DESCRIPTION) + e);
|
|
| 79 |
Log.severe(PartitionCoreMessages.bind(PartitionCoreMessages.charts_error_cantCreatePartitionDismensionsFileChart, RChartsEngine.DESCRIPTION) + e);
|
|
| 80 | 80 |
} |
| 81 | 81 |
|
| 82 | 82 |
return file; |
| tmp/org.txm.partition.core/src/org/txm/partition/core/chartsengine/r/RPartitionDimensionsBarChartCreator.java (revision 1020) | ||
|---|---|---|
| 92 | 92 |
|
| 93 | 93 |
} |
| 94 | 94 |
catch(Exception e) {
|
| 95 |
Log.severe(PartitionCoreMessages.bind(PartitionCoreMessages.CHARTSENGINE_CANT_CREATE_PARTITION_DIMENSIONS_FILE_CHART, RChartsEngine.DESCRIPTION) + e);
|
|
| 95 |
Log.severe(PartitionCoreMessages.bind(PartitionCoreMessages.charts_error_cantCreatePartitionDismensionsFileChart, RChartsEngine.DESCRIPTION) + e);
|
|
| 96 | 96 |
Log.printStackTrace(e); |
| 97 | 97 |
} |
| 98 | 98 |
|
Formats disponibles : Unified diff