Révision 2022

tmp/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/corpus/CQPCorpus.java (revision 2022)
371 371
		// System.out.println("*** Load corpus: "+name);
372 372
		if (e == null) {
373 373
			Log.warning(TXMCoreMessages.warningColonCantLoadCorpus + this);
374
			Log.warning(TXMCoreMessages.informationsFromWorkspaceSelfElementNull);
375 374
			return false;
376 375
		}
377 376

  
tmp/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/corpus/creationdelete partition et subcorpus.java (revision 2022)
342 342
//	protected boolean _loadCorpus() {
343 343
//		//System.out.println("*** Load corpus: "+name);
344 344
//		if (getSelfElement() == null) {
345
//			System.out.println(TXMCoreMessages.warningColonCantLoadCorpus+this+TXMCoreMessages.informationsFromWorkspaceSelfElementNull);
346 345
//			return false;
347 346
//		}
348 347
//
tmp/org.txm.rcp/src/main/java/org/txm/rcp/commands/workspace/LoadBinaryCorporaDirectory.java (revision 2022)
117 117
	 */
118 118
	public static JobHandler loadBinaryCorpusFromCorporaDirectory(final File directory, final boolean askSelection, final boolean replace, final boolean loadDirectories) {
119 119
		
120
		JobHandler jobhandler = new JobHandler("Loading corpora from "+directory+"...", true) {
120
		JobHandler jobhandler = new JobHandler(NLS.bind(TXMUIMessages.LoadBinaryCorporaDirectory_loadingCorporaFromTheP0Directory, directory), true) {
121 121
			
122 122
			JobHandler self = this;
123 123
			@Override
......
131 131
//					e1.printStackTrace();
132 132
//				}
133 133
				
134
				File corporaDirectory = new File(Toolbox.getTxmHomePath(), "corpora");
134
				File corporaDirectory = new File(Toolbox.getTxmHomePath(), "corpora"); //$NON-NLS-1$
135 135
				if (!corporaDirectory.exists()) {
136
					Log.severe("Corpora directory not found. Aborting.");
136
					Log.severe(TXMUIMessages.LoadBinaryCorporaDirectory_corporaDirectoryNotFoundAborting);
137 137
//					try {
138 138
//						SearchEnginesManager.getCQPSearchEngine().start(null);
139 139
//					} catch (Exception e) {
......
222 222

  
223 223
			@Override
224 224
			public String getText(Object element) {
225
				if (element == null) return "error";
225
				if (element == null) return "error";//$NON-NLS-1$
226 226
				
227
				if (!(element instanceof File)) return "not a file ("+element+")";
227
				if (!(element instanceof File)) return "not a file ("+element+")";//$NON-NLS-1$ //$NON-NLS-2$
228 228
				
229 229
				File f = (File) element;
230 230
				if (f.isDirectory()) {
231
					if (new File(f, ".settings").exists()) {
232
						return f.getName().toUpperCase()+" ("+f+")";
233
					} else if (new File(f, "import.xml").exists()) {
234
						return f.getName().toUpperCase()+" ("+f+")";
231
					if (new File(f, ".settings").exists()) {//$NON-NLS-1$
232
						return f.getName().toUpperCase()+" ("+f+")";//$NON-NLS-1$ //$NON-NLS-2$
233
					} else if (new File(f, "import.xml").exists()) {//$NON-NLS-1$
234
						return f.getName().toUpperCase()+" ("+f+")";//$NON-NLS-1$ //$NON-NLS-2$
235 235
					}
236
				} else if (f.getName().endsWith(".txm")) {
237
					return Zip.getRoot(f).toUpperCase()+" ("+f+")";
236
				} else if (f.getName().endsWith(".txm")) {//$NON-NLS-1$
237
					return Zip.getRoot(f).toUpperCase()+" ("+f+")";//$NON-NLS-1$ //$NON-NLS-2$
238 238
				}
239 239
				
240
				return "not a txm corpus ("+f+")";
240
				return "not a txm corpus ("+f+")";//$NON-NLS-1$ //$NON-NLS-2$
241 241
			}
242
		}, "Select the '.txm' corpus to load.");
242
		}, TXMUIMessages.LoadBinaryCorporaDirectory_selectTheTXMCorpusToLoad);
243 243
		lsd.setInitialSelections(files);
244
		lsd.setTitle("Corpus load");
244
		lsd.setTitle(TXMUIMessages.LoadBinaryCorporaDirectory_corpusLoad);
245 245
		if (lsd.open() == ListSelectionDialog.OK) {
246 246
			System.out.println(lsd.getResult());
247 247
			for (Object o : lsd.getResult()) {
......
266 266
			files = directory.listFiles(new FileFilter() {
267 267
				@Override
268 268
				public boolean accept(File arg0) {
269
					return IOUtils.HIDDENFILE_FILTER.accept(arg0) && arg0.getName().endsWith(".txm");
269
					return IOUtils.HIDDENFILE_FILTER.accept(arg0) && arg0.getName().endsWith(".txm"); //$NON-NLS-1$
270 270
				}
271 271
			});
272 272
		}
......
332 332
				
333 333
				Project project = Toolbox.workspace.getProject(corpusDirectory.getName().toUpperCase());
334 334
				if (project != null) {
335
					Log.warning(TXMCoreMessages.bind("A corpus named {0} already exists, loading of {1} canceled.", corpusDirectory.getName().toUpperCase(), corpusDirectory));
335
					Log.warning(TXMCoreMessages.bind(TXMUIMessages.LoadBinaryCorporaDirectory_aCorpusNamedP0alreadyExistsLoadingOfP1Canceled, corpusDirectory.getName().toUpperCase(), corpusDirectory));
336 336
					continue;
337 337
				}
338 338
				
tmp/org.txm.rcp/src/main/java/org/txm/rcp/ApplicationWorkbenchAdvisor.java (revision 2022)
213 213
					this.runInit(monitor);
214 214
					try {
215 215

  
216
						monitor.beginTask("Starting TXM", 100);
216
						monitor.beginTask(TXMUIMessages.startingTxm, 100);
217 217

  
218 218
						monitor.setTaskName(TXMUIMessages.loadingTXMInstallPreferences);
219 219
						Log.fine(TXMUIMessages.startJobColonLoadInstallPreferences);
......
228 228
						Log.warning(TXMUIMessages.startJobColonCheckTXMHOME);
229 229
						if (!checkTXMHOME(this, monitor)) {
230 230
							monitor.done();
231
							System.err.println("Errors occured during TXM post-installation.");
231
							System.err.println(TXMUIMessages.errorsOccuredDuringTXMPostInstallation);
232 232
						}
233 233
						monitor.worked(30);
234 234

  
......
246 246
						System.out.println(TXMCoreMessages.bind(TXMUIMessages.errorWhileLoadingTXMColon, e));
247 247
						org.txm.utils.logger.Log.printStackTrace(e);
248 248
					} catch(ThreadDeath td) {
249
						System.out.println("TXM initialization has been canceled by user. Please restart TXM.");
249
						System.out.println(TXMUIMessages.TXMInitializationHasBeenCanceledByUserDotPleaseRestartTXM);
250 250
					}
251 251

  
252 252
					JobsTimer.stopAndPrint();
......
266 266
	}
267 267

  
268 268
	public static void closeEmptyEditors() {
269
		Log.fine("Closing empty editors...");
270
		String REF = "org.eclipse.ui.internal.emptyEditorTab";
269
		Log.fine("Closing empty editors..."); //$NON-NLS-1$
270
		String REF = "org.eclipse.ui.internal.emptyEditorTab"; //$NON-NLS-1$
271 271

  
272 272
		for (final IWorkbenchPage page : DeleteObject.getPages()) {
273 273
			ArrayList<IEditorReference> editorRefsList = new ArrayList<IEditorReference>();
274 274
			for (IEditorReference editorref : page.getEditorReferences()) {
275 275
				if (editorref.getId().equals(REF)) {
276
					Log.fine("Closing: "+editorref.getId());
276
					Log.fine(TXMUIMessages.closingColon+editorref.getId());
277 277
					editorRefsList.add(editorref);
278 278
				}
279 279
			}
......
350 350
				data.read();
351 351
				data.close();
352 352
			} catch(Exception e){
353
				Log.warning(TXMCoreMessages.bind("TXM can not fetch updates ({0}).", e));
353
				Log.warning(TXMCoreMessages.bind(TXMUIMessages.TXMCanNotFetchUpdatesP0, e));
354 354
				doUpdate = false;
355 355
				return;
356 356
			}
......
376 376
				}
377 377
			});
378 378
		} catch(Exception e) {
379
			System.out.println("Error while fetching updates: "+e);
379
			System.out.println(NLS.bind(TXMUIMessages.errorWhileFetchingUpdatesP0, e));
380 380
		} catch(ThreadDeath td) {
381
			System.out.println("Update canceled.");
381
			System.out.println(TXMUIMessages.updateCanceled);
382 382
		}
383 383
	}
384 384

  
385 385
	public static boolean testTXMHOMEPreferenceAndDirectory() {
386 386
		String path = Toolbox.getTxmHomePath();
387 387

  
388
		if (path == null || path.trim().equals("")) {
389
			Log.warning(TXMCoreMessages.bind("TXM user directory is not set ('{0}' preference is not set).", TBXPreferences.USER_TXM_HOME));
388
		if (path == null || path.trim().equals("")) { //$NON-NLS-1$
389
			Log.warning(TXMCoreMessages.bind(TXMUIMessages.TXMUserDirectoryIsNotSetP0PreferenceIsNotSet, TBXPreferences.USER_TXM_HOME));
390 390
			return true;
391 391
		}
392 392
		File dir = new File(Toolbox.getTxmHomePath().trim());
393 393
		if (!dir.exists()) {
394
			Log.warning(TXMCoreMessages.bind("TXM user directory is set to '{0}' but does not exist.", dir));
394
			Log.warning(TXMCoreMessages.bind(TXMUIMessages.TXMUserDirectoryIsSetToP0ButDoesNotExist, dir));
395 395
			return true;
396 396
		} else if (!dir.canWrite()) {
397
			Log.warning(TXMCoreMessages.bind("TXM user directory is set to '{0}' but TXM can't write in this directory.", dir));
397
			Log.warning(TXMCoreMessages.bind(TXMUIMessages.TXMUserDirectoryIsSetToP0ButTXMCantWriteInThisDirectory, dir));
398 398
			return true;
399 399
		} else if (!dir.canExecute()) {
400
			Log.warning(TXMCoreMessages.bind("TXM user directory is set to '{0}' but TXM can't cd in this directory.", dir));
400
			Log.warning(TXMCoreMessages.bind(TXMUIMessages.TXMUserDirectoryIsSetToP0ButTXMCantCdInThisDirectory, dir));
401 401
			return true;
402 402
		}
403 403

  
......
407 407
	public static boolean testTXMINSTALLPreferenceAndDirectory() {
408 408
		//		TxmPreferences.dump();
409 409
		if (Toolbox.getInstallDirectory() == null) {
410
			Log.warning(TXMCoreMessages.bind("TXM install directory is not set ('{0}' preference is not set).", TBXPreferences.INSTALL_DIR));
410
			Log.warning(TXMCoreMessages.bind(TXMUIMessages.TXMInstallDirectoryIsNotSetP0PreferenceIsNotSet, TBXPreferences.INSTALL_DIR));
411 411
			return true;
412 412
		}
413 413

  
414 414
		File installdir = new File(Toolbox.getInstallDirectory().trim());
415
		if (Toolbox.getInstallDirectory().equals("")) {
416
			Log.warning("TXM install directory is set to ''.");
415
		if (Toolbox.getInstallDirectory().equals("")) { //$NON-NLS-1$
416
			Log.warning(TXMUIMessages.TXMInstallDirectoryIsSetToQuoteQuote);
417 417
			return true;
418 418
		} else if (!installdir.exists()) {
419
			Log.warning(TXMCoreMessages.bind("TXM install directory is set to '{0}' but does not exists.", installdir));
419
			Log.warning(TXMCoreMessages.bind(TXMUIMessages.TXMInstallDirectoryIsSetToP0ButDoesNotExist, installdir));
420 420
			return true;
421 421
		} else if (!installdir.canRead()) {
422
			Log.warning(TXMCoreMessages.bind("TXM install directory is set to '{0}' but is not readable.", installdir));
422
			Log.warning(TXMCoreMessages.bind(TXMUIMessages.TXMInstallDirectoryIsSetToP0ButIsNotReadable, installdir));
423 423
			return true;
424 424
		} else if (!installdir.canExecute()) {
425
			Log.warning(TXMCoreMessages.bind("TXM install directory is set to '{0}' but is not cdable.", installdir));
425
			Log.warning(TXMCoreMessages.bind(TXMUIMessages.TXMInstallDirectoryIsSetToP0ButTXMCantCdInThisDirectory, installdir));
426 426
			return true;
427 427
		}
428 428
		return false;
......
465 465
		}
466 466

  
467 467
		if (messages.length() > 0) {
468
			return MessageDialog.openConfirm(Display.getCurrent().getActiveShell(), TXMCoreMessages.common_warning, NLS.bind(TXMUIMessages.warning_popup_editedResultsWillBelostP0, messages));
468
			return MessageDialog.openConfirm(Display.getCurrent().getActiveShell(), "", NLS.bind(TXMUIMessages.warning_popup_editedResultsWillBelostP0, messages)); //$NON-NLS-1$
469 469
		}
470 470
		return true;
471 471
	}
......
579 579
				installPreferenceRestored = true;
580 580

  
581 581
				if (installDirectory == null || !installDirectory.exists()) {
582
					Log.severe("Error: The provided install directory does not exists. Aborting.");
582
					Log.severe(TXMUIMessages.errorTheProvidedInstallDirectoryDoesNotExistAborting);
583 583
					return false;
584 584
				}
585 585

  
......
628 628

  
629 629
				final IWorkbench w = PlatformUI.getWorkbench();
630 630
				if (w == null) {
631
					System.out.println("no workbench");
631
					System.out.println("no workbench"); //$NON-NLS-1$
632 632
					return;
633 633
				}
634 634

  
......
637 637
					public void run() {
638 638
						try {
639 639
							IWorkbenchWindow aww = w.getActiveWorkbenchWindow();
640
							if (aww == null) {System.out.println("no active workbench window");return;}
640
							if (aww == null) {System.out.println(TXMUIMessages.noActiveWorkbenchWindow);return;}
641 641
							IWorkbenchPage page = aww.getActivePage();
642
							if (page == null) {System.out.println("no active page");return;}
643
							IViewPart view = page.findView("org.eclipse.pde.runtime.LogView");
642
							if (page == null) {System.out.println(TXMUIMessages.noActivePage);return;}
643
							IViewPart view = page.findView("org.eclipse.pde.runtime.LogView"); //$NON-NLS-1$
644 644
							if (view == null) {
645
								view = page.showView("org.eclipse.pde.runtime.LogView");
645
								view = page.showView("org.eclipse.pde.runtime.LogView"); //$NON-NLS-1$
646 646
							}
647 647
						} catch (Exception e1) {
648
							System.out.println("Part initialisation error: "+e1);
648
							System.out.println(TXMUIMessages.partInitializationErrorColon+e1);
649 649
							e1.printStackTrace();
650 650
							return;
651 651
						}
......
679 679

  
680 680
		// check if TXMHOME of the user is set and exists
681 681
		needToRestoreTXMHOME = testTXMHOMEPreferenceAndDirectory();
682
		Log.fine("needToRestoreTXMHOME="+needToRestoreTXMHOME+" installPreferenceRestored="+installPreferenceRestored);
682
		Log.fine("needToRestoreTXMHOME="+needToRestoreTXMHOME+" installPreferenceRestored="+installPreferenceRestored); //$NON-NLS-1$ //$NON-NLS-2$
683 683
		if (needToRestoreTXMHOME || installPreferenceRestored) {
684 684

  
685 685
			System.out.println(TXMUIMessages.creatingTXMUserWorkingDirectory);
......
693 693
				txmhomedir.mkdirs(); // creates the directory if needed
694 694

  
695 695
				if (!txmhomedir.exists()) {
696
					Log.severe(TXMCoreMessages.bind("Error: The provided TXMHOME directory does not exists: {0}. Aborting.", txmhomedir));
696
					Log.severe(TXMCoreMessages.bind(TXMUIMessages.errorTheProvidedTXMHOMEDirectoryDoesNotExistsP0Aborting, txmhomedir));
697 697
					return false;
698 698
				}
699 699

  
700 700
				// save preference if USER_TXM_HOME has changed
701 701
				TBXPreferences.getInstance().put(TBXPreferences.USER_TXM_HOME, txmhomedir.getAbsolutePath());
702
				DefaultScope.INSTANCE.getNode("org.eclipse.ui.workbench").putBoolean("RUN_IN_BACKGROUND", false);
703
				DefaultScope.INSTANCE.getNode("org.eclipse.ui.workbench").flush();
702
				DefaultScope.INSTANCE.getNode("org.eclipse.ui.workbench").putBoolean("RUN_IN_BACKGROUND", false); //$NON-NLS-1$ //$NON-NLS-2$ $NON-NLS-2$
703
				DefaultScope.INSTANCE.getNode("org.eclipse.ui.workbench").flush(); //$NON-NLS-1$
704 704
				TBXPreferences.getInstance().flush();
705 705
				//TXMPreferences.saveAll();
706 706

  
707
				Log.info(TXMCoreMessages.bind("TXM User directory is set to: {0}.", txmhomedir));
707
				Log.info(TXMCoreMessages.bind(TXMUIMessages.TXMUserDirectoryIsSetToP0, txmhomedir));
708 708

  
709 709
				txmHomeRestored = true;
710 710
			} catch (Exception e) {
......
732 732
		//			System.out.println("DEV MODE: no corpus restored!");
733 733
		//			return; // dev mode
734 734
		//		}
735
		monitor.setTaskName("Restoring corpora...");
735
		monitor.setTaskName(TXMUIMessages.restoringCorpora);
736 736
		String installdirpath = Toolbox.getInstallDirectory();
737 737
		File sampleCorporaDirectory = new File(installdirpath, "samples"); //$NON-NLS-1$
738 738

  
......
742 742
		corporaDir = new File(txmhomedir, "corpora"); //$NON-NLS-1$
743 743
		corporaDir.mkdir();
744 744

  
745
		File previousCorporaDirectory = new File(System.getProperty("user.home"), "TXM/corpora");
745
		File previousCorporaDirectory = new File(System.getProperty("user.home"), "TXM/corpora"); //$NON-NLS-1$ //$NON-NLS-2$ $NON-NLS-2$
746 746

  
747 747
		Version v = Activator.getDefault().getBundle().getVersion();
748
		String vv = v.getMajor()+"."+v.getMinor()+"."+v.getMicro();
749
		String SAMPLES = "1. "+TXMUIMessages.bind(TXMUIMessages.sampleCorporaOfCurrentTXMP0, vv);
750
		String V080 = "2. "+TXMUIMessages.bind(TXMUIMessages.corporaOfPreviousTXMP0, vv);
751
		String V079 = "3. "+TXMUIMessages.bind(TXMUIMessages.corporaOfPreviousTXMP0, "0.7.9");
752
		String OTHER = "4. "+TXMUIMessages.selectAnotherTXMCorporaToRestore;
748
		String vv = v.getMajor()+"."+v.getMinor()+"."+v.getMicro(); //$NON-NLS-1$ //$NON-NLS-2$  $NON-NLS-2$
749
		String SAMPLES = "1. "+TXMUIMessages.bind(TXMUIMessages.sampleCorporaOfCurrentTXMP0, vv);//$NON-NLS-1$
750
		String V080 = "2. "+TXMUIMessages.bind(TXMUIMessages.corporaOfPreviousTXMP0, vv);//$NON-NLS-1$
751
		String V079 = "3. "+TXMUIMessages.bind(TXMUIMessages.corporaOfPreviousTXMP0, "0.7.9"); //$NON-NLS-1$ //$NON-NLS-2$ $NON-NLS-2$
752
		String OTHER = "4. "+TXMUIMessages.selectAnotherTXMCorporaToRestore;//$NON-NLS-1$
753 753

  
754 754

  
755 755
		final ArrayList<Object> corporaDirs = new ArrayList<Object>();
......
784 784
		});
785 785

  
786 786
		// move previous TXM 0.8.0 corpora
787
		File backupDir = new File(corporaDir.getAbsolutePath()+"-previous");
787
		File backupDir = new File(corporaDir.getAbsolutePath()+"-previous"); //$NON-NLS-1$
788 788
		if (corporaDir.exists()) {
789 789
			backupDir.mkdirs();
790 790
			for (File dir : corporaDir.listFiles(IOUtils.HIDDENFILE_FILTER)) {
......
810 810

  
811 811
		// TXM-0.8.0 previous installation corpora
812 812
		if (corporaDirs.contains(V080) && backupDir.listFiles(IOUtils.HIDDENFILE_FILTER).length > 0) { // not a new install, restore corpus from the corpora-previous directory
813
			Log.info(NLS.bind(TXMUIMessages.installingPreviousCorpusFromP0, "0.8.0", corporaDir));
813
			Log.info(NLS.bind(TXMUIMessages.installingPreviousCorpusFromP0, "0.8.0", corporaDir)); //$NON-NLS-1$
814 814
			JobHandler job = LoadBinaryCorporaDirectory.loadBinaryCorpusFromCorporaDirectory(backupDir, false, false, true);
815 815
			try {
816 816
				job.join();
......
821 821

  
822 822
		// TXM previous installation corpora
823 823
		if (corporaDirs.contains(V079) && previousCorporaDirectory.exists()) { // new installation (empty corpora directory)
824
			Log.info(NLS.bind(TXMUIMessages.installingPreviousCorpusFromP0, "0.7.9", previousCorporaDirectory));
824
			Log.info(NLS.bind(TXMUIMessages.installingPreviousCorpusFromP0, "0.7.9", previousCorporaDirectory)); //$NON-NLS-1$
825 825
			JobHandler job = LoadBinaryCorporaDirectory.loadBinaryCorpusFromCorporaDirectory(previousCorporaDirectory, false, false, true);
826 826
			try {
827 827
				job.join();
......
842 842
					String path = dialog.open();
843 843
					if (path == null) return;
844 844

  
845
					bindings.put("path", path);
845
					bindings.put("path", path); //$NON-NLS-1$
846 846
				}
847 847
			});
848
			if (bindings.containsKey("path")) {
849
				File dir = new File(bindings.get("path"));
848
			if (bindings.containsKey("path")) { //$NON-NLS-1$
849
				File dir = new File(bindings.get("path")); //$NON-NLS-1$
850 850
				if (!dir.equals(corporaDir)) {
851
					Log.info(NLS.bind("Restoring corpora from the {0} directory...", dir));
851
					Log.info(NLS.bind(TXMUIMessages.restoringCorporaFromTheP0Directory, dir));
852 852
					JobHandler job = LoadBinaryCorporaDirectory.loadBinaryCorpusFromCorporaDirectory(dir, true, true, true);
853 853
					try {
854 854
						job.join();
......
866 866
			}
867 867
		});
868 868

  
869
		monitor.setTaskName("");
869
		monitor.setTaskName(""); //$NON-NLS-1$
870 870
	}
871 871

  
872 872
	/**
......
876 876
	private void callGroovyScript(File script) {
877 877
		try {
878 878
			if (script.exists() && script.canRead()) {
879
				ExecuteGroovyScript.executeScript(script.getAbsolutePath(), null, null, true, "");
879
				ExecuteGroovyScript.executeScript(script.getAbsolutePath(), null, null, true, ""); //$NON-NLS-1$
880 880
			}
881 881
		}
882 882
		catch(Exception e) {
883
			Log.severe(TXMCoreMessages.bind("Failed to execute '{0}' script: {1}.", script, e));
883
			Log.severe(TXMCoreMessages.bind(TXMUIMessages.failedToExecuteTheP0ScriptColonP1, script, e));
884 884
			Log.printStackTrace(e);
885 885
		}
886 886
	}
......
938 938
				try {
939 939
					printTXMVersion();
940 940
					
941
					jobHandler.setTaskName("Set default theme");
941
					jobHandler.setTaskName(TXMUIMessages.setDefaultTheme);
942 942
					setDefaultTheme();
943 943

  
944 944
					// CLOSE Empty&Error editors
945
					jobHandler.setTaskName("Closing empty editors");
945
					jobHandler.setTaskName(TXMUIMessages.closingEmptyEditors);
946 946
					closeEmptyEditors();
947 947

  
948 948
					// remove some preference pages
......
957 957
								try {
958 958
									monitor.worked(1);
959 959

  
960
									monitor.setTaskName("Calling Groovy prestart script...");
960
									monitor.setTaskName(TXMUIMessages.callingGroovyPrestartScript);
961 961
									callPreStartScript();
962 962
									monitor.worked(20);
963 963

  
964
									monitor.setTaskName("Initializing Toolbox (engines and corpora)...");
964
									monitor.setTaskName(TXMUIMessages.initializingToolboxEnginesAndCorpora);
965 965
									if (Toolbox.initialize(TBXPreferences.class, monitor)) {
966 966
										//StatusLine.setMessage(TXMUIMessages.ready);
967 967
									}
......
974 974
									}
975 975
									monitor.worked(20);
976 976

  
977
									monitor.setTaskName("Calling Groovy start script...");
977
									monitor.setTaskName(TXMUIMessages.callingGroovyStartScript);
978 978
									callStartScript();
979 979
									monitor.worked(20);
980 980

  
......
987 987
									}
988 988
									monitor.worked(20);
989 989
									
990
									jobHandler.setTaskName("Toolbox ready.");
990
									jobHandler.setTaskName(TXMUIMessages.toolboxReady);
991 991
								} catch (Exception e) {
992 992
									// TODO Auto-generated catch block
993 993
									e.printStackTrace();
......
1006 1006
					
1007 1007
				}
1008 1008
				catch(Exception e) {
1009
					Log.severe(TXMCoreMessages.bind("Error during UI initialization: {0}.", e.getLocalizedMessage()));
1009
					Log.severe(TXMCoreMessages.bind(TXMUIMessages.errorDuringUIInitializationP0, e.getLocalizedMessage()));
1010 1010
					e.printStackTrace();
1011 1011
				}
1012 1012
			}
1013 1013
		});
1014 1014

  
1015
		jobHandler.setTaskName("");
1015
		jobHandler.setTaskName(""); //$NON-NLS-1$s
1016 1016
		//TxmPreferences.dump();
1017 1017
		return true;
1018 1018
	}
tmp/org.txm.rcp/src/main/java/org/txm/rcp/messages/TXMUIMessages.java (revision 2022)
60 60
	public static String binaryCorpusIsNotATXM079CorpusNoImportXmlFile; 
61 61
	public static String binaryCorpusIsNotATXM080CorpusNoSettingsNorProjectFile;
62 62
	public static String buildEdition; 
63
	public static String callingGroovyPrestartScript;
64

  
65
	public static String callingGroovyStartScript;
66

  
63 67
	public static String canNotCreateATableWithTheProvidedInformationColonP0; 
64 68
	public static String canceling; 
65 69
	public static String cancelingRequested; 
......
82 86
	public static String chooseTheLanguage; 
83 87
	public static String clipboard; 
84 88
	public static String clipboardIsEmpty; 
85
	public static String clipboard_2; 
89
	public static String clipboard_2;
90

  
91
	public static String closingColon;
92

  
93
	public static String closingEmptyEditors; 
86 94
	public static String columnIndexIsTooBig; 
87 95
	public static String columnsSeparatedBy; 
88 96
	public static String commands; 
......
183 191
	public static String errorColonThisPartitionHasNoPart; 
184 192
	public static String errorDuringParametersInitialisation; 
185 193
	public static String errorDuringScriptExecutionColon; 
186
	public static String errorDuringSortColonP0; 
194
	public static String errorDuringSortColonP0;
195

  
196
	public static String errorDuringUIInitializationP0; 
187 197
	public static String errorElementColon; 
188 198
	public static String errorInAtOptionNameDeclarationColon; 
189 199
	public static String errorWhileCallingOrgeclipseuiwindowresetPerspectiveColon; 
190 200
	public static String errorWhileCleaningPerspectiveColonNoHandlerServiceFound; 
191 201
	public static String errorWhileComputingCorpusSummary; 
192 202
	public static String errorWhileCreatingAPartitionColonP0; 
193
	public static String errorWhileDeletingP0ColonP1; 
203
	public static String errorWhileDeletingP0ColonP1;
204

  
205
	public static String errorWhileFetchingUpdatesP0; 
194 206
	public static String errorWhileGettingCurrentPositionValueColon; 
195 207
	public static String errorWhileLoadingTXMColon; 
196 208
	public static String errorWhileOpeningBibliographicRecordP0WithURLEqualsP1; 
......
201 213
	public static String errorWhileUpdatingTXMColonNoHandlerServiceFound; 
202 214
	public static String errorWithElementP0; 
203 215
	public static String error_invalidRegularExpression;
216

  
217
	public static String errorsOccuredDuringTXMPostInstallation;
218

  
219
	public static String errorTheProvidedInstallDirectoryDoesNotExistAborting;
220

  
221
	public static String errorTheProvidedTXMHOMEDirectoryDoesNotExistsP0Aborting;
204 222
	public static String execColon; 
205 223
	public static String executeScript; 
206 224
	public static String executingGroovyScript; 
......
224 242
	public static String failedToDelete; 
225 243
	public static String failedToDeleteFileP0; 
226 244
	public static String failedToDeleteSubcorpusP0; 
245
	public static String failedToExecuteTheP0ScriptColonP1;
246

  
227 247
	public static String failedToExportCorpusP0; 
228 248
	public static String failedToExportFileP0; 
229 249
	public static String failedToExportInFileP0WithFormatP1; 
......
268 288
	public static String info_txmIsReady;
269 289
	public static String infpSupTXMIsPublishedUnderTheGNUGPL2LicenseAmpltInfaHrefEqualshttpsColonwwwgnuorglicensesgpl20enhtmlSuphttpsColonwwwgnuorglicensesgpl20enhtmlInfaSupAmpgt; 
270 290
	public static String initializationOfThePlatform; 
271
	public static String initializingPlatform; 
291
	public static String initializingPlatform;
292

  
293
	public static String initializingToolboxEnginesAndCorpora; 
272 294
	public static String installPathColonP0; 
273 295
	public static String installingSampleCorpus;
274 296
	public static String integer; 
......
331 353
	public static String nextPage; 
332 354
	public static String nextSessionNumber; 
333 355
	public static String nextText; 
356
	public static String noActivePage;
357

  
358
	public static String noActiveWorkbenchWindow;
359

  
334 360
	public static String noDefaultEditionPageFoundForElementColon; 
335 361
	public static String noInterpreterFoundForScriptFileExtension; 
336 362
	public static String noMetadataFileP0; 
......
362 388
	public static String paginationOptions; 
363 389
	public static String panColonRightMousePlusDrag; 
364 390
	public static String parameters; 
365
	public static String part; 
391
	public static String part;
392

  
393
	public static String partInitializationErrorColon; 
366 394
	public static String pleaseWriteTheMacroName; 
367 395
	public static String preferences; 
368 396
	public static String previousPage; 
......
394 422
	public static String renamingByColon; 
395 423
	public static String resetTheViewColonF5; 
396 424
	public static String restartTXM; 
397
	public static String restartingThePlatform; 
425
	public static String restartingThePlatform;
426

  
427
	public static String restoringCorpora;
428

  
429
	public static String restoringCorporaFromTheP0Directory; 
398 430
	public static String rightContextSize; 
399 431
	public static String rmvAllTheParts; 
400 432
	public static String run; 
......
419 451
	public static String separatedByAtLeast0Word; 
420 452
	public static String separatedByAtLeast1Word; 
421 453
	public static String separatorCharacters; 
454
	public static String setDefaultTheme;
455

  
422 456
	public static String setImportParametersInTheSectionsBelow; 
423 457
	public static String settingStatusLineAndConfiguringActionSets; 
424 458
	public static String shouldNotHappen; 
......
441 475
	public static String startJobColonCheckTXMHOME; 
442 476
	public static String startJobColonInitializeUI; 
443 477
	public static String startJobColonLoadInstallPreferences; 
478
	public static String startingTxm;
479

  
444 480
	public static String startingUpP0; 
445 481
	public static String startingUpdateFetch; 
446 482
	public static String startsWith; 
......
482 518
	public static String to; 
483 519
	public static String to_2; 
484 520
	public static String to_3; 
485
	public static String tokenizerParameterFileColon; 
521
	public static String tokenizerParameterFileColon;
522

  
523
	public static String toolboxReady; 
486 524
	public static String unknowedWidgetNameColon; 
525
	public static String updateCanceled;
526

  
487 527
	public static String updateLevel; 
488 528
	public static String useLeftWindow; 
489 529
	public static String useRightWindow; 
......
533 573

  
534 574
	public static String seeTheQuoteSectionIn;
535 575

  
576
	public static String TXMCanNotFetchUpdatesP0;
577

  
578
	public static String TXMInitializationHasBeenCanceledByUserDotPleaseRestartTXM;
579

  
580
	public static String TXMInstallDirectoryIsNotSetP0PreferenceIsNotSet;
581

  
582
	public static String TXMInstallDirectoryIsSetToP0ButDoesNotExist;
583

  
584
	public static String TXMInstallDirectoryIsSetToP0ButIsNotReadable;
585

  
586
	public static String TXMInstallDirectoryIsSetToP0ButTXMCantCdInThisDirectory;
587

  
588
	public static String TXMInstallDirectoryIsSetToQuoteQuote;
589

  
536 590
	public static String TXMisDistributedUnderLicence;
537 591

  
592
	public static String TXMUserDirectoryIsNotSetP0PreferenceIsNotSet;
593

  
594
	public static String TXMUserDirectoryIsSetToP0;
595

  
596
	public static String TXMUserDirectoryIsSetToP0ButDoesNotExist;
597

  
598
	public static String TXMUserDirectoryIsSetToP0ButTXMCantCdInThisDirectory;
599

  
600
	public static String TXMUserDirectoryIsSetToP0ButTXMCantWriteInThisDirectory;
601

  
538 602
	public static String selectWorkingDirectory;
539 603

  
540 604
	public static String firstLaunchOfTXM;
541 605

  
606
	public static String LoadBinaryCorporaDirectory_aCorpusNamedP0alreadyExistsLoadingOfP1Canceled;
607

  
608
	public static String LoadBinaryCorporaDirectory_corporaDirectoryNotFoundAborting;
609

  
610
	public static String LoadBinaryCorporaDirectory_corpusLoad;
611

  
612
	public static String LoadBinaryCorporaDirectory_loadingCorporaFromTheP0Directory;
613

  
614
	public static String LoadBinaryCorporaDirectory_selectTheTXMCorpusToLoad;
615

  
542 616
	public static String selectAnotherTXMCorporaToRestore;
543 617
	
544 618
	static {
tmp/org.txm.rcp/src/main/java/org/txm/rcp/messages/messages.properties (revision 2022)
94 94

  
95 95
buildEdition = Build edition
96 96

  
97
callingGroovyPrestartScript=Calling Groovy prestart script...
98
callingGroovyStartScript=Calling Groovy start script...
97 99
canNotCreateATableWithTheProvidedInformationColonP0 = ** Can not create a table with the information provided: {0}
98 100

  
99 101
canceling = Canceling…
......
139 141
clipboardIsEmpty = ** The clipboard is empty.
140 142

  
141 143
clipboard_2      = clipboard
144
closingColon=Closing: 
145
closingEmptyEditors=Closing empty editors
142 146

  
143 147
columnIndexIsTooBig = Column number too big.
144 148

  
......
340 344
errorDuringScriptExecutionColon = ** Error during script execution: 
341 345

  
342 346
errorDuringSortColonP0 = ** Error during sorting: {0}.
347
errorDuringUIInitializationP0=Error during UI initialization: {0}.
343 348

  
344 349
errorElementColon = Error element: '
345 350

  
......
354 359
errorWhileCreatingAPartitionColonP0 = ** Error while creating a partition: {0}
355 360

  
356 361
errorWhileDeletingP0ColonP1 = ** Error while deleting {0}: {1}
362
errorWhileFetchingUpdatesP0=Error while fetching updates: {0}
357 363

  
358 364
errorWhileGettingCurrentPositionValueColon = ** Error while retrieving data at position: 
359 365

  
......
374 380
errorWithElementP0 = ** Error with element {0}
375 381

  
376 382
error_invalidRegularExpression                           = Invalid regular expression: {0}
383
errorsOccuredDuringTXMPostInstallation=Errors occured during TXM post-installation.
384
errorTheProvidedInstallDirectoryDoesNotExistAborting=Error: The provided install directory does not exists. Aborting.
385
errorTheProvidedTXMHOMEDirectoryDoesNotExistsP0Aborting=Error: The provided TXMHOME directory does not exists: {0}. Aborting.
377 386

  
378 387
execColon = Exec: {0}.
379 388

  
......
419 428

  
420 429
failedToDeleteSubcorpusP0 = ** Error removing sub-corpus {0}
421 430

  
431
failedToExecuteTheP0ScriptColonP1=Failed to execute '{0}' script: {1}.
422 432
failedToExportCorpusP0 = ** Failed to export the {0} corpus.
423 433

  
424 434
failedToExportFileP0 = ** Failed to export file {0} with device {1}
......
508 518
initializationOfThePlatform = Initialization of the platform...
509 519

  
510 520
initializingPlatform = Initialization of the platform...
521
initializingToolboxEnginesAndCorpora=Initializing Toolbox (engines and corpora)...
511 522

  
512 523
installPathColonP0 = Install path: {0}.
513 524

  
......
635 646

  
636 647
nextText = Next text
637 648

  
649
noActivePage=no active page
650
noActiveWorkbenchWindow=no active workbench window
638 651
noDefaultEditionPageFoundForElementColon = No default edition page found for element 
639 652

  
640 653
noInterpreterFoundForScriptFileExtension = ** No interpreter found for script file extension
......
700 713
parameters = Parameters
701 714

  
702 715
part = Part
716
partInitializationErrorColon=Part initialisation error: 
703 717

  
704 718
pleaseWriteTheMacroName = Macro name
705 719

  
......
764 778
restartTXM = Restart TXM
765 779

  
766 780
restartingThePlatform = Restarting the platform
781
restoringCorpora=Restoring corpora...
782
restoringCorporaFromTheP0Directory=Restoring corpora from the {0} directory...
767 783

  
768 784
rightContextSize = Right context size
769 785

  
......
817 833

  
818 834
separatorCharacters = Separator characters
819 835

  
836
setDefaultTheme=Set default theme
820 837
setImportParametersInTheSectionsBelow = Set the import parameters in the sections below.
821 838

  
822 839
settingStatusLineAndConfiguringActionSets = Retreiving status line and configuring menus and toolbars
......
861 878

  
862 879
startJobColonLoadInstallPreferences = Startup: loading installation preferences
863 880

  
881
startingTxm=Starting TXM
864 882
startingUpP0 = Starting TXM {0}…
865 883

  
866 884
startingUpdateFetch = Starting updates retrieval
......
949 967
to_3                        = to
950 968

  
951 969
tokenizerParameterFileColon = Tokenizer parameters: 
970
toolboxReady=Toolbox ready.
952 971

  
953 972
unknowedWidgetNameColon = ** Error: unknown widget name: '
954 973

  
974
updateCanceled=Update canceled.
955 975
updateLevel = Update level
956 976

  
957 977
useLeftWindow = Use the left context
......
998 1018

  
999 1019
updateDone=Update done.
1000 1020

  
1021
TXMCanNotFetchUpdatesP0=TXM can not fetch updates ({0}).
1022
TXMInitializationHasBeenCanceledByUserDotPleaseRestartTXM=TXM initialization has been canceled by user. Please restart TXM.
1023
TXMInstallDirectoryIsNotSetP0PreferenceIsNotSet=TXM install directory is not set ('{0}' preference is not set).
1024
TXMInstallDirectoryIsSetToP0ButDoesNotExist=TXM install directory is set to '{0}' but does not exist.
1025
TXMInstallDirectoryIsSetToP0ButIsNotReadable=TXM install directory is set to '{0}' but is not readable.
1026
TXMInstallDirectoryIsSetToP0ButTXMCantCdInThisDirectory=TXM install directory is set to '{0}' but is not cdable.
1027
TXMInstallDirectoryIsSetToQuoteQuote=TXM install directory is set to ''.
1001 1028
TXMisDistributedUnderLicence=TXM is released under the 
1029
TXMUserDirectoryIsNotSetP0PreferenceIsNotSet=TXM user directory is not set ('{0}' preference is not set).
1030
TXMUserDirectoryIsSetToP0=TXM User directory is set to: {0}.
1031
TXMUserDirectoryIsSetToP0ButDoesNotExist=TXM user directory is set to '{0}' but does not exist.
1032
TXMUserDirectoryIsSetToP0ButTXMCantCdInThisDirectory=TXM user directory is set to '{0}' but TXM can't cd in this directory.
1033
TXMUserDirectoryIsSetToP0ButTXMCantWriteInThisDirectory=TXM user directory is set to '{0}' but TXM can't write in this directory.
1002 1034
gnuLicenceLink=https://www.gnu.org/licenses/gpl-2.0.en.html
1003 1035
gnuLicenceName=GNU General Public License version 2
1004 1036
iAcceptTheLicenceAndAgreeToQuoteTXMInMyWork=I accept TXM license terms and I accept to quote TXM in my publications.
......
1006 1038
selectWorkingDirectory=Working directory
1007 1039
options=Options...
1008 1040
firstLaunchOfTXM=First launch of TXM
1041
LoadBinaryCorporaDirectory_aCorpusNamedP0alreadyExistsLoadingOfP1Canceled=A corpus named {0} already exists, loading of {1} canceled.
1042
LoadBinaryCorporaDirectory_corporaDirectoryNotFoundAborting=Corpora directory not found. Aborting.
1043
LoadBinaryCorporaDirectory_corpusLoad=Corpus load
1044
LoadBinaryCorporaDirectory_loadingCorporaFromTheP0Directory=Loading corpora from the {0} directory...
1045
LoadBinaryCorporaDirectory_selectTheTXMCorpusToLoad=Select the '.txm' corpus to load.
1009 1046
selectAnotherTXMCorporaToRestore=Select another TXM "corpora" directory to restore...
tmp/org.txm.translate.rcp/messages.properties (revision 2022)
1
#imported from messages_fr-slh.odt
2
#Thu Dec 06 14:10:13 CET 2018
3
chartsengine.core.messages.ChartsEngineCore.error_cantCreateTmpChartFileP0=** Can not create temporary chart file {0}
4
rcp.messages.TXMUI.leftContextSize=Left context size
5
rcp.messages.TXMUI.theP0CorpusDirectoryAlreadyExistsDoYouWantToReplaceIt=The {0} corpus folder already exists. Do you want to replace it ?
6
rcp.messages.TXMUI.parameters=Parameters
7
core.messages.TXMCore.isNotAValidCQPIdForASubcorpusItMustBeAnUppercaseCharactersFollowedByLowercaseCharacters=\ is not a valid CQP identifier for a sub-corpus. It must be in uppercase followed by lowercase characters.
8
core.messages.TXMCore.print2=/ {print $2}''`
9
statsengine.r.core.messages.RCore.error_errorDuringItemsListExtraction=** Error while retrieving the list of items \: \t
10
searchengine.cqp.core.messages.CQPSearchEngineCore.lastCQiErrorColon=Last CQi error\: 
11
concordance.core.messages.ConcordanceCore.rightContext_2=Right context
12
rcp.messages.TXMUI.createANewSorter=Create a new sort method
13
rcp.messages.TXMUI.columnsSeparatedBy=Columns separated by
14
ca.rcp.messages.CAUI.CorrespondanceAnalysisEditorInput_4=\#
15
concordance.rcp.messages.ConcordanceUI.sortingKeywordColumn=Sorting the pivot
16
rcp.messages.TXMUI.exportAll=Export all
17
concordance.rcp.messages.ConcordanceUI.sortingReferenceColumn=Sorting the reference
18
rcp.messages.TXMUI.errorColonGetTextColonP0=** Internal error\: getText\: {0}
19
rcp.messages.TXMUI.structureFieldIsMandatory=The ‘’structure’’ field must be filled in.
20
core.messages.TXMCore.failedToRestorePartition=** Failed to restore partition 
21
core.messages.TXMCore.hasNoBase=has no ‘’root corpus’’
22
ca.rcp.messages.CAUI.error_opening=** Error\: can not open the CA result window with {0}
23
rcp.messages.TXMUI.exportingP0ThisMayTakeAWhile=Exporting {0}. This can take time, depending on the size of the corpus.
24
rcp.messages.TXMUI.linePerPageColon=Lines per page\:
25
rcp.messages.TXMUI.showHideCommandParameters=Show/Hide command parameters
26
cooccurrence.rcp.messages.CooccurrenceUI.minimumFrequencyThresholdOfTheCooccurrent=Minimum frequency of cooccurrents
1
#compiled messages for lang=
2
#Tue Apr 16 17:11:35 CEST 2019
3
ahc.core.messages.AHCCore.columns=columns
4
ahc.core.messages.AHCCore.computingAHC=Computing AHC...
5
ahc.core.messages.AHCCore.error_errorWhileExportingCAHToTXT=** Error while exporting HCA result.
6
ahc.core.messages.AHCCore.P0classesOfP1={0} clusters of {1}.
7
ahc.core.messages.AHCCore.RESULT_TYPE=HCA
8
ahc.core.messages.AHCCore.rows=rows
9
ahc.rcp.messages.AHCUI.common_metric=Metric
10
ahc.rcp.messages.AHCUI.computeColumns=Cluster columns
11
ahc.rcp.messages.AHCUI.computeRows=Cluster rows
12
ahc.rcp.messages.AHCUI.computingClassificationWithP0=Computing clusters of {0}.
13
ahc.rcp.messages.AHCUI.displayChartsIn2D=Display charts in 2D
27 14
ahc.rcp.messages.AHCUI.error_canNotComputeAHCWith=** Can not compute clusters with only {0} parts (the minimum is 4 parts).
28
rcp.messages.TXMUI.readyToShowUpdateUI=Ready to show Update User Interface
29
concordance.core.messages.ConcordanceCore.none=None
30
rcp.messages.TXMUI.displayInFullText=Display in full text…
31
rcp.messages.TXMUI.useRightWindow=Use the right context
32
statsengine.r.rcp.messages.RUI.refreshVariables=Update variables
33
properties.rcp.messages.PropertiesUI.descriptionColon=Description\: 
34
rcp.messages.TXMUI.assisted=Assisted
35
rcp.messages.TXMUI.numberOfNodesColon=Number of nodes\: {0}.
36
referencer.core.messages.ReferencerCore.referencerExportFailedColon=Referencer export failed\: {0}.
37 15
ahc.rcp.messages.AHCUI.method=Method
38
rcp.messages.TXMUI.common_enterRegularExpressionOfYourSearch=Enter the regular expression of your search
39
rcp.messages.TXMUI.referencesAmpdisplayOptions=References &display options
40
edition.rcp.messages.EditionUI.firstTextOfTheCorpus=First text of the corpus
41
rcp.messages.TXMUI.queryAssistant=Query Assistant
42
concordance.rcp.messages.ConcordanceUI.sortingRightContextColumn=Sorting the right context
43
para.rcp.messages.ParaBrowserUI.ParaBrowserEditor_21=_
44
statsengine.r.rcp.messages.RUI.packageIsNotInstalledTryingToInstallItNow='' package is not installed. Trying to install it now…
45
rcp.messages.TXMUI.doneColonP0Created=Done\: {0} created
46
core.messages.TXMCore.common_query=Query 
47
rcp.messages.TXMUI.zoomInAmpoutColonMouseWheelORShiftPlusRightMousePlusDrag=\tZoom +/-\: Mouse wheel OR Shift + Right Mouse + Drag\n
48
rcp.messages.TXMUI.queryCannotBeLeftEmpty=The Query field must be filled in.
49
wordcloud.rcp.messages.WordCloudUI.percentOfRotatedLabelsColon=% of vertical labels\: 
50
core.messages.TXMCore.tXMNeedsFoldersColonP0P1P2AndP3=TXM needs the folders\: {0}, {1}, {2} and {3}.
51
concordance.core.messages.ConcordanceCore.leftContext=LeftContext
52
rcp.messages.TXMUI.creatingTXMUserWorkingDirectory=Creating TXM user workspace…
53
properties.core.messages.PropertiesCore.properties=\ properties
54
rcp.messages.TXMUI.corporaBackupedColonP0=Corpora saved in\: {0}.
55
index.core.messages.IndexCore.indexColonPartitionP0queryP1propertiesP2FminP3FmaxP4=Index\:\n\tPartition {0}\n\tQuery {1}\n\tProperties {2}\n\tFmin {3}\n\tFmax {4}
56
core.messages.TXMCore.andFile=and file 
57
chartsengine.rcp.messages.SWTComponentsProvider.monochromeRenderingColor=Color for monochrome rendering
58
cooccurrence.core.messages.CooccurrenceCore.info_buildingLexicalTable=Building lexical table.
59
rcp.messages.TXMUI.reload=Reload
60
statsengine.r.core.messages.RCore.error_rservePathNotSet=** The statistics engine program path is not set and we could not find it.
16
ahc.rcp.messages.AHCUI.numberOfClusters=Number of clusters
17
ahc.rcp.messages.AHCUI.numberOfClustersColon=Number of clusters\:
18
annotation.kr.core.messages.KRAnnotationCore.annotationSuccesfullyWritten=Annotations successfully written.
19
annotation.kr.core.messages.KRAnnotationCore.annotationSuccesfullyWrittenIntheP0File=Annotations successfully written in the {0} file.
20
annotation.kr.core.messages.KRAnnotationCore.savingAnnotations=Saving annotations.
21
annotation.kr.core.messages.KRAnnotationCore.savingP0Annotations=Saving {0} annotations...
22
annotation.kr.rcp.messages.KRAnnotationUI.aboutAnnotations=About annotations
23
annotation.kr.rcp.messages.KRAnnotationUI.addANewCategory=Add a new category
24
annotation.kr.rcp.messages.KRAnnotationUI.affect=Affect
25
annotation.kr.rcp.messages.KRAnnotationUI.AffectP0ToSelectionEqualsP1=Affect {0} to {1} for {1} elements.
26
annotation.kr.rcp.messages.KRAnnotationUI.all=All
27
annotation.kr.rcp.messages.KRAnnotationUI.allLines=all lines
28
annotation.kr.rcp.messages.KRAnnotationUI.annotatingConcordanceSelection=Annotating concordance selection…
29
annotation.kr.rcp.messages.KRAnnotationUI.annotationCanceledByUser=Annotation canceled by user.
30
annotation.kr.rcp.messages.KRAnnotationUI.availableAnnotationTypesColonP0=Available annotation types\: {0}
31
annotation.kr.rcp.messages.KRAnnotationUI.availableValuesForP0=Available values for {0}
32
annotation.kr.rcp.messages.KRAnnotationUI.category=Category
33
annotation.kr.rcp.messages.KRAnnotationUI.closeTheToolbarWithoutSaving=Close the toolbar without saving
34
annotation.kr.rcp.messages.KRAnnotationUI.concordanceAnnotationArea=Concordance Annotation area
35
annotation.kr.rcp.messages.KRAnnotationUI.confirmAnnotationAffectation=Confirm annotation affectation
36
annotation.kr.rcp.messages.KRAnnotationUI.couldNotAnnotateTheValueP0OnCertainSequences=** Can not annotate the value {0} on certain sequences.
37
annotation.kr.rcp.messages.KRAnnotationUI.delete=Delete
38
annotation.kr.rcp.messages.KRAnnotationUI.enterAValueForAnId=Enter a value for an identifier
39
annotation.kr.rcp.messages.KRAnnotationUI.errorColonNoSuitableKnowledgeRepositoryFound=** Error\: no suitable KnowledgeRepository found
40
annotation.kr.rcp.messages.KRAnnotationUI.errorWhileAffectionAnnotationColonP0=** Error while annotating {0}
41
annotation.kr.rcp.messages.KRAnnotationUI.errorWhileAnnotatingConcordanceColonP0=** Error while annotating concordance\:  {0}
42
annotation.kr.rcp.messages.KRAnnotationUI.errorWhileAnnotatingConcordanceSelectionColonP0=** Error while annotating concordance selection\: {0}
43
annotation.kr.rcp.messages.KRAnnotationUI.errorWhileDeletingAnnotationColonP0=** Error while deleting annotation\: {0}
44
annotation.kr.rcp.messages.KRAnnotationUI.keywordsAnnotation=Pivot annotation
45
annotation.kr.rcp.messages.KRAnnotationUI.listOfCategories=List of categories
46
annotation.kr.rcp.messages.KRAnnotationUI.lookingForTypedValueWithIdEqualsP0=Looking for TypedValue with id\={0}
47
annotation.kr.rcp.messages.KRAnnotationUI.motsPropritsInfDfaut=Words (property) <- defaut
61 48
annotation.kr.rcp.messages.KRAnnotationUI.newCategory=New category
62
links.rcp.messages..noQueryWasSetCommandCanceled=No Query parameter set, command aborted.
63
chartsengine.rcp.messages.SWTComponentsProvider.recreatingChartsEngineAndSWTChartComponentsProvider=Resetting the graphics engine and SWT service
64
core.messages.TXMCore.doesNotExists_2=does not exist
65
para.rcp.messages.ParaBrowserUI.refColonP0ColonP1=Ref\: {0}\: {1}
66
core.messages.TXMCore.theP0PartFocusDoesntBelongToPartitionP1=There is no {0} part in the {1} partition.
67
cooccurrence.rcp.messages.CooccurrenceUI.thresholdsColonFmin=Thresholds\: Fmin ≥
68
rcp.messages.TXMUI.errorWhileOpeningFileP0=** Error while opening file {0}.
49
annotation.kr.rcp.messages.KRAnnotationUI.newValueP0ForCategoryP1=New value ''{0}'' for category ''{1}''.
50
annotation.kr.rcp.messages.KRAnnotationUI.nomDeLaPropritPatternEqualsazaz09Plus=Property name pattern\: [a-z][-a-z0-9]+
51
annotation.kr.rcp.messages.KRAnnotationUI.nouvelleProprit=New property
52
annotation.kr.rcp.messages.KRAnnotationUI.noValueFoundWithTheP0Id=No value found with the {0} identifier.
53
annotation.kr.rcp.messages.KRAnnotationUI.oK=OK
54
annotation.kr.rcp.messages.KRAnnotationUI.openTheListOfCategories=Open the list of categories
55
annotation.kr.rcp.messages.KRAnnotationUI.pleaseEnterTheNewTypeName=Enter the name of the new type
56
annotation.kr.rcp.messages.KRAnnotationUI.proceedToAnnotation=Proceed to annotation
57
annotation.kr.rcp.messages.KRAnnotationUI.property=Property
58
annotation.kr.rcp.messages.KRAnnotationUI.saveTheAnnotations=Save the annotations
59
annotation.kr.rcp.messages.KRAnnotationUI.selectAValueAmongTheList=Select a value among the list
60
annotation.kr.rcp.messages.KRAnnotationUI.selectedLines=selected lines
61
annotation.kr.rcp.messages.KRAnnotationUI.squencesDeMotsCatgorie=Words sequence (category)
62
annotation.kr.rcp.messages.KRAnnotationUI.squencesDeMotsCatgorievaleur=Words sequence (category/value)
63
annotation.kr.rcp.messages.KRAnnotationUI.theEndOfAStructureP0AtP1P2=\t\t- the end of a structure {0} at [{1}-{2}]\n
64
annotation.kr.rcp.messages.KRAnnotationUI.theSequenceP0IsOverlappingWith=\t- The sequence {0} is overlapping with \n
69 65
annotation.kr.rcp.messages.KRAnnotationUI.theStartOfAStructureP0AtP1P2=\t\t- the start of a structure {0} at [{1}-{2}]\n
70
rcp.messages.TXMUI.areYouSureYouWantToDeleteP0Colon=Are you sure you want to delete files {0}
71
edition.rcp.messages.EditionUI.CommandLink_empty=
72
statsengine.r.rcp.messages.RUI.tXMCouldNotLoadTheFactoMineRRPackageTheCorrespondanceAnalysisClassificationCommandsWontBeAvailable=TXM could not load the ''’FactoMineR’'' R package. The Correspondance analysis, Classification commands won''t be available
73
searchengine.cqp.core.messages.CQPSearchEngineCore.unknownCQPCQIErrorColonB1=** Unknown CQP/CQI error\: b1 
74
statsengine.r.rcp.messages.RUI.packageWasNotInstalledPleaseInstallItManuallyColonRunRAndExecuteInstallpackages='' package was not installed. Please install it manually\:\n * Run R\n * and execute ''install.packages("
75
edition.rcp.messages.EditionUI.copyTextSelection=Copy text selection
76
statsengine.r.rcp.messages.RUI.doneColon=Done\: ''’
66
annotation.kr.rcp.messages.KRAnnotationUI.theValueP0IsNotAssociatedWithTheCategoryP1AssociateIt=The {0} value is not associated with the category {1}. Associate it?   
67
annotation.kr.rcp.messages.KRAnnotationUI.updatingTheP0Corpus=Updating the {0} corpus...
68
annotation.kr.rcp.messages.KRAnnotationUI.valueEquals=value\=
69
annotation.kr.rcp.messages.KRAnnotationUI.withTheCategory=with the category
70
annotation.kr.rcp.messages.KRAnnotationUI.youAreAboutToAnnotateP0ElementsContinue=You are about to annotate {0} elements. Continue ?
71
annotation.rcp.messages.AnnotationUI.annotateWordProperty=Annotate the "word" property
72
ca.core.messages.CACore.axis=Axis
73
ca.core.messages.CACore.axisP0P1Percent=Axis {0} ({1}%)
74
ca.core.messages.CACore.cantCreateBarChartOfTheCASingularValuesP0=** Can not create bar chart of the CA singular values.
75
ca.core.messages.CACore.cantCreateCAChartFileChartsEngineColonP0P1=** Can not create CA factorial plane chart file (charts engine {0})\: {1}
76
ca.core.messages.CACore.charts_singularValues_tooltipSum=∑
77
ca.core.messages.CACore.columns=Columns
78
ca.core.messages.CACore.common_c1=c1
79
ca.core.messages.CACore.common_c2=c2
80
ca.core.messages.CACore.common_c3=c3
81
ca.core.messages.CACore.common_cont=Cont
82
ca.core.messages.CACore.common_cos2=Cos²
83
ca.core.messages.CACore.common_dist=Dist
84
ca.core.messages.CACore.common_mass=Mass
85
ca.core.messages.CACore.common_q12=Q12
86
ca.core.messages.CACore.common_q13=Q13
87
ca.core.messages.CACore.common_q23=Q23
88
ca.core.messages.CACore.coordinates=Coordinates
89
ca.core.messages.CACore.correspondenceAnalysisFactorialMapofTheP0=Correspondence analysis factorial plane of {0}
90
ca.core.messages.CACore.eigenvalue=Eigenvalue
91
ca.core.messages.CACore.eigenvalues=Eigenvalues
92
ca.core.messages.CACore.error_canNotLoadCALibraryP0=** Can not load the ''ca'' library\: {0}.
93
ca.core.messages.CACore.error_errorWhileComputingCAP0=** Error while computing correspondence analysis\: {0}.
94
ca.core.messages.CACore.error_failedToGetConstributionRowP0=** Failed to access contribution row\: {0}.
95
ca.core.messages.CACore.error_failedToGetContributionColumnP0=** Failed to access contribution column\: {0}.
77 96
ca.core.messages.CACore.error_failedToGetCos2ColumnP0=** Failed to access cos² column\: {0}.
78
core.messages.TXMCore.fmax=, fmax 
79
core.messages.TXMCore.eRRORColonExists=** Error\: does not exist
80
rcp.messages.TXMUI.failedToExportResultP0ColonP1=** Failed to export result {0}\: {1}
81
rcp.messages.TXMUI.thisComputerLanguageColon=Default language of this computer
82
annotation.kr.rcp.messages.KRAnnotationUI.AffectP0ToSelectionEqualsP1=Affect {0} to selection {1}
97
ca.core.messages.CACore.error_failedToGetCos2RowP0=** Failed to access cos² row\: {0}.
98
ca.core.messages.CACore.error_lexicalTableNotFoundInWorkspace=** The lexical table was not found in the R workspace.
99
ca.core.messages.CACore.error_unableToExtractSingularValuesP0=** Unable to extract singular values\: {0}.
100
ca.core.messages.CACore.frequency=Frequency
101
ca.core.messages.CACore.percent=%
102
ca.core.messages.CACore.RESULT_TYPE=CA
103
ca.core.messages.CACore.rows=Rows
104
ca.core.messages.CACore.t=t
105
ca.rcp.messages.CAUI.axesColon=Axes\: 
106
ca.rcp.messages.CAUI.canNotComputeCAOnLexicalTableWithLessThan4Columns=** Can not compute CA on lexical table with less than 4 columns in the table
107
ca.rcp.messages.CAUI.canNotComputeCAWithLessThan4RowsInTheTable=** Can not compute CA with less than 4 rows in the table
108
ca.rcp.messages.CAUI.canNotComputeFactorialAnalysisWithOnlyP0PartsTheMinimumIs4Parts=** Can not compute factorial analysis with only {0} parts (the minimum is 4 parts).
109
ca.rcp.messages.CAUI.chi=χ²
110
ca.rcp.messages.CAUI.colsInfos=Columns information
111
ca.rcp.messages.CAUI.computingCorrespondenceAnalysisOnP0WithPropertyP1=Computing Correspondence analysis of {0} with property {1}
112
ca.rcp.messages.CAUI.contributionColumnFormat=Contribution column format
113
ca.rcp.messages.CAUI.coordColumnFormat=Coord column format
114
ca.rcp.messages.CAUI.CorrespondanceAnalysisEditorInput_11=∑%
115
ca.rcp.messages.CAUI.CorrespondanceAnalysisEditorInput_4=\#
116
ca.rcp.messages.CAUI.cosColumnFormat=Cos² column format
117
ca.rcp.messages.CAUI.creatingCA=Creating the CA window
118
ca.rcp.messages.CAUI.distanceColumnFormat=Distance column format
119
ca.rcp.messages.CAUI.eigenvalue=Eigenvalue
120
ca.rcp.messages.CAUI.eigenvalues=Eigenvalues
121
ca.rcp.messages.CAUI.eigenvaluesBarChat=Eigenvalues bar chart
122
ca.rcp.messages.CAUI.error_cannot_compute_with=** Error\: can not compute CA with {0}.
123
ca.rcp.messages.CAUI.error_cannot_compute_with_selection=** Error\: can not compute CA with current selection\={0}.
124
ca.rcp.messages.CAUI.error_opening=** Error\: can not open the CA result window with {0}
125
ca.rcp.messages.CAUI.errorWhileOpeningCAEditorColonP0=** Error while opening the CA result window\: {0}.
126
ca.rcp.messages.CAUI.factPlan=Fact. plane
127
ca.rcp.messages.CAUI.infosColonP0=Informations\: {0}
128
ca.rcp.messages.CAUI.lexicalTableCreatedWhenCalledFromAPartition=Lexical table (created when called from a partition)
129
ca.rcp.messages.CAUI.loadingCorrespondenceAnalysisResults=Loading correspondence analysis results…
130
ca.rcp.messages.CAUI.massColumnFormat=Mass column format
131
ca.rcp.messages.CAUI.openingTheCorrespondenceAnalysisResults=Opening the correspondence analysis results
132
ca.rcp.messages.CAUI.q=Q
133
ca.rcp.messages.CAUI.qualityColumnFormat=Quality column format
134
ca.rcp.messages.CAUI.rowsInfos=Rows information
135
ca.rcp.messages.CAUI.showhidePointShapes=Show/Hide points
136
ca.rcp.messages.CAUI.showhideTheColumnPoints=Show/Hide column
137
ca.rcp.messages.CAUI.showhideTheRowPoints=Show/Hide row
138
ca.rcp.messages.CAUI.showPointShapes=Show points
139
ca.rcp.messages.CAUI.showTheColumns=Show columns
140
ca.rcp.messages.CAUI.showTheRows=Show rows
141
ca.rcp.messages.CAUI.wrongInput=Wrong input
142
chartsengine.core.messages.ChartsEngineCore.EMPTY=\ 
143
chartsengine.core.messages.ChartsEngineCore.error_cantCreateTmpChartFileP0=** Can not create temporary chart file {0}
144
chartsengine.core.messages.ChartsEngineCore.error_cantWriteInFileP0=** Can not write in file {0}
145
chartsengine.rcp.messages.ChartsUI.blackAndWhite=Black and white
146
chartsengine.rcp.messages.ChartsUI.canNotOpenChartPropertiesInterfaceForThecurrentChartEngine=Can not open chart properties interface for the current chart engine.
147
chartsengine.rcp.messages.ChartsUI.chartsRendering=Charts rendering
148
chartsengine.rcp.messages.ChartsUI.colors=Colors
149
chartsengine.rcp.messages.ChartsUI.currentEngine=Current charts engine
150
chartsengine.rcp.messages.ChartsUI.defaultExportFormat=Default export format
151
chartsengine.rcp.messages.ChartsUI.displayFormat=Display format
152
chartsengine.rcp.messages.ChartsUI.grayscale=Shades of grey
153
chartsengine.rcp.messages.ChartsUI.monochrome=Monochrome
154
chartsengine.rcp.messages.ChartsUI.monochromeRenderingColor=Color for monochrome rendering
155
chartsengine.rcp.messages.ChartsUI.multipleLineStrokeStyles=Multiple line styles
156
chartsengine.rcp.messages.ChartsUI.recreatingChartsEngineAndSWTChartComponentsProvider=Setting the new current charts engine and SWT components service...
157
chartsengine.rcp.messages.ChartsUI.rendering=Rendering
158
chartsengine.rcp.messages.ChartsUI.renderingColorsMode=Rendering colors mode
159
chartsengine.rcp.messages.ChartsUI.showGrid=Show grid
160
chartsengine.rcp.messages.ChartsUI.showhideGrid=Show/Hide grid
161
chartsengine.rcp.messages.ChartsUI.showhideLegend=Show/Hide legend
162
chartsengine.rcp.messages.ChartsUI.showHideRenderingParameters=Show/Hide rendering parameters
163
chartsengine.rcp.messages.ChartsUI.showhideTitle=Show/Hide title
164
chartsengine.rcp.messages.ChartsUI.showLegend=Show legend
165
chartsengine.rcp.messages.ChartsUI.showTitle=Show title
166
chartsengine.rcp.messages.ChartsUI.thesePreferencesWillApplyToNewChartsPreviouslyCreatedChartsWillNotBeAffected=These preferences will be applied to new charts, previously created charts will not be affected.
83 167
concordance.core.messages.ConcordanceCore.compositeColon=Composite\: 
84
ca.rcp.messages.CAUI.error_cannot_compute_with_selection=** Error\: can not compute CA with current selection\={0} 
85
internalview.rcp.messages.InternalViewUI.error_backto_internalview=** Error\: could not open internal view window\: {0}
86
rcp.messages.TXMUI.form=Form
87
searchengine.core.messages.SearchEngineCore.info_searchEngineStopped=Search engine stopped.
88
searchengine.cqp.core.messages.CQPSearchEngineCore.gettingLastCQPError=Last CQP error retrieval.
89
rcp.messages.TXMUI.paginationOptions=Pagination options
90
statsengine.r.rcp.messages.RUI.refreshingViews=Updating views...
91
core.messages.TXMCore.sAXColon=SAX\: 
92
core.messages.TXMCore.common_numberOfLines=Number of lines
93
rcp.messages.TXMUI.couldNotUnzipBinaryCorpusColon=** Failed to unzip binary corpus {0}
94
ca.rcp.messages.CAUI.errorWhileOpeningCAEditorColonP0=** Error while opening the CA result window\: 
95
progression.core.messages.ProgressionCore.inP0=in
96
ca.rcp.messages.CAUI.showTheRows=Show rows
97
annotation.kr.rcp.messages.KRAnnotationUI.affect=Affect
98
progression.core.messages.ProgressionCore.density=(density)
99
annotation.kr.rcp.messages.KRAnnotationUI.theValueP0IsNotAssociatedWithTheCategoryP1AssociateIt=The {0} value is not associated with the category {1}. Associate it?   
100
rcp.messages.TXMUI.downloading=Downloading…
101
properties.core.messages.PropertiesCore.error=** Error
102
rcp.messages.TXMUI.commands=Commands
103
searchengine.cqp.core.messages.CQPSearchEngineCore.addingAlignmentAttributeToCorpusP0RegistryColonP1=Adding to the register of corpus {0} the alignment attribute {1}...
104
rcp.messages.TXMUI.errorWithElementP0=** Error with element {0}
105
rcp.messages.TXMUI.common_end=End
106
para.rcp.messages.ParaBrowserUI.openParabrowser=Open internal Browser
107
ca.rcp.messages.CAUI.massColumnFormat=Mass column format
108
rcp.messages.TXMUI.fileExplorerColonIncorrectPattern=** File Explorer\: Incorrect Regular Expression
109
rcp.messages.TXMUI.ampSortOptions=&Sort options
110
rcp.messages.TXMUI.confirm=Confirm
168
concordance.core.messages.ConcordanceCore.concordanceOfP0InTheP1Corpus=Concordance of <{0}> in the {1} corpus...
169
concordance.core.messages.ConcordanceCore.context=Context
170
concordance.core.messages.ConcordanceCore.failedToExportConcordanceColonP0=** Failed to export concordance\: {0}.
171
concordance.core.messages.ConcordanceCore.failedToGetTextsLimitsColonP0=** Failed to retrieve texts limits\: {0}.
172
concordance.core.messages.ConcordanceCore.failedToRetrieveTextidPropertyFromLines=** Failed to retrieve ‘text_id' property from rows
173
concordance.core.messages.ConcordanceCore.keyword=Pivot
174
concordance.core.messages.ConcordanceCore.leftContext=LeftContext
175
concordance.core.messages.ConcordanceCore.leftContext_2=Left context
176
concordance.core.messages.ConcordanceCore.none=None
177
concordance.core.messages.ConcordanceCore.reference=Reference
178
concordance.core.messages.ConcordanceCore.references=References
111 179
concordance.core.messages.ConcordanceCore.RESULT_TYPE=Concordance
112
statsengine.r.core.messages.RCore.runningTextSelection=Running text selection…
113
rcp.messages.TXMUI.executionCanceled=Execution canceled.
114
core.messages.TXMCore.failedToRestoreSubcorpus=** Failed to restore subcorpus 
180
concordance.core.messages.ConcordanceCore.resultsRetrievedIn=\ the calculation took 
181
concordance.core.messages.ConcordanceCore.retrievingP0Results=Retrieving {0} results…
182
concordance.core.messages.ConcordanceCore.rightContext=RightContext
183
concordance.core.messages.ConcordanceCore.rightContext_2=Right context
184
concordance.core.messages.ConcordanceCore.undefined=undefined
185
concordance.rcp.messages.ConcordanceUI.ampLeftContextLengthInWords=&Left context length in words
115 186
concordance.rcp.messages.ConcordanceUI.ampRightContextLengthInWords=&Right context length in words
116
ca.rcp.messages.CAUI.canNotComputeCAWithLessThan4RowsInTheTable=** Can not compute CA with less than 4 rows in the table
117
rcp.messages.TXMUI.numberOfLinesColon=Number of lines\: {0}.
118
statsengine.r.rcp.messages.RUI.showEvalLogs=Showing R evaluation logs
119
rcp.messages.TXMUI.saveScript=Save script
120
referencer.rcp.messages.ReferencerUI.showingFirstResultPage=Showing the first page of results
121
core.messages.TXMCore.common_vMax=Vmax
122
edition.rcp.messages.EditionUI.lastPageOfTheText=Last page of the text
123
properties.core.messages.PropertiesCore.numberOfWords=Number of words 
124
chartsengine.rcp.messages.SWTComponentsProvider.monochrome=Monochrome
125
searchengine.cqp.core.messages.CQPSearchEngineCore.readIntegerArrayFromTheCQiServerColonP0=Integer vector read from the CQi server\: {0}.
126
concordance.core.messages.ConcordanceCore.retrievingP0Results=Retrieving {0} results…
127
rcp.messages.TXMUI.failedToCopy=** Error while copying
128
searchengine.cqp.core.messages.CQPSearchEngineCore.readBooleanFromTheCQiServerColonP0=Boolean read from the CQi server\: {0}.
187
concordance.rcp.messages.ConcordanceUI.anErrorOccurredWhileRetrievingTheConcordanceLinesColonP0=An error occurred while retrieving the concordance lines\: {0}.
188
concordance.rcp.messages.ConcordanceUI.canNotOpenConcordanceEditorWithP0=** Can not open the concordance window with {0}.
189
concordance.rcp.messages.ConcordanceUI.concordanceParameters=Concordance Parameters
190
concordance.rcp.messages.ConcordanceUI.deleteSelectedLines=Delete selected rows
191
concordance.rcp.messages.ConcordanceUI.editor_19=…
192
concordance.rcp.messages.ConcordanceUI.editor_21=
193
concordance.rcp.messages.ConcordanceUI.errorWhileBuildingInterfaceColonP0=** Error while building interface\: {0}.
194
concordance.rcp.messages.ConcordanceUI.errorWhileComputingTheConcordanceColonP0=** Error while computing the concordance\: {0}.
195
concordance.rcp.messages.ConcordanceUI.fatalErrorColonP0=** Fatal error\: {0}.
196
concordance.rcp.messages.ConcordanceUI.inf=<
197
concordance.rcp.messages.ConcordanceUI.keyword=Pivot
198
concordance.rcp.messages.ConcordanceUI.left=Left context
199
concordance.rcp.messages.ConcordanceUI.leftContext=Left context
200
concordance.rcp.messages.ConcordanceUI.linesPerAmpPageColon=Lines per &Page\:
201
concordance.rcp.messages.ConcordanceUI.navigation=navigation
202
concordance.rcp.messages.ConcordanceUI.openingCorpusEdition=Opening the edition...
203
concordance.rcp.messages.ConcordanceUI.openingTheConcordanceResult=Opening the concordance window...
204
concordance.rcp.messages.ConcordanceUI.propertiesPanel=Properties panel
205
concordance.rcp.messages.ConcordanceUI.reference=Reference
206
concordance.rcp.messages.ConcordanceUI.references=References
207
concordance.rcp.messages.ConcordanceUI.right=Right context
129 208
concordance.rcp.messages.ConcordanceUI.rightContext=Right context
130
rcp.messages.TXMUI.failedToRename=** Failed to rename
131
rcp.messages.TXMUI.someCriteria=Some criteria
132
rcp.messages.TXMUI.extractingBinaryCorpus=Extracting binary corpus
209
concordance.rcp.messages.ConcordanceUI.size=Size
210
concordance.rcp.messages.ConcordanceUI.sort=Sort
211
concordance.rcp.messages.ConcordanceUI.sorting=Sorting...
212
concordance.rcp.messages.ConcordanceUI.sortingKeywordColumn=Sorting the pivot
213
concordance.rcp.messages.ConcordanceUI.sortingLeftContextColumn=Sorting the left context
214
concordance.rcp.messages.ConcordanceUI.sortingReferenceColumn=Sorting the reference
215
concordance.rcp.messages.ConcordanceUI.sortingRightContextColumn=Sorting the right context
216
concordance.rcp.messages.ConcordanceUI.sortingWithP0=Sorting {0}
217
concordance.rcp.messages.ConcordanceUI.startComputingConcordance=Start of concordance processing
218
concordance.rcp.messages.ConcordanceUI.sup=>
219
concordance.rcp.messages.ConcordanceUI.view=View
220
cooccurrence.core.messages.CooccurrenceCore.coFreq=CoFreq
221
cooccurrence.core.messages.CooccurrenceCore.cooccurrentsOfP0PropertieP1InTheP2Corpus=Cooccurrents of <{0}>, properties [{1}], in the {2} corpus...
222
cooccurrence.core.messages.CooccurrenceCore.errorColonNegativeArgumentInFactlnFunction=** Error\: negative argument in 'factln' function
223
cooccurrence.core.messages.CooccurrenceCore.errorColonNegativeArgumentInRbicolnFunction=** Error\: negative argument in 'rbicoln' function
224
cooccurrence.core.messages.CooccurrenceCore.errorColonNoCooccurrents=** Error\: no cooccurrents
225
cooccurrence.core.messages.CooccurrenceCore.fColon=\ F\: 
226
cooccurrence.core.messages.CooccurrenceCore.freq=Freq
227
cooccurrence.core.messages.CooccurrenceCore.info_buildingLexicalTable=Building lexical table...
228
cooccurrence.core.messages.CooccurrenceCore.info_buildingLineSignatures=Building line signatures...
229
cooccurrence.core.messages.CooccurrenceCore.info_buildingQueries=Building queries...
230
cooccurrence.core.messages.CooccurrenceCore.info_computingSpecificitiesScores=Computing specificities scores...
231
cooccurrence.core.messages.CooccurrenceCore.info_counting=Counting...
232
cooccurrence.core.messages.CooccurrenceCore.info_details=Coocurrences\:\n Corpus\: {0}\n Query\:  {1}\n Properties\: {2}\n Structure\: {3}\n Spans\: {4} < left < {5} ; {6} < right < {7}\n Thresholds\: freq > {8} ; co-freq > {9} ; score > {10}\n\n
233
cooccurrence.core.messages.CooccurrenceCore.info_retreivingMatches=Retrieving matches...
234
cooccurrence.core.messages.CooccurrenceCore.meanDist=MeanDist
235
cooccurrence.core.messages.CooccurrenceCore.meanDistColon=\ M.D.\:
133 236
cooccurrence.core.messages.CooccurrenceCore.occ=Occ
134
index.rcp.messages.IndexUI.index=Index
135
statsengine.r.rcp.messages.RUI.installedSuccessfully='' installed successfully.
136
rcp.messages.TXMUI.metadatasParameters=Metadata parameters
137
statsengine.r.rcp.messages.RUI.checkingRPackages=Checking R packages…
138
core.messages.TXMCore.loadingWorkspaceFromFileColonP0=Loading workspace from the {0} file
139
rcp.messages.TXMUI.milestoneElements=Milestone elements
140
core.messages.TXMCore.and=\ and 
237
cooccurrence.core.messages.CooccurrenceCore.occColon=\ Occ\:
238
cooccurrence.core.messages.CooccurrenceCore.occFreqCoFreqScoreMeanDistMode=Occ\tFreq\tCoFreq\tScore\tMeanDist\tMode
239
cooccurrence.core.messages.CooccurrenceCore.P0CooccurentsForP1Occurrences={0} cooccurrent(s) for {1} occurrence(s) of the pivot.
240
cooccurrence.core.messages.CooccurrenceCore.propertiesColon=\ properties\: 
241
cooccurrence.core.messages.CooccurrenceCore.RESULT_TYPE=Cooccurrence
242
cooccurrence.core.messages.CooccurrenceCore.score=Score
243
cooccurrence.core.messages.CooccurrenceCore.scoreColon=\ Score\:
244
cooccurrence.rcp.messages.CooccurrenceUI.cmin=\ Cmin ≥ 
245
cooccurrence.rcp.messages.CooccurrenceUI.cofrequency=CoFrequency
246
cooccurrence.rcp.messages.CooccurrenceUI.cooccurrences=Cooccurrences
247
cooccurrence.rcp.messages.CooccurrenceUI.cooccurrent=Cooccurrent
248
cooccurrence.rcp.messages.CooccurrenceUI.cooccurrentsPropertiesColon=Cooccurrents properties\:
249
cooccurrence.rcp.messages.CooccurrenceUI.errorWhileReadingCorpusSize=** Error while reading corpus size.
141 250
cooccurrence.rcp.messages.CooccurrenceUI.maximumLeft=Maximum left
142
rcp.messages.TXMUI.errorElementColon=Error element\: ''’
143
rcp.messages.TXMUI.theTableMustContainAtLeastOneLine=The table must have at least one line
144
rcp.messages.TXMUI.addAXsltParameter=Add a XSLT parameter
145
referencer.rcp.messages.ReferencerUI.references=References
146
annotation.kr.rcp.messages.KRAnnotationUI.squencesDeMotsCatgorievaleur=Words sequence (category/value)
147
referencer.rcp.messages.ReferencerUI.referencer=Referencer
148
edition.rcp.messages.EditionUI.errorWhileOpeningEditionColonP0=** Error while opening edition\: {0}
149
statsengine.r.core.messages.RCore.error_unexpectedErrorInRStatisticsEngine=** Unexpected error in R statistics engine\: {0}.
150
rcp.messages.TXMUI.common_displayOptions=Display options
151
rcp.messages.TXMUI.warningColonTheCorpusP0IsCorruptedSomeCommandsWontWorkCorrectly=** Warning\: corpus {0} is corrupted. Some commands will not work correctly.
152
rcp.messages.TXMUI.automaticUpdates=Automatic updates
153
rcp.messages.TXMUI.advancedUserMode=Advanced user mode
154
ca.rcp.messages.CAUI.showhidePointShapes=Show/Hide points
155
ca.core.messages.CACore.rows=Rows
156
core.messages.TXMCore.queryWasColon=Query was\: 
251
cooccurrence.rcp.messages.CooccurrenceUI.maximumRight=Maximum right
252
cooccurrence.rcp.messages.CooccurrenceUI.meanDistance=Mean distance
253
cooccurrence.rcp.messages.CooccurrenceUI.minimumCooccurrencyCountThreshold=Minimum co-frequency of cooccurrents
254
cooccurrence.rcp.messages.CooccurrenceUI.minimumCooccurrencyScoreThreshold=Minimum score of cooccurrents
255
cooccurrence.rcp.messages.CooccurrenceUI.minimumFrequencyThresholdOfTheCooccurrent=Minimum frequency of cooccurrents
256
cooccurrence.rcp.messages.CooccurrenceUI.minimumLeft=Minimum left
257
cooccurrence.rcp.messages.CooccurrenceUI.minimumRight=Minimum right
258
cooccurrence.rcp.messages.CooccurrenceUI.score=Score
259
cooccurrence.rcp.messages.CooccurrenceUI.score_2=\ Score ≥ 
260
cooccurrence.rcp.messages.CooccurrenceUI.scoreFormatDefault00000E00=Score format (default 0.0000E00)
261
cooccurrence.rcp.messages.CooccurrenceUI.sortByColonP0=Sort by {0}
262
cooccurrence.rcp.messages.CooccurrenceUI.theScoreThresholdMustBeARealNumberCurrentValueEqualsP0=The score threshold must be a real number (the current value is {0})
263
cooccurrence.rcp.messages.CooccurrenceUI.thresholdsColonFmin=Thresholds\: Fmin ≥
264
cooccurrence.rcp.messages.CooccurrenceUI.usePartialLexicalTable=Calculate the margins from the frequencies of the co-occurrents instead of the frequencies of all the words of the corpus
265
core.messages.TXMCore.BaseOldParameters_96=Warning no corpus element defined in the {0} file. The corpus won't be correctly loaded.
266
core.messages.TXMCore.binaryDirectoryP0NotFound=Corpus binary folder {0} not found.
267
core.messages.TXMCore.cantFindStructuralUnitForMetadataWithIdColon=** Can not find structural unit for metadata with identifier 
268
core.messages.TXMCore.catalogFileNotFoundP0=** Catalog file {0} not found.
269
core.messages.TXMCore.checkingBinaryFormat=Checking binary corpus format...
270
core.messages.TXMCore.common_absoluteFrequency=Absolute Frequency
271
core.messages.TXMCore.common_cancel=Cancel
272
core.messages.TXMCore.common_cols=Columns
273
core.messages.TXMCore.common_delete=Delete
274
core.messages.TXMCore.common_description=Description
275
core.messages.TXMCore.common_done=Done.
276
core.messages.TXMCore.common_fMax=Fmax
277
core.messages.TXMCore.common_fMin=Fmin
278
core.messages.TXMCore.common_fMinEquals=Fmin\={0}
279
core.messages.TXMCore.common_frequency=Frequency
280
core.messages.TXMCore.common_lowestFrequency=Lowest frequency
281
core.messages.TXMCore.common_noResults=No results.
282
core.messages.TXMCore.common_numberOfLines=Number of lines
283
core.messages.TXMCore.common_ok=OK
284
core.messages.TXMCore.common_P0ItemsForP1Occurrences={0} item(s) for {1} occurrence(s).
285
core.messages.TXMCore.common_P0Occurrences={0} occurrence(s).
286
core.messages.TXMCore.common_P0Positions={0} position(s).
287
core.messages.TXMCore.common_properties=Properties\:
288
core.messages.TXMCore.common_property=Property
289
core.messages.TXMCore.common_queriesColonP0=Queries\: {0}.
290
core.messages.TXMCore.common_query=Query 
291
core.messages.TXMCore.common_reference=Reference
292
core.messages.TXMCore.common_rows=Rows
293
core.messages.TXMCore.common_structuralUnitAndProperty=Structural unit and property
294
core.messages.TXMCore.common_structure=Structure
295
core.messages.TXMCore.common_t=t 
296
core.messages.TXMCore.common_thresholds=Thresholds
297
core.messages.TXMCore.common_units=Units
298
core.messages.TXMCore.common_vMax=Vmax
299
core.messages.TXMCore.common_warning=Warning
300
core.messages.TXMCore.computingColon=Computing\: 
301
core.messages.TXMCore.connectedToCQP=Connected to CQP.
302
core.messages.TXMCore.corpusColon=Corpus\: 
303
core.messages.TXMCore.corpusColongetLocaleColonCQPIsNotReadyToAnswerColon=Corpus\:getLocale\: CQP is not ready to answer\: 
304
core.messages.TXMCore.couldNotCreateTXMHOMEDirectoryColonP0=** Failed to create TXMHOME folder {0}.
305
core.messages.TXMCore.couldntReadCorpusColon=** Can not read the corpus data\: 
306
core.messages.TXMCore.cQiClientNotInitialized=** CQi Client not initialized
307
core.messages.TXMCore.dataDirectoryIsMissingColonP0=The ''data'' folder {0} is missing
308
core.messages.TXMCore.doesNotExists=\ does not exist.
309
core.messages.TXMCore.encodingColon=, Encoding\: 
310
core.messages.TXMCore.endOfCQPWaitTest=End of the CQP waiting test.
311
core.messages.TXMCore.error_error=** Error\: {0}.
312
core.messages.TXMCore.error_error2=Error
313
core.messages.TXMCore.error_errorWhileSortingResult=** Error while sorting result.
314
core.messages.TXMCore.eRRORColonExists=** Error\: does not exist
315
core.messages.TXMCore.errorColonLinkGrplinkAttargetMalformedColonP0=** Error\: linkGrp/link/@target malformed\: {0}.
316
core.messages.TXMCore.errorColonP0=** Error\: {0}.
317
core.messages.TXMCore.errorColonP0CorpusDirectoryIsNotConformantToTXM079CorpusBinaryFormatColonCorpusSkipped=** Error\: the {0} corpus folder is not conformant with TXM 0.7.9 corpus binary format\: corpus skipped.
318
core.messages.TXMCore.errorColonP0CorpusDirectoryIsNotConformantToTXMCorpusBinaryFormatColonCorpusSkipped=** Error\: the {0} corpus folder is not conformant with TXM  corpus binary format\: corpus skipped.
319
core.messages.TXMCore.eRRORColonRead=** Error\: can not read
320
core.messages.TXMCore.errorColonSkippingTheLoadingOfTheP0Corpus=** Error\: the {0} corpus will not be loaded
157 321
core.messages.TXMCore.errorColonTheConnexionToTheServerFailedColonWrongPortFormat=** The connection to the search engine has failed\: the port provided as parameter is not an integer\: {0}.
158
rcp.messages.TXMUI.elisionCharacters=Elision characters
159
rcp.messages.TXMUI.automaticRecomputingWhenChangingAParameter=Automatic recomputing when changing a parameter
160
cooccurrence.core.messages.CooccurrenceCore.info_retreivingMatches=Retrieving matches.
161
rcp.messages.TXMUI.refreshingCorpora=Updating the Corpus view…
162
rcp.messages.TXMUI.dontSaveAndRun=Don''t save and run
163
edition.rcp.messages.EditionUI.editions=Editions
164
annotation.kr.rcp.messages.KRAnnotationUI.delete=Delete
165
rcp.messages.TXMUI.failedToSavePreferencesColonP0=** Failed to save preferences\: {0}.
166
searchengine.cqp.core.messages.CQPSearchEngineCore.readingBooleanFromTheCQiServer=Reading a boolean from the CQi server…
167
wordcloud.core.messages.WordCloudCore.info_aborting=Aborting word cloud computing.
168
cooccurrence.rcp.messages.CooccurrenceUI.cooccurrentsPropertiesColon=Cooccurrents properties\:
169
rcp.messages.TXMUI.valueSelector=Values selector
170
rcp.messages.TXMUI.namesColon=Names\: {0}.
171
index.rcp.messages.IndexUI.computingIndex=Computing index…
172
progression.rcp.messages.ProgressionUI.defaultEditionIsMissing=Default edition is missing.
322
core.messages.TXMCore.errorColonThisExceptionShouldNotBeThrown=** Error\: this exception should not be thrown
323
core.messages.TXMCore.errorColonWhileConnectionToSearchEngineWithTheFollowingParametersColon=** Failed to connect to the search engine with the following parameters\: {0} and {1}.
324
core.messages.TXMCore.errorConfigdirDirColon=** Error in the configuration folder\: 
325
core.messages.TXMCore.errorDuringWorkspaceInitializationColonP0=** Failed to initialize workspace\: {0}.
326
core.messages.TXMCore.errorLoadingWorkspaceFromFileColonP0=** Failed to read workspace from file {0}.
327
core.messages.TXMCore.errorRegDirColon=** Error in the registry directory\: 
173 328
core.messages.TXMCore.errorWhileConnectingToSearchEngine=** Failed to connect to the search engine\: 
174
statsengine.r.rcp.messages.RUI.failedCurrentVersionIsStill='' failed (current version is still 
329
core.messages.TXMCore.errorWhileGettingMetadatasFromBaseimportMetadatasColon=** Error while retrieving metadata of the corpus\: 
330
core.messages.TXMCore.errorWhilePostInstallingPluginsP0=Error while post-installing plugins\: {0}
331
core.messages.TXMCore.errorWhilePreInstallingPluginsP0=Error while pre-installing plugins\: {0}
332
core.messages.TXMCore.errorWhileWaitingForCQP=** Error while waiting for CQP\: {0}.
333
core.messages.TXMCore.evaluatingExtensionColonP0FromP1=Evaluating extension\: {0} from {1}
334
core.messages.TXMCore.exceptionColonP0=Exception\: {0}
335
core.messages.TXMCore.failedToAccessStructuralPropertyValues=** Failed to access structural property values 
336
core.messages.TXMCore.failedToCopyTXMFilesFromTXMINSTALLDIRToTXMHOMEColonP0=** Failed to copy TXM files from the TXMINSTALL DIR folder to the TXMHOME folder\: {0}.
337
core.messages.TXMCore.failedToCreatePartColon=** Failed to create part\: 
338
core.messages.TXMCore.failedToExec=** Failed to execute {0}\: {1}.
339
core.messages.TXMCore.failedToExecTaskkillIMCqpserverexeFColon=** Failed to execute ''taskkill /IM cqpserver.exe /F''\: {0}.
340
core.messages.TXMCore.failedToExecTskillCqpserverexeColon=** Failed to execute ''tskill cqpserver.exe''\: {0}.
341
core.messages.TXMCore.failedToGetLastCQPErrorColon=** Failed to retrieve last CQP error\: 
342
core.messages.TXMCore.failedToGetSupValuesOf=** Failed to retrieve structural values of 
343
core.messages.TXMCore.failedToLoadBaseParametersFromTheP0File=** Failed to load the corpus parameters from the {0} file.
344
core.messages.TXMCore.failedToRestorePartition=** Failed to restore partition 
345
core.messages.TXMCore.failedToRestoreSubcorpus=** Failed to restore subcorpus 
346
core.messages.TXMCore.failedToStartMemCqiClientColon=** Failed to start CQP in memory mode.
347
core.messages.TXMCore.file=** File 
348
core.messages.TXMCore.fillImportxmlWithColon=Fill ''import.xml'' file with\: 
349
core.messages.TXMCore.filterManagerErrorColonInitializationP0NotFound=** Initialization error of the filter manager\: {0} not found.
350
core.messages.TXMCore.fmax=, fmax 
351
core.messages.TXMCore.fmin=, fmin 
352
core.messages.TXMCore.fminP0fmaxP1tP2vP3=fmin {0} fmax {1} t {2} v {3}
353
core.messages.TXMCore.focusIsEmptyOrNull=Focus is empty or null
354
core.messages.TXMCore.hasNoBase=has no ''root corpus'
355
core.messages.TXMCore.htmlDirectoryIsMissingColonP0=The ''HTML'' folder {0} is missing
356
core.messages.TXMCore.in=\ in \t\t\t\t\t\t\t\t
357
core.messages.TXMCore.initializationOfGroovyImportScriptRunner=Initialization of GroovyImportScriptRunner
358
core.messages.TXMCore.initializingCorpora=Initializing corpora...
359
core.messages.TXMCore.initializingToolbox=Initializing Toolbox...
360
core.messages.TXMCore.iOColon=IO\: 
361
core.messages.TXMCore.isMissing=''{0}'' can not be found.
362
core.messages.TXMCore.isNotAValidCQPIDForACorpusItMustBeInUppercaseCharacters=\ is not a valid CQP identifier for a corpus. It must be in uppercase characters.
363
core.messages.TXMCore.isNotAValidCQPIdForASubcorpusItMustBeAnUppercaseCharactersFollowedByLowercaseCharacters=\ is not a valid CQP identifier for a sub-corpus. It must be in uppercase followed by lowercase characters.
364
core.messages.TXMCore.languageColon=, Language\: 
365
core.messages.TXMCore.loadingExtensionPostInstallation=Loading plug-in post-installation extensions...
366
core.messages.TXMCore.loadingExtensionPreInstallation=Loading extensions (pre-installation)...
367
core.messages.TXMCore.loadingExtensions=Loading extensions...
368
core.messages.TXMCore.loadingWorkspaceFromFileColonP0=Loading workspace from the {0} file
369
core.messages.TXMCore.malformedURLFileP0=** Malformed URL\: {0}.
370
core.messages.TXMCore.managerErrorDuringInitializationColonP0NotFound=** Catalog Manager initialization error\: {0} not found.
371
core.messages.TXMCore.matchesFound=matches found.
372
core.messages.TXMCore.noValuesGiven=No values given
373
core.messages.TXMCore.noWorkspaceFoundCreatingANewOneP0=** No workspace found, creating a new workspace in the {0} folder.
374
core.messages.TXMCore.numberOfMatch=Number of matches 
375
core.messages.TXMCore.numberOfSubMatch=Number of sub-matches 
376
core.messages.TXMCore.orTheEngineWasNotStartedWithTheCommandLineColon=** CQP server startup failed with the command line\: {0}.
377
core.messages.TXMCore.P0BuiltParts={0} partie(s) construite(s).
378
core.messages.TXMCore.pARAMSColonP0=Parameters\: {0}
379
core.messages.TXMCore.parentDirectoryP0NotFound=Parent folder ''{0}'' not found.
380
core.messages.TXMCore.processing=Processing...
381
core.messages.TXMCore.processingTextColonP0=Processing file ''{0}''...
382
core.messages.TXMCore.queryingPartitionP0=Querying partition {0}
383
core.messages.TXMCore.queryOnP0ColonP1InfP2=Query on {0} \: {1} <- {2}
384
core.messages.TXMCore.queryWasColon=Query was\: 
385
core.messages.TXMCore.readCorpusInfosFromOldImportxmlFileColonP0=Reading the corpus properties from the ''import.xml'' file\: {0}
386
core.messages.TXMCore.readError=** Read error
387
core.messages.TXMCore.registryFileIsMissingColonP0=The ''registry'' file {0} is missing
388
core.messages.TXMCore.reorganizingFilesOfP0=reorganizing files of {0}
389
core.messages.TXMCore.sAXColon=SAX\: 
390
core.messages.TXMCore.selectionErrorColonTheCorpus=Object selection error\: the corpus 
391
core.messages.TXMCore.supBeginningExecutionOfP0=> beginning execution of {0}
392
core.messages.TXMCore.supEndOfExecution=> end of execution 
393
core.messages.TXMCore.textMetadataColon=Text metadata\: 
394
core.messages.TXMCore.theFocusCannotBeNullOrEmpty=The focus can not be empty or null.
395
core.messages.TXMCore.theFocusIsEmptyOrNull=** The focus is empty or null.
396
core.messages.TXMCore.theP0PartFocusDoesntBelongToPartitionP1=There is no {0} part in the {1} partition.
397
core.messages.TXMCore.ToolboxStatesWorkspaceColonP0=\ Workspace\: {0}
398
core.messages.TXMCore.txmDirectoryIsMissingColonP0=The ''txm'' folder {0} is missing
399
core.messages.TXMCore.tXMNeedsFoldersColonP0P1P2AndP3=TXM needs the folders\: {0}, {1}, {2} and {3}.
400
core.messages.TXMCore.unknownPartitionName=** Unknown partition name.
401
core.messages.TXMCore.v=, v 
175 402
core.messages.TXMCore.warningColonCantLoadCorpus=Warning\: can not load the corpus 
176
core.messages.TXMCore.in=\ in \t\t\t\t\t\t\t\t
177
statsengine.r.rcp.messages.RUI.somePackagesAreMissingSeeConsoleForDetails=Some packages are missing. See the console for details.
403
core.messages.TXMCore.warningColonDuplicateQueryEntryColonP0=Warning\: the {0} query is duplicated.
404
core.messages.TXMCore.warningColonQueryFailedColonP0=Warning\: query {0} failed.
405
core.messages.TXMCore.wrongLoginOrPasswordOrPortColon=Wrong login, password, host or port in \: {0}, {1}, {2} ,{3}.
406
core.messages.TXMCore.xmlValidationColonP0DoesNotExists=XML Validation\: {0} does not exists ?
407
core.messages.TXMCore.xmlValidationColonP0IsADirectory=XML Validation\: {0} is a directory.
408
core.messages.TXMCore.xmlValidationColonP0IsNotReadable=XML Validation\: {0} is not readable.
409
edition.rcp.messages.EditionUI.abortingColonSelectionIsNotACorpus=Aborting\: selection is not a corpus
410
edition.rcp.messages.EditionUI.back=Back
411
edition.rcp.messages.EditionUI.cannotCallTxmcommandWithoutIdParameterColonP0=** Can not call a command without the ''id'' parameter ({0})
412
edition.rcp.messages.EditionUI.CommandLink_empty=
413
edition.rcp.messages.EditionUI.controls=controls
414
edition.rcp.messages.EditionUI.copyTextSelection=Copy text selection
415
edition.rcp.messages.EditionUI.couldNotFindFirstTextOfP0IDInTheCorpus=** Failed to find text of ID {0} in the corpus.
416
edition.rcp.messages.EditionUI.edition=Edition
417
edition.rcp.messages.EditionUI.editions=Editions
418
edition.rcp.messages.EditionUI.enableFastWordHighlight=Enable fast word highlight
419
edition.rcp.messages.EditionUI.error_while_reading=** Error while reading {0}\: {1}
420
edition.rcp.messages.EditionUI.errorColonCouldNotRetrieveLineWordIdsAbortingBackToText=** Error\: could not retrieve word identifiers. Aborting back to text.
178 421
edition.rcp.messages.EditionUI.errorColonTxmeditioncorpusidEditionidTextidWordidCalledWithNoArguments=** Error\: txmedition(corpusid, editionid?, textid?, wordid?) called with no arguments
179
statsengine.r.rcp.messages.RUI.pathToRBinary=Path to the R executable file
180
rcp.messages.TXMUI.eRROR=\ ERROR 
181
rcp.messages.TXMUI.chooseOutfile=Choose the output file
182
rcp.messages.TXMUI.computeSubCorpusOnP0QueryColonP1=Computing a sub-corpus of {0} with query {1}
183
rcp.messages.TXMUI.integer=Integer
422
edition.rcp.messages.EditionUI.errorWhileGettingAvailableEditionsColonP0=** Error while retrieving available editions\: {0}
423
edition.rcp.messages.EditionUI.errorWhileOpeningEditionColonP0=** Error while opening edition\: {0}
424
edition.rcp.messages.EditionUI.errorWhileOpeningEditorColonP0=** Error while opening edition\: {0}
425
edition.rcp.messages.EditionUI.failToRetrieveFirstPageOfEditionEqualsP0AndTextEqualsP1=** Failed to retrieve the first page of the {0} edition of the text {1}.
426
edition.rcp.messages.EditionUI.firstPageOfTheText=First page of the text
427
edition.rcp.messages.EditionUI.firstTextOfTheCorpus=First text of the corpus
428
edition.rcp.messages.EditionUI.forward=Forward
429
edition.rcp.messages.EditionUI.lastPageOfTheText=Last page of the text
430
edition.rcp.messages.EditionUI.lastTextOfTheCorpus=Last text of the corpus
431
edition.rcp.messages.EditionUI.nextPage=Next page
432
edition.rcp.messages.EditionUI.nextText=Next text
433
edition.rcp.messages.EditionUI.noEditionFound=Edition not found
434
edition.rcp.messages.EditionUI.noEditionFoundForTextEqualsP0AndEditionEqualsP1=No ''{1}'' edition found for text {0}
435
edition.rcp.messages.EditionUI.noEditionToOpen=No edition available.
436
edition.rcp.messages.EditionUI.noEditionWithNameEqualsP0AvailableForTextEqualsP1=No "{1}" edition found for text {0}.
437
edition.rcp.messages.EditionUI.openingDefaultEditionsColonP0=Opening edition "{0}"...
438
edition.rcp.messages.EditionUI.openingWithFirstEditionNoDefaultEditionSetColonP0=Opening the "{0}" edition (no default edition).
439
edition.rcp.messages.EditionUI.pageButtons=page buttons
440
edition.rcp.messages.EditionUI.pageNotFoundP0=Page ''{0}'' not found.
441
edition.rcp.messages.EditionUI.previousPage=Previous page
442
edition.rcp.messages.EditionUI.previousText=Previous text
443
edition.rcp.messages.EditionUI.reload=Reload
444
edition.rcp.messages.EditionUI.sCRIPTRETURNEDEqualsP0=Script returned ''{0}''
445
edition.rcp.messages.EditionUI.selectOneOrMoreEditions=Select one or more editions.
446
edition.rcp.messages.EditionUI.textButtons=text browsing buttons
447
edition.rcp.messages.EditionUI.warningColonCouldNotFindEditionForNameEqualsP0=Warning\: could not retrieve edition ''{0}''
448
edition.rcp.messages.EditionUI.warningColonUnknownedParameterIdEqualsP0=Warning\: unknown parameter of identifier {0}.
449
groovy.core.messages.Groovy.errorImportNotCorrectlyEndedSeeConsoleMessages=Error\: import not correctly ended. See previous messages.
450
groovy.core.messages.Groovy.errorTreeTaggerAnnotationEngineIsNotReady=** Error\: TreeTagger annotation engine is not ready please check TXM > Advance > NLP > TreeTagger preferences. Aborting.
451
groovy.core.messages.Groovy.restartingToolboxSearchengines=Restarting search engine...
452
groovy.core.messages.Groovy.startingTheP0GroovyImportScript=Starting the {0} Groovy import script.
453
index.core.messages.IndexCore.computingTheLexiconOfSubcorpusP0=Computing the lexicon of sub-corpus {0}…
454
index.core.messages.IndexCore.consoleColonP0=Console\: {0}
455
index.core.messages.IndexCore.error_failedToExportLexiconColonP0=** Failed to export Lexicon \: {0}.
456
index.core.messages.IndexCore.formsAndFrequenciesTablesMustHaveTheSameSize=Forms and frequencies tables must have the same size.
457
index.core.messages.IndexCore.indexColonCorpusP0queryP1propertiesP2FminP3FmaxP4=Index\:\n\tCorpus {0}\n\tQuery {1}\n\tProperties {2}\n\tFmin {3}\n\tFmax {4}
458
index.core.messages.IndexCore.indexColonPartitionP0queryP1propertiesP2FminP3FmaxP4=Index\:\n\tPartition {0}\n\tQuery {1}\n\tProperties {2}\n\tFmin {3}\n\tFmax {4}
459
index.core.messages.IndexCore.indexOfP0PropertiesP1InTheP2Corpus=Index of <{0}>, properties [{1}], in the {2} corpus...
460
index.core.messages.IndexCore.lexicon=Lexicon
461
index.core.messages.IndexCore.lexiconColonP0=Lexicon\: {0}
462
index.core.messages.IndexCore.lexiconOfP0InTheP1Corpus=Lexicon of property [{0}] in the {1} corpus...
463
index.core.messages.IndexCore.RESULT_TYPE=Index
464
index.rcp.messages.IndexUI.computingIndex=Computing index…
465
index.rcp.messages.IndexUI.couldntInitializeIndexTable=**  Can not initialize the index table
466
index.rcp.messages.IndexUI.failedToComputeIndex=** Failed to compute the index
467
index.rcp.messages.IndexUI.index=Index
468
index.rcp.messages.IndexUI.indexColonQueryIsEmpty=Index\: query is empty.
469
index.rcp.messages.IndexUI.IndexEditor_17=
470
index.rcp.messages.IndexUI.indexOfInfP0SupWithPropertyColonP1InTheCorpusColonP2=Index of the query <{0}> with property {1} in the {2} corpus.
471
index.rcp.messages.IndexUI.indexOfInfP0SupWithPropertyColonP1InThePartitionColonP2=Index of the query <{0}> with property {1} in the {2} partition.
472
index.rcp.messages.IndexUI.infos=Informations
473
index.rcp.messages.IndexUI.numberOfLinesPerResultPage=Number of rows per page of results
474
index.rcp.messages.IndexUI.openingIndexResults=Opening the Index
475
index.rcp.messages.IndexUI.openingTheIndexResults=Opening the index table
476
index.rcp.messages.IndexUI.pageSize=Results per page
477
internalview.core.messages.InternalViewCore.internalViewColonFailedToRetrieveStructPropertiesValuesColonP0=** Internal view\: failed to retrieve structural property values\: {0}.
478
internalview.core.messages.InternalViewCore.noStructureInformations=\  No. structure informations
479
internalview.core.messages.InternalViewCore.RESULT_TYPE=Internal View
480
internalview.core.messages.InternalViewCore.structureInformationsColon=\  Structure informations\: 
481
internalview.rcp.messages.InternalViewUI.error_backto_internalview=** Error\: could not open internal view window\: {0}
482
internalview.rcp.messages.InternalViewUI.errorColonSelectionIsNotACorpus=** Error\: the selected object is not a corpus
483
internalview.rcp.messages.InternalViewUI.errorWhileInternalViewGoBackToP0=** Error while internal view go back to {0}
484
internalview.rcp.messages.InternalViewUI.navigation=navigation
485
internalview.rcp.messages.InternalViewUI.queryColonP0=query\: {0}
486
internalview.rcp.messages.InternalViewUI.structuralProperties=Structural properties\: 
487
internalview.rcp.messages.InternalViewUI.structure=Structure\: 
488
lexicaltable.core.messages.LexicalTableCore.error_lineXDoesNotHaveXXolumns=Line {0} does not have {1} column(s).
489
lexicaltable.core.messages.LexicalTableCore.error_marginIsHigherThanThePartitionSize=** Error\: margins are larger than the sum of the parts.
490
lexicaltable.core.messages.LexicalTableCore.error_notEnoughColumns=Not enough columns ({0})\: minimum is two.
491
lexicaltable.core.messages.LexicalTableCore.info_buildingLexicalTableWith=Building lexical table with {0}.
492
lexicaltable.core.messages.LexicalTableCore.RESULT_TYPE=Lexical table
493
lexicaltable.rcp.messages.LexicalTableUI.canNotCreateALexicalTableWithAnIndexCreatedOnACorpus=** Can not create a lexical table from an index created on a corpus.
494
lexicaltable.rcp.messages.LexicalTableUI.deleteColsColonP0=Deleting columns {0}...
495
lexicaltable.rcp.messages.LexicalTableUI.errorColonDifferentColumnsNumberColonBeforeP0AfterP1=** Error\: the number of columns differs\: {0} before and {1} after.
496
lexicaltable.rcp.messages.LexicalTableUI.errorWhileImportingDataColonP0=** Error while importing data {0}.
497
lexicaltable.rcp.messages.LexicalTableUI.failedToImportLexicalTable=** Failed to import lexical table.
498
lexicaltable.rcp.messages.LexicalTableUI.mergeColsColonP0=Merging columns\: {0}...
499
lexicaltable.rcp.messages.LexicalTableUI.mergeOrDeleteColumns=Merge or Delete columns
500
lexicaltable.rcp.messages.LexicalTableUI.mergeOrDeleteRows=Merge or Delete rows
501
lexicaltable.rcp.messages.LexicalTableUI.mergingLines=Merging lines
502
lexicaltable.rcp.messages.LexicalTableUI.openingMargeConfigurationDialog=Opening the margins configuration dialog box
503
lexicaltable.rcp.messages.LexicalTableUI.selectWhichMarginsYouWantToUse=Select which margins you want to use
504
lexicaltable.rcp.messages.LexicalTableUI.tP0vP1fminP2fmaxP3=T {0} V {1} Fmin {2} Fmax {3}
505
lexicaltable.rcp.messages.LexicalTableUI.useAllOccurrences=Calculate the margins from the frequencies of all the words of the corpus
506
lexicaltable.rcp.messages.LexicalTableUI.userIndexOccurrences=Calculate the margins only from the frequencies of the elements of the index
507
lexicaltable.rcp.messages.LexicalTableUI.vocabulariesMustShareTheSamePartitionColonP0=** Vocabularies must share the same partition\: {0}.
508
lexicaltable.rcp.messages.LexicalTableUI.vocabulariesMustShareTheSamePropertiesColonP0=** Vocabularies must share the same properties\: {0}.
509
links.rcp.messages..noMatchesWasSetCommandCanceled=No matches parameter set, command aborted.
510
links.rcp.messages..noQueryWasSetCommandCanceled=No Query parameter set, command aborted.
511
para.rcp.messages.ParaBrowserUI.openingTheParabrowser=Opening the internal browser
512
para.rcp.messages.ParaBrowserUI.openParabrowser=Open internal Browser
513
para.rcp.messages.ParaBrowserUI.paraBrowserColonGetNextP0StructP1ParaidP2ValueP3=ParaBrowser\: get next({0}) struct {1} paraid {2} value {3}
514
para.rcp.messages.ParaBrowserUI.ParaBrowserEditor_21=_
515
para.rcp.messages.ParaBrowserUI.refColonP0=Ref\: {0}
... Ce différentiel a été tronqué car il excède la taille maximale pouvant être affichée.

Formats disponibles : Unified diff