Révision 1517

tmp/org.txm.cooccurrence.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 1517)
3 3

  
4 4
command.name.4 = Envoyer vers la cooccurrence
5 5

  
6
command.tooltip = Calculer les cooccurrents d''une requ\u00EAte
6
command.tooltip = Calculer les cooccurrents d'une requ\u00EAte
7 7

  
8 8
editor.name = Cooccurrences
9 9

  
tmp/fakeupdatesite/.project (revision 1517)
8 8
	</buildSpec>
9 9
	<natures>
10 10
	</natures>
11
	<linkedResources>
12
		<link>
13
			<name>0.8.0/ext/stable2</name>
14
			<type>2</type>
15
			<locationURI>$%7BPARENT-2-PROJECT_LOC%7D/TXMReleasePlugins.site</locationURI>
16
		</link>
17
	</linkedResources>
11 18
</projectDescription>
tmp/org.txm.edition.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 1517)
7 7

  
8 8
command.name.0 = Lire en plein texte
9 9

  
10
command.tooltip = Lire l''\u00E9dition
10
command.tooltip = Lire l'\u00E9dition
11 11

  
12
command.tooltip.0 = Lire l''\u00E9dition
12
command.tooltip.0 = Lire l'\u00E9dition
13 13

  
14 14
editor.name = \u00C9dition
15 15

  
tmp/org.txm.index.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 1517)
3 3

  
4 4
command.name.0 = Lexique
5 5

  
6
command.name.2 = Envoyer vers l''index
6
command.name.2 = Envoyer vers l'index
7 7

  
8
command.tooltip = Calculer le lexique d''une requ\u00EAte
8
command.tooltip = Calculer le lexique d'une requ\u00EAte
9 9

  
10 10
editor.name = Index
11 11

  
tmp/org.txm.analec.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 1517)
16 16

  
17 17
command.label.2 = XML-TEI Analec
18 18

  
19
command.name = Charger une structure d''annotation...
19
command.name = Charger une structure d'annotation...
20 20

  
21
command.name.0 = Editer la structure d''annotation
21
command.name.0 = Editer la structure d'annotation
22 22

  
23
command.name.1 = Sauver la structure d''annotation
23
command.name.1 = Sauver la structure d'annotation
24 24

  
25 25
command.name.10 = Installer
26 26

  
tmp/org.txm.statsengine.r.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 1517)
6 6
command.name.46   = Ex\u00E9cuter la s\u00E9lection de texte
7 7
command.name.53   = Envoyer vers R
8 8
command.name.59   = OpenEmptyTextEditor
9
command.name.61   = afficher l''aide svg
9
command.name.61   = afficher l'aide svg
10 10
command.name.64   = CopySelection
11 11
command.name.90   = V\u00E9rifier les packages R
12 12
command.name.93   = Reconnecter le RWorkspace
tmp/org.txm.rcp/src/main/java/org/txm/rcp/preferences/TXMMainPreferencePage.java (revision 1517)
43 43
/**
44 44
 * The Class TextometriePreferencePage.
45 45
 */
46
public class TXMMainPreferencePage extends TXMPreferencePage {
46
public class TXMMainPreferencePage extends RCPPreferencesPage {
47 47

  
48 48
	/** The preferences. */
49 49
//	StringButtonFieldEditor buttonExport, buttonImport;
......
75 75
	 */
76 76
	@Override
77 77
	protected void createFieldEditors() {
78
		Group generalGroup = new Group(getFieldEditorParent(), SWT.NONE);
79
		generalGroup.setText(TXMUIMessages.generalPreferencesBackup);
80
		GridData gridData = new GridData(SWT.FILL, SWT.FILL, true, false);
81
		gridData.horizontalSpan = 2;
82
		generalGroup.setLayoutData(gridData);
83
		generalGroup.setLayout(new RowLayout(SWT.VERTICAL));
78
//		Group generalGroup = new Group(getFieldEditorParent(), SWT.NONE);
79
//		generalGroup.setText(TXMUIMessages.generalPreferencesBackup);
80
//		GridData gridData = new GridData(SWT.FILL, SWT.FILL, true, false);
81
//		gridData.horizontalSpan = 2;
82
//		generalGroup.setLayoutData(gridData);
83
//		generalGroup.setLayout(new RowLayout(SWT.VERTICAL));
84 84

  
85 85

  
86 86
//		buttonExport = new StringButtonFieldEditor("export_prefs", "", generalGroup) { //$NON-NLS-1$ //$NON-NLS-2$
......
185 185
//		addField(buttonImport);
186 186

  
187 187
		// disable if expert user
188
		if (!TBXPreferences.getInstance().getBoolean(TBXPreferences.EXPERT_USER)) {
189 188
			Group updateGroup = new Group(getFieldEditorParent(), SWT.NONE);
190 189
			updateGroup.setText(TXMUIMessages.automaticUpdates);
191 190
			GridData gridData2 = new GridData(SWT.FILL, SWT.FILL, true, false);
......
205 204
			//update.load();
206 205
//			System.out.println("after 1st load: "+updatePrefStore.getBoolean(PreferenceConstants.PREF_AUTO_UPDATE_ENABLED));
207 206
			addField(update);
208
		}
209 207
	}
210 208
}
tmp/org.txm.rcp/src/main/java/org/txm/rcp/preferences/DebugPreferencePage.java (revision 1517)
20 20
	public void createFieldEditors() {
21 21
		// Show all result nodes in Corpora view
22 22
		addField(new BooleanFieldEditor(TBXPreferences.SHOW_ALL_RESULT_NODES, TXMUIMessages.showAllResultNodesInCorporaView, getFieldEditorParent()));
23
		addField(new StringFieldEditor(TBXPreferences.UPDATESITE, "Update site addres", getFieldEditorParent()));
23
		addField(new StringFieldEditor(TBXPreferences.UPDATESITE, "Update site address", getFieldEditorParent()));
24 24
	}
25 25
	
26 26
	
tmp/org.txm.rcp/src/main/java/org/txm/rcp/swt/dialog/QueryAssistDialog.java (revision 1517)
174 174
			Composite withinComposite = new Composite(mainPanel, SWT.NONE);
175 175
			withinComposite.setLayout(new GridLayout(2, false));
176 176
			withinButton = new Button(withinComposite, SWT.CHECK);
177
			withinButton.setText("within structure: ");
177
			withinButton.setText(TXMUIMessages.withinStructure); //"within structure: "
178 178
			withinButton.setToolTipText("Check to add structure contraint");
179 179
			withinButton.addSelectionListener(new SelectionListener() {
180 180
				@Override
tmp/org.txm.rcp/src/main/java/org/txm/rcp/messages/TXMUIMessages.java (revision 1517)
545 545
	public static String textEditorColonP0EncodingFoundP1; 
546 546
	public static String error; 
547 547
	public static String automaticRecomputingWhenChangingAParameter; 
548
	public static String doNotConfirmToDeleteAnObject; 
548
	public static String doNotConfirmToDeleteAnObject;
549 549

  
550 550

  
551

  
552
	public static String withinStructure; 
553

  
554

  
551 555
	
552 556
	static {
553 557
		// initialize resource bundle
tmp/org.txm.rcp/src/main/java/org/txm/rcp/messages/messages.properties (revision 1517)
475 475
displayInFullText=Display in full text…
476 476
showHideCommandParameters=Show/Hide command parameters
477 477
startsWith=starts with
478
withinStructure=within structure
tmp/org.txm.rcp/src/main/java/org/txm/rcp/messages/messages_fr.properties (revision 1517)
476 476
displayInFullText=Afficher en plein texte…
477 477
showHideCommandParameters=Afficher/Masquer les paramètres de commande
478 478
startsWith=commence par
479
withinStructure=limité aux structures
tmp/org.txm.rcp/OSGI-INF/l10n/bundle.properties (revision 1517)
312 312
command.tooltip.24      = XML-TMX
313 313
command.tooltip.25      = CQP
314 314
command.tooltip.26      = Restart TXM
315
command.tooltip.27      = After you''ve copied a text use this function
315
command.tooltip.27      = After you've copied a text use this function
316 316
command.tooltip.28      = Import a directory of files in CNR format associated to a CSV metadata file
317 317
command.tooltip.29      = Import a directory of files in Hyperbase format
318 318
command.tooltip.3       = Select a subset of words of the selected item
......
438 438
menu.label.7   = View
439 439
menu.label.8   = Perspectives
440 440
menu.label.9   = Views
441
menu.tooltip   = Read TXM User''s Guide
441
menu.tooltip   = Read TXM User's Guide
442 442
menu.tooltip.0 = view
443 443
menu.tooltip.1 = Recettes de plugins
444 444

  
tmp/org.txm.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 1517)
19 19
command.description.3   = Mise \u00E0 jour de TXM
20 20
command.description.4   = Mise \u00E0 jour de TXM
21 21
command.description.5   = Supprimer un objet
22
command.description.6   = Calcul ou mise \u00E0 jour du r\u00E9sultat d''un \u00E9diteur
22
command.description.6   = Calcul ou mise \u00E0 jour du r\u00E9sultat d'un \u00E9diteur
23 23
command.label           = Ouvrir dans un navigateur...
24 24
command.label.0         = Cordial + CSV
25 25
command.label.1         = XML/w + CSV
......
52 52
command.label.125       = Dimensions
53 53
command.label.126       = Classification
54 54
command.label.127       = Envoyer vers R
55
command.label.128       = Envoyer vers l''Index
55
command.label.128       = Envoyer vers l'Index
56 56
command.label.129       = Copier
57 57
command.label.13        = Charger corpus TXM 0.5
58 58
command.label.130       = Coller
......
68 68
command.label.14        = \u00C0 Propos de TXM
69 69
command.label.140       = Afficher les num\u00E9ros de ligne
70 70
command.label.143       = Ex\u00E9cuter
71
command.label.144       = Activer l''affichage des caract\u00E8res invisibles
72
command.label.145       = Retour \u00E0 l''\u00E9tat initial du fichier
71
command.label.144       = Activer l'affichage des caract\u00E8res invisibles
72
command.label.145       = Retour \u00E0 l'\u00E9tat initial du fichier
73 73
command.label.146       = Mettre \u00E0 jour le corpus
74 74
command.label.147       = Recoder le corpus
75 75
command.label.148       = Ouvrir biblio
......
90 90
command.label.161       = Trouver le suivante
91 91
command.label.162       = Recherche incr\u00E9mentielle
92 92
command.label.163       = Recherche incr\u00E9mentielle (invers\u00E9e)
93
command.label.164       = Retour \u00E0 l''\u00E9tat initial du fichier
93
command.label.164       = Retour \u00E0 l'\u00E9tat initial du fichier
94 94
command.label.165       = Tout s\u00E9lectionner
95 95
command.label.166       = Aller \u00E0 la ligne...
96 96
command.label.167       = Hyperlien
......
108 108
command.label.178       = FAQ
109 109
command.label.179       = Contribuer
110 110
command.label.18        = Couper
111
command.label.180       = Tester les modules d''imports
111
command.label.180       = Tester les modules d'imports
112 112
command.label.181       = V\u00E9rifier les mises \u00E0 jour
113 113
command.label.182       = Ajouter une extension
114 114
command.label.183       = Vue interne
115 115
command.label.184       = Recoder le corpus
116 116
command.label.185       = Vue interne
117 117
command.label.186       = \u00C9diter
118
command.label.187       = Cr\u00E9er une macro \u00E0 partir d''un template
118
command.label.187       = Cr\u00E9er une macro \u00E0 partir d'un template
119 119
command.label.188       = Copier dans le presse-papier
120 120
command.label.189       = Synchronization des valeurs
121 121
command.label.19        = Copier
......
159 159
command.label.52        = Raccourcis clavier
160 160
command.label.53        = Signaler un bug
161 161
command.label.54        = Proposer une am\u00E9lioration
162
command.label.55        = S''inscrire \u00E0 la liste de diffusion txm-users
162
command.label.55        = S'inscrire \u00E0 la liste de diffusion txm-users
163 163
command.label.56        = T\u00E9l\u00E9chargements TXM
164 164
command.label.57        = Coller
165 165
command.label.58        = Exporter les donn\u00E9es
......
183 183
command.label.74        = Envoyer vers les concordances
184 184
command.label.75        = Changer la langue
185 185
command.label.76        = Chat #txm
186
command.label.77        = Envoyer vers l''Index
186
command.label.77        = Envoyer vers l'Index
187 187
command.label.78        = TXT + CSV
188 188
command.label.79        = Lexique
189 189
command.label.8         = Partition
......
227 227
command.name.16         = Supprimer un Texte
228 228
command.name.17         = Construire un Corpus
229 229
command.name.18         = Supprimer tous les corpus
230
command.name.19         = Ouvrir l''\u00E9diteur de test
230
command.name.19         = Ouvrir l'\u00E9diteur de test
231 231
command.name.2          = Cr\u00E9er une Partition
232 232
command.name.20         = Choisir moteur de recherche
233 233
command.name.21         = Ex\u00E9cuter Script
234
command.name.22         = Ex\u00E9cuter un Script d''import
234
command.name.22         = Ex\u00E9cuter un Script d'import
235 235
command.name.23         = Description
236 236
command.name.24         = Exporter les donn\u00E9es
237 237
command.name.25         = Red\u00E9marrer
238 238
command.name.26         = Supprimer
239 239
command.name.27         = Index
240 240
command.name.28         = Importe un corpus depuis le presse-papier (FR)
241
command.name.29         = Ouvre l''\u00E9dition
241
command.name.29         = Ouvre l'\u00E9dition
242 242
command.name.3          = Convertir ancien fichier binaire
243 243
command.name.30         = IndexToConcordances
244 244
command.name.31         = Changer la langue
......
283 283
command.name.73         = Naviguer
284 284
command.name.74         = Ouvrir page web par langue
285 285
command.name.75         = Envoyer vers la concordance
286
command.name.76         = Envoyer vers l''Index
286
command.name.76         = Envoyer vers l'Index
287 287
command.name.78         = Tester toutes les commandes
288 288
command.name.79         = Ex\u00E9cuter la Macro
289 289
command.name.8          = Afficher dans un lecteur HTML
......
302 302
command.name.91         = DownloadFile
303 303
command.name.92         = Exporter le graphique
304 304
command.name.93         = Reconnecter le RWorkspace
305
command.name.94         = R\u00E9initialiser l''affichage
305
command.name.94         = R\u00E9initialiser l'affichage
306 306
command.name.95         = Lire le manuel
307 307
command.name.96         = TextToConcordance
308 308
command.name.97         = Enregistrer les annotations
......
333 333
command.tooltip.27      = Importer un corpus depuis le presse-papier
334 334
command.tooltip.28      = Importer un corpus au format CNR
335 335
command.tooltip.29      = Importer un corpus au format Hyperbase
336
command.tooltip.3       = S\u00E9lectionner un sous-ensemble d''occurrences
336
command.tooltip.3       = S\u00E9lectionner un sous-ensemble d'occurrences
337 337
command.tooltip.30      = Importer un corpus au format Alceste
338 338
command.tooltip.31      = Afficher les caract\u00E8res non imprimables
339
command.tooltip.32      = Lire l''\u00E9dition
340
command.tooltip.33      = Supprimer l''objet s\u00E9lectionn\u00E9
339
command.tooltip.32      = Lire l'\u00E9dition
340
command.tooltip.33      = Supprimer l'objet s\u00E9lectionn\u00E9
341 341
command.tooltip.34      = \u00C9diter un nouveau fichier
342 342
command.tooltip.35      = Afficher les caract\u00E8res non imprimables
343 343
command.tooltip.36      = Ex\u00E9cuter le texte s\u00E9lectionn\u00E9
344 344
command.tooltip.37      = Ex\u00E9cuter un script Groovy
345 345
command.tooltip.38      = Lancer un long processus de test de toute les commandes disponibles
346
command.tooltip.39      = Lire l''\u00E9dition
347
command.tooltip.4       = Diviser l''objet s\u00E9lectionn\u00E9 en plusieurs parties
346
command.tooltip.39      = Lire l'\u00E9dition
347
command.tooltip.4       = Diviser l'objet s\u00E9lectionn\u00E9 en plusieurs parties
348 348
command.tooltip.40      = Lire les propri\u00E9t\u00E9s des mots du corpus
349 349
command.tooltip.41      = R\u00E9ponses aux questions les plus fr\u00E9quentes
350
command.tooltip.42      = Changer la langue de l''interface
350
command.tooltip.42      = Changer la langue de l'interface
351 351
command.tooltip.43      = Wiki txm-users
352 352
command.tooltip.44      = XML/w + CSV
353
command.tooltip.45      = Ex\u00E9cuter un script d''import sur un dossier de fichiers source
354
command.tooltip.46      = Calculer l''Analyse Factorielle des Correspondances
353
command.tooltip.45      = Ex\u00E9cuter un script d'import sur un dossier de fichiers source
354
command.tooltip.46      = Calculer l'Analyse Factorielle des Correspondances
355 355
command.tooltip.47      = Contribuer \u00E0 TXM
356
command.tooltip.48      = Tester les modules d''import
357
command.tooltip.49      = Calculer l''Analyse Factorielle des Correspondances
356
command.tooltip.48      = Tester les modules d'import
357
command.tooltip.49      = Calculer l'Analyse Factorielle des Correspondances
358 358
command.tooltip.5       = Import au format XML-TRS de Trasncriber
359 359
command.tooltip.50      = R\u00E9-ex\u00E9cuter le dernier script Groovy
360 360
command.tooltip.51      = Calculer une table lexicale
361 361
command.tooltip.52      = Lire les propri\u00E9t\u00E9s des mots du corpus
362
command.tooltip.53      = Calculer les cooccurrents d''une requ\u00EAte
362
command.tooltip.53      = Calculer les cooccurrents d'une requ\u00EAte
363 363
command.tooltip.54      = Exporter au format SVG...
364 364
command.tooltip.55      = Calculer une table lexicale
365
command.tooltip.56      = Calculer la progression d''une ou plusieurs requ\u00EAtes
366
command.tooltip.57      = Calculer les cooccurrents d''une requ\u00EAte
365
command.tooltip.56      = Calculer la progression d'une ou plusieurs requ\u00EAtes
366
command.tooltip.57      = Calculer les cooccurrents d'une requ\u00EAte
367 367
command.tooltip.58      = Calculer une table lexicale
368 368
command.tooltip.59      = Lire les propri\u00E9t\u00E9s des mots du corpus
369 369
command.tooltip.6       = Calculer les mots sp\u00E9cifiques de chaque partie
370 370
command.tooltip.60      = Calculer la synth\u00E8se des propri\u00E9t\u00E9s du corpus
371 371
command.tooltip.61      = Calculer le lexique complet
372
command.tooltip.62      = Calculer le lexique d''une requ\u00EAte
373
command.tooltip.63      = Calculer les r\u00E9f\u00E9rences d''une requ\u00EAte
372
command.tooltip.62      = Calculer le lexique d'une requ\u00EAte
373
command.tooltip.63      = Calculer les r\u00E9f\u00E9rences d'une requ\u00EAte
374 374
command.tooltip.64      = Ouvre le manuel PDF avec le lecteur PDF par d\u00E9faut
375 375
command.tooltip.65      = cannal IRC TXM
376 376
command.tooltip.66      = Libre Office, Word and RTF import module
......
395 395
command.tooltip.84      = Nouvelle session
396 396
command.tooltip.85      = Ex\u00E9cuter la s\u00E9lection ou le script
397 397
command.tooltip.86      = Editer la macro
398
command.tooltip.87      = Ouvrir l''\u00E9dition
398
command.tooltip.87      = Ouvrir l'\u00E9dition
399 399
command.tooltip.88      = XML-XTZ + CSV
400 400
command.tooltip.89      = Copier dans le presse-papier
401 401
command.tooltip.9       = XML-TEI Frantext
402 402
command.tooltip.90      = Remise \u00E0 z\u00E9ro et recharger des valeurs
403 403
command.tooltip.91      = Ouvrir biblio
404 404
command.tooltip.92      = Cr\u00E9er une macro
405
command.tooltip.93      = Affiche des informations suppl\u00E9mentaires de l''\u00E9l\u00E9ment s\u00E9lectionn\u00E9
405
command.tooltip.93      = Affiche des informations suppl\u00E9mentaires de l'\u00E9l\u00E9ment s\u00E9lectionn\u00E9
406 406
command.tooltip.94      = Ajouter un nouvel \u00E9l\u00E9ment
407
command.tooltip.95      = Supprimer l''\u00E9l\u00E9ment s\u00E9lectionn\u00E9
407
command.tooltip.95      = Supprimer l'\u00E9l\u00E9ment s\u00E9lectionn\u00E9
408 408

  
409 409
commandParameter.name   = Fichier
410 410
commandParameter.name.0 = Corpus Parameter
......
422 422
editor.name.11 = Table lexicale
423 423
editor.name.12 = Lexique
424 424
editor.name.13 = AFC
425
editor.name.15 = Param\u00E8tres d''import
425
editor.name.15 = Param\u00E8tres d'import
426 426
editor.name.16 = Test editor
427 427
editor.name.17 = Naviguer
428 428
editor.name.18 = Classification
......
436 436
editor.name.3  = Sp\u00E9cificit\u00E9s
437 437
editor.name.4  = Texte
438 438
editor.name.5  = \u00C9dition
439
editor.name.6  = Exploreur d''object
439
editor.name.6  = Exploreur d'object
440 440
editor.name.7  = Index
441 441
editor.name.9  = Cooccurrences
442 442

  
443
extension-point.name = Commande d''installation
443
extension-point.name = Commande d'installation
444 444

  
445
extension.name       = Commandes de l''Atelier
445
extension.name       = Commandes de l'Atelier
446 446

  
447 447
menu.label     = Fichier
448 448
menu.label.0   = Importer
tmp/org.txm.xmleditor.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 1517)
9 9

  
10 10
command.name = Ouvrir un fichier XML
11 11

  
12
command.tooltip = Ouvre le fichier s\u00E9lectionner dans l''\u00E9diteur XML
12
command.tooltip = Ouvre le fichier s\u00E9lectionner dans l'\u00E9diteur XML
tmp/org.txm.ca.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 1517)
1 1
Bundle-Name=AFC
2 2
command.name=AFC
3
command.tooltip=Calculer l''Analyse Factorielle des Correspondances
3
command.tooltip=Calculer l'Analyse Factorielle des Correspondances
4 4
editor.name=AFC
5 5
page.name=AFC
tmp/org.txm.progression.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 1517)
5 5

  
6 6
command.name.3 = Envoyer vers la progression
7 7

  
8
command.tooltip = Calculer le graphique de progression d''une ou plusieurs requrequ\u00EAtetes
8
command.tooltip = Calculer le graphique de progression d'une ou plusieurs requrequ\u00EAtetes
9 9

  
10 10
page.name = Progression

Formats disponibles : Unified diff