Révision 3486

trunk/org.txm.texts.core/src/org/txm/texts/core/TextsView.java (revision 3486)
3 3
import java.io.File;
4 4
import java.io.PrintWriter;
5 5
import java.util.ArrayList;
6
import java.util.Arrays;
7 6
import java.util.LinkedHashMap;
8 7
import java.util.List;
9 8

  
trunk/org.txm.texts.core/src/org/txm/texts/core/TextsViewPreferences.java (revision 3486)
5 5

  
6 6
public class TextsViewPreferences extends TXMPreferences {
7 7
	
8
	public static final String CRITERII = "criterii";
9
	
10
	public static final String ALLMUSTMATCH = "allmustmatch";
11
	
12
	public static final String ALLPROPERTIESMUSTMATCH = "allmustmatch";
13

  
8 14
	/**
9 15
	 * Gets the instance.
10 16
	 * 
trunk/org.txm.texts.core/src/org/txm/texts/core/TextsSelection.java (revision 3486)
1 1
package org.txm.texts.core;
2 2

  
3
import java.util.ArrayList;
4
import java.util.HashMap;
5

  
6
import org.apache.commons.lang.StringUtils;
7
import org.txm.core.results.Parameter;
3 8
import org.txm.searchengine.cqp.corpus.CQPCorpus;
4 9
import org.txm.searchengine.cqp.corpus.Subcorpus;
10
import org.txm.searchengine.cqp.corpus.query.CQLQuery;
11
import org.txm.utils.TXMProgressMonitor;
5 12

  
6 13
public class TextsSelection extends Subcorpus {
7 14

  
15
	@Parameter(key = TextsViewPreferences.CRITERII)
16
	HashMap<String, ArrayList<String>> criterii;
17
	
18
	@Parameter(key = TextsViewPreferences.ALLPROPERTIESMUSTMATCH)
19
	Boolean allPropertiesMustMatch;
20
	
21
	@Parameter(key = TextsViewPreferences.ALLMUSTMATCH)
22
	HashMap<String, Boolean> allMustMatch;
23
	
8 24
	public TextsSelection(CQPCorpus corpus) {
9 25
		
10 26
		super(corpus);
......
18 34
		super(parametersNodePath);
19 35
	}
20 36
	
37
	public boolean canCompute() {
38
		return criterii.size() > 0;
39
	}
21 40
	
41
	public boolean __compute(TXMProgressMonitor monitor) throws Exception {
42
		
43
		StringBuilder buffer = new StringBuilder();
44
		buffer.append("<text> [");
45
		int n = 0;
46
		for (String textprop : criterii.keySet()) {
47
			
48
			String operator = " && ";
49
			if (allPropertiesMustMatch) operator = " || ";
50
			
51
			if (n > 0) buffer.append(operator);
52
			
53
			String matchOperator = "&";
54
			if (!allMustMatch.get(textprop)) matchOperator = "|";
55
			
56
			buffer.append("_.text_"+textprop+"=\""+StringUtils.join(criterii.get(textprop), matchOperator)+"\"");
57
		}
58
		buffer.append("] expand to text");
59
		
60
		this.pQuery = new CQLQuery(buffer.toString());
61
		
62
		return super.__compute(monitor);
63
	}
22 64
}
TXM/trunk/org.txm.edition.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 3486)
1 1
#TXM OSGI messages generated by the PluginMessagesManager class
2
#Fri Jun 10 16:36:03 CEST 2022
2
#Fri Jun 24 09:43:12 CEST 2022
3 3
Bundle-Name=SynopticEditor
4 4
command.label=?dition
5 5
command.name=?dition
6
command.name.0=Lire en plein texte
6
command.name.0=Afficher en plein texte
7 7
command.tooltip=Lire les textes du corpus
8 8
command.tooltip.0=Lire les textes
9 9
commandParameter.name=wordid
TXM/trunk/org.txm.searchengine.cqp.rcp/OSGI-INF/l10n/bundle.properties (revision 3486)
1 1
#TXM OSGI messages generated by the PluginMessagesManager class
2
#Fri Jun 10 16:36:03 CEST 2022
2
#Fri Jun 24 09:43:12 CEST 2022
3 3
Bundle-Name=CQP RCP
4 4
command.label=- Substract
5 5
command.label.0=? Add
TXM/trunk/org.txm.searchengine.cqp.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 3486)
1 1
#TXM OSGI messages generated by the PluginMessagesManager class
2
#Fri Jun 10 16:36:03 CEST 2022
2
#Fri Jun 24 09:43:12 CEST 2022
3 3
Bundle-Name=CQP RCP
4 4
command.label=- Soustraire
5 5
command.label.0=? Ajouter
6 6
command.label.1=? Intersection
7
command.label.148=Open biblio
7
command.label.148=Ouvrir la fiche bibliographique
8 8
command.label.2=- Soustraire
9 9
command.label.3=? Ajouter
10 10
command.label.36=Ajouter un Projet
......
19 19
command.name.1=Ajouter
20 20
command.name.2=Partition
21 21
command.name.3=Intersection
22
command.name.52=Corpus in binary format...
23
command.name.63=Ouvrir la Bibliographie
22
command.name.52=Corpus en format binaire (.txm)...
23
command.name.63=Ouvrir la fiche bibliographique
24 24
command.tooltip=Soustraire
25 25
command.tooltip.0=Soustraire
26 26
command.tooltip.1=Soustraire
27 27
command.tooltip.4=Construire une partition
28 28
command.tooltip.71=Exporter en fichier binaire
29
commandParameter.name=editer
29 30
editor.name=Sous-corpus
30 31
editor.name.0=Partition
31 32
page.name=CQP
TXM/trunk/org.txm.internalview.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 3486)
1 1
#TXM OSGI messages generated by the PluginMessagesManager class
2
#Fri Jun 10 16:36:03 CEST 2022
2
#Fri Jun 24 09:43:12 CEST 2022
3 3
Bundle-Name=Vue Interne RCP
4 4
command.label=Copier
5
command.name=Vue interne
5
command.name=Navigateur
6 6
command.name.0=Copier
7 7
command.tooltip=Navigateur
8
editor.name=Vue interne
8
editor.name=Navigateur
TXM/trunk/org.txm.index.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 3486)
1 1
#TXM OSGI messages generated by the PluginMessagesManager class
2
#Fri Jun 10 16:36:03 CEST 2022
2
#Fri Jun 24 09:43:12 CEST 2022
3
command.label=Index
3 4
command.label.0=Copier
4 5
command.label.1=Copier
5 6
command.name=Index
......
9 10
command.tooltip=Calculer le lexique d'une requ?te
10 11
editor.name=Index
11 12
editor.name.0=Lexique
13
editor.name.1=Index
12 14
page.name=Index
TXM/trunk/org.txm.statsengine.r.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 3486)
1 1
#TXM OSGI messages generated by the PluginMessagesManager class
2
#Fri Jun 10 16:36:03 CEST 2022
2
#Fri Jun 24 09:43:12 CEST 2022
3 3
command.label=Documentation R
4 4
command.label.0=R
5 5
command.label.129=Copier
6 6
command.label.141=Raccourcis clavier graphiques
7 7
command.label.142=Nouvelle session
8 8
command.name.45=Ex?cuter le script R
9
command.name.46=Ex?cuter la s?lection de texte
9
command.name.46=Ex?cuter le texte s?lectionn?
10 10
command.name.53=Envoyer vers R
11
command.name.59=OpenEmptyTextEditor
12
command.name.61=afficher l'aide svg
13
command.name.64=CopySelection
11
command.name.59=Ouvrir un ?diteur de texte vide
12
command.name.61=afficher l'aide SVG
13
command.name.64=Copier s?lection
14 14
command.name.90=V?rifier les packages R
15
command.name.93=Reconnecter le RWorkspace
15
command.name.93=Reconnecter ? l''espace de travail R
16 16
command.tooltip=Documentation R
17
decorator.label=R Decorator
17
decorator.label=D?corateur R
18 18
extension-point.name=SendToRCommand
19 19
menu.label.11=R
20 20
page.name=Moteur de Statistiques
TXM/trunk/org.txm.annotation.kr.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 3486)
1 1
#TXM OSGI messages generated by the PluginMessagesManager class
2
#Fri Jun 10 16:36:03 CEST 2022
2
#Fri Jun 24 09:43:12 CEST 2022
3 3
command.label=R?f?rentiel de connaissances
4 4
command.label.0=Exporter les annotations CQP
5 5
command.label.1=Annotations CQP au format Table (.csv)...
......
8 8
command.name=Renommer la propri?t? de mot
9 9
command.name.0=Sauvegarder les annotations CQP
10 10
command.name.1=Ouvrir la vue du r?f?rentiel de connaissances
11
command.name.2=Copier l'identifiant d'?annotation
11
command.name.2=Copier l''identifiant d''annotation
12 12
command.name.3=Recharger la vue du r?f?rentiel de connaissances
13
command.name.4=Ouvrir la page d'?information sur les annotations
13
command.name.4=Ouvrir la page d''information sur les annotations
14 14
command.name.5=Supprimer
15 15
command.name.6=Ajouter
16 16
command.name.7=Exporter les annotations CQP
TXM/trunk/org.txm.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 3486)
1 1
#TXM OSGI messages generated by the PluginMessagesManager class
2
#Fri Jun 10 16:36:03 CEST 2022
2
#Fri Jun 24 09:43:12 CEST 2022
3 3
Bundle-Name=org.txm.rcp
4 4
Bundle-Vendor=Textometrie.org
5 5
category.description=Commandes de Textometrie
......
13 13
command.description=Red?marrer TXM
14 14
command.description.0=Convertir ancien corpus binaire
15 15
command.description.1=Remise ? z?ro de la vue corpus
16
command.description.2=Test Nils
17
command.description.3=Mise ? jour de TXM
18
command.description.4=Mise ? jour de TXM
16
command.description.2=Ouvrir
17
command.description.3=Mettre ? jour TXM
18
command.description.4=Mettre ? jour TXM
19 19
command.description.5=Supprimer un objet
20
command.description.6=Calcul ou mise ? jour du r?sultat d'un ?diteur
20
command.description.6=Calcul ou mise ? jour du r?sultat d'une fen?tre de r?sultat
21 21
command.description.7=Ouvre les pr?f?rences du r?sultat s?lectionn?
22 22
command.description.8=Fermer
23 23
command.label=Ouvrir dans un navigateur...
......
31 31
command.label.106=Exporter la table pour r?-import
32 32
command.label.107=Importer une table
33 33
command.label.108=R?f?rences
34
command.label.109=Recherche incr?mentielle
34
command.label.109=Recherche incr?mentale
35 35
command.label.11=un r?pertoire de corpus binaires....
36
command.label.110=Recherche incr?mentielle (invers?e)
36
command.label.110=Recherche incr?mentale (inverse)
37 37
command.label.111=Enregistrer les annotations
38 38
command.label.112=Ex?cuter la s?lection de texte
39 39
command.label.113=Aller ? la ligne...
......
58 58
command.label.130=Coller
59 59
command.label.131=Corpus
60 60
command.label.132=R
61
command.label.133=Ouvrir un lien...
61
command.label.133=Ouvrir une URL...
62 62
command.label.134=Corpus
63 63
command.label.135=Fichier
64 64
command.label.136=Requ?te
65 65
command.label.137=Console R
66 66
command.label.138=Variables R
67 67
command.label.139=Autres...
68
command.label.14=? Propos de TXM
68
command.label.14=? Propos
69 69
command.label.140=Afficher les num?ros de ligne
70 70
command.label.143=Ex?cuter
71 71
command.label.144=Activer l'affichage des caract?res non imprimables
......
85 85
command.label.157=Nouvelle fen?tre
86 86
command.label.158=Nouveau fichier
87 87
command.label.159=Chercher et remplacer
88
command.label.16=Annuler
89
command.label.160=Trouver le pr?c?dent
90
command.label.161=Trouver le suivante
91
command.label.162=Recherche incr?mentielle
92
command.label.163=Recherche incr?mentielle (invers?e)
88
command.label.16=D?faire
89
command.label.160=Trouver pr?c?dent
90
command.label.161=Trouver suivant
91
command.label.162=Recherche incr?mentale
92
command.label.163=Recherche incr?mentale (inverse)
93 93
command.label.164=Retour ? l'?tat initial du fichier
94
command.label.165=Tout s?lectionner
94
command.label.165=S?lectionner tout
95 95
command.label.166=Aller ? la ligne...
96 96
command.label.167=Hyperlien
97 97
command.label.168=Afficher les num?ros de ligne
98
command.label.169=Afficher les caract?res de controles
98
command.label.169=Afficher les caract?res de contr?les
99 99
command.label.17=R?tablir
100 100
command.label.170=Ex?cuter le script courant
101 101
command.label.171=Ex?cuter le texte s?lectionn?
......
106 106
command.label.176=Vue interne
107 107
command.label.177=Macro
108 108
command.label.178=FAQ
109
command.label.179=Contribuer
109
command.label.179=Contribuer au logiciel
110 110
command.label.18=Couper
111 111
command.label.180=Tester les modules d'imports
112 112
command.label.181=V?rifier les mises ? jour
......
115 115
command.label.184=Recoder le corpus
116 116
command.label.185=Vue interne
117 117
command.label.186=?diter
118
command.label.187=Cr?er une macro ? partir d'un template
118
command.label.187=Cr?er une macro ? partir d'un patron 
119 119
command.label.188=Copier dans le presse-papier
120 120
command.label.189=Synchronizer les valeurs
121 121
command.label.19=Copier
......
129 129
command.label.22=Ouvrir dans un navigateur
130 130
command.label.23=Ex?cuter le Script
131 131
command.label.24=Propri?t?s
132
command.label.25=Ex?cuter la s?lection de texte
132
command.label.25=Ex?cuter le texte s?lectionn?
133 133
command.label.26=Renommer...
134 134
command.label.27=Supprimer
135 135
command.label.28=S?lectionner tout
136
command.label.29=Sauver sous...
136
command.label.29=Enregistrer sous...
137 137
command.label.3=XML Transcriber + CSV
138 138
command.label.30=Encodage des caract?res
139 139
command.label.31=Nils
......
163 163
command.label.52=Raccourcis clavier
164 164
command.label.53=Signaler un bug
165 165
command.label.54=Proposer une am?lioration
166
command.label.55=S'inscrire ? la liste de diffusion txm-users
167
command.label.56=T?l?chargements TXM
166
command.label.55=S'inscrire ? la liste de diffusion txm-users et son wiki
167
command.label.56=Autres ressources
168 168
command.label.57=Coller
169 169
command.label.58=Exporter les donn?es
170 170
command.label.59=Red?marrer les moteurs
......
177 177
command.label.65=Supprimer
178 178
command.label.66=Index
179 179
command.label.67=Installer TreeTagger
180
command.label.68=Lire le manuel en ligne
181
command.label.69=Site web du projet Textom?trie
180
command.label.68=Manuel de TXM
181
command.label.69=Site web
182 182
command.label.7=Sous-Corpus
183
command.label.70=Dossier des manuels de TXM
183
command.label.70=Autres manuels
184 184
command.label.71=?dition
185
command.label.72=Documentation du projet Textom?trie
185
command.label.72=R?f?rences bibliographiques
186 186
command.label.73=Envoyer vers les concordances
187 187
command.label.74=Envoyer vers les concordances
188 188
command.label.75=Changer la langue
189
command.label.76=Chat \#txm
189
command.label.76=Chat dans le cannal IRC \#txm
190 190
command.label.77=Envoyer vers l'Index
191 191
command.label.78=TXT + CSV
192 192
command.label.79=Lexique
......
197 197
command.label.83=Nouveau...
198 198
command.label.84=Lexique
199 199
command.label.85=Cloner tout
200
command.label.86=Sauvegarder
200
command.label.86=Enregistrer
201 201
command.label.87=ODT/DOC/RTF + CSV
202
command.label.88=Tout sauvegarder
202
command.label.88=Tout enregistrer
203 203
command.label.89=Table lexicale
204 204
command.label.9=XML-TEI Frantext
205 205
command.label.90=Fermer
206 206
command.label.91=Afficher les parents cach?s
207
command.label.92=XML-XTZ + CSV
208
command.label.93=Tout fermer
207
command.label.92=XML-TEI Zero + CSV
208
command.label.93=Fermer tout
209 209
command.label.94=Table lexicale
210 210
command.label.95=Cacher les parents interm?diaires
211 211
command.label.96=Fermer le corpus
......
215 215
command.name=Ouvrir un fichier
216 216
command.name.0=Ex?cuter un Script Groovy
217 217
command.name.1=Cr?er un Sous-Corpus
218
command.name.10=Ex?cuter la s?lection de texte en tant que script Groovy
218
command.name.10=Ex?cuter le texte s?lectionn? en tant que script Groovy
219 219
command.name.100=Recoder le corpus
220 220
command.name.101=Copier
221 221
command.name.102=Recharger
222 222
command.name.103=Informations
223 223
command.name.104=Supprimer
224 224
command.name.105=Ajouter
225
command.name.106=?diter le fichier s?lection?
225
command.name.106=?diter le fichier s?lectionn?
226 226
command.name.107=Exporter les annotations au format XML-TEI stand-off
227 227
command.name.108=Renommer
228 228
command.name.109=Calculer le diagramme en b?tons des lignes s?lectionn?es
......
235 235
command.name.17=Construire un Corpus
236 236
command.name.18=Supprimer tous les corpus
237 237
command.name.19=Ouvrir l'?diteur de test
238
command.name.2=Cr?er une Partition
238
command.name.2=Recharger
239 239
command.name.20=Choisir moteur de recherche
240 240
command.name.21=Ex?cuter Script
241 241
command.name.22=Ex?cuter un Script d'import
......
243 243
command.name.24=Exporter les donn?es
244 244
command.name.25=Red?marrer
245 245
command.name.26=Supprimer
246
command.name.27=Index
246
command.name.27=Rafra?chir la vue de Debug
247 247
command.name.28=Importe un corpus depuis le presse-papier (FR)
248 248
command.name.29=Texte
249 249
command.name.3=Convertir ancien fichier binaire
......
251 251
command.name.31=Changer la langue
252 252
command.name.32=Calculer
253 253
command.name.33=Conserver
254
command.name.34=ExportSVG
254
command.name.34=Exporter SVG
255 255
command.name.35=Param?tres...
256 256
command.name.36=ComputeLexicalTable
257 257
command.name.37=Supprimer
258 258
command.name.38=R?sultat...
259
command.name.39=Un resultat...
260
command.name.4=Sp?cificit?s
261
command.name.40=Param?tres de resultat...
259
command.name.39=r?sultat...
260
command.name.4=Renommer r?sultat
261
command.name.40=Param?tres de r?sultat...
262 262
command.name.41=CoocToConc
263 263
command.name.42=VocToProgress
264 264
command.name.43=VocToLexicalTable
265
command.name.44=V?rouiller
265
command.name.44=Verrouiller
266 266
command.name.45=Cloner
267 267
command.name.46=Cloner tout
268 268
command.name.47=Nouveau fichier
......
281 281
command.name.59=Reconstruire
282 282
command.name.6=Analyse des Correspondances
283 283
command.name.60=SoumettreRcode
284
command.name.61=Charger un corpus
285
command.name.62=OuvrirFormulaireImport
284
command.name.61=Charger corpus binaire
285
command.name.62=Ouvrir le formulaire d'import
286 286
command.name.63=Ouvrir Biblio
287 287
command.name.64=Changer le r?pertoire de travail...
288 288
command.name.65=Corpus au format XML-TXM (.xml)...
289 289
command.name.66=Ex?cuter un fichier Groovy
290
command.name.67=Sauver Sous
291
command.name.68=Supprimer
292
command.name.69=Copier
290
command.name.67=Enregistrer Sous
291
command.name.68=Supprimer fichier
292
command.name.69=Copier fichier
293 293
command.name.7=Cloner le r?sultat
294
command.name.70=Coller
295
command.name.71=Couper
296
command.name.72=Encodage Caracteres
294
command.name.70=Coller fichier
295
command.name.71=Couper fichier
296
command.name.72=Encodage Caract?res
297 297
command.name.73=Naviguer
298 298
command.name.74=Ouvrir page web par langue
299 299
command.name.75=Propri?t?s de mots depuis une table (.csv)
......
301 301
command.name.77=Ouvrir
302 302
command.name.78=Tester toutes les commandes
303 303
command.name.79=Ex?cuter la Macro
304
command.name.8=Afficher dans un lecteur HTML
305
command.name.80=Cr?erMacro
304
command.name.8=Afficher dans un navigateur web
305
command.name.80=Cr?er une macro
306 306
command.name.81=Distance intertextuelle
307 307
command.name.82=Index de requ?te
308 308
command.name.83=CoocMatrix
309 309
command.name.84=Test imports
310
command.name.85=Test Nils
310
command.name.85=Fermer
311 311
command.name.86=Index de requ?te vers Table lexicale
312
command.name.87=Mise ? jour de TXM
313
command.name.88=Mise ? jour de TXM
312
command.name.87=Mettre ? jour TXM
313
command.name.88=Mettre ? jour TXM
314 314
command.name.89=R?-ex?cuter le dernier script Groovy
315 315
command.name.9=Propri?t?s
316 316
command.name.90=V?rifier les packages R
317
command.name.91=DownloadFile
317
command.name.91=T?l?charger un fichier
318 318
command.name.92=Exporter le graphique
319 319
command.name.93=Reconnecter le RWorkspace
320 320
command.name.94=R?initialiser l'affichage
321
command.name.95=Lire le manuel
321
command.name.95=Ouvrir le manuel
322 322
command.name.96=TextToConcordance
323 323
command.name.97=Enregistrer les annotations
324 324
command.name.98=Mettre ? jour le corpus
325 325
command.name.981=Forcer la mise ? jour
326 326
command.name.99=Vue r?f?rentiels
327
command.tooltip=Ouvrir dans un navigateur HTML
328
command.tooltip.0=Afficher les pr?f?rences
327
command.tooltip=Ouvrir dans un navigateur web
328
command.tooltip.0=Afficher la fen?tre des pr?f?rences
329 329
command.tooltip.1=Import au format XML-PPS de Factiva
330 330
command.tooltip.10=Afficher les propri?t?s de cette instance de la plateforme TXM
331 331
command.tooltip.11=XML-TEI TXM
332 332
command.tooltip.12=Convertir un corpus binaire TXM 0.5 en binaire TXM 0.6
333
command.tooltip.13=Documentation des macros
333
command.tooltip.13=Utilitaires (macros)
334 334
command.tooltip.14=Ex?cuter le script
335 335
command.tooltip.15=Supprimer fichier
336
command.tooltip.16=Copier le fichier
336
command.tooltip.16=Copier fichier
337 337
command.tooltip.17=Ouvrir un fichier dans un ?diteur de texte
338 338
command.tooltip.18=Ouvrir un fichier dans un navigateur
339 339
command.tooltip.19=Ex?cuter le Script
340 340
command.tooltip.2=Quitter la plateforme TXM
341
command.tooltip.20=Couper le fichier
341
command.tooltip.20=Couper fichier
342 342
command.tooltip.21=Coller le fichier
343
command.tooltip.22=Importer un corpus au format Factiva TXT
344
command.tooltip.23=Lire la version HTML du manuel de TXM
343
command.tooltip.22=Importer un corpus au format Factiva (txt)
344
command.tooltip.23=Lire le manuel en ligne
345 345
command.tooltip.233=T?l?charger la version PDF du manuel de TXM pour impression
346 346
command.tooltip.24=Importer un corpus au format XML-TMX
347 347
command.tooltip.25=Importer un corpus au format CQP
348
command.tooltip.26=Red?marrer les moteurs de TXM
348
command.tooltip.26=Red?marrer TXM
349 349
command.tooltip.27=Importer un corpus depuis le presse-papier
350
command.tooltip.28=Importer un corpus au format CNR
351
command.tooltip.29=Importer un corpus au format Hyperbase
350
command.tooltip.28=Importer un r?pertoire de corpus au format CNR associ? ? un fichier de m?tadonn?es
351
command.tooltip.29=Importer un r?pertoire de corpus au format Hyperbase
352 352
command.tooltip.3=S?lectionner un sous-ensemble d'occurrences
353
command.tooltip.30=Importer un corpus au format Alceste
353
command.tooltip.30=Importer un r?pertoire de corpus au format Alceste
354 354
command.tooltip.31=Afficher les caract?res non imprimables
355 355
command.tooltip.32=Lire l'?dition
356 356
command.tooltip.33=Supprimer l'objet s?lectionn?
357 357
command.tooltip.34=?diter un nouveau fichier
358 358
command.tooltip.35=Afficher les caract?res non imprimables
359 359
command.tooltip.36=Ex?cuter le texte s?lectionn?
360
command.tooltip.37=Ex?cuter un script Groovy
360
command.tooltip.37=Ex?cuter un fichier de script Groovy
361 361
command.tooltip.38=Lancer un long processus de test de toute les commandes disponibles
362 362
command.tooltip.39=Lire l'?dition
363 363
command.tooltip.4=Diviser l'objet s?lectionn? en plusieurs parties
......
383 383
command.tooltip.58=Calculer une table lexicale
384 384
command.tooltip.59=Lire les propri?t?s des mots du corpus
385 385
command.tooltip.6=Calculer les mots sp?cifiques de chaque partie
386
command.tooltip.60=Calculer la synth?se des propri?t?s du corpus
386
command.tooltip.60=Afficher les propri?t?s de structures et d'unit?s lexicales du corpus
387 387
command.tooltip.61=Calculer le lexique complet
388 388
command.tooltip.62=Calculer le lexique d'une requ?te
389 389
command.tooltip.63=Calculer les r?f?rences d'une requ?te
390 390
command.tooltip.64=Ouvre le manuel PDF avec le lecteur PDF par d?faut
391
command.tooltip.65=cannal IRC TXM
392
command.tooltip.66=Libre Office, Word and RTF import module
391
command.tooltip.65=Canal IRC TXM
392
command.tooltip.66=Module d'import Libre Office, Word et RTF
393 393
command.tooltip.67=Exporter
394 394
command.tooltip.68=Visualiser la taille des parties
395 395
command.tooltip.69=Calculer la classification
......
410 410
command.tooltip.83=Raccourcis clavier graphiques
411 411
command.tooltip.84=Nouvelle session
412 412
command.tooltip.85=Ex?cuter la s?lection ou le script
413
command.tooltip.86=Editer la macro
413
command.tooltip.86=?diter la macro
414 414
command.tooltip.87=Ouvrir l'?dition
415 415
command.tooltip.88=XML-XTZ + CSV
416 416
command.tooltip.89=Copier dans le presse-papier
......
421 421
command.tooltip.93=Affiche des informations suppl?mentaires de l'?l?ment s?lectionn?
422 422
command.tooltip.94=Ajouter un nouvel ?l?ment
423 423
command.tooltip.95=Supprimer l'?l?ment s?lectionn?
424
commandParameter.name=Fichier
424
commandParameter.name=fichier
425 425
commandParameter.name.0=Corpus Parameter
426 426
commandParameter.name.1=script
427 427
commandParameter.name.2=import script
428
commandParameter.name.3=cl? web page
428
commandParameter.name.3=cl? de page web
429 429
commandParameter.name.4=Mise ? jour manuelle
430 430
commandParameter.name.5=fichier Groovy
431 431
commandParameter.name.6=fichier Groovy
......
455 455
editor.name.3=SVG
456 456
editor.name.4=Texte
457 457
editor.name.5=?dition
458
editor.name.6=Exploreur d'object
458
editor.name.6=Explorateur d'objet
459 459
editor.name.7=Index
460 460
editor.name.9=Cooccurrences
461 461
extension.name=Commandes de l'Atelier
......
494 494
menu.label.7=Affichage
495 495
menu.label.8=Perspectives
496 496
menu.label.9=Vues
497
menu.tooltip=Lire le Guide Utilisateur de TXM
497
menu.tooltip=Lire le manuel de TXM
498 498
menu.tooltip.0=Affichage
499 499
menu.tooltip.1=Recettes de plugins
500 500
page.name=Utilisateur
......
525 525
product.name=TXM
526 526
product.name.0=TXM
527 527
product.name.1=TXM
528
scheme.description=TXM binding scheme
529
scheme.name=TXM binding scheme
528
scheme.description=Raccourcis clavier TXM
529
scheme.name=TXM
530 530
view.name=Corpus
531 531
view.name.0=Progression
532 532
view.name.1=Fichier
......
540 540
view.name.4=Requ?te
541 541
view.name.5=Variables R
542 542
view.name.6=Vue debug de r?sultat
543
view.name.7=Contenu
543
view.name.7=Navigateur hi?rarchique
544 544
view.name.8=Macro
545 545
view.name.9=R?f?rentiels
546 546
wizard.description=Create a corpus from sources files. Then compile indexes to be able to analyse the corpus.
TXM/trunk/org.txm.cooccurrence.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 3486)
1 1
#TXM OSGI messages generated by the PluginMessagesManager class
2
#Fri Jun 10 16:36:03 CEST 2022
2
#Fri Jun 24 09:43:12 CEST 2022
3 3
command.label=Copier
4 4
command.name=Cooccurrences
5 5
command.name.0=Copier
6
command.name.4=Envoyer vers la cooccurrence
6
command.name.4=Envoyer vers les cooccurrences
7 7
command.tooltip=Calculer les cooccurrents d'une requ?te
8 8
editor.name=Cooccurrences
9 9
page.name=Cooccurrences
TXM/trunk/org.txm.translate.rcp/bundle.properties (revision 3486)
1 1
#imported from bundle_fr.odt
2
#Fri Jun 10 16:19:22 CEST 2022
2
#Fri Jun 24 17:23:39 CEST 2022
3 3
ahc.rcp.messages.AHCUI.command.name=Cluster Analysis
4 4
ahc.rcp.messages.AHCUI.command.tooltip=Compute parts clusters
5 5
ahc.rcp.messages.AHCUI.editor.name=Cluster Analysis
6 6
ahc.rcp.messages.AHCUI.page.name=Cluster Analysis
7 7
annotation.kr.rcp.messages.KRAnnotationUI.command.label=Knowledge Repository
8 8
annotation.kr.rcp.messages.KRAnnotationUI.command.label.0=Export CQP Annotations
9
annotation.kr.rcp.messages.KRAnnotationUI.command.label.1=CQP Annotations in Table format (.csv)
10
annotation.kr.rcp.messages.KRAnnotationUI.command.label.111=Save Annotations
11
annotation.kr.rcp.messages.KRAnnotationUI.command.label.2=CQP Annotation from Table (.csv)
9 12
annotation.kr.rcp.messages.KRAnnotationUI.command.name=Rename Word Property
10 13
annotation.kr.rcp.messages.KRAnnotationUI.command.name.0=Save CQP Annotations
11 14
annotation.kr.rcp.messages.KRAnnotationUI.command.name.1=Open Knowledge Repository View
......
15 18
annotation.kr.rcp.messages.KRAnnotationUI.command.name.5=Delete
16 19
annotation.kr.rcp.messages.KRAnnotationUI.command.name.6=Add
17 20
annotation.kr.rcp.messages.KRAnnotationUI.command.name.7=Export CQP Annotations
21
annotation.kr.rcp.messages.KRAnnotationUI.command.name.8=Export in table (.csv)
22
annotation.kr.rcp.messages.KRAnnotationUI.command.name.9=Import from table (.csv)
18 23
annotation.kr.rcp.messages.KRAnnotationUI.page.name=CQP Annotation
24
annotation.kr.rcp.messages.KRAnnotationUI.page.name.0=CQP
19 25
annotation.kr.rcp.messages.KRAnnotationUI.view.name=Knowledge Repository
20 26
annotation.rcp.messages.AnnotationUI.extension-point.name=org.txm.annotation.rcp.editor.AnnotationArea
21 27
annotation.rcp.messages.AnnotationUI.page.name=Annotation
22 28
ca.rcp.messages.CAUI.command.name=Correspondence Analysis
23 29
ca.rcp.messages.CAUI.editor.name=Correspondence Analysis
24 30
ca.rcp.messages.CAUI.editor.name.0=Factorial Map Editor
25
ca.rcp.messages.CAUI.editor.name.1=Eigenvalues
31
ca.rcp.messages.CAUI.editor.name.1=Eigen values
26 32
ca.rcp.messages.CAUI.page.name=Correspondence Analysis
27
chartsengine.rcp.messages.SWTComponentsProvider.command.label.42=Chart...
28
chartsengine.rcp.messages.SWTComponentsProvider.command.name=Reset view
29
chartsengine.rcp.messages.SWTComponentsProvider.command.name.0=Export view
30
chartsengine.rcp.messages.SWTComponentsProvider.command.name.1=Copy chart view to clipboard
31
chartsengine.rcp.messages.SWTComponentsProvider.command.name.92=Export chart...
32
chartsengine.rcp.messages.SWTComponentsProvider.context.name=Chart editor context
33
chartsengine.rcp.messages.SWTComponentsProvider.editor.name=Chart Editor Part
34
chartsengine.rcp.messages.SWTComponentsProvider.extension-point.name=SWT Charts Component Provider
35
chartsengine.rcp.messages.SWTComponentsProvider.extension-point.name.0=Chart composite event call back
33
chartsengine.rcp.messages.ChartsUI.command.description.10=Zoom in the chart view
34
chartsengine.rcp.messages.ChartsUI.command.description.2=Reset the chart view
35
chartsengine.rcp.messages.ChartsUI.command.description.3=Export the current view
36
chartsengine.rcp.messages.ChartsUI.command.description.4=Copy the view to clipbaord
37
chartsengine.rcp.messages.ChartsUI.command.description.5=Move to the right the chart view
38
chartsengine.rcp.messages.ChartsUI.command.description.6=Move on the left the chart view
39
chartsengine.rcp.messages.ChartsUI.command.description.7=Move down the chart view
40
chartsengine.rcp.messages.ChartsUI.command.description.8=Move up the chart view
41
chartsengine.rcp.messages.ChartsUI.command.description.9=Zoom out of the view
42
chartsengine.rcp.messages.ChartsUI.command.label.42=Chart...
43
chartsengine.rcp.messages.ChartsUI.command.name=Reset view
44
chartsengine.rcp.messages.ChartsUI.command.name.0=Export view
45
chartsengine.rcp.messages.ChartsUI.command.name.1=Copy chart view to clipboard
46
chartsengine.rcp.messages.ChartsUI.command.name.2=Move right
47
chartsengine.rcp.messages.ChartsUI.command.name.3=Move left
48
chartsengine.rcp.messages.ChartsUI.command.name.4=Move down
49
chartsengine.rcp.messages.ChartsUI.command.name.5=Move up
50
chartsengine.rcp.messages.ChartsUI.command.name.6=Zoom Out
51
chartsengine.rcp.messages.ChartsUI.command.name.7=Zoom In
52
chartsengine.rcp.messages.ChartsUI.command.name.92=Export chart...
53
chartsengine.rcp.messages.ChartsUI.context.name=Chart Editor Context
54
chartsengine.rcp.messages.ChartsUI.editor.name=Chart Editor
55
chartsengine.rcp.messages.ChartsUI.extension-point.name=SWT Charts Component Provider
56
chartsengine.rcp.messages.ChartsUI.extension-point.name.0=Chart composite event call back
57
chartsengine.rcp.messages.ChartsUI.menu.label=selected items dynamic label
58
chartsengine.rcp.messages.ChartsUI.page.name=Charts Engine
36 59
chartsengine.rcp.messages.SWTComponentsProvider.menu.label=Selected items dynamic label
37
chartsengine.rcp.messages.SWTComponentsProvider.page.name=Charts Engine
60
concordance.rcp.messages.ConcordanceUI.command.label=Copy
38 61
concordance.rcp.messages.ConcordanceUI.command.name=Concordances
62
concordance.rcp.messages.ConcordanceUI.command.name.0=Copy
39 63
concordance.rcp.messages.ConcordanceUI.command.name.1=Send to concordances
40 64
concordance.rcp.messages.ConcordanceUI.command.name.37=Delete line
41
concordance.rcp.messages.ConcordanceUI.command.tooltip=Concordances
42 65
concordance.rcp.messages.ConcordanceUI.editor.name=Concordances
43 66
concordance.rcp.messages.ConcordanceUI.extension-point.name=Back to text
44 67
concordance.rcp.messages.ConcordanceUI.extension-point.name.0=Concordance extension
45 68
concordance.rcp.messages.ConcordanceUI.page.name=Concordances
69
cooccurrence.rcp.messages.CooccurrenceUI.command.label=Copy
46 70
cooccurrence.rcp.messages.CooccurrenceUI.command.name=Cooccurrences
71
cooccurrence.rcp.messages.CooccurrenceUI.command.name.0=Copy
47 72
cooccurrence.rcp.messages.CooccurrenceUI.command.name.4=Send to Cooccurrences
48
cooccurrence.rcp.messages.CooccurrenceUI.command.tooltip=Cooccurrences
73
cooccurrence.rcp.messages.CooccurrenceUI.command.tooltip=Compute the cooccurrents of a query
49 74
cooccurrence.rcp.messages.CooccurrenceUI.editor.name=Cooccurrences
50 75
cooccurrence.rcp.messages.CooccurrenceUI.page.name=Cooccurrences
51 76
edition.rcp.messages.EditionUI.command.name=Edition
52 77
edition.rcp.messages.EditionUI.command.name.0=Read in full text
53
edition.rcp.messages.EditionUI.command.tooltip.0=Read corpus texts
54
edition.rcp.messages.EditionUI.commandParameter.name=wordid
55
edition.rcp.messages.EditionUI.commandParameter.name.0=textid
56
edition.rcp.messages.EditionUI.commandParameter.name.1=corpusid
57
edition.rcp.messages.EditionUI.commandParameter.name.2=editionid
78
edition.rcp.messages.EditionUI.commandParameter.name=word identifier
79
edition.rcp.messages.EditionUI.commandParameter.name.0=text identifier
80
edition.rcp.messages.EditionUI.commandParameter.name.1=corpus identifier
81
edition.rcp.messages.EditionUI.commandParameter.name.2=edition identifier
58 82
edition.rcp.messages.EditionUI.editor.name=Edition
59 83
edition.rcp.messages.EditionUI.page.name=Edition
84
index.rcp.messages.IndexUI.command.label=Copy
85
index.rcp.messages.IndexUI.command.label.0=Copy
86
index.rcp.messages.IndexUI.command.label.1=Copy
60 87
index.rcp.messages.IndexUI.command.name=Index
61 88
index.rcp.messages.IndexUI.command.name.0=Lexicon
89
index.rcp.messages.IndexUI.command.name.1=Copy
62 90
index.rcp.messages.IndexUI.command.name.2=Send to index
63
index.rcp.messages.IndexUI.command.tooltip=Process the lexicon of a query
64 91
index.rcp.messages.IndexUI.editor.name=Index
65 92
index.rcp.messages.IndexUI.editor.name.0=Lexicon
93
index.rcp.messages.IndexUI.editor.name.1=PartitionIndex
66 94
index.rcp.messages.IndexUI.page.name=Index
67
internalview.rcp.messages.InternalViewUI.command.name=Internal view
68
internalview.rcp.messages.InternalViewUI.command.tooltip=Internal view
69
internalview.rcp.messages.InternalViewUI.editor.name=Internal view
95
internalview.rcp.messages.InternalViewUI.command.label=Copy
96
internalview.rcp.messages.InternalViewUI.command.name=Browser
97
internalview.rcp.messages.InternalViewUI.command.name.0=Copy
98
internalview.rcp.messages.InternalViewUI.editor.name=Browser
70 99
KEY=DEFAULT
100
lexicaltable.rcp.messages.LexicalTableUI.command.label=Copy
71 101
lexicaltable.rcp.messages.LexicalTableUI.command.name=Lexical Table
72 102
lexicaltable.rcp.messages.LexicalTableUI.command.name.0=Intertextual Distance
103
lexicaltable.rcp.messages.LexicalTableUI.command.name.1=Copy
73 104
lexicaltable.rcp.messages.LexicalTableUI.command.name.37=Delete line
74 105
lexicaltable.rcp.messages.LexicalTableUI.command.name.38=Merge lines
75
lexicaltable.rcp.messages.LexicalTableUI.command.name.40=Import Table from file...
76
lexicaltable.rcp.messages.LexicalTableUI.command.tooltip=Compute lexical table
106
lexicaltable.rcp.messages.LexicalTableUI.command.name.40=Import Lexical Table from file...
77 107
lexicaltable.rcp.messages.LexicalTableUI.editor.name=Lexical table
78 108
lexicaltable.rcp.messages.LexicalTableUI.page.name=Lexical table
79 109
links.rcp.messages..context.name=sendSelectionToContexts
80 110
para.rcp.messages.ParaBrowserUI.command.name.33=ParallelBrowser
81 111
para.rcp.messages.ParaBrowserUI.editor.name.8=ParallelBrowser
82
partition.rcp.messages.PartitionUI.command.name=Properties
83
partition.rcp.messages.PartitionUI.command.tooltip=Properties
84
partition.rcp.messages.PartitionUI.editor.name=Properties
112
partition.rcp.messages.PartitionUI.command.name=Dimensions
113
partition.rcp.messages.PartitionUI.editor.name=Dimensions
85 114
partition.rcp.messages.PartitionUI.page.name=Partition
86 115
progression.rcp.messages.ProgressionUI.command.name=Progression
87 116
progression.rcp.messages.ProgressionUI.command.name.3=Send to progression
88
progression.rcp.messages.ProgressionUI.command.tooltip=Compute the progression chart of a query
89
progression.rcp.messages.ProgressionUI.commandParameter.name=sendToTargetCommandId
117
progression.rcp.messages.ProgressionUI.commandParameter.name=command identifier
90 118
progression.rcp.messages.ProgressionUI.editor.name=Progression
91 119
progression.rcp.messages.ProgressionUI.page.name=Progression
92 120
properties.rcp.messages.PropertiesUI.command.name=Properties
......
100 128
rcp.messages.TXMUI.category.name.7=Debug
101 129
rcp.messages.TXMUI.command.description=Restart TXM
102 130
rcp.messages.TXMUI.command.description.0=Convert old binary corpus
103
rcp.messages.TXMUI.command.description.2=NilsTest
131
rcp.messages.TXMUI.command.description.2=Open
104 132
rcp.messages.TXMUI.command.description.3=Update TXM
105 133
rcp.messages.TXMUI.command.description.4=Update TXM
106 134
rcp.messages.TXMUI.command.description.5=Delete an object
107
rcp.messages.TXMUI.command.description.6=Compute/Update the TXMResult of a TXMEditor
135
rcp.messages.TXMUI.command.description.6=Compute or update the result of a result window
108 136
rcp.messages.TXMUI.command.description.7=Open the preferences pages concerning the current selection
137
rcp.messages.TXMUI.command.description.8=Close
109 138
rcp.messages.TXMUI.command.label=Open in browser...
110 139
rcp.messages.TXMUI.command.label.0=Cordial + CSV
111 140
rcp.messages.TXMUI.command.label.1=XML/w + CSV
112 141
rcp.messages.TXMUI.command.label.10=a binary corpus (.txm)...
113
rcp.messages.TXMUI.command.label.100=Find Previous
114 142
rcp.messages.TXMUI.command.label.101=Chart...
115
rcp.messages.TXMUI.command.label.109=Incremental Find
116
rcp.messages.TXMUI.command.label.11=A directory containing binary corpus...
117
rcp.messages.TXMUI.command.label.110=Incremental Find (reverse)
118
rcp.messages.TXMUI.command.label.113=Goto line...
143
rcp.messages.TXMUI.command.label.109=Find incremental
144
rcp.messages.TXMUI.command.label.11=a folder containing binary corpora...
145
rcp.messages.TXMUI.command.label.110=Find incremental (reverse)
119 146
rcp.messages.TXMUI.command.label.12=XML-TEI TXM
120
rcp.messages.TXMUI.command.label.122=Create new file
121
rcp.messages.TXMUI.command.label.123=Create new folder
147
rcp.messages.TXMUI.command.label.122=New file
148
rcp.messages.TXMUI.command.label.123=New folder
122 149
rcp.messages.TXMUI.command.label.129=Copy
123 150
rcp.messages.TXMUI.command.label.130=Paste
124 151
rcp.messages.TXMUI.command.label.131=Corpus
125
rcp.messages.TXMUI.command.label.132=R
126 152
rcp.messages.TXMUI.command.label.133=Open URL...
127 153
rcp.messages.TXMUI.command.label.134=Corpus
128 154
rcp.messages.TXMUI.command.label.135=File
129
rcp.messages.TXMUI.command.label.136=Query
130 155
rcp.messages.TXMUI.command.label.139=Other...
131
rcp.messages.TXMUI.command.label.14=About TXM
132
rcp.messages.TXMUI.command.label.140=Show Line Numbers
133
rcp.messages.TXMUI.command.label.144=Toggle Show Whitespace Characters
134
rcp.messages.TXMUI.command.label.145=Revert to saved
135
rcp.messages.TXMUI.command.label.15=Search and Replace...
156
rcp.messages.TXMUI.command.label.14=About
157
rcp.messages.TXMUI.command.label.145=Revert to initial state of file
136 158
rcp.messages.TXMUI.command.label.156=Execute a Groovy file
137 159
rcp.messages.TXMUI.command.label.157=New window
138
rcp.messages.TXMUI.command.label.158=New file
139 160
rcp.messages.TXMUI.command.label.159=Search and Replace
140 161
rcp.messages.TXMUI.command.label.16=Undo
141 162
rcp.messages.TXMUI.command.label.160=Find previous
142 163
rcp.messages.TXMUI.command.label.161=Find next
143 164
rcp.messages.TXMUI.command.label.162=Find incremental
144 165
rcp.messages.TXMUI.command.label.163=Find incremental (reverse)
145
rcp.messages.TXMUI.command.label.164=Revert to save
146 166
rcp.messages.TXMUI.command.label.165=Select All
147
rcp.messages.TXMUI.command.label.166=Goto...
148
rcp.messages.TXMUI.command.label.167=Hyperlink
167
rcp.messages.TXMUI.command.label.166=Goto line...
149 168
rcp.messages.TXMUI.command.label.168=Show line numbers
150 169
rcp.messages.TXMUI.command.label.169=Show Control characters
151 170
rcp.messages.TXMUI.command.label.17=Redo
......
155 174
rcp.messages.TXMUI.command.label.173=Welcome
156 175
rcp.messages.TXMUI.command.label.177=Macro
157 176
rcp.messages.TXMUI.command.label.178=FAQ
158
rcp.messages.TXMUI.command.label.179=Contribuer
177
rcp.messages.TXMUI.command.label.179=Contribute to the software
159 178
rcp.messages.TXMUI.command.label.18=Cut
160 179
rcp.messages.TXMUI.command.label.181=Check for updates
161 180
rcp.messages.TXMUI.command.label.182=Add an extension
......
164 183
rcp.messages.TXMUI.command.label.19=Copy
165 184
rcp.messages.TXMUI.command.label.2=XML Factiva
166 185
rcp.messages.TXMUI.command.label.20=Paste
167
rcp.messages.TXMUI.command.label.22=Open in HTML browser
168
rcp.messages.TXMUI.command.label.23=Run Script
186
rcp.messages.TXMUI.command.label.23=Execute Script
169 187
rcp.messages.TXMUI.command.label.25=Execute Text Selection
170 188
rcp.messages.TXMUI.command.label.26=Rename...
171 189
rcp.messages.TXMUI.command.label.27=Delete
172
rcp.messages.TXMUI.command.label.28=Select All
173 190
rcp.messages.TXMUI.command.label.29=Save as...
174 191
rcp.messages.TXMUI.command.label.3=XML Transcriber + CSV
175 192
rcp.messages.TXMUI.command.label.30=Character encoding
176 193
rcp.messages.TXMUI.command.label.33=Macros documentation
177 194
rcp.messages.TXMUI.command.label.34=Add a third-party extension
178 195
rcp.messages.TXMUI.command.label.35=txm-users wiki
179
rcp.messages.TXMUI.command.label.36=Compute
180 196
rcp.messages.TXMUI.command.label.37=Clone
181 197
rcp.messages.TXMUI.command.label.372=Clone
182 198
rcp.messages.TXMUI.command.label.38=Clone all
......
191 207
rcp.messages.TXMUI.command.label.51=Data...
192 208
rcp.messages.TXMUI.command.label.52=Keyboard shortcuts
193 209
rcp.messages.TXMUI.command.label.53=Report a bug
194
rcp.messages.TXMUI.command.label.54=Ask for enhancement
195
rcp.messages.TXMUI.command.label.55=Subscribe to txm-users mailing list
196
rcp.messages.TXMUI.command.label.56=TXM downloads
210
rcp.messages.TXMUI.command.label.54=Suggest an enhancement
211
rcp.messages.TXMUI.command.label.55=Subscribe to txm-users mailing list and wiki
212
rcp.messages.TXMUI.command.label.56=Other Ressources
197 213
rcp.messages.TXMUI.command.label.59=Restart engines
198 214
rcp.messages.TXMUI.command.label.6=Exit
199 215
rcp.messages.TXMUI.command.label.60=Clipboard
200 216
rcp.messages.TXMUI.command.label.61=Hyperbase
201 217
rcp.messages.TXMUI.command.label.62=Alceste
202
rcp.messages.TXMUI.command.label.63=Read the manual
203 218
rcp.messages.TXMUI.command.label.64=Factiva TXT
204 219
rcp.messages.TXMUI.command.label.65=Delete
205 220
rcp.messages.TXMUI.command.label.67=Install TreeTagger
206
rcp.messages.TXMUI.command.label.68=Online manual - HTML
207
rcp.messages.TXMUI.command.label.69=Textometrie project web site
208
rcp.messages.TXMUI.command.label.70=TXM manuals directory
209
rcp.messages.TXMUI.command.label.72=Textometrie project documentation
221
rcp.messages.TXMUI.command.label.68=TXM manual
222
rcp.messages.TXMUI.command.label.69=web site
223
rcp.messages.TXMUI.command.label.70=Other manuals
224
rcp.messages.TXMUI.command.label.72=bibliographic references
210 225
rcp.messages.TXMUI.command.label.75=Change language
211
rcp.messages.TXMUI.command.label.76=Chat \#txm
226
rcp.messages.TXMUI.command.label.76=Chat in IRC channel \#txm
212 227
rcp.messages.TXMUI.command.label.78=TXT + CSV
228
rcp.messages.TXMUI.command.label.80=Open corpus
213 229
rcp.messages.TXMUI.command.label.81=XML-TMX
214 230
rcp.messages.TXMUI.command.label.82=CQP
215 231
rcp.messages.TXMUI.command.label.83=New...
......
220 236
rcp.messages.TXMUI.command.label.9=XML-TEI Frantext
221 237
rcp.messages.TXMUI.command.label.90=Close
222 238
rcp.messages.TXMUI.command.label.91=Show hidden parents
223
rcp.messages.TXMUI.command.label.92=XML-XTZ + CSV
239
rcp.messages.TXMUI.command.label.92=XML-TEI Zero + CSV
224 240
rcp.messages.TXMUI.command.label.93=Close all
225 241
rcp.messages.TXMUI.command.label.95=Hide intermediate parents
226
rcp.messages.TXMUI.command.label.98=Find next
227
rcp.messages.TXMUI.command.name=Open a file
228
rcp.messages.TXMUI.command.name.0=Run a Groovy Script
229
rcp.messages.TXMUI.command.name.10=Execute Text Selection as Groovy code
242
rcp.messages.TXMUI.command.label.96=Close corpus
243
rcp.messages.TXMUI.command.label.97=Open corpus
244
rcp.messages.TXMUI.command.label.99=Close corpus
245
rcp.messages.TXMUI.command.name=Open file
246
rcp.messages.TXMUI.command.name.0=Execute a Groovy Script
247
rcp.messages.TXMUI.command.name.10=Execute Text Selection as Groovy script
230 248
rcp.messages.TXMUI.command.name.106=Edit selected file
231 249
rcp.messages.TXMUI.command.name.108=Rename
232 250
rcp.messages.TXMUI.command.name.19=Open the test editor
233 251
rcp.messages.TXMUI.command.name.2=Reload
234
rcp.messages.TXMUI.command.name.21=ExecuteScript
235
rcp.messages.TXMUI.command.name.22=Run Script Import
252
rcp.messages.TXMUI.command.name.21=Execute Script
253
rcp.messages.TXMUI.command.name.22=Execute Import Script
236 254
rcp.messages.TXMUI.command.name.24=Export data...
237 255
rcp.messages.TXMUI.command.name.25=Restart
238 256
rcp.messages.TXMUI.command.name.26=Delete
239
rcp.messages.TXMUI.command.name.27=Refresh SWT Debug view
240
rcp.messages.TXMUI.command.name.28=Clipboard (FR)
257
rcp.messages.TXMUI.command.name.27=Refresh Debug view
258
rcp.messages.TXMUI.command.name.28=Import a corpus from clipboard (FR)
241 259
rcp.messages.TXMUI.command.name.3=Convert old binary corpus
242 260
rcp.messages.TXMUI.command.name.31=Change language
243 261
rcp.messages.TXMUI.command.name.32=Compute
244 262
rcp.messages.TXMUI.command.name.33=Keep
245
rcp.messages.TXMUI.command.name.34=ExportSVG
263
rcp.messages.TXMUI.command.name.34=Export SVG
246 264
rcp.messages.TXMUI.command.name.35=Parameters...
247 265
rcp.messages.TXMUI.command.name.39=result...
248
rcp.messages.TXMUI.command.name.4=Rename TXMResult
266
rcp.messages.TXMUI.command.name.4=Rename result
249 267
rcp.messages.TXMUI.command.name.40=result parameters...
250 268
rcp.messages.TXMUI.command.name.44=Lock
251 269
rcp.messages.TXMUI.command.name.45=Clone
252 270
rcp.messages.TXMUI.command.name.46=Clone all
253
rcp.messages.TXMUI.command.name.47=Create new file
254
rcp.messages.TXMUI.command.name.48=Create new folder
255
rcp.messages.TXMUI.command.name.49=ShowHiddenParents
271
rcp.messages.TXMUI.command.name.47=New file
272
rcp.messages.TXMUI.command.name.48=New folder
273
rcp.messages.TXMUI.command.name.49=Show Hidden Parents
256 274
rcp.messages.TXMUI.command.name.5=Add Corpus Indexes
257
rcp.messages.TXMUI.command.name.50=ExecuteText
275
rcp.messages.TXMUI.command.name.50=Execute Text
258 276
rcp.messages.TXMUI.command.name.53=Hide intermediate parents
259 277
rcp.messages.TXMUI.command.name.55=Copy
260 278
rcp.messages.TXMUI.command.name.56=Paste
261
rcp.messages.TXMUI.command.name.57=OpenPreferences
262
rcp.messages.TXMUI.command.name.59=Reconstruire
263
rcp.messages.TXMUI.command.name.61=LoadBinaryCorpus
264
rcp.messages.TXMUI.command.name.62=OpenImportForm
279
rcp.messages.TXMUI.command.name.57=Open Preferences
280
rcp.messages.TXMUI.command.name.59=Rebuild
281
rcp.messages.TXMUI.command.name.61=Load Binary Corpus
282
rcp.messages.TXMUI.command.name.62=Open Import Form
283
rcp.messages.TXMUI.command.name.64=Change working directory...
284
rcp.messages.TXMUI.command.name.65=Corpus in the XML-TXM format (.xml)...
265 285
rcp.messages.TXMUI.command.name.66=Execute a Groovy file
266
rcp.messages.TXMUI.command.name.67=SaveAs
267
rcp.messages.TXMUI.command.name.68=DeleteFile
268
rcp.messages.TXMUI.command.name.69=CopyFile
269
rcp.messages.TXMUI.command.name.70=PasteFile
270
rcp.messages.TXMUI.command.name.71=CutFile
286
rcp.messages.TXMUI.command.name.67=Save As
287
rcp.messages.TXMUI.command.name.68=Delete File
288
rcp.messages.TXMUI.command.name.69=Copy File
289
rcp.messages.TXMUI.command.name.70=Paste File
290
rcp.messages.TXMUI.command.name.71=Cut File
271 291
rcp.messages.TXMUI.command.name.72=Set encoding
272
rcp.messages.TXMUI.command.name.74=Open localized HTML page
292
rcp.messages.TXMUI.command.name.74=Open web page by language
293
rcp.messages.TXMUI.command.name.75=Word properties from table (.csv)
294
rcp.messages.TXMUI.command.name.76=Word properties to table (.csv)
295
rcp.messages.TXMUI.command.name.77=Open
273 296
rcp.messages.TXMUI.command.name.79=Execute Macro
274
rcp.messages.TXMUI.command.name.8=View in HTML Viewer
275
rcp.messages.TXMUI.command.name.80=CreateMacro
276
rcp.messages.TXMUI.command.name.85=NilsTest
297
rcp.messages.TXMUI.command.name.8=View in web browser
298
rcp.messages.TXMUI.command.name.80=Create Macro
299
rcp.messages.TXMUI.command.name.85=Close
277 300
rcp.messages.TXMUI.command.name.87=Update TXM
278 301
rcp.messages.TXMUI.command.name.88=Update TXM
279
rcp.messages.TXMUI.command.name.89=Execute last Groovy script
280
rcp.messages.TXMUI.command.name.9=Display
281
rcp.messages.TXMUI.command.name.91=DownloadFile
302
rcp.messages.TXMUI.command.name.89=Re-execute last Groovy script
303
rcp.messages.TXMUI.command.name.9=Properties
304
rcp.messages.TXMUI.command.name.91=Download File
282 305
rcp.messages.TXMUI.command.name.94=Reset display
283 306
rcp.messages.TXMUI.command.name.95=Open Manual
284 307
rcp.messages.TXMUI.command.name.98=Update corpus
285
rcp.messages.TXMUI.command.tooltip=Browse
308
rcp.messages.TXMUI.command.tooltip=Open in a web browser
286 309
rcp.messages.TXMUI.command.tooltip.0=Open the settings windows
287 310
rcp.messages.TXMUI.command.tooltip.1=Import with the XML-PPS format
288 311
rcp.messages.TXMUI.command.tooltip.10=Display the properties of that instance of the TXM platform
289 312
rcp.messages.TXMUI.command.tooltip.11=XML-TEI TXM
290
rcp.messages.TXMUI.command.tooltip.13=Macros documentation
291
rcp.messages.TXMUI.command.tooltip.14=Execute script
313
rcp.messages.TXMUI.command.tooltip.13=Utilities (macros)
314
rcp.messages.TXMUI.command.tooltip.14=Execute Script
292 315
rcp.messages.TXMUI.command.tooltip.15=Delete File
293 316
rcp.messages.TXMUI.command.tooltip.16=Copy File
294 317
rcp.messages.TXMUI.command.tooltip.17=Open File in a Text Editor
295 318
rcp.messages.TXMUI.command.tooltip.18=Open File in browser
296
rcp.messages.TXMUI.command.tooltip.19=Run Script
319
rcp.messages.TXMUI.command.tooltip.19=Execute Script
297 320
rcp.messages.TXMUI.command.tooltip.2=Exit the TXM platform
298 321
rcp.messages.TXMUI.command.tooltip.20=Cut File
299 322
rcp.messages.TXMUI.command.tooltip.21=Paste File
300
rcp.messages.TXMUI.command.tooltip.22=Factiva TXT
301
rcp.messages.TXMUI.command.tooltip.23=Read TXM online manual
302
rcp.messages.TXMUI.command.tooltip.24=XML-TMX
303
rcp.messages.TXMUI.command.tooltip.25=CQP
323
rcp.messages.TXMUI.command.tooltip.22=Import a corpus in Factiva format (txt)
324
rcp.messages.TXMUI.command.tooltip.23=Read on line manual
325
rcp.messages.TXMUI.command.tooltip.24=Import a corpus in XML-TMX format
326
rcp.messages.TXMUI.command.tooltip.25=Import a corpus in CQP format
304 327
rcp.messages.TXMUI.command.tooltip.26=Restart TXM
305
rcp.messages.TXMUI.command.tooltip.27=After you've copied a text use this function
306
rcp.messages.TXMUI.command.tooltip.28=Import a directory of files in CNR format associated to a CSV metadata file
328
rcp.messages.TXMUI.command.tooltip.27=Import a corpus from clipboard
329
rcp.messages.TXMUI.command.tooltip.28=Import a directory of files in CNR format associated to a metadata file
307 330
rcp.messages.TXMUI.command.tooltip.29=Import a directory of files in Hyperbase format
308 331
rcp.messages.TXMUI.command.tooltip.30=Import a directory of files in Alceste format
309
rcp.messages.TXMUI.command.tooltip.31=Toggle Show Whitespace Characters
332
rcp.messages.TXMUI.command.tooltip.31=Toggle Show Non-printable Characters
310 333
rcp.messages.TXMUI.command.tooltip.33=Delete the selected item
311 334
rcp.messages.TXMUI.command.tooltip.34=Edit a new File
312
rcp.messages.TXMUI.command.tooltip.35=Toggle Show Whitespace Characters
335
rcp.messages.TXMUI.command.tooltip.35=Toggle Show Non-printable Characters
313 336
rcp.messages.TXMUI.command.tooltip.36=Execute selected text
314
rcp.messages.TXMUI.command.tooltip.37=Execute a Groovy script from a file
315
rcp.messages.TXMUI.command.tooltip.41=FAQ
316
rcp.messages.TXMUI.command.tooltip.42=Change language
337
rcp.messages.TXMUI.command.tooltip.37=Execute a Groovy script file
338
rcp.messages.TXMUI.command.tooltip.41=Frequently Asked Questions
339
rcp.messages.TXMUI.command.tooltip.42=Change GUI language
317 340
rcp.messages.TXMUI.command.tooltip.43=txm-users wiki
318
rcp.messages.TXMUI.command.tooltip.44=XML/w
319
rcp.messages.TXMUI.command.tooltip.45=From a directory containing text files
320
rcp.messages.TXMUI.command.tooltip.47=Contribuer
321
rcp.messages.TXMUI.command.tooltip.5=XML-TRS
322
rcp.messages.TXMUI.command.tooltip.50=Replay last Groovy script
323
rcp.messages.TXMUI.command.tooltip.60=Display properties of structures and lexical units
324
rcp.messages.TXMUI.command.tooltip.64=Open the PDF Manual with the default PDF reader
341
rcp.messages.TXMUI.command.tooltip.44=XML/w + CSV
342
rcp.messages.TXMUI.command.tooltip.45=Run an import script on a source file folder
343
rcp.messages.TXMUI.command.tooltip.47=Contribute to TXM
344
rcp.messages.TXMUI.command.tooltip.5=Import a corpus in Transcriber XML-TRS format
345
rcp.messages.TXMUI.command.tooltip.50=Re-execute last Groovy script
346
rcp.messages.TXMUI.command.tooltip.55=Compute
347
rcp.messages.TXMUI.command.tooltip.60=Display properties of structures and of lexical units
325 348
rcp.messages.TXMUI.command.tooltip.65=TXM IRC channel
326 349
rcp.messages.TXMUI.command.tooltip.66=Libre Office, Word and RTF import module
327
rcp.messages.TXMUI.command.tooltip.75=Create new file
328
rcp.messages.TXMUI.command.tooltip.76=Create new folder
350
rcp.messages.TXMUI.command.tooltip.75=New file
351
rcp.messages.TXMUI.command.tooltip.76=New folder
329 352
rcp.messages.TXMUI.command.tooltip.8=XML-TEI BFM
330 353
rcp.messages.TXMUI.command.tooltip.81=Copy selected queries
331
rcp.messages.TXMUI.command.tooltip.82=Add a new query in log
354
rcp.messages.TXMUI.command.tooltip.82=Add a new query to the log
332 355
rcp.messages.TXMUI.command.tooltip.86=Edit this macro
333 356
rcp.messages.TXMUI.command.tooltip.88=XML-XTZ + CSV
334 357
rcp.messages.TXMUI.command.tooltip.9=XML-TEI Frantext
335 358
rcp.messages.TXMUI.command.tooltip.92=Create Macro
336
rcp.messages.TXMUI.commandParameter.name=File
359
rcp.messages.TXMUI.commandParameter.name=file
337 360
rcp.messages.TXMUI.commandParameter.name.1=Script
338 361
rcp.messages.TXMUI.commandParameter.name.2=Import Script
339 362
rcp.messages.TXMUI.commandParameter.name.3=Web Page Key
......
344 367
rcp.messages.TXMUI.context.name.0=Corpora view
345 368
rcp.messages.TXMUI.editor.name.1=MultiTab
346 369
rcp.messages.TXMUI.editor.name.15=Import Parameters
347
rcp.messages.TXMUI.editor.name.2=TXMEditor
348
rcp.messages.TXMUI.editor.name.22=Browser
370
rcp.messages.TXMUI.editor.name.2=Result window
371
rcp.messages.TXMUI.editor.name.3=SVG
349 372
rcp.messages.TXMUI.editor.name.4=Text
350 373
rcp.messages.TXMUI.editor.name.5=Edition
351
rcp.messages.TXMUI.editor.name.6=ObjectExplorer
374
rcp.messages.TXMUI.editor.name.6=Object Explorer
352 375
rcp.messages.TXMUI.extension.name.0=general
353 376
rcp.messages.TXMUI.extension.name.1=commands
354 377
rcp.messages.TXMUI.extension.name.2=links
......
363 386
rcp.messages.TXMUI.menu.label.1=Corpus
364 387
rcp.messages.TXMUI.menu.label.10=Groovy
365 388
rcp.messages.TXMUI.menu.label.11=Load
366
rcp.messages.TXMUI.menu.label.12=Recettes
389
rcp.messages.TXMUI.menu.label.12=Checks
367 390
rcp.messages.TXMUI.menu.label.13=Export
368
rcp.messages.TXMUI.menu.label.14=Import
391
rcp.messages.TXMUI.menu.label.15=Annotations
392
rcp.messages.TXMUI.menu.label.16=Corpus
393
rcp.messages.TXMUI.menu.label.17=Properties
394
rcp.messages.TXMUI.menu.label.18=Annotations
395
rcp.messages.TXMUI.menu.label.19=Utilities
369 396
rcp.messages.TXMUI.menu.label.2=Help
397
rcp.messages.TXMUI.menu.label.20=Documentation
398
rcp.messages.TXMUI.menu.label.21=Ressources
399
rcp.messages.TXMUI.menu.label.22=Community
400
rcp.messages.TXMUI.menu.label.23=Textometry project
401
rcp.messages.TXMUI.menu.label.24=Participate
370 402
rcp.messages.TXMUI.menu.label.3=Edit
371 403
rcp.messages.TXMUI.menu.label.4=Extensions
372 404
rcp.messages.TXMUI.menu.label.5=Export
......
374 406
rcp.messages.TXMUI.menu.label.7=View
375 407
rcp.messages.TXMUI.menu.label.8=Perspectives
376 408
rcp.messages.TXMUI.menu.label.9=Views
377
rcp.messages.TXMUI.menu.tooltip=Read TXM User's Guide
409
rcp.messages.TXMUI.menu.tooltip=Read TXM user's manual
378 410
rcp.messages.TXMUI.menu.tooltip.0=view
379
rcp.messages.TXMUI.menu.tooltip.1=Recettes de plugins
411
rcp.messages.TXMUI.menu.tooltip.1=Plugin checks
380 412
rcp.messages.TXMUI.page.name=User
381 413
rcp.messages.TXMUI.page.name.0=Advanced
382 414
rcp.messages.TXMUI.page.name.1=Debug
......
384 416
rcp.messages.TXMUI.page.name.18=Scripts
385 417
rcp.messages.TXMUI.page.name.19=Import
386 418
rcp.messages.TXMUI.page.name.2=File explorer
419
rcp.messages.TXMUI.page.name.3=Paths
387 420
rcp.messages.TXMUI.page.name.6=\ TXM
388 421
rcp.messages.TXMUI.page.name.8=NLP
389 422
rcp.messages.TXMUI.perspective.name=Open the Corpus perspective
390 423
rcp.messages.TXMUI.product.description=TXM desktop application
391 424
rcp.messages.TXMUI.scheme.description=TXM binding scheme
392
rcp.messages.TXMUI.scheme.name=TXM binding scheme
425
rcp.messages.TXMUI.scheme.name=TXM
393 426
rcp.messages.TXMUI.view.name=Corpus
394
rcp.messages.TXMUI.view.name.0=Progress
427
rcp.messages.TXMUI.view.name.0=Progression
395 428
rcp.messages.TXMUI.view.name.1=File
396 429
rcp.messages.TXMUI.view.name.10=Engines
397 430
rcp.messages.TXMUI.view.name.11=Parameters View
398 431
rcp.messages.TXMUI.view.name.12=TXM Results Debug View
399 432
rcp.messages.TXMUI.view.name.13=SWT Debug View
433
rcp.messages.TXMUI.view.name.14=Parameters
400 434
rcp.messages.TXMUI.view.name.3=Projects
401
rcp.messages.TXMUI.view.name.7=Summary
435
rcp.messages.TXMUI.view.name.7=Tree Navigator
402 436
rcp.messages.TXMUI.view.name.8=Macro
437
referencer.rcp.messages.ReferencerUI.command.label=Copy
438
referencer.rcp.messages.ReferencerUI.command.name=Copy
403 439
referencer.rcp.messages.ReferencerUI.command.name.44=References
404 440
referencer.rcp.messages.ReferencerUI.editor.name.14=References
405 441
referencer.rcp.messages.ReferencerUI.page.name=References
406
searchengine.cqp.rcp.messages.CQPUI.command.label.148=Open biblio
442
searchengine.cqp.rcp.messages.CQPUI.command.label=- Substract
443
searchengine.cqp.rcp.messages.CQPUI.command.label.0=∪Add
444
searchengine.cqp.rcp.messages.CQPUI.command.label.1=∩ Intersect
445
searchengine.cqp.rcp.messages.CQPUI.command.label.148=Open Bibliographic notice
446
searchengine.cqp.rcp.messages.CQPUI.command.label.2=- Substract
447
searchengine.cqp.rcp.messages.CQPUI.command.label.3=∪Add
407 448
searchengine.cqp.rcp.messages.CQPUI.command.label.36=Add Project
408
searchengine.cqp.rcp.messages.CQPUI.command.label.37=Add Base
409
searchengine.cqp.rcp.messages.CQPUI.command.name=Subcorpus
410
searchengine.cqp.rcp.messages.CQPUI.command.name.2=Create Partition
411
searchengine.cqp.rcp.messages.CQPUI.command.name.52=Corpus in binary format...
412
searchengine.cqp.rcp.messages.CQPUI.command.name.63=Open Biblio
413
searchengine.cqp.rcp.messages.CQPUI.command.tooltip.4=Divide the selected item in several parts
414
searchengine.cqp.rcp.messages.CQPUI.command.tooltip.71=Export as a binary file
449
searchengine.cqp.rcp.messages.CQPUI.command.label.4=∩ Intersect
450
searchengine.cqp.rcp.messages.CQPUI.command.label.5=- Minus
451
searchengine.cqp.rcp.messages.CQPUI.command.label.6=∪Add
452
searchengine.cqp.rcp.messages.CQPUI.command.label.7=∩ Intersect
453
searchengine.cqp.rcp.messages.CQPUI.command.name=Sub-corpus
454
searchengine.cqp.rcp.messages.CQPUI.command.name.0=Substraction
455
searchengine.cqp.rcp.messages.CQPUI.command.name.1=Union
456
searchengine.cqp.rcp.messages.CQPUI.command.name.2=Partition
457
searchengine.cqp.rcp.messages.CQPUI.command.name.3=Intersect
458
searchengine.cqp.rcp.messages.CQPUI.command.name.52=Corpus in binary format (.txm)...
459
searchengine.cqp.rcp.messages.CQPUI.command.name.63=Open Bibliographic notice
460
searchengine.cqp.rcp.messages.CQPUI.command.tooltip=Substract
461
searchengine.cqp.rcp.messages.CQPUI.command.tooltip.0=Substract
462
searchengine.cqp.rcp.messages.CQPUI.command.tooltip.1=Substract
463
searchengine.cqp.rcp.messages.CQPUI.commandParameter.name=edit
464
searchengine.cqp.rcp.messages.CQPUI.editor.name=Subcorpus
465
searchengine.cqp.rcp.messages.CQPUI.editor.name.0=Partition
466
searchengine.cqp.rcp.messages.CQPUI.page.name=CQP
467
searchengine.cqp.rcp.messages.CQPUI.page.name.0=Subcorpus
468
specificities.rcp.messages.SpecificitiesUI.command.label.0=Copy
415 469
specificities.rcp.messages.SpecificitiesUI.command.name=Specificities
416
specificities.rcp.messages.SpecificitiesUI.command.name.0=Compute the histogram of the selected lines
470
specificities.rcp.messages.SpecificitiesUI.command.name.0=Compute the barplot of the selected lines
471
specificities.rcp.messages.SpecificitiesUI.command.name.1=Copy
417 472
specificities.rcp.messages.SpecificitiesUI.editor.name=Specificities
418 473
specificities.rcp.messages.SpecificitiesUI.editor.name.0=Specificities Chart
419 474
specificities.rcp.messages.SpecificitiesUI.page.name=Specificities
475
statsengine.r.rcp.messages.RUI.command.label=R documentation
476
statsengine.r.rcp.messages.RUI.command.label.0=R
420 477
statsengine.r.rcp.messages.RUI.command.label.129=Copy
421
statsengine.r.rcp.messages.RUI.command.label.141=Graphics shortcuts
478
statsengine.r.rcp.messages.RUI.command.label.141=Graphics keyboard shortcuts
422 479
statsengine.r.rcp.messages.RUI.command.label.142=New session
423
statsengine.r.rcp.messages.RUI.command.name.45=Run R script
480
statsengine.r.rcp.messages.RUI.command.name.45=Execute R script
424 481
statsengine.r.rcp.messages.RUI.command.name.46=Execute Text Selection
425 482
statsengine.r.rcp.messages.RUI.command.name.53=Send to R
426
statsengine.r.rcp.messages.RUI.command.name.59=OpenEmptyTextEditor
483
statsengine.r.rcp.messages.RUI.command.name.59=Open Empty Text Editor
427 484
statsengine.r.rcp.messages.RUI.command.name.61=show svg help
428
statsengine.r.rcp.messages.RUI.command.name.64=CopySelection
485
statsengine.r.rcp.messages.RUI.command.name.64=Copy Selection
429 486
statsengine.r.rcp.messages.RUI.command.name.90=Check R packages
430
statsengine.r.rcp.messages.RUI.command.name.93=Reconnect to RWorkspace
487
statsengine.r.rcp.messages.RUI.command.name.93=Reconnect to R Workspace
488
statsengine.r.rcp.messages.RUI.command.tooltip=R documentation
431 489
statsengine.r.rcp.messages.RUI.decorator.label=R Decorator
432
statsengine.r.rcp.messages.RUI.extension-point.name=SendToRCommand
490
statsengine.r.rcp.messages.RUI.extension-point.name=Send To R Command
433 491
statsengine.r.rcp.messages.RUI.menu.label.11=R
434 492
statsengine.r.rcp.messages.RUI.page.name=Statistics Engine
435 493
statsengine.r.rcp.messages.RUI.perspective.name.0=Open the R perspective
436 494
statsengine.r.rcp.messages.RUI.view.name.5=R variables
437 495
statsengine.r.rcp.messages.RUI.view.name.6=R Console
438 496
treetagger.rcp.messages.TreeTaggerUI.command.description=Remove Word Properties from XML-TXM files
439
treetagger.rcp.messages.TreeTaggerUI.command.label=Train
440
treetagger.rcp.messages.TreeTaggerUI.command.label.0=Apply
441 497
treetagger.rcp.messages.TreeTaggerUI.command.label.1=Add Lemma from Lexicon
442 498
treetagger.rcp.messages.TreeTaggerUI.command.label.2=Remove Word Properties
443
treetagger.rcp.messages.TreeTaggerUI.command.mnemonic=S
444
treetagger.rcp.messages.TreeTaggerUI.command.mnemonic.0=A
445
treetagger.rcp.messages.TreeTaggerUI.command.mnemonic.1=L
446
treetagger.rcp.messages.TreeTaggerUI.command.mnemonic.2=R
447
treetagger.rcp.messages.TreeTaggerUI.command.name=Train
448
treetagger.rcp.messages.TreeTaggerUI.command.name.0=Apply
499
treetagger.rcp.messages.TreeTaggerUI.command.name=Train TreeTagger
500
treetagger.rcp.messages.TreeTaggerUI.command.name.0=Apply TreeTagger
449 501
treetagger.rcp.messages.TreeTaggerUI.command.name.1=Add Lemma from Lexicon
450 502
treetagger.rcp.messages.TreeTaggerUI.command.name.2=Remove Word Properties
451
treetagger.rcp.messages.TreeTaggerUI.menu.label=TreeTagger
452
treetagger.rcp.messages.TreeTaggerUI.menu.mnemonic=T
503
treetagger.rcp.messages.TreeTaggerUI.menu.label.0=TreeTagger
453 504
treetagger.rcp.messages.TreeTaggerUI.page.name.7=TreeTagger
454 505
wordcloud.rcp.messages.WordCloudUI.command.label.0=Help
455 506
wordcloud.rcp.messages.WordCloudUI.command.name=Word Cloud
TXM/trunk/org.txm.translate.rcp/src/org/txm/rcp/translate/devtools/ImportPluginXMLFromOneFile.java (revision 3486)
26 26
		WorkspaceMessagesManager wmm = new WorkspaceMessagesManager();
27 27
		LinkedHashMap<File, PluginMessagesManager> h = wmm.getPluginMessages();
28 28
		
29
		String langs[] = { "", "_fr"}; // "_ru" }; // 
29
		String langs[] = {"_fr"}; // "",  "_ru" }; // 
30 30
		
31 31
		System.out.println("Importing bundle messages...");
32 32
		int total_update = 0;
TXM/trunk/org.txm.translate.rcp/src/org/txm/rcp/translate/devtools/CreateMessagesTable.java (revision 3486)
93 93
		
94 94
		SpreadsheetDocument spreadsheet = SpreadsheetDocument.newSpreadsheetDocument();
95 95
		
96
		
97 96
		TreeSet<Object> keys = new TreeSet<Object>(PluginMessagesManager.comp);
98 97
		keys.addAll(master.keySet());
99 98
		
......
112 111
	}
113 112
	
114 113
	public static void main(String[] args) throws Exception {
115
		String prefix = "messages"; // messages
114
		String prefix = "bundle"; // messages
116 115
		File odt = new File(prefix+"_fr.odt");
117 116
		new CreateMessagesTable("fr").createODT(prefix, odt);
118 117
		System.out.println("ODT="+odt.getAbsolutePath());
TXM/trunk/org.txm.translate.rcp/src/org/txm/rcp/translate/devtools/TableToProperties.java (revision 3486)
33 33
		int keyIndex = -1;
34 34
		int langIndex = -1;
35 35
		int defaultIndex = -1;
36
		String str = "";
36 37
		for (int c = 0; c < ncol; c++) {
37 38
			Cell cell = headerRow.getCellByIndex(c);
38
			if ("KEY".equals(cell.getDisplayText())) {
39
			String s = cell.getDisplayText();
40
			if ("KEY".equals(s)) {
39 41
				keyIndex = c;
40 42
			}
41
			else if (lang.equals(cell.getDisplayText().toLowerCase())) {
43
			if (lang.equals(s.toLowerCase())) {
42 44
				langIndex = c;
43 45
			}
44
			else if ("DEFAULT".equals(cell.getDisplayText())) {
46
			if ("DEFAULT".equals(s)) {
45 47
				defaultIndex = c;
46 48
			}
49
			str += "\t"+cell.getDisplayText();
47 50
		}
48 51
		
49 52
		if (keyIndex == -1) {
50
			System.out.println("KEY columns not found in " + headerRow);
53
			System.out.println("KEY columns not found in " + str);
51 54
			return null;
52 55
		}
53 56
		if (langIndex == -1) {
54
			System.out.println(lang + " columns not found in " + headerRow);
57
			System.out.println(lang + " columns not found in " + str);
55 58
			return null;
56 59
		}
57 60
		if (defaultIndex == -1) {
58
			System.out.println("DEFAULT columns not found in " + headerRow);
61
			System.out.println("DEFAULT columns not found in " + str);
59 62
			return null;
60 63
		}
61 64
		
......
75 78
	
76 79
	public static void main(String args[]) throws Exception {
77 80
		
78
//		Properties b = new TableToProperties(new File("/home/mdecorde/workspace047/org.txm.translate.rcp/bundles_fr.odt"), "fr").convert();
81
//		Properties b = new TableToProperties(new File("/home/mdecorde/workspace047/org.txm.translate.rcp/bundles_fr.odt"), "default").convert();
79 82
//		
80 83
//		System.out.println("RESULT: "+b);
81 84
//		
82
//		Properties b2 = new TableToProperties(new File("/home/mdecorde/workspace047/org.txm.translate.rcp/bundle_fr.odt"), "fr").convert();
85
//		Properties b2 = new TableToProperties(new File("/home/mdecorde/workspace047/org.txm.translate.rcp/bundle_fr.odt"), "default").convert();
83 86
//		
84 87
//		System.out.println("RESULT: "+b2);
85 88
//		
......
92 95
//		}
93 96
//		
94 97
//		System.out.println("NEWPROPERTIES: "+newProperties);
95
		
96
//		PrintWriter writer = IOUtils.getWriter(new File("/home/mdecorde/TEMP/newvalues.properties"), "iso-8859-1");
98
//		
99
//		PrintWriter writer = IOUtils.getWriter(new File("/home/mdecorde/TEMP/newvalues_default.properties"), "iso-8859-1");
97 100
//		newProperties.store(writer, "");
98 101
//		writer.close();
99 102
		
100 103
		
101
		Properties previousOKProperties = new TableToProperties(new File("/home/mdecorde/TEMP/messagespaskc.odt"), "fr").convert();
104
		Properties previousOKProperties = new TableToProperties(new File("/home/mdecorde/TEMP/messagespaskc.odt"), "default").convert();
102 105
		
103
		File newValuesPropertiesFile = new File("/home/mdecorde/TEMP/newvalues.properties");
106
		File newValuesPropertiesFile = new File("/home/mdecorde/TEMP/newvalues_default.properties");
104 107
		BufferedReader reader = IOUtils.getReader(newValuesPropertiesFile, "iso-8859-1");
105 108
		Properties newProperties2 = new Properties();
106 109
		newProperties2.load(reader);
......
110 113
			previousOKProperties.setProperty(k.toString(), newProperties2.getProperty(k.toString()));
111 114
		}
112 115
		
113
		PrintWriter writer = IOUtils.getWriter(new File("/home/mdecorde/TEMP/messagespaskc.properties"), "iso-8859-1");
116
		PrintWriter writer = IOUtils.getWriter(new File("/home/mdecorde/TEMP/bundle.properties"), "UTF-8");
114 117
		previousOKProperties.store(writer, "");
115 118
		writer.close();
116 119
	}
TXM/trunk/org.txm.translate.rcp/src/org/txm/rcp/translate/devtools/ImportMessagesTable.java (revision 3486)
119 119
	
120 120
	public static void main(String[] args) throws Exception {
121 121
		String prefix = "bundle"; // messages
122
		System.out.println(new ImportMessagesTable(new File("/home/mdecorde/TEMP"), "fr").run(prefix, new File(prefix + "_fr.odt")));
122
		System.out.println(new ImportMessagesTable(new File("/home/mdecorde/workspace047/org.txm.translate.rcp"), "fr").run(prefix, new File(prefix + "_fr.odt")));
123 123
	}
124 124
}
TXM/trunk/org.txm.translate.rcp/bundle_fr.properties (revision 3486)
1 1
#imported from bundle_fr.odt
2
#Fri Jun 10 16:19:22 CEST 2022
2
#Fri Jun 24 17:23:39 CEST 2022
3 3
ahc.rcp.messages.AHCUI.command.name=Classification
4 4
ahc.rcp.messages.AHCUI.command.tooltip=Calculer la classification des parties
5 5
ahc.rcp.messages.AHCUI.editor.name=Classification
......
12 12
annotation.kr.rcp.messages.KRAnnotationUI.command.name=Renommer la propriété de mot
13 13
annotation.kr.rcp.messages.KRAnnotationUI.command.name.0=Sauvegarder les annotations CQP
14 14
annotation.kr.rcp.messages.KRAnnotationUI.command.name.1=Ouvrir la vue du référentiel de connaissances
15
annotation.kr.rcp.messages.KRAnnotationUI.command.name.2=Copier l’’identifiant d'’annotation
15
annotation.kr.rcp.messages.KRAnnotationUI.command.name.2=Copier l''identifiant d'?annotation
16 16
annotation.kr.rcp.messages.KRAnnotationUI.command.name.3=Recharger la vue du référentiel de connaissances
17
annotation.kr.rcp.messages.KRAnnotationUI.command.name.4=Ouvrir la page d'information sur les annotations
17
annotation.kr.rcp.messages.KRAnnotationUI.command.name.4=Ouvrir la page d'?information sur les annotations
18 18
annotation.kr.rcp.messages.KRAnnotationUI.command.name.5=Supprimer
19 19
annotation.kr.rcp.messages.KRAnnotationUI.command.name.6=Ajouter
20 20
annotation.kr.rcp.messages.KRAnnotationUI.command.name.7=Exporter les annotations CQP
......
56 56
chartsengine.rcp.messages.ChartsUI.extension-point.name.0=fonction appelée par un événement de composant graphique
57 57
chartsengine.rcp.messages.ChartsUI.menu.label=label dynamique des objets sélectionnés
58 58
chartsengine.rcp.messages.ChartsUI.page.name=Moteur de Graphiques
59
chartsengine.rcp.messages.SWTComponentsProvider.command.label.42=Graphique...
60
chartsengine.rcp.messages.SWTComponentsProvider.command.name=Rétablir la vue initiale
61
chartsengine.rcp.messages.SWTComponentsProvider.command.name.0=Exporter la vue
62
chartsengine.rcp.messages.SWTComponentsProvider.command.name.1=Copier la vue dans le presse-papier
63
chartsengine.rcp.messages.SWTComponentsProvider.command.name.92=Exporter le graphique...
64
chartsengine.rcp.messages.SWTComponentsProvider.context.name=Contexte de l’'éditeur de graphiques
65
chartsengine.rcp.messages.SWTComponentsProvider.editor.name=Partie d’’éditeur de graphiques
59
chartsengine.rcp.messages.SWTComponentsProvider.context.name=Contexte de l?'éditeur de graphiques
60
chartsengine.rcp.messages.SWTComponentsProvider.editor.name=Partie d''éditeur de graphiques
66 61
chartsengine.rcp.messages.SWTComponentsProvider.extension-point.name=Fournisseur de composants graphiques SWT
67
chartsengine.rcp.messages.SWTComponentsProvider.extension-point.name.0=Rappel d’’événement de composite de graphique
68
chartsengine.rcp.messages.SWTComponentsProvider.menu.label=Étiquette dynamique d’’éléments sélectionnés
69
chartsengine.rcp.messages.SWTComponentsProvider.page.name=Moteur de Graphiques
62
chartsengine.rcp.messages.SWTComponentsProvider.extension-point.name.0=Rappel d''événement de composite de graphique
63
chartsengine.rcp.messages.SWTComponentsProvider.menu.label=Étiquette dynamique d''éléments sélectionnés
64
concordance.rcp.messages.ConcordanceUI.command.label=Copier
70 65
concordance.rcp.messages.ConcordanceUI.command.name=Concordances
71 66
concordance.rcp.messages.ConcordanceUI.command.name.0=Copier
72 67
concordance.rcp.messages.ConcordanceUI.command.name.1=Envoyer vers la concordance
73 68
concordance.rcp.messages.ConcordanceUI.command.name.37=Supprimer la ligne
74
concordance.rcp.messages.ConcordanceUI.command.tooltip=Concordances
75 69
concordance.rcp.messages.ConcordanceUI.editor.name=Concordances
76 70
concordance.rcp.messages.ConcordanceUI.extension-point.name=Retour au texte
77 71
concordance.rcp.messages.ConcordanceUI.extension-point.name.0=Extension de concordance
......
79 73
cooccurrence.rcp.messages.CooccurrenceUI.command.label=Copier
80 74
cooccurrence.rcp.messages.CooccurrenceUI.command.name=Cooccurrences
81 75
cooccurrence.rcp.messages.CooccurrenceUI.command.name.0=Copier
82
cooccurrence.rcp.messages.CooccurrenceUI.command.name.4=Envoyer vers la cooccurrence
76
cooccurrence.rcp.messages.CooccurrenceUI.command.name.4=Envoyer vers les cooccurrences
... Ce différentiel a été tronqué car il excède la taille maximale pouvant être affichée.

Formats disponibles : Unified diff