Révision 1596
tmp/org.txm.core/src/java/org/txm/core/results/TXMResult.java (revision 1596) | ||
---|---|---|
2481 | 2481 |
* This method can also be used to sort the result by type (alphanumeric order). |
2482 | 2482 |
* @return |
2483 | 2483 |
*/ |
2484 |
public abstract String getResulType(); |
|
2484 |
public abstract String getResultType();
|
|
2485 | 2485 |
|
2486 | 2486 |
|
2487 | 2487 |
@Override |
tmp/org.txm.core/src/java/org/txm/core/messages/messages_ru.properties (revision 1596) | ||
---|---|---|
2 | 2 |
#TXM messages generated by the PluginMessagesManager class |
3 | 3 |
#Tue Dec 18 10:24:08 CET 2018 |
4 | 4 |
|
5 |
common_cancel = |
|
5 | 6 |
common_cols = |
6 | 7 |
common_delete = удалить |
7 | 8 |
common_description = Описание |
tmp/org.txm.core/src/java/org/txm/core/messages/TXMCoreMessages.java (revision 1596) | ||
---|---|---|
27 | 27 |
public static String common_lowestFrequency; |
28 | 28 |
public static String common_numberOfLines; |
29 | 29 |
public static String common_ok; |
30 |
public static String common_cancel; |
|
30 | 31 |
public static String common_properties; |
31 | 32 |
public static String common_property; |
32 | 33 |
public static String common_queriesColonP0; |
tmp/org.txm.core/src/java/org/txm/core/messages/messages_fr.properties (revision 1596) | ||
---|---|---|
15 | 15 |
checkingBinaryFormat = Vérification du format du corpus binaire… |
16 | 16 |
|
17 | 17 |
common_absoluteFrequency = Fréquence absolue |
18 |
common_cancel = Annuler |
|
18 | 19 |
common_cols = Colonnes |
19 | 20 |
common_delete = Supprimer |
20 | 21 |
common_description = Description |
tmp/org.txm.core/src/java/org/txm/core/messages/messages.properties (revision 1596) | ||
---|---|---|
15 | 15 |
checkingBinaryFormat = Checking binary corpus format… |
16 | 16 |
|
17 | 17 |
common_absoluteFrequency = Absolute Frequency |
18 |
common_cancel = Cancel |
|
18 | 19 |
common_cols = Columns |
19 | 20 |
common_delete = Delete |
20 | 21 |
common_description = Description |
tmp/org.txm.core/src/java/org/txm/objects/Project.java (revision 1596) | ||
---|---|---|
906 | 906 |
} |
907 | 907 |
|
908 | 908 |
@Override |
909 |
public String getResulType() { |
|
909 |
public String getResultType() {
|
|
910 | 910 |
return "Project"; |
911 | 911 |
} |
912 | 912 |
|
tmp/org.txm.core/src/java/org/txm/objects/Text.java (revision 1596) | ||
---|---|---|
294 | 294 |
} |
295 | 295 |
|
296 | 296 |
@Override |
297 |
public String getResulType() { |
|
297 |
public String getResultType() {
|
|
298 | 298 |
return "Text"; |
299 | 299 |
} |
300 | 300 |
|
tmp/org.txm.core/src/java/org/txm/objects/SavedQuery.java (revision 1596) | ||
---|---|---|
173 | 173 |
} |
174 | 174 |
|
175 | 175 |
@Override |
176 |
public String getResulType() { |
|
176 |
public String getResultType() {
|
|
177 | 177 |
return "SavedQuery"; |
178 | 178 |
} |
179 | 179 |
|
tmp/org.txm.core/src/java/org/txm/objects/Edition.java (revision 1596) | ||
---|---|---|
425 | 425 |
} |
426 | 426 |
|
427 | 427 |
@Override |
428 |
public String getResulType() { |
|
428 |
public String getResultType() {
|
|
429 | 429 |
return "Edition"; |
430 | 430 |
} |
431 | 431 |
|
tmp/org.txm.core/src/java/org/txm/objects/Workspace.java (revision 1596) | ||
---|---|---|
371 | 371 |
} |
372 | 372 |
|
373 | 373 |
@Override |
374 |
public String getResulType() { |
|
374 |
public String getResultType() {
|
|
375 | 375 |
return "Workspace"; |
376 | 376 |
} |
377 | 377 |
|
tmp/org.txm.internalview.core/src/org/txm/internalview/core/functions/InternalView.java (revision 1596) | ||
---|---|---|
406 | 406 |
} |
407 | 407 |
|
408 | 408 |
@Override |
409 |
public String getResulType() { |
|
409 |
public String getResultType() {
|
|
410 | 410 |
return InternalViewCoreMessages.RESULT_TYPE; |
411 | 411 |
} |
412 | 412 |
|
tmp/org.txm.partition.core/src/org/txm/partition/core/functions/PartitionDimensions.java (revision 1596) | ||
---|---|---|
238 | 238 |
} |
239 | 239 |
|
240 | 240 |
@Override |
241 |
public String getResulType() { |
|
241 |
public String getResultType() {
|
|
242 | 242 |
return PartitionCoreMessages.RESULT_TYPE; |
243 | 243 |
} |
244 | 244 |
|
tmp/org.txm.progression.core/src/org/txm/progression/core/functions/Progression.java (revision 1596) | ||
---|---|---|
854 | 854 |
} |
855 | 855 |
|
856 | 856 |
@Override |
857 |
public String getResulType() { |
|
857 |
public String getResultType() {
|
|
858 | 858 |
return ProgressionCoreMessages.RESULT_TYPE; |
859 | 859 |
} |
860 | 860 |
|
tmp/org.txm.textsbalance.core/src/org/txm/textsbalance/core/functions/TextsBalance.java (revision 1596) | ||
---|---|---|
428 | 428 |
} |
429 | 429 |
|
430 | 430 |
@Override |
431 |
public String getResulType() { |
|
431 |
public String getResultType() {
|
|
432 | 432 |
return "Texts balance"; |
433 | 433 |
} |
434 | 434 |
|
tmp/org.txm.tigersearch.rcp/src/org/txm/function/tigersearch/TIGERSearch.java (revision 1596) | ||
---|---|---|
280 | 280 |
} |
281 | 281 |
|
282 | 282 |
@Override |
283 |
public String getResulType() { |
|
283 |
public String getResultType() {
|
|
284 | 284 |
return "Tiger search"; |
285 | 285 |
} |
286 | 286 |
|
tmp/org.txm.wordcloud.core/src/org/txm/wordcloud/core/functions/WordCloud.java (revision 1596) | ||
---|---|---|
370 | 370 |
} |
371 | 371 |
|
372 | 372 |
@Override |
373 |
public String getResulType() { |
|
373 |
public String getResultType() {
|
|
374 | 374 |
return WordCloudCoreMessages.RESULT_TYPE; |
375 | 375 |
} |
376 | 376 |
} |
tmp/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/core/functions/summary/Summary.java (revision 1596) | ||
---|---|---|
302 | 302 |
|
303 | 303 |
|
304 | 304 |
@Override |
305 |
public String getResulType() { |
|
305 |
public String getResultType() {
|
|
306 | 306 |
return "Summary"; |
307 | 307 |
} |
308 | 308 |
} |
tmp/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/core/functions/preview/Preview.java (revision 1596) | ||
---|---|---|
127 | 127 |
} |
128 | 128 |
|
129 | 129 |
@Override |
130 |
public String getResulType() { |
|
130 |
public String getResultType() {
|
|
131 | 131 |
return "Preview"; |
132 | 132 |
} |
133 | 133 |
} |
tmp/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/core/functions/selection/Selection.java (revision 1596) | ||
---|---|---|
527 | 527 |
} |
528 | 528 |
|
529 | 529 |
@Override |
530 |
public String getResulType() { |
|
530 |
public String getResultType() {
|
|
531 | 531 |
return "Selection"; |
532 | 532 |
} |
533 | 533 |
} |
tmp/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/corpus/Part.java (revision 1596) | ||
---|---|---|
158 | 158 |
} |
159 | 159 |
|
160 | 160 |
@Override |
161 |
public String getResulType() { |
|
161 |
public String getResultType() {
|
|
162 | 162 |
return "Part"; |
163 | 163 |
} |
164 | 164 |
} |
tmp/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/corpus/Partition.java (revision 1596) | ||
---|---|---|
706 | 706 |
} |
707 | 707 |
|
708 | 708 |
@Override |
709 |
public String getResulType() { |
|
709 |
public String getResultType() {
|
|
710 | 710 |
return "Partition"; |
711 | 711 |
} |
712 | 712 |
|
tmp/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/corpus/MainCorpus.java (revision 1596) | ||
---|---|---|
660 | 660 |
} |
661 | 661 |
|
662 | 662 |
@Override |
663 |
public String getResulType() { |
|
663 |
public String getResultType() {
|
|
664 | 664 |
return "Corpus"; |
665 | 665 |
} |
666 | 666 |
|
tmp/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/corpus/Subcorpus.java (revision 1596) | ||
---|---|---|
560 | 560 |
} |
561 | 561 |
|
562 | 562 |
@Override |
563 |
public String getResulType() { |
|
563 |
public String getResultType() {
|
|
564 | 564 |
return "Corpus"; |
565 | 565 |
} |
566 | 566 |
|
tmp/org.txm.referencer.core/src/org/txm/referencer/core/functions/Referencer.java (revision 1596) | ||
---|---|---|
757 | 757 |
} |
758 | 758 |
|
759 | 759 |
@Override |
760 |
public String getResulType() { |
|
760 |
public String getResultType() {
|
|
761 | 761 |
return ReferencerCoreMessages.RESULT_TYPE; |
762 | 762 |
} |
763 | 763 |
|
tmp/org.txm.specificities.core/src/org/txm/functions/contrasts/Contrast.java (revision 1596) | ||
---|---|---|
277 | 277 |
} |
278 | 278 |
|
279 | 279 |
@Override |
280 |
public String getResulType() { |
|
280 |
public String getResultType() {
|
|
281 | 281 |
// TODO; later we must implement this methods in subclasses |
282 | 282 |
return this.getClass().getSimpleName(); |
283 | 283 |
} |
tmp/org.txm.specificities.core/src/org/txm/specificities/core/functions/SpecificitiesSelection.java (revision 1596) | ||
---|---|---|
143 | 143 |
} |
144 | 144 |
|
145 | 145 |
@Override |
146 |
public String getResulType() { |
|
146 |
public String getResultType() {
|
|
147 | 147 |
return SpecificitiesCoreMessages.specificitiesSelection; |
148 | 148 |
} |
149 | 149 |
|
tmp/org.txm.specificities.core/src/org/txm/specificities/core/functions/Specificities.java (revision 1596) | ||
---|---|---|
694 | 694 |
} |
695 | 695 |
|
696 | 696 |
@Override |
697 |
public String getResulType() { |
|
697 |
public String getResultType() {
|
|
698 | 698 |
return SpecificitiesCoreMessages.RESULT_TYPE; |
699 | 699 |
} |
700 | 700 |
|
tmp/org.txm.para.core/src/org/txm/para/core/functions/ParaBrowser.java (revision 1596) | ||
---|---|---|
297 | 297 |
|
298 | 298 |
|
299 | 299 |
@Override |
300 |
public String getResulType() { |
|
300 |
public String getResultType() {
|
|
301 | 301 |
return "Parallel browser"; |
302 | 302 |
} |
303 | 303 |
} |
tmp/org.txm.edition.rcp/src/org/txm/edition/rcp/messages/messages.properties (revision 1596) | ||
---|---|---|
1 |
#TXM messages generated by the PluginMessagesManager class |
|
2 |
#Tue Dec 18 10:24:08 CET 2018 |
|
3 |
abortingColonSelectionIsNotACorpus=Aborting\: selection is not a corpus |
|
4 |
back=Back |
|
5 |
cannotCallTxmcommandWithoutIdParameterColonP0=** Can not call a command without the ''id'' parameter ({0}) |
|
6 |
CommandLink_empty= |
|
7 |
controls=controls |
|
8 |
copyTextSelection=Copy text selection |
|
9 |
couldNotFindFirstTextOfP0IDInTheCorpus=** Failed to find text of ID {0} in the corpus. |
|
10 |
edition=Edition |
|
11 |
editions=Editions |
|
12 |
enableFastWordHighlight=Enable fast word highlight |
|
13 |
error_while_reading=** Error while reading {0}\: {1} |
|
14 |
errorColonCouldNotRetrieveLineWordIdsAbortingBackToText=** Error\: could not retrieve word identifiers. Aborting back to text. |
|
15 |
errorColonTxmeditioncorpusidEditionidTextidWordidCalledWithNoArguments=** Error\: txmedition(corpusid, editionid?, textid?, wordid?) called with no arguments |
|
16 |
errorWhileGettingAvailableEditionsColonP0=** Error while retrieving available editions\: {0} |
|
17 |
errorWhileOpeningEditionColonP0=** Error while opening edition\: {0} |
|
18 |
errorWhileOpeningEditorColonP0=** Error while opening edition\: {0} |
|
19 |
failToRetrieveFirstPageOfEditionEqualsP0AndTextEqualsP1=** Failed to retrieve the first page of the {0} edition of the text {1}. |
|
20 |
firstPageOfTheText=First page of the text |
|
21 |
firstTextOfTheCorpus=First text of the corpus |
|
22 |
forward=Forward |
|
23 |
lastPageOfTheText=Last page of the text |
|
24 |
lastTextOfTheCorpus=Last text of the corpus |
|
25 |
nextPage=Next page |
|
26 |
nextText=Next text |
|
27 |
noEditionFound=Edition not found |
|
28 |
noEditionFoundForTextEqualsP0AndEditionEqualsP1=No ‘'{1}' edition found for text {0} |
|
29 |
noEditionToOpen=No edition available. |
|
30 |
noEditionWithNameEqualsP0AvailableForTextEqualsP1=No ‘'{1}' edition found for text {0} |
|
31 |
openingDefaultEditionsColonP0=Opening default edition ‘'{0}' |
|
32 |
openingWithFirstEditionNoDefaultEditionSetColonP0=Opening the ''{0}'' edition (no default edition). |
|
33 |
pageButtons=page buttons |
|
34 |
pageNotFoundP0=Page ‘'{0}' not found. |
|
35 |
previousPage=Previous page |
|
36 |
previousText=Previous text |
|
37 |
reload=Reload |
|
38 |
sCRIPTRETURNEDEqualsP0=Script returned ‘'{0}' |
|
39 |
selectOneOrMoreEditions=Select one or more editions. |
|
40 |
textButtons=text browsing buttons |
|
41 |
warningColonCouldNotFindEditionForNameEqualsP0=Warning\: could not retrieve edition ‘'{0}' |
|
42 |
warningColonUnknownedParameterIdEqualsP0=Warning\: unknown parameter of identifier {0}. |
|
1 |
#Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/) |
|
2 |
#TXM messages generated by the PluginMessagesManager class |
|
3 |
#Tue Dec 18 10:24:08 CET 2018 |
|
4 |
|
|
5 |
CommandLink_empty = |
|
6 |
|
|
7 |
abortingColonSelectionIsNotACorpus = Aborting: selection is not a corpus |
|
8 |
|
|
9 |
back = Back |
|
10 |
|
|
11 |
cannotCallTxmcommandWithoutIdParameterColonP0 = ** Can not call a command without the ''id'' parameter ({0}) |
|
12 |
|
|
13 |
controls = controls |
|
14 |
|
|
15 |
copyTextSelection = Copy text selection |
|
16 |
|
|
17 |
couldNotFindFirstTextOfP0IDInTheCorpus = ** Failed to find text of ID {0} in the corpus. |
|
18 |
|
|
19 |
edition = Edition |
|
20 |
|
|
21 |
editions = Editions |
|
22 |
|
|
23 |
enableFastWordHighlight = Enable fast word highlight |
|
24 |
|
|
25 |
errorColonCouldNotRetrieveLineWordIdsAbortingBackToText = ** Error: could not retrieve word identifiers. Aborting back to text. |
|
26 |
|
|
27 |
errorColonTxmeditioncorpusidEditionidTextidWordidCalledWithNoArguments = ** Error: txmedition(corpusid, editionid?, textid?, wordid?) called with no arguments |
|
28 |
|
|
29 |
errorWhileGettingAvailableEditionsColonP0 = ** Error while retrieving available editions: {0} |
|
30 |
|
|
31 |
errorWhileOpeningEditionColonP0 = ** Error while opening edition: {0} |
|
32 |
|
|
33 |
errorWhileOpeningEditorColonP0 = ** Error while opening edition: {0} |
|
34 |
|
|
35 |
error_while_reading = ** Error while reading {0}: {1} |
|
36 |
|
|
37 |
failToRetrieveFirstPageOfEditionEqualsP0AndTextEqualsP1 = ** Failed to retrieve the first page of the {0} edition of the text {1}. |
|
38 |
|
|
39 |
firstPageOfTheText = First page of the text |
|
40 |
|
|
41 |
firstTextOfTheCorpus = First text of the corpus |
|
42 |
|
|
43 |
forward = Forward |
|
44 |
|
|
45 |
lastPageOfTheText = Last page of the text |
|
46 |
|
|
47 |
lastTextOfTheCorpus = Last text of the corpus |
|
48 |
|
|
49 |
nextPage = Next page |
|
50 |
|
|
51 |
nextText = Next text |
|
52 |
|
|
53 |
noEditionFound = Edition not found |
|
54 |
|
|
55 |
noEditionFoundForTextEqualsP0AndEditionEqualsP1 = No ‘'{1}' edition found for text {0} |
|
56 |
|
|
57 |
noEditionToOpen = No edition available. |
|
58 |
|
|
59 |
noEditionWithNameEqualsP0AvailableForTextEqualsP1 = No "{1}" edition found for text {0}. |
|
60 |
|
|
61 |
openingDefaultEditionsColonP0 = Opening edition "{0}"... |
|
62 |
|
|
63 |
openingWithFirstEditionNoDefaultEditionSetColonP0 = Opening the "{0}" edition (no default edition). |
|
64 |
|
|
65 |
pageButtons = page buttons |
|
66 |
|
|
67 |
pageNotFoundP0 = Page ‘'{0}' not found. |
|
68 |
|
|
69 |
previousPage = Previous page |
|
70 |
|
|
71 |
previousText = Previous text |
|
72 |
|
|
73 |
reload = Reload |
|
74 |
|
|
75 |
sCRIPTRETURNEDEqualsP0 = Script returned ‘'{0}' |
|
76 |
|
|
77 |
selectOneOrMoreEditions = Select one or more editions. |
|
78 |
|
|
79 |
textButtons = text browsing buttons |
|
80 |
|
|
81 |
warningColonCouldNotFindEditionForNameEqualsP0 = Warning: could not retrieve edition ‘'{0}' |
|
82 |
|
|
83 |
warningColonUnknownedParameterIdEqualsP0 = Warning: unknown parameter of identifier {0}. |
tmp/org.txm.edition.rcp/src/org/txm/edition/rcp/messages/messages_fr.properties (revision 1596) | ||
---|---|---|
1 |
#TXM messages generated by the PluginMessagesManager class |
|
2 |
#Tue Dec 18 10:24:08 CET 2018 |
|
3 |
abortingColonSelectionIsNotACorpus=Abandon \: la sélection n'est pas un corpus |
|
4 |
back=Retour |
|
5 |
cannotCallTxmcommandWithoutIdParameterColonP0=** Impossible d''appeler une commande sans le paramètre ''id'' ({0}) |
|
6 |
CommandLink_empty= |
|
7 |
controls=contrôles |
|
8 |
copyTextSelection=Copier la sélection de texte |
|
9 |
couldNotFindFirstTextOfP0IDInTheCorpus=** Échec de la recherche du texte d''ID {0} dans le corpus. |
|
10 |
edition=Édition |
|
11 |
editions=Éditions |
|
12 |
enableFastWordHighlight=Activer la mise en évidence de mots rapide |
|
13 |
error_while_reading=** Erreur lors de la lecture de {0} \: {1} |
|
14 |
errorColonCouldNotRetrieveLineWordIdsAbortingBackToText=** Erreur \: impossible de récupérer les identifiants de mots. Abandon du retour au texte. |
|
15 |
errorColonTxmeditioncorpusidEditionidTextidWordidCalledWithNoArguments=** Erreur \: txmedition (corpusid, editionid?, textid ?, wordid?) appelé sans argument |
|
16 |
errorWhileGettingAvailableEditionsColonP0=** Erreur lors de la récupération des éditions disponibles \: {0} |
|
17 |
errorWhileOpeningEditionColonP0=** Erreur lors de l''ouverture de l''édition \: {0} |
|
18 |
errorWhileOpeningEditorColonP0=** Erreur lors de l''ouverture de l''édition \: {0} |
|
19 |
failToRetrieveFirstPageOfEditionEqualsP0AndTextEqualsP1=** Échec de l''extraction de la première page de l''édition {0} du texte {1}. |
|
20 |
firstPageOfTheText=Première page du texte |
|
21 |
firstTextOfTheCorpus=Premier texte du corpus |
|
22 |
forward=Avant |
|
23 |
lastPageOfTheText=Dernière page du texte |
|
24 |
lastTextOfTheCorpus=Dernier texte du corpus |
|
25 |
nextPage=Page suivante |
|
26 |
nextText=Texte suivant |
|
27 |
noEditionFound=Édition introuvable |
|
28 |
noEditionFoundForTextEqualsP0AndEditionEqualsP1=Aucune édition ‘'{1}' trouvée pour le texte {0} |
|
29 |
noEditionToOpen=Pas d'édition disponible. |
|
30 |
noEditionWithNameEqualsP0AvailableForTextEqualsP1=Aucune édition ‘'{1}' trouvée pour le texte {0} |
|
31 |
openingDefaultEditionsColonP0=Ouverture de l''édition par défaut ''{0}'' |
|
32 |
openingWithFirstEditionNoDefaultEditionSetColonP0=Ouverture de l'édition ''{0}'' (pas d'édition par défaut). |
|
33 |
pageButtons=boutons de la page |
|
34 |
pageNotFoundP0=Page ‘'{0}' introuvable. |
|
35 |
previousPage=Page précédente |
|
36 |
previousText=Texte précédent |
|
37 |
reload=Recharger |
|
38 |
sCRIPTRETURNEDEqualsP0=Le script a retourné ‘'[0}' |
|
39 |
selectOneOrMoreEditions=Sélectionner une ou plusieurs éditions. |
|
40 |
textButtons=boutons de navigation entre textes |
|
41 |
warningColonCouldNotFindEditionForNameEqualsP0=Avertissement\: échec de récupération de l''édition ‘'{0}' |
|
42 |
warningColonUnknownedParameterIdEqualsP0=Avertissement\: paramètre d'identifiant {0} inconnu. |
|
1 |
#Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/) |
|
2 |
#TXM messages generated by the PluginMessagesManager class |
|
3 |
#Tue Dec 18 10:24:08 CET 2018 |
|
4 |
|
|
5 |
CommandLink_empty = |
|
6 |
|
|
7 |
abortingColonSelectionIsNotACorpus = Abandon : la sélection n'est pas un corpus |
|
8 |
|
|
9 |
back = Retour |
|
10 |
|
|
11 |
cannotCallTxmcommandWithoutIdParameterColonP0 = ** Impossible d''appeler une commande sans le paramètre ''id'' ({0}) |
|
12 |
|
|
13 |
controls = contrôles |
|
14 |
|
|
15 |
copyTextSelection = Copier la sélection de texte |
|
16 |
|
|
17 |
couldNotFindFirstTextOfP0IDInTheCorpus = ** Échec de la recherche du texte d''ID {0} dans le corpus. |
|
18 |
|
|
19 |
edition = Édition |
|
20 |
|
|
21 |
editions = Éditions |
|
22 |
|
|
23 |
enableFastWordHighlight = Activer la mise en évidence de mots rapide |
|
24 |
|
|
25 |
errorColonCouldNotRetrieveLineWordIdsAbortingBackToText = ** Erreur : impossible de récupérer les identifiants de mots. Abandon du retour au texte. |
|
26 |
|
|
27 |
errorColonTxmeditioncorpusidEditionidTextidWordidCalledWithNoArguments = ** Erreur : txmedition (corpusid, editionid?, textid ?, wordid?) appelé sans argument |
|
28 |
|
|
29 |
errorWhileGettingAvailableEditionsColonP0 = ** Erreur lors de la récupération des éditions disponibles : {0} |
|
30 |
|
|
31 |
errorWhileOpeningEditionColonP0 = ** Erreur lors de l''ouverture de l''édition : {0} |
|
32 |
|
|
33 |
errorWhileOpeningEditorColonP0 = ** Erreur lors de l''ouverture de l''édition : {0} |
|
34 |
|
|
35 |
error_while_reading = ** Erreur lors de la lecture de {0} : {1} |
|
36 |
|
|
37 |
failToRetrieveFirstPageOfEditionEqualsP0AndTextEqualsP1 = ** Échec de l''extraction de la première page de l''édition {0} du texte {1}. |
|
38 |
|
|
39 |
firstPageOfTheText = Première page du texte |
|
40 |
|
|
41 |
firstTextOfTheCorpus = Premier texte du corpus |
|
42 |
|
|
43 |
forward = Avant |
|
44 |
|
|
45 |
lastPageOfTheText = Dernière page du texte |
|
46 |
|
|
47 |
lastTextOfTheCorpus = Dernier texte du corpus |
|
48 |
|
|
49 |
nextPage = Page suivante |
|
50 |
|
|
51 |
nextText = Texte suivant |
|
52 |
|
|
53 |
noEditionFound = Édition introuvable |
|
54 |
|
|
55 |
noEditionFoundForTextEqualsP0AndEditionEqualsP1 = Aucune édition ‘'{1}' trouvée pour le texte {0} |
|
56 |
|
|
57 |
noEditionToOpen = Pas d'édition disponible. |
|
58 |
|
|
59 |
noEditionWithNameEqualsP0AvailableForTextEqualsP1 = Aucune édition "{1}" trouvée pour le texte {0}. |
|
60 |
|
|
61 |
openingDefaultEditionsColonP0 = Ouverture de l''édition "{0}"... |
|
62 |
|
|
63 |
openingWithFirstEditionNoDefaultEditionSetColonP0 = Ouverture de l'édition "{0}" (pas d'édition par défaut). |
|
64 |
|
|
65 |
pageButtons = boutons de la page |
|
66 |
|
|
67 |
pageNotFoundP0 = Page ‘'{0}' introuvable. |
|
68 |
|
|
69 |
previousPage = Page précédente |
|
70 |
|
|
71 |
previousText = Texte précédent |
|
72 |
|
|
73 |
reload = Recharger |
|
74 |
|
|
75 |
sCRIPTRETURNEDEqualsP0 = Le script a retourné ‘'[0}' |
|
76 |
|
|
77 |
selectOneOrMoreEditions = Sélectionner une ou plusieurs éditions. |
|
78 |
|
|
79 |
textButtons = boutons de navigation entre textes |
|
80 |
|
|
81 |
warningColonCouldNotFindEditionForNameEqualsP0 = Avertissement: échec de récupération de l''édition ‘'{0}' |
|
82 |
|
|
83 |
warningColonUnknownedParameterIdEqualsP0 = Avertissement: paramètre d'identifiant {0} inconnu. |
tmp/org.txm.querycooccurrences.rcp/src/org/txm/functions/coocmatrix/QueryAutoCooccurrence.java (revision 1596) | ||
---|---|---|
336 | 336 |
} |
337 | 337 |
|
338 | 338 |
@Override |
339 |
public String getResulType() { |
|
339 |
public String getResultType() {
|
|
340 | 340 |
return "Query auto cooccurrence"; |
341 | 341 |
} |
342 | 342 |
|
tmp/org.txm.querycooccurrences.rcp/src/org/txm/functions/coocmatrix/QueryCooccurrence.java (revision 1596) | ||
---|---|---|
227 | 227 |
|
228 | 228 |
@Override |
229 | 229 |
public String getDetails() { |
230 |
return getResulType()+" d=" + dist + " min=" + minCooc+" Q1="+queries1.toString()+ " Q2="+queries2.toString(); |
|
230 |
return getResultType()+" d=" + dist + " min=" + minCooc+" Q1="+queries1.toString()+ " Q2="+queries2.toString();
|
|
231 | 231 |
} |
232 | 232 |
|
233 | 233 |
@Override |
... | ... | |
283 | 283 |
} |
284 | 284 |
|
285 | 285 |
@Override |
286 |
public String getResulType() { |
|
286 |
public String getResultType() {
|
|
287 | 287 |
return "Query cooccurrence"; |
288 | 288 |
} |
289 | 289 |
|
tmp/org.txm.ca.core/src/org/txm/ca/core/functions/Eigenvalues.java (revision 1596) | ||
---|---|---|
110 | 110 |
} |
111 | 111 |
|
112 | 112 |
@Override |
113 |
public String getResulType() { |
|
113 |
public String getResultType() {
|
|
114 | 114 |
return CACoreMessages.eigenvalues; |
115 | 115 |
} |
116 | 116 |
|
tmp/org.txm.ca.core/src/org/txm/ca/core/functions/CA.java (revision 1596) | ||
---|---|---|
973 | 973 |
} |
974 | 974 |
|
975 | 975 |
@Override |
976 |
public String getResulType() { |
|
976 |
public String getResultType() {
|
|
977 | 977 |
return CACoreMessages.RESULT_TYPE; |
978 | 978 |
} |
979 | 979 |
|
tmp/org.txm.cooccurrence.chartsengine/src/org/txm/cooccurrence/functions/CooccurrenceGraph.java (revision 1596) | ||
---|---|---|
147 | 147 |
} |
148 | 148 |
|
149 | 149 |
@Override |
150 |
public String getResultype() { |
|
150 |
public String getResultType() {
|
|
151 | 151 |
return "Cooccurrence graph"; |
152 | 152 |
} |
153 | 153 |
|
tmp/org.txm.rcp/src/main/java/org/txm/rcp/ApplicationWorkbenchAdvisor.java (revision 1596) | ||
---|---|---|
186 | 186 |
|
187 | 187 |
private void openCGU() { |
188 | 188 |
try { |
189 |
String cgu = TBXPreferences.getInstance().getString("cgu"); |
|
190 |
if (!"true".equals(cgu)) { |
|
189 |
if (!RCPPreferences.getInstance().getBoolean(RCPPreferences.CGU)) { |
|
191 | 190 |
|
192 | 191 |
//System.out.println("Opening CGU..."); |
193 | 192 |
//Display.getCurrent() works because this code is run during the splash screen |
194 |
String[] dialogButtonLabels = {"OK", "Cancel"};
|
|
193 |
//String[] dialogButtonLabels = {TXMCoreMessages.common_ok, TXMCoreMessages.common_cancel};
|
|
195 | 194 |
CGUMessageDialog dialog = new CGUMessageDialog(Display.getCurrent().getActiveShell()) { |
196 | 195 |
}; |
197 | 196 |
boolean ret = (dialog.open() == MessageDialog.OK) && dialog.hasCheckBeenPressed(); |
198 | 197 |
if (ret) { |
199 |
TBXPreferences.getInstance().put("cgu", true); //$NON-NLS-1$
|
|
198 |
TBXPreferences.getInstance().put(RCPPreferences.CGU, true);
|
|
200 | 199 |
} else { |
201 | 200 |
System.exit(0); |
202 | 201 |
} |
... | ... | |
495 | 494 |
ArrayList<String> bugs = new ArrayList<String>(); |
496 | 495 |
for (TXMResult result : project.getDeepChildren()) { |
497 | 496 |
if (result.mustBePersisted() && result.isAltered()) { |
498 |
bugs.add(result.getSimpleName() + " (" + result.getResulType() + ")"); //$NON-NLS-1$ //$NON-NLS-2$ |
|
497 |
bugs.add(result.getSimpleName() + " (" + result.getResultType() + ")"); //$NON-NLS-1$ //$NON-NLS-2$
|
|
499 | 498 |
} |
500 | 499 |
} |
501 | 500 |
if (bugs.size() > 0) { |
... | ... | |
1020 | 1019 |
// } |
1021 | 1020 |
} |
1022 | 1021 |
|
1022 |
|
|
1023 | 1023 |
/** |
1024 |
* Called just before the Toolbox is initialized |
|
1024 |
* Executes the specified Groovy script file. |
|
1025 |
* @param script |
|
1025 | 1026 |
*/ |
1026 |
private void callPreStartScript() {
|
|
1027 |
private void callGroovyScript(File script) {
|
|
1027 | 1028 |
try { |
1028 |
File startupScript = new File(Toolbox.getTxmHomePath(), "scripts/groovy/user/prestart.groovy");//$NON-NLS-1$ |
|
1029 |
|
|
1030 |
if (startupScript.exists() && startupScript.canRead()) { |
|
1031 |
ExecuteGroovyScript.executeScript(startupScript.getAbsolutePath(), null, null, true, ""); |
|
1029 |
if (script.exists() && script.canRead()) { |
|
1030 |
ExecuteGroovyScript.executeScript(script.getAbsolutePath(), null, null, true, ""); |
|
1032 | 1031 |
} |
1033 |
} catch(Exception e) { |
|
1034 |
System.out.println(TXMCoreMessages.bind("Fail to execute 'start.groovy' script: {0}.", e)); |
|
1032 |
} |
|
1033 |
catch(Exception e) { |
|
1034 |
Log.severe(TXMCoreMessages.bind("Failed to execute '{0}' script: {1}.", script, e)); |
|
1035 | 1035 |
Log.printStackTrace(e); |
1036 | 1036 |
} |
1037 | 1037 |
} |
1038 |
|
|
1039 |
|
|
1040 |
/** |
|
1041 |
* Called just before the Toolbox is initialized |
|
1042 |
*/ |
|
1043 |
private void callPreStartScript() { |
|
1044 |
this.callGroovyScript(new File(Toolbox.getTxmHomePath(), "scripts/groovy/user/prestart.groovy")); //$NON-NLS-1$ |
|
1045 |
} |
|
1038 | 1046 |
|
1039 | 1047 |
/** |
1040 | 1048 |
* Called just after Toolbox is initialized |
1041 | 1049 |
*/ |
1042 | 1050 |
private void callStartScript() { |
1043 |
try { |
|
1044 |
File startupScript = new File(Toolbox.getTxmHomePath(), "scripts/groovy/user/start.groovy");//$NON-NLS-1$ |
|
1045 |
|
|
1046 |
if (startupScript.exists() && startupScript.canRead()) { |
|
1047 |
ExecuteGroovyScript.executeScript(startupScript.getAbsolutePath(), null, null, true, ""); |
|
1048 |
} |
|
1049 |
} catch(Exception e) { |
|
1050 |
System.out.println(TXMCoreMessages.bind("Fail to execute 'start.groovy' script: {0}.", e)); |
|
1051 |
Log.printStackTrace(e); |
|
1052 |
} |
|
1051 |
this.callGroovyScript(new File(Toolbox.getTxmHomePath(), "scripts/groovy/user/start.groovy")); //$NON-NLS-1$ |
|
1053 | 1052 |
} |
1054 | 1053 |
|
1055 | 1054 |
/** |
1056 | 1055 |
* Called just before Toolbox is stop call |
1057 | 1056 |
*/ |
1058 | 1057 |
private void callPreStopScript() { |
1059 |
try { |
|
1060 |
File stopScript = new File(Toolbox.getTxmHomePath(), "scripts/groovy/user/prestop.groovy"); //$NON-NLS-1$ |
|
1061 |
if (stopScript.exists() && stopScript.canRead()) { |
|
1062 |
|
|
1063 |
ExecuteGroovyScript.executeScript(stopScript.getAbsolutePath(), null, null, true, ""); |
|
1064 |
} |
|
1065 |
} catch(Exception e) { |
|
1066 |
System.out.println(TXMCoreMessages.bind("Fail to execute 'stop.groovy' script: {0}.", e)); |
|
1067 |
Log.printStackTrace(e); |
|
1068 |
} |
|
1058 |
this.callGroovyScript(new File(Toolbox.getTxmHomePath(), "scripts/groovy/user/prestop.groovy")); //$NON-NLS-1$ |
|
1069 | 1059 |
} |
1070 | 1060 |
|
1071 | 1061 |
/** |
1072 | 1062 |
* Called just after Toolbox is stop call |
1073 | 1063 |
*/ |
1074 | 1064 |
private void callStopScript() { |
1075 |
try { |
|
1076 |
File stopScript = new File(Toolbox.getTxmHomePath(), "scripts/groovy/user/stop.groovy"); //$NON-NLS-1$ |
|
1077 |
if (stopScript.exists() && stopScript.canRead()) { |
|
1078 |
|
|
1079 |
ExecuteGroovyScript.executeScript(stopScript.getAbsolutePath(), null, null, true, ""); |
|
1080 |
} |
|
1081 |
} catch(Exception e) { |
|
1082 |
System.out.println(TXMCoreMessages.bind("Fail to execute 'stop.groovy' script: {0}.", e)); |
|
1083 |
Log.printStackTrace(e); |
|
1084 |
} |
|
1065 |
this.callGroovyScript(new File(Toolbox.getTxmHomePath(), "scripts/groovy/user/stop.groovy")); //$NON-NLS-1$ |
|
1085 | 1066 |
} |
1086 | 1067 |
|
1087 | 1068 |
/** |
... | ... | |
1120 | 1101 |
monitor.setTaskName("Initializing Toolbox (engines and corpora)..."); |
1121 | 1102 |
if (Toolbox.initialize(TBXPreferences.class, monitor)) { |
1122 | 1103 |
StatusLine.setMessage(TXMUIMessages.ready); |
1123 |
System.out.println(TXMUIMessages.ready);
|
|
1124 |
} else {
|
|
1104 |
}
|
|
1105 |
else { |
|
1125 | 1106 |
StatusLine.setMessage(TXMUIMessages.startupFailedPleaseCheckTXMPreferencesInTheFileSupPreferencesMenuOrContactTxmusersMailingListMenuColonHelpSup); |
1126 |
System.out.println(TXMUIMessages.startupFailedPleaseCheckTXMPreferencesInTheFileSupPreferencesMenuOrContactTxmusersMailingListMenuColonHelpSup);
|
|
1107 |
Log.severe(TXMUIMessages.startupFailedPleaseCheckTXMPreferencesInTheFileSupPreferencesMenuOrContactTxmusersMailingListMenuColonHelpSup);
|
|
1127 | 1108 |
|
1128 | 1109 |
monitor.done(); |
1129 | 1110 |
return; |
... | ... | |
1146 | 1127 |
|
1147 | 1128 |
if (Toolbox.isInitialized()) { |
1148 | 1129 |
StatusLine.setMessage(TXMUIMessages.ready); |
1149 |
} else { |
|
1130 |
} |
|
1131 |
else { |
|
1150 | 1132 |
StatusLine.setMessage(TXMUIMessages.startupFailedPleaseCheckTXMPreferencesInTheFileSupPreferencesMenuOrContactTxmusersMailingListMenuColonHelpSup); |
1151 | 1133 |
} |
1152 | 1134 |
|
... | ... | |
1160 | 1142 |
|
1161 | 1143 |
} |
1162 | 1144 |
catch(Exception e) { |
1163 |
System.out.println(TXMCoreMessages.bind("Error during UI initialization: {0}.", e.getLocalizedMessage()));
|
|
1145 |
Log.severe(TXMCoreMessages.bind("Error during UI initialization: {0}.", e.getLocalizedMessage()));
|
|
1164 | 1146 |
e.printStackTrace(); |
1165 | 1147 |
} |
1166 | 1148 |
} |
1167 | 1149 |
}); |
1168 | 1150 |
|
1169 |
// Fix the freeze at splash screen on Mac OS X/Cocoa because of a deadlock between AWT/SWT threads (bug #894) |
|
1170 |
// Display.getDefault().syncExec(new Runnable() { |
|
1171 |
// @Override |
|
1172 |
// public void run() { |
|
1173 |
// TODO Auto-generated method stub |
|
1174 |
// if (!Toolbox.isInitialized()) { |
|
1175 |
// try { |
|
1176 |
// Toolbox.initialize(getProperties()); |
|
1177 |
// // Initializes the charts SWT component provider |
|
1178 |
// Log.info(Messages.ApplicationWorkbenchAdvisor_87); |
|
1179 |
// Application.swtComponentProvider = SWTChartsComponentProvider.createChartsSWTComponentProvider(Toolbox.getChartsEngine()); |
|
1180 |
// } |
|
1181 |
// catch (Exception e) { |
|
1182 |
// // TODO Auto-generated catch block |
|
1183 |
// e.printStackTrace(); |
|
1184 |
// } |
|
1185 |
// } |
|
1186 |
// } |
|
1187 |
// }); |
|
1188 |
|
|
1189 |
// FIXME: old version, may lead to freeze at splash screen on Mac OS X because of a deadlock between AWT/SWT threads |
|
1190 |
// if (!Toolbox.isInitialized()) { |
|
1191 |
// Properties properties = getProperties(); |
|
1192 |
// if (Toolbox.initialize(properties)) { |
|
1193 |
// // Initializes the charts SWT component provider |
|
1194 |
// Log.info(Messages.ApplicationWorkbenchAdvisor_87); |
|
1195 |
// Application.swtComponentProvider = SWTChartsComponentProvider.createChartsSWTComponentProvider(Toolbox.getChartsEngine()); |
|
1196 |
// } else { |
|
1197 |
// return false; |
|
1198 |
// } |
|
1199 |
// } |
|
1200 |
|
|
1201 | 1151 |
//TxmPreferences.dump(); |
1202 | 1152 |
return true; |
1203 | 1153 |
} |
tmp/org.txm.rcp/src/main/java/org/txm/rcp/handlers/scripts/ExecuteGroovyScript.java (revision 1596) | ||
---|---|---|
56 | 56 |
import org.txm.rcp.swt.widget.parameters.UIParameterException; |
57 | 57 |
import org.txm.rcp.utils.JobHandler; |
58 | 58 |
import org.txm.rcp.views.corpora.CorporaView; |
59 |
import org.txm.utils.logger.Log; |
|
59 | 60 |
|
60 | 61 |
import groovy.lang.Binding; |
61 | 62 |
/** |
... | ... | |
188 | 189 |
// check script |
189 | 190 |
final File scriptfile = new File(scriptpath); |
190 | 191 |
if (!scriptfile.exists()) { |
191 |
System.err.println(NLS.bind(TXMUIMessages.p0ScriptFileDoesntExist, scriptpath));
|
|
192 |
Log.severe(NLS.bind(TXMUIMessages.p0ScriptFileDoesntExist, scriptpath));
|
|
192 | 193 |
return; |
193 | 194 |
} |
194 | 195 |
ExecuteLastGroovyScript.setLastScript(scriptfile, currentRootDir.getName().equals("macro")); // register last groovy script //$NON-NLS-1$ |
... | ... | |
217 | 218 |
String dir = currentRootDir.getAbsolutePath(); |
218 | 219 |
String path = scriptfile.getAbsolutePath(); |
219 | 220 |
if (!path.startsWith(dir)) { |
220 |
System.out.println(TXMUIMessages.bind(TXMUIMessages.theP1GroovyScriptMustBeInTheP0Folder, dir, path));
|
|
221 |
Log.severe(TXMUIMessages.bind(TXMUIMessages.theP1GroovyScriptMustBeInTheP0Folder, dir, path));
|
|
221 | 222 |
return; |
222 | 223 |
} |
223 | 224 |
final String relativepath = path.substring(dir.length()+1); |
... | ... | |
230 | 231 |
@Override |
231 | 232 |
protected IStatus run(IProgressMonitor monitor) { |
232 | 233 |
this.runInit(monitor); |
233 |
//this.setCurrentMonitor(monitor); |
|
234 | 234 |
monitor.beginTask(NLS.bind(TXMUIMessages.executionOfP0, scriptfile.getName()), 100); |
235 | 235 |
|
236 | 236 |
try { |
237 | 237 |
gse = GSERunner.buildDefaultGSE(); |
238 | 238 |
if (gse == null) { |
239 |
System.out.println("Could not create the Groovy script engine. Aborting.");
|
|
239 |
Log.severe("Could not create the Groovy script engine. Aborting...");
|
|
240 | 240 |
return Status.CANCEL_STATUS; |
241 | 241 |
} |
242 | 242 |
|
... | ... | |
251 | 251 |
binding.setProperty("stringArgs", stringArgs); //$NON-NLS-1$ |
252 | 252 |
binding.setProperty("gse", gse); |
253 | 253 |
|
254 |
System.out.println(NLS.bind(TXMUIMessages.executingGroovyScript, scriptfile.getName()));
|
|
254 |
Log.info(NLS.bind(TXMUIMessages.executingGroovyScript, scriptfile.getName()));
|
|
255 | 255 |
long time = System.currentTimeMillis(); |
256 | 256 |
gse.run(relativepath, binding); |
257 | 257 |
|
258 |
System.out.println(TXMUIMessages.bind(TXMUIMessages.doneP0Ms, System.currentTimeMillis()-time));
|
|
258 |
Log.info(TXMUIMessages.bind(TXMUIMessages.doneP0Ms, System.currentTimeMillis()-time));
|
|
259 | 259 |
} catch (ThreadDeath td) { |
260 | 260 |
return Status.CANCEL_STATUS; |
261 | 261 |
} catch (UIParameterException e) { |
262 | 262 |
if (e.isError()) { |
263 |
System.out.println(TXMUIMessages.errorDuringParametersInitialisation);
|
|
263 |
Log.severe(TXMUIMessages.errorDuringParametersInitialisation);
|
|
264 | 264 |
} else { |
265 |
System.out.println(TXMUIMessages.theUserCanceledTheScriptExecution);
|
|
265 |
Log.severe(TXMUIMessages.theUserCanceledTheScriptExecution);
|
|
266 | 266 |
} |
267 | 267 |
} catch (Exception e) { |
268 |
System.out.println(TXMUIMessages.errorDuringScriptExecutionColon+e);
|
|
268 |
Log.severe(TXMUIMessages.errorDuringScriptExecutionColon+e);
|
|
269 | 269 |
org.txm.utils.logger.Log.printStackTrace(e); |
270 | 270 |
} finally { |
271 | 271 |
monitor.done(); |
tmp/org.txm.rcp/src/main/java/org/txm/rcp/handlers/scripts/ExecuteScript.java (revision 1596) | ||
---|---|---|
53 | 53 |
import org.txm.core.engines.EngineType; |
54 | 54 |
import org.txm.core.engines.ScriptEngine; |
55 | 55 |
import org.txm.core.engines.ScriptEnginesManager; |
56 |
import org.txm.core.messages.TXMCoreMessages; |
|
56 | 57 |
import org.txm.core.preferences.TBXPreferences; |
57 | 58 |
import org.txm.core.preferences.TXMPreferences; |
58 | 59 |
import org.txm.rcp.editors.TxtEditor; |
... | ... | |
128 | 129 |
boolean doit = RCPPreferences.getInstance().getBoolean(RCPPreferences.SAVE_BEFORE_EXECUTION); |
129 | 130 |
//System.out.println("Save file? "+doit); |
130 | 131 |
if (!doit) { // ask user |
131 |
MessageDialog dialog = new MessageDialog(shell, TXMUIMessages.executionOfP0+result, null,
|
|
132 |
MessageDialog dialog = new MessageDialog(shell, TXMCoreMessages.bind(TXMUIMessages.executionOfP0, result), null,
|
|
132 | 133 |
TXMUIMessages.saveFileBeforeExecution, MessageDialog.QUESTION, new String[] {TXMUIMessages.saveAndRun, TXMUIMessages.abort, |
133 | 134 |
TXMUIMessages.dontSaveAndRun}, 0) { |
134 | 135 |
Button checkDefault; |
tmp/org.txm.rcp/src/main/java/org/txm/rcp/preferences/RCPPreferences.java (revision 1596) | ||
---|---|---|
54 | 54 |
|
55 | 55 |
public static final String UPDATESITE = "update_site"; //$NON-NLS-1$ |
56 | 56 |
|
57 |
|
|
58 |
public static final String CGU = "cgu"; //$NON-NLS-1$ |
|
59 |
|
|
57 | 60 |
@Override |
58 | 61 |
public void initializeDefaultPreferences() { |
59 | 62 |
|
tmp/org.txm.rcp/src/main/java/org/txm/rcp/messages/TXMUIMessages.java (revision 1596) | ||
---|---|---|
8 | 8 |
|
9 | 9 |
private static final String BUNDLE_NAME = "org.txm.rcp.messages.messages"; //$NON-NLS-1$ |
10 | 10 |
|
11 |
|
|
12 |
|
|
11 |
public static String EMPTY; |
|
12 |
public static String Explorer_4; |
|
13 |
public static String Explorer_5; |
|
14 |
public static String Explorer_7; |
|
15 |
public static String FileTreeContentProvider_4; |
|
16 |
public static String _1; |
|
17 |
public static String _2; |
|
18 |
public static String _3; |
|
19 |
public static String _default; |
|
20 |
public static String _default_2; |
|
21 |
public static String aBinaryCorpusIsATXMFileExtensionTxmOrZip; |
|
22 |
public static String aWord; |
|
23 |
public static String aWordWithItsProperties; |
|
24 |
public static String aWordWithItsProperty; |
|
25 |
public static String abort; |
|
26 |
public static String abortingLoadingOfPOACorpusWithTheSameNameAlreadyExists; |
|
27 |
public static String aboutTXM; |
|
28 |
public static String activateProxyService; |
|
29 |
public static String addAWord; |
|
30 |
public static String addAXsltParameter; |
|
31 |
public static String addColon; |
|
32 |
public static String addingToSelection; |
|
33 |
public static String advanced; |
|
34 |
public static String advancedUserMode; |
|
35 |
public static String allCriteria; |
|
36 |
public static String alwaysSaveBeforeLaunching; |
|
37 |
public static String ampContextsDisplayOptions; |
|
38 |
public static String ampMultipleSort; |
|
39 |
public static String ampNameColon; |
|
40 |
public static String ampNew; |
|
41 |
public static String ampPropertyColon; |
|
42 |
public static String ampQuery; |
|
43 |
public static String ampRunScript; |
|
44 |
public static String ampSortOptions; |
|
45 |
public static String ampStructureColon; |
|
46 |
public static String ampValue; |
|
47 |
public static String andFrom; |
|
48 |
public static String annotateTheCorpus; |
|
49 |
public static String areYouSureYouWantToDeleteP0Colon; |
|
50 |
public static String argsColon; |
|
51 |
public static String assign; |
|
52 |
public static String assisted; |
|
53 |
public static String automaticRecomputingWhenChangingAParameter; |
|
54 |
public static String automaticUpdates; |
|
55 |
public static String binaryCorpusIsNotATXM079CorpusNoImportXmlFile; |
|
56 |
public static String binaryCorpusIsNotATXM080CorpusNoSettingsNorProjectFile; |
|
57 |
public static String buildEdition; |
|
58 |
public static String canNotCreateATableWithTheProvidedInformationColonP0; |
|
59 |
public static String canceling; |
|
60 |
public static String cancelingRequested; |
|
61 |
public static String canceling_2; |
|
62 |
public static String cannotAskForTheSimpleTabWhenTheUserHasSelectedTheAdvancedTab; |
|
63 |
public static String cannotComputeCooccurrencesWithTheSelection; |
|
64 |
public static String cannotCreateALexicalTableFromAnIndexCreatedWithACorpusMoreThanOneColumnIsNeeded; |
|
65 |
public static String cannotDrawAGraphicWithTheInformationProvided; |
|
66 |
public static String cannotReadTheFileP0; |
|
67 |
public static String cannotSaveImportConfigurationNoSourceFolderSelected; |
|
68 |
public static String cannotStartImportConfigurationNoSourceFolderSelected; |
|
69 |
public static String cantLoadPropertiesFromCorpusP0ColonP1; |
|
70 |
public static String cantOpenGraphicP0; |
|
71 |
public static String changeCharactersEncoding; |
|
72 |
public static String changeCharactersEncodingCurrentEncodingColon; |
|
73 |
public static String characterEncoding; |
|
74 |
public static String checkForUpdatesAtStartup; |
|
75 |
public static String checkingForExistingWorkspaceDirectory; |
|
76 |
public static String chooseOutfile; |
|
77 |
public static String chooseTheLanguage; |
|
78 |
public static String clipboard; |
|
79 |
public static String clipboardIsEmpty; |
|
80 |
public static String clipboard_2; |
|
81 |
public static String columnIndexIsTooBig; |
|
82 |
public static String columnsSeparatedBy; |
|
83 |
public static String commands; |
|
13 | 84 |
public static String common_areYouSure; |
14 | 85 |
public static String common_beginning; |
15 | 86 |
public static String common_displayOptions; |
16 | 87 |
public static String common_end; |
17 | 88 |
public static String common_enterRegularExpressionOfYourSearch; |
18 | 89 |
public static String common_refresh; |
19 |
|
|
20 |
public static String error_invalidRegularExpression; |
|
21 |
|
|
22 |
public static String info_txmIsReady; |
|
23 |
|
|
24 |
public static String enableAutomaticSaveOfAllResultsPersistence; |
|
25 |
public static String showAllResultNodesInCorporaView; |
|
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
public static String aboutTXM; |
|
32 |
public static String warningColonTheCorpusP0IsCorruptedSomeCommandsWontWorkCorrectly; |
|
33 |
public static String cannotReadTheFileP0; |
|
34 |
public static String warning; |
|
35 |
public static String warning_popup_allDescendantResultsWillBeUpdated; |
|
36 |
public static String warning_popup_editedResultsWillBelostP0; |
|
37 |
|
|
38 |
|
|
39 |
|
|
40 |
public static String warning_popup_theP0HasBeenEditedItsChangesWillBeLost; |
|
41 |
|
|
42 |
|
|
43 |
|
|
44 |
public static String newCorpusColonP0; |
|
45 |
public static String theP0CorpusDirectoryAlreadyExistsDoYouWantToReplaceIt; |
|
46 |
public static String thisFileIsNotATXMFileColonP0; |
|
47 |
public static String failedToLoadCorpusP0; |
|
48 |
public static String aBinaryCorpusIsATXMFileExtensionTxmOrZip; |
|
49 |
public static String loadingBinaryCorpus; |
|
50 |
public static String extractingBinaryCorpus; |
|
51 |
public static String failedToLoadCorpusFromDirectoryColonP0WeCannotFindTheNecessaryComponents; |
|
52 |
public static String couldNotUnzipBinaryCorpusColon; |
|
53 |
public static String loadingTheCorpusInThePlatform; |
|
54 |
public static String restartingThePlatform; |
|
55 |
public static String failedToLoadBinaryCorpusNullError; |
|
56 |
public static String printTheStacktrace; |
|
57 |
public static String logLevel; |
|
58 |
public static String logInTheConsole; |
|
59 |
public static String logInAFile; |
|
60 |
public static String tXMInstallDirectory; |
|
61 |
public static String tXMUserDirectory; |
|
62 |
public static String displayRuntimesInConsole; |
|
63 |
public static String advancedUserMode; |
|
64 |
public static String logs; |
|
65 |
public static String updateLevel; |
|
66 |
public static String argsColon; |
|
67 |
public static String couldNotStartProxyConfigurationColon; |
|
68 |
public static String logOptionDetected; |
|
69 |
public static String forceLoggin; |
|
70 |
public static String thisFileIsNotMeantToRunTXMPleaseConsultTXMUserManual; |
|
71 |
public static String lockRCPWorkspace; |
|
72 |
public static String activateProxyService; |
|
73 |
public static String initializingPlatform; |
|
74 |
public static String removingOldCorpusBackupDirectoryP0; |
|
75 |
public static String corporaBackupedColonP0; |
|
76 |
public static String initializationOfThePlatform; |
|
77 |
public static String removeUnusedEclipseRCPPreferencePage; |
|
78 |
public static String tXMWorkspaceDirectoryAlreadyExistsP0WouldYouLikeToReloadItsCorporaInYourNewTXM; |
|
79 |
public static String workspaceDirectoryBackup; |
|
80 |
public static String loadingTXMInstallPreferences; |
|
81 |
public static String movingCorporaToP0; |
|
82 |
public static String couldNotCreateBackupDirectoryColon; |
|
83 |
public static String to; |
|
84 |
public static String checkingForExistingWorkspaceDirectory; |
|
85 |
public static String failedToMoveCorpus; |
|
86 |
public static String failedToBackupExistingCorporaColon; |
|
87 |
public static String systemOutput; |
|
88 |
public static String startJobColonLoadInstallPreferences; |
|
89 |
public static String startJobColonCheckTXMHOME; |
|
90 |
public static String startJobColonInitializeUI; |
|
91 |
public static String errorWhileLoadingTXMColon; |
|
92 |
public static String startingUpdateFetch; |
|
93 |
public static String errorWhileUpdatingTXMColon; |
|
94 |
public static String errorWhileUpdatingTXMColonNoHandlerServiceFound; |
|
95 |
public static String creatingTXMUserWorkingDirectory; |
|
96 |
public static String loadingViews; |
|
97 |
public static String installPathColonP0; |
|
98 |
public static String couldNotReadInstallPreferencesFile; |
|
99 |
public static String startingUpP0; |
|
100 |
public static String startupFailedPleaseCheckTXMPreferencesInTheFileSupPreferencesMenuOrContactTxmusersMailingListMenuColonHelpSup; |
|
101 |
public static String ready; |
|
102 |
public static String removeUnnecessaryE4Elements; |
|
103 |
public static String settingStatusLineAndConfiguringActionSets; |
|
104 |
public static String openTheQueryAssistant; |
|
105 |
public static String displayInFullText; |
|
106 |
public static String cannotAskForTheSimpleTabWhenTheUserHasSelectedTheAdvancedTab; |
|
107 |
public static String iAcceptTheLicenceAndIUndertakeToCiteTXMForAcknowledgingMyUseOfTXMInMyResearchWorkSeeTheCitationSectionOfTheInfhttpColontextometrieenslyonfrspipphprubrique61SupPage; |
|
108 |
public static String infpSupTXMIsPublishedUnderTheGNUGPL2LicenseAmpltInfaHrefEqualshttpsColonwwwgnuorglicensesgpl20enhtmlSuphttpsColonwwwgnuorglicensesgpl20enhtmlInfaSupAmpgt; |
|
109 |
public static String termsOfService; |
|
110 |
public static String errorWhileCallingOrgeclipseuiwindowresetPerspectiveColon; |
|
111 |
public static String errorWhileCleaningPerspectiveColonNoHandlerServiceFound; |
|
112 |
public static String openingComplexSortDialog; |
|
113 |
public static String invalidComparator; |
|
114 |
public static String youMustSelectAtLeast2Comparators; |
|
115 |
public static String addingToSelection; |
|
116 |
public static String removeFromSelection; |
|
117 |
public static String movingUpTheSelection; |
|
118 |
public static String movingDownTheSelection; |
|
119 |
public static String ampMultipleSort; |
|
120 |
public static String defineAndUseACompositeSorter; |
|
121 |
public static String selectACompositeSorter; |
|
122 |
public static String ampNew; |
|
123 |
public static String createANewSorter; |
|
124 |
public static String name; |
|
125 |
public static String nameIsMandatory; |
|
126 |
public static String sortKeys; |
|
90 |
public static String completeNameAuthorDateLicenseComment; |
|
127 | 91 |
public static String complexSortColonP0; |
128 |
public static String sort; |
|
129 |
public static String errorDuringSortColonP0; |
|
130 |
public static String _default; |
|
131 |
public static String match; |
|
132 |
public static String doesNotContain; |
|
133 |
public static String allCriteria; |
|
134 |
public static String someCriteria; |
|
135 |
public static String query; |
|
136 |
public static String openingCooccurrentsTable; |
|
137 |
public static String cannotComputeCooccurrencesWithTheSelection; |
|
92 |
public static String computeSubCorpusOnP0QueryColonP1; |
|
93 |
public static String computeSubCorpusOnP0StructsColonP1AmpPropsP2ColonP3; |
|
94 |
public static String computing; |
|
95 |
public static String computing_3; |
|
96 |
public static String concordanceContextStructureLimits; |
|
97 |
public static String configurationOfTheUserInterfaceLanguage; |
|
98 |
public static String confirm; |
|
99 |
public static String consoleReportsAnInternalError; |
|
100 |
public static String contains; |
|
101 |
public static String contextColon; |
|
102 |
public static String contextsDisplayOptions; |
|
138 | 103 |
public static String coocMatrixColon; |
139 |
public static String distance; |
|
140 |
public static String minimalCoFrequence; |
|
141 |
public static String outfileColonNone; |
|
142 |
public static String chooseOutfile; |
|
143 |
public static String numberOfNodesColon; |
|
144 |
public static String numberOfEdgesColon; |
|
145 |
public static String distance_2; |
|
146 |
public static String writingCoocMatrixInGRAPHMLFileColon; |
|
147 | 104 |
public static String coocMatrixParameters; |
148 |
public static String corpusConversionFailed; |
|
105 |
public static String copiedLinesColon; |
|
106 |
public static String corporaBackupedColonP0; |
|
149 | 107 |
public static String corpus; |
150 |
public static String editions; |
|
151 |
public static String punctuations; |
|
152 |
public static String separatorCharacters; |
|
153 |
public static String elisionCharacters; |
|
154 |
public static String endOfSentenceCharacters; |
|
155 |
public static String annotateTheCorpus; |
|
156 |
public static String parameters; |
|
157 |
public static String _1; |
|
158 |
public static String wordsPerPage; |
|
159 |
public static String selectTheSourceDirectory; |
|
160 |
public static String _2; |
|
161 |
public static String setImportParametersInTheSectionsBelow; |
|
162 |
public static String displayFont; |
|
163 |
public static String dDotMandatoryField; |
|
164 |
public static String pageBreakTag; |
|
165 |
public static String _3; |
|
166 |
public static String startCorpusImport; |
|
167 |
public static String buildEdition; |
|
168 |
public static String _default_2; |
|
169 |
public static String addAXsltParameter; |
|
170 |
public static String moduleUIParametersColonP0; |
|
171 |
public static String savingImportParameters; |
|
108 |
public static String corpusConversionFailed; |
|
109 |
public static String corpusInfosP0; |
|
110 |
public static String corpusNameDoesNotMatchesTheAZAZ09120PatternColonP0; |
|
172 | 111 |
public static String corpusNameIsMandatory; |
173 |
public static String fontName; |
|
174 |
public static String spaces; |
|
175 |
public static String editXSLStylesheet; |
|
176 |
public static String commands; |
|
177 |
public static String concordanceContextStructureLimits; |
|
178 |
public static String cannotSaveImportConfigurationNoSourceFolderSelected; |
|
179 |
public static String cannotStartImportConfigurationNoSourceFolderSelected; |
|
180 |
public static String deleteParameter; |
|
181 |
public static String generalInformations; |
|
182 | 112 |
public static String corpusNameOnlyCapsAndNoDigitAtBeginning; |
183 |
public static String corpusNameDoesNotMatchesTheAZAZ09120PatternColonP0; |
|
184 |
public static String completeNameAuthorDateLicenseComment; |
|
185 |
public static String newFileColonP0; |
|
186 |
public static String newFolderColonP0; |
|
187 |
public static String macroName; |
|
188 |
public static String pleaseWriteTheMacroName; |
|
189 |
public static String creatingANewPartitionWithP0; |
|
190 |
public static String errorColonThePartitionWasNotCreated; |
|
191 |
public static String doneColonP0Items; |
|
192 |
public static String doneColonP0Parts; |
|
113 |
public static String couldNotCreateBackupDirectoryColon; |
|
114 |
public static String couldNotFindDirectoryColonP0; |
|
115 |
public static String couldNotFindTextP0InCorpusP1; |
|
116 |
public static String couldNotLaunchTheInternalWebBrowserYouMustSetThatParameterInThePreferencesMenuColonGeneralSupWebNavigator; |
|
117 |
public static String couldNotReadInstallPreferencesFile; |
|
118 |
public static String couldNotStartProxyConfigurationColon; |
|
119 |
public static String couldNotUnzipBinaryCorpusColon; |
|
120 |
public static String createANewMacroFromATemplate; |
|
121 |
public static String createANewSorter; |
|
193 | 122 |
public static String createPartition; |
194 |
public static String errorColonThePartitionCreatedHasNoPart; |
|
195 |
public static String queriesCannotBeLeftEmpty; |
|
196 |
public static String simple; |
|
197 |
public static String ampStructureColon; |
|
198 |
public static String assisted; |
|
199 |
public static String ampPropertyColon; |
|
200 |
public static String advanced; |
|
201 |
public static String ampNameColon; |
|
202 |
public static String part; |
|
203 |
public static String noPartWasDefined; |
|
204 |
public static String noPartitionNameWasSpecifiedTheNameIsP0; |
|
205 |
public static String errorColonSubcorpusWasNotCreated; |
|
206 |
public static String noSelectionForColon; |
|
207 |
public static String failedToGetLastCQPErrorColon; |
|
208 |
public static String selectionIsNotACorpusColon; |
|
209 |
public static String computeSubCorpusOnP0StructsColonP1AmpPropsP2ColonP3; |
|
210 |
public static String doneColonP0Created; |
|
211 |
public static String computeSubCorpusOnP0QueryColonP1; |
|
123 |
public static String createSubcorpus; |
|
124 |
public static String creatingANewPartitionWithP0; |
|
212 | 125 |
public static String creatingASubcorpusInTheSearchEngine; |
213 | 126 |
public static String creatingASubcorpusOnP0; |
214 |
public static String createSubcorpus; |
|
215 |
public static String ampQuery; |
|
216 |
public static String invalidName; |
|
217 |
public static String invalidQuery; |
|
218 |
public static String queryCannotBeLeftEmpty; |
|
219 |
public static String ampValue; |
|
220 |
public static String noSubcorpusNameWasSpecifiedWeveGeneratedOne; |
|
221 |
public static String referencesDisplayOptions; |
|
222 |
public static String referencesAmpdisplayOptions; |
|
223 |
public static String referencesAmpsortOptions; |
|
224 |
public static String referencesSortOptions; |
|
225 |
public static String areYouSureYouWantToDeleteP0Colon; |
|
226 |
public static String failedToDeleteFileP0; |
|
227 |
public static String failedToDeleteSubcorpusP0; |
|
228 |
public static String theTableMustContainAtLeastOneLine; |
|
229 |
public static String deletingP0Continue; |
|
127 |
public static String creatingTXMUserWorkingDirectory; |
|
128 |
public static String dDot; |
|
129 |
public static String dDotMandatoryField; |
|
130 |
public static String defaultLanguage; |
|
131 |
public static String defineAndUseACompositeSorter; |
|
132 |
public static String deleteParameter; |
|
230 | 133 |
public static String deletedColonP0; |
231 |
public static String errorColonDeleteReturnedFalse; |
|
232 |
public static String errorWhileDeletingP0ColonP1; |
|
233 | 134 |
public static String deletingP0; |
135 |
public static String deletingP0Continue; |
|
136 |
public static String description; |
|
137 |
public static String descriptionOfTheP0CorpusP1; |
|
138 |
public static String desktopIsNotSupportedFatal; |
|
139 |
public static String displayFont; |
|
140 |
public static String displayInFullText; |
|
141 |
public static String displayRuntimesInConsole; |
|
142 |
public static String distance; |
|
143 |
public static String distance_2; |
|
144 |
public static String doNotConfirmToDeleteAnObject; |
|
145 |
public static String doesNotContain; |
|
146 |
public static String doneColonP0Created; |
|
147 |
public static String doneColonP0Items; |
|
148 |
public static String doneColonP0Parts; |
|
149 |
public static String doneInP0; |
|
150 |
public static String doneInP0P1; |
|
151 |
public static String doneP0Ms; |
|
152 |
public static String doneTheCreatedBinaryFileIsP0; |
|
153 |
public static String dontSaveAndRun; |
|
234 | 154 |
public static String downloading; |
155 |
public static String eRROR; |
|
156 |
public static String edit; |
|
157 |
public static String editTheNameOfTheNewColumnCreatedByTheMergedColumns; |
|
158 |
public static String editTheNameOfTheNewLineCreatedByTheMergedLines; |
|
159 |
public static String editXSLStylesheet; |
|
160 |
public static String editions; |
|
161 |
public static String elisionCharacters; |
|
162 |
public static String enableAutomaticSaveOfAllResultsPersistence; |
|
163 |
public static String endOfColumnMerge; |
|
164 |
public static String endOfSentenceCharacters; |
|
165 |
public static String endsWith; |
|
166 |
public static String equalsTo; |
|
167 |
public static String error; |
|
168 |
public static String errorColonCorporaDirectoryDoesntExistColon; |
|
169 |
public static String errorColonCurrentGroovyScriptDirectoryDoesNotExistColon; |
|
170 |
public static String errorColonDeleteReturnedFalse; |
|
235 | 171 |
public static String errorColonElementNotRegistered; |
172 |
public static String errorColonGetTextColonP0; |
|
173 |
public static String errorColonMissingValueColon; |
|
236 | 174 |
public static String errorColonObjectIsNotAnOrgw3cElement; |
237 |
public static String contextColon; |
|
238 |
public static String word; |
|
239 |
public static String structure; |
|
240 |
public static String from; |
|
241 |
public static String to_2; |
|
242 |
public static String andFrom; |
|
243 |
public static String to_3; |
|
244 |
public static String includeTheKeywordStructureInTheCount; |
|
245 |
public static String useLeftWindow; |
|
246 |
public static String useRightWindow; |
|
247 |
public static String errorWhileCreatingAPartitionColonP0; |
|
175 |
public static String errorColonSubcorpusWasNotCreated; |
|
176 |
public static String errorColonThePartitionCreatedHasNoPart; |
|
177 |
public static String errorColonThePartitionWasNotCreated; |
|
178 |
public static String errorColonThisPartitionHasNoPart; |
|
248 | 179 |
public static String errorDuringParametersInitialisation; |
249 |
public static String theUserCanceledTheScriptExecution; |
|
250 | 180 |
public static String errorDuringScriptExecutionColon; |
251 |
public static String theP1GroovyScriptMustBeInTheP0Folder; |
|
181 |
public static String errorDuringSortColonP0; |
|
182 |
public static String errorElementColon; |
|
183 |
public static String errorInAtOptionNameDeclarationColon; |
|
184 |
public static String errorWhileCallingOrgeclipseuiwindowresetPerspectiveColon; |
|
185 |
public static String errorWhileCleaningPerspectiveColonNoHandlerServiceFound; |
|
186 |
public static String errorWhileComputingCorpusSummary; |
|
187 |
public static String errorWhileCreatingAPartitionColonP0; |
|
188 |
public static String errorWhileDeletingP0ColonP1; |
|
189 |
public static String errorWhileGettingCurrentPositionValueColon; |
|
190 |
public static String errorWhileLoadingTXMColon; |
|
191 |
public static String errorWhileOpeningBibliographicRecordP0WithURLEqualsP1; |
|
192 |
public static String errorWhileOpeningFileP0; |
|
193 |
public static String errorWhileOpeningGroovyScriptColonP0; |
|
194 |
public static String errorWhileRunningScriptColonP0; |
|
195 |
public static String errorWhileUpdatingTXMColon; |
|
196 |
public static String errorWhileUpdatingTXMColonNoHandlerServiceFound; |
|
197 |
public static String errorWithElementP0; |
|
198 |
public static String error_invalidRegularExpression; |
|
199 |
public static String execColon; |
|
200 |
public static String executeScript; |
|
201 |
public static String executingGroovyScript; |
|
252 | 202 |
public static String executingLastMacroColon; |
253 | 203 |
public static String executingLastScriptColon; |
254 |
public static String errorColonCurrentGroovyScriptDirectoryDoesNotExistColon; |
|
255 |
public static String executionOfP0; |
|
256 |
public static String executingGroovyScript; |
|
257 |
public static String doneP0Ms; |
|
258 |
public static String saveFileBeforeExecution; |
|
259 |
public static String saveAndRun; |
|
260 |
public static String noInterpreterFoundForScriptFileExtension; |
|
261 |
public static String abort; |
|
262 |
public static String dontSaveAndRun; |
|
263 |
public static String alwaysSaveBeforeLaunching; |
|
264 | 204 |
public static String executionCanceled; |
265 |
public static String importStarted; |
|
266 |
public static String p0ScriptFileDoesntExist; |
|
267 |
public static String errorColonCorporaDirectoryDoesntExistColon; |
|
205 |
public static String executionOfP0; |
|
268 | 206 |
public static String exit; |
269 |
public static String folderP0ShouldNotBeDeleted; |
|
270 |
public static String goToParentFolder; |
|
271 |
public static String goToTXMHome; |
|
272 |
public static String tXM; |
|
273 |
public static String Explorer_4; |
|
274 |
public static String Explorer_5; |
|
275 |
public static String Explorer_7; |
|
276 |
public static String goToTXMHome_2; |
|
207 |
public static String exportAll; |
|
208 |
public static String exportColonCantCreateFileP0ColonP1; |
|
209 |
public static String exportFileEncoding; |
|
210 |
public static String exportSettings; |
|
211 |
public static String exporting; |
|
277 | 212 |
public static String exportingAnnotations; |
278 |
public static String failedToExportCorpusP0; |
|
279 | 213 |
public static String exportingP0ThisMayTakeAWhile; |
280 |
public static String doneTheCreatedBinaryFileIsP0; |
|
281 |
public static String columnsSeparatedBy; |
|
282 |
public static String textSeparator; |
|
283 |
public static String exportSettings; |
|
284 |
public static String exportFileEncoding; |
|
285 |
public static String showExportResultInTheTextEditor; |
|
286 | 214 |
public static String exportingResults; |
287 |
public static String exporting; |
|
288 |
public static String p1ExportSavedInFileColonP0; |
|
289 |
public static String exportColonCantCreateFileP0ColonP1; |
|
215 |
public static String extractingBinaryCorpus; |
|
216 |
public static String failedToBackupExistingCorporaColon; |
|
217 |
public static String failedToCancel; |
|
218 |
public static String failedToCopy; |
|
219 |
public static String failedToDelete; |
|
220 |
public static String failedToDeleteFileP0; |
|
221 |
public static String failedToDeleteSubcorpusP0; |
|
222 |
public static String failedToExportCorpusP0; |
|
223 |
public static String failedToExportFileP0; |
|
290 | 224 |
public static String failedToExportInFileP0WithFormatP1; |
291 |
public static String impossibleToReadP0; |
|
292 | 225 |
public static String failedToExportResultP0ColonP1; |
293 |
public static String p1FileSavedInP0; |
|
294 |
public static String failedToExportFileP0; |
|
226 |
public static String failedToGetLastCQPErrorColon; |
|
227 |
public static String failedToLoadBinaryCorpusNullError; |
|
228 |
public static String failedToLoadCorpusFromDirectoryColonP0WeCannotFindTheNecessaryComponents; |
|
229 |
public static String failedToLoadCorpusP0; |
|
230 |
public static String failedToMoveCorpus; |
|
231 |
public static String failedToRename; |
|
232 |
public static String failedToSaveAs; |
|
295 | 233 |
public static String failedToSavePreferencesColonP0; |
296 |
public static String regexpPatternToHideFiles; |
|
297 |
public static String showHiddenFiles; |
|
234 |
public static String fileColon; |
|
298 | 235 |
public static String fileExplorerColonIncorrectPattern; |
299 |
public static String eRROR; |
|
300 |
public static String errorElementColon; |
|
301 |
public static String FileTreeContentProvider_4; |
|
302 |
public static String readyToShowUpdateUI; |
|
303 |
public static String lexicon; |
|
236 |
public static String folderP0ShouldNotBeDeleted; |
|
237 |
public static String followedBy; |
|
238 |
public static String fontName; |
|
239 |
public static String forceLoggin; |
|
304 | 240 |
public static String form; |
305 |
public static String string; |
|
306 |
public static String integer; |
|
307 |
public static String theInputP0CannotBeDisplayed; |
|
308 |
public static String theNumberOfEditorsP0AndNumberOfInputsP1MustBeEqual; |
|
309 |
public static String consoleReportsAnInternalError; |
|
310 |
public static String theErrorIsColon; |
Formats disponibles : Unified diff