Révision 1364
tmp/org.txm.queryindex.rcp/src/org/txm/queryindex/core/functions/messages.properties (revision 1364) | ||
---|---|---|
1 | 1 |
|
2 |
QueryIndexEditor_0 = Query Index of |
|
2 |
QueryIndexEditor_0 = Query Index of {0}
|
|
3 | 3 |
QueryIndexEditor_1 = Replacing line: {0}. |
4 | 4 |
QueryIndexEditor_10 = queries |
5 | 5 |
QueryIndexEditor_11 = |
tmp/org.txm.queryindex.rcp/src/org/txm/queryindex/core/functions/messages_fr.properties (revision 1364) | ||
---|---|---|
1 | 1 |
|
2 |
QueryIndexEditor_0 = Index de requête de : |
|
2 |
QueryIndexEditor_0 = Index de requête de : {0}
|
|
3 | 3 |
QueryIndexEditor_1 = Remplacement des lignes : {0}. |
4 | 4 |
QueryIndexEditor_10 = requêtes |
5 | 5 |
QueryIndexEditor_11 = |
tmp/org.txm.queryindex.rcp/src/org/txm/queryindex/rcp/editors/QueryIndexEditor.java (revision 1364) | ||
---|---|---|
39 | 39 |
import org.eclipse.jface.viewers.ISelection; |
40 | 40 |
import org.eclipse.jface.viewers.StructuredSelection; |
41 | 41 |
import org.eclipse.jface.viewers.TableViewer; |
42 |
import org.eclipse.osgi.util.NLS; |
|
42 | 43 |
import org.eclipse.swt.SWT; |
43 | 44 |
import org.eclipse.swt.events.KeyEvent; |
44 | 45 |
import org.eclipse.swt.events.KeyListener; |
... | ... | |
252 | 253 |
if (queryindex == null) { |
253 | 254 |
if (partition != null) { |
254 | 255 |
queryindex = new QueryIndex(partition); |
255 |
title = Messages.QueryIndexEditor_0 + partition.getName();
|
|
256 |
title = NLS.bind(Messages.QueryIndexEditor_0, partition.getName());
|
|
256 | 257 |
} else { |
257 | 258 |
queryindex = new QueryIndex(corpus); |
258 |
title = Messages.QueryIndexEditor_0 + corpus;
|
|
259 |
title = NLS.bind(Messages.QueryIndexEditor_0, corpus);
|
|
259 | 260 |
} |
260 | 261 |
} |
261 | 262 |
return queryindex; |
tmp/org.txm.progression.core/src/org/txm/progression/core/messages/messages.properties (revision 1364) | ||
---|---|---|
4 | 4 |
doneDDotNoMatchFound=Done\: no match found. |
5 | 5 |
errorDDotSubcorpusWithSize0=Error\: subcorpus with size 0 |
6 | 6 |
filteringREGEXDDot=, filtering REGEX\: |
7 |
in=in |
|
7 |
inP0=in
|
|
8 | 8 |
occurrences=Occurrences |
9 |
progressionOf=Progression of |
|
9 |
progressionOf=Progression of\
|
|
10 | 10 |
propertyDDot=, property\: |
11 | 11 |
RESULT_TYPE=Progression |
12 | 12 |
structureDDot=structure\: |
tmp/org.txm.progression.core/src/org/txm/progression/core/messages/messages_fr.properties (revision 1364) | ||
---|---|---|
6 | 6 |
filteringREGEXDDot=, filtrage REGEX\: |
7 | 7 |
in=dans |
8 | 8 |
occurrences=Occurrences |
9 |
progressionOf=Progression de |
|
9 |
progressionOf=Progression de\
|
|
10 | 10 |
propertyDDot=, propriété \: |
11 | 11 |
RESULT_TYPE=Progression |
12 | 12 |
structureDDot=structure \: |
tmp/org.txm.progression.core/src/org/txm/progression/core/messages/ProgressionCoreMessages.java (revision 1364) | ||
---|---|---|
20 | 20 |
public static String occurrences; |
21 | 21 |
|
22 | 22 |
public static String progressionOf; |
23 |
public static String in; |
|
23 |
public static String inP0;
|
|
24 | 24 |
public static String density; |
25 | 25 |
public static String structureDDot; |
26 | 26 |
public static String propertyDDot; |
tmp/org.txm.progression.core/src/org/txm/progression/core/chartsengine/base/Utils.java (revision 1364) | ||
---|---|---|
1 | 1 |
package org.txm.progression.core.chartsengine.base; |
2 | 2 |
|
3 |
import org.eclipse.osgi.util.NLS; |
|
3 | 4 |
import org.txm.progression.core.functions.Progression; |
4 | 5 |
import org.txm.progression.core.messages.ProgressionCoreMessages; |
5 | 6 |
|
... | ... | |
23 | 24 |
*/ |
24 | 25 |
public static String createProgressionChartTitle(Progression progression, boolean doCumulative) { |
25 | 26 |
|
26 |
String title = ProgressionCoreMessages.progressionOf + " "; //$NON-NLS-1$
|
|
27 |
String title = ProgressionCoreMessages.progressionOf; //$NON-NLS-1$ |
|
27 | 28 |
|
28 | 29 |
// Put queries in title |
29 | 30 |
for(int i = 0; i < progression.getQueries().size(); i++) { |
... | ... | |
34 | 35 |
} |
35 | 36 |
|
36 | 37 |
|
37 |
title += " " + ProgressionCoreMessages.in + " " + progression.getCorpus().getName(); //$NON-NLS-1$ //$NON-NLS-2$
|
|
38 |
title += " " + NLS.bind(ProgressionCoreMessages.inP0, progression.getCorpus().getName()); //$NON-NLS-1$ //$NON-NLS-2$
|
|
38 | 39 |
|
39 | 40 |
if(!doCumulative) { |
40 | 41 |
title += " " + ProgressionCoreMessages.density; //$NON-NLS-1$ |
41 | 42 |
} |
42 | 43 |
|
43 |
|
|
44 | 44 |
if (progression.getStructuralUnit() != null) { |
45 | 45 |
title += "\n(" + ProgressionCoreMessages.structureDDot + progression.getStructuralUnit().getName(); |
46 | 46 |
if (progression.getStructuralUnitProperty() != null) { |
tmp/org.txm.lexicaltable.rcp/src/org/txm/lexicaltable/rcp/messages/messages_ru.properties (revision 1364) | ||
---|---|---|
15 | 15 |
userIndexOccurrences=Употребления в индексе |
16 | 16 |
vocabulariesMustShareTheSamePartitionDDotP0=** Списки значений должны иметь одинаковое распределение\: {0} |
17 | 17 |
vocabulariesMustShareTheSamePropertiesDDotP0=** Списки значений должны строиться на одинаковых сочетаниях свойств\: {0} |
18 |
tP0vP1fminP2fmaxP3= T {0} V {1} Fmin {2} Fmax {3} |
tmp/org.txm.lexicaltable.rcp/src/org/txm/lexicaltable/rcp/messages/messages_fr.properties (revision 1364) | ||
---|---|---|
15 | 15 |
userIndexOccurrences=Total toutes les occurrences recenses par l'index |
16 | 16 |
vocabulariesMustShareTheSamePartitionDDotP0=** Les vocabulaires doivent avoir la même partition \: {0}. |
17 | 17 |
vocabulariesMustShareTheSamePropertiesDDotP0=** Les vocabulaires doivent être composés de la même combinaison de propriétés \: {0}. |
18 |
tP0vP1fminP2fmaxP3= T {0} V {1} Fmin {2} Fmax {3} |
tmp/org.txm.lexicaltable.rcp/src/org/txm/lexicaltable/rcp/messages/LexicalTableUIMessages.java (revision 1364) | ||
---|---|---|
27 | 27 |
public static String openingMargeConfigurationDialog; |
28 | 28 |
public static String canNotCreateALexicalTableWithAnIndexCreatedOnACorpus; |
29 | 29 |
public static String vocabulariesMustShareTheSamePropertiesDDotP0; |
30 |
public static String vocabulariesMustShareTheSamePartitionDDotP0; |
|
30 |
public static String vocabulariesMustShareTheSamePartitionDDotP0; |
|
31 |
|
|
32 |
public static String tP0vP1fminP2fmaxP3; |
|
31 | 33 |
|
32 | 34 |
|
33 | 35 |
|
tmp/org.txm.lexicaltable.rcp/src/org/txm/lexicaltable/rcp/messages/messages.properties (revision 1364) | ||
---|---|---|
15 | 15 |
userIndexOccurrences=User index occurrences |
16 | 16 |
vocabulariesMustShareTheSamePartitionDDotP0=** Vocabularies must share the same partition\: {0}. |
17 | 17 |
vocabulariesMustShareTheSamePropertiesDDotP0=** Vocabularies must share the same properties\: {0}. |
18 |
tP0vP1fminP2fmaxP3= T {0} V {1} Fmin {2} Fmax {3} |
tmp/org.txm.lexicaltable.rcp/src/org/txm/lexicaltable/rcp/editors/LexicalTableEditor.java (revision 1364) | ||
---|---|---|
470 | 470 |
*/ |
471 | 471 |
public void refreshInfos() { |
472 | 472 |
try { |
473 |
this.setContentDescription(TXMCoreMessages.common_t + lexicalTable.getData().getTotal() + TXMCoreMessages.v + lexicalTable.getData().getNRows() |
|
474 |
+ TXMCoreMessages.fmin + lexicalTable.getData().getFMin() + TXMCoreMessages.fmax + lexicalTable.getData().getFMax());
|
|
473 |
|
|
474 |
this.setContentDescription(TXMCoreMessages.bind(LexicalTableUIMessages.tP0vP1fminP2fmaxP3, lexicalTable.getData().getTotal(), lexicalTable.getData().getNRows(), lexicalTable.getData().getFMin(), lexicalTable.getData().getFMax()));
|
|
475 | 475 |
} catch (Exception e3) { |
476 |
// TODO Auto-generated catch block |
|
477 | 476 |
org.txm.rcp.utils.Logger.printStackTrace(e3); |
478 | 477 |
} |
479 | 478 |
} |
tmp/org.txm.lexicaltable.rcp/.settings/org.eclipse.core.resources.prefs (revision 1364) | ||
---|---|---|
1 | 1 |
eclipse.preferences.version=1 |
2 | 2 |
encoding//src/org/txm/lexicaltable/rcp/messages/messages_fr.properties=UTF-8 |
3 |
encoding//src/org/txm/lexicaltable/rcp/messages/messages_ru.properties=UTF-8 |
tmp/org.txm.progression.rcp/src/org/txm/progression/rcp/messages/messages.properties (revision 1364) | ||
---|---|---|
17 | 17 |
repeatSameValues=Repeat same values |
18 | 18 |
repeatTheValuesOfTheStructureProperties=Repeat the values of the structure properties |
19 | 19 |
selectAnUTF8PropertyFile=Select an UTF-8 property file |
20 |
stripMultiplierErrorDDot=Strip multiplier error\:
|
|
20 |
stripMultiplierErrorDDotP0=Strip multiplier error\: {0}
|
|
21 | 21 |
textP0IsMissing=Text {0} is missing. |
tmp/org.txm.progression.rcp/src/org/txm/progression/rcp/messages/messages_ru.properties (revision 1364) | ||
---|---|---|
10 | 10 |
regexDDot=Рег. Выр.\: |
11 | 11 |
repeatSameValues=Повторять идентичные значения |
12 | 12 |
repeatTheValuesOfTheStructureProperties=Повторять значения с свойств структур |
13 |
stripMultiplierErrorDDot=Ошибка\: мультипликатор полосы\: |
|
13 |
stripMultiplierErrorDDot=Ошибка\: мультипликатор полосы\: {0} |
tmp/org.txm.progression.rcp/src/org/txm/progression/rcp/messages/messages_fr.properties (revision 1364) | ||
---|---|---|
10 | 10 |
regexDDot=Exp. Rég. \: |
11 | 11 |
repeatSameValues=Répéter les valeurs identiques |
12 | 12 |
repeatTheValuesOfTheStructureProperties=Répéter les valeurs de propriétés de structures |
13 |
stripMultiplierErrorDDot=Erreur \: multiplicateur de bande \: |
|
13 |
stripMultiplierErrorDDot=Erreur \: multiplicateur de bande \: {0} |
tmp/org.txm.progression.rcp/src/org/txm/progression/rcp/messages/ProgressionUIMessages.java (revision 1364) | ||
---|---|---|
24 | 24 |
public static String chartTypeDDot; |
25 | 25 |
public static String bandewidthMultiplierDDot; |
26 | 26 |
public static String repeatSameValues; |
27 |
public static String stripMultiplierErrorDDot; |
|
27 |
public static String stripMultiplierErrorDDotP0;
|
|
28 | 28 |
public static String cumulative; |
29 | 29 |
public static String density; |
30 | 30 |
public static String regexDDot; |
tmp/org.txm.progression.rcp/src/org/txm/progression/rcp/editors/ProgressionEditor.java (revision 1364) | ||
---|---|---|
648 | 648 |
bandeMultiplier = Float.parseFloat(smultibande); |
649 | 649 |
} catch(Exception e) { |
650 | 650 |
bandeMultiplier = 1.0f; |
651 |
Log.severe(ProgressionUIMessages.stripMultiplierErrorDDot + e);
|
|
652 |
StatusLine.error(ProgressionUIMessages.stripMultiplierErrorDDot + e);
|
|
651 |
Log.severe(NLS.bind(ProgressionUIMessages.stripMultiplierErrorDDotP0, e));
|
|
652 |
StatusLine.error(NLS.bind(ProgressionUIMessages.stripMultiplierErrorDDotP0, e));
|
|
653 | 653 |
} |
654 | 654 |
} |
655 | 655 |
else { |
tmp/org.txm.para.rcp/src/org/txm/para/rcp/messages/messages.properties (revision 1364) | ||
---|---|---|
1 | 1 |
#TXM messages generated by the PluginMessagesManager class |
2 | 2 |
#Mon Nov 12 17:18:22 CET 2018 |
3 |
dontMOVENEXTIs=-Don't MOVE \!\!\!\!\! NEXT is |
|
4 |
mOVETo=-MOVE to |
|
5 | 3 |
openingTheParabrowser=Opening the parabrowser |
6 | 4 |
openParabrowser=Open Parabrowser |
7 | 5 |
paraBrowserDDotGetNextP0StructP1ParaidP2ValueP3=ParaBrowser\: get next({0}) struct {1} paraid {2} value {3} |
8 | 6 |
ParaBrowserEditor_21=_ |
9 |
refDDot=Ref\:
|
|
7 |
refDDotP0=Ref\: {0}
|
|
10 | 8 |
refDDotP0DDotP1=Ref\: {0}\: {1} |
11 | 9 |
references=References |
tmp/org.txm.para.rcp/src/org/txm/para/rcp/messages/messages_ru.properties (revision 1364) | ||
---|---|---|
1 | 1 |
#TXM messages generated by the PluginMessagesManager class |
2 | 2 |
#Mon Nov 12 17:18:22 CET 2018 |
3 |
dontMOVENEXTIs=-Оставаться на месте\!\!\!\!\! NEXT - |
|
4 |
mOVETo=-Перейти к |
|
5 | 3 |
openingTheParabrowser=Открытие Парабраузер// |
6 | 4 |
openParabrowser=Открыть встроенный браузер |
7 | 5 |
paraBrowserDDotGetNextP0StructP1ParaidP2ValueP3=ParaBrowser \: get next({0}) struct {1} paraid {2} value {3} |
8 | 6 |
ParaBrowserEditor_21=_ |
9 |
refDDot=Ссылка \:
|
|
7 |
refDDotP0=Ссылка \: {0}
|
|
10 | 8 |
refDDotP0DDotP1=Ссылки\: {0} \: {1} |
11 | 9 |
references=Ссылки |
tmp/org.txm.para.rcp/src/org/txm/para/rcp/messages/messages_fr.properties (revision 1364) | ||
---|---|---|
1 | 1 |
#TXM messages generated by the PluginMessagesManager class |
2 | 2 |
#Mon Nov 12 17:18:22 CET 2018 |
3 |
dontMOVENEXTIs=-Rester sur place \!\!\!\!\! NEXT est |
|
4 |
mOVETo=-Aller à |
|
5 | 3 |
openingTheParabrowser=Ouverture du Navigateur// |
6 | 4 |
openParabrowser=Ouvrir le Navigateur interne |
7 | 5 |
paraBrowserDDotGetNextP0StructP1ParaidP2ValueP3=ParaBrowser \: get next({0}) struct {1} paraid {2} value {3} |
8 | 6 |
ParaBrowserEditor_21=_ |
9 |
refDDot=Réf \:
|
|
7 |
refDDotP0=Réf \: {0}
|
|
10 | 8 |
refDDotP0DDotP1=Réf \: {0} \: {1} |
11 | 9 |
references=Références |
tmp/org.txm.para.rcp/src/org/txm/para/rcp/messages/ParaBrowserUIMessages.java (revision 1364) | ||
---|---|---|
16 | 16 |
private static final String BUNDLE_NAME = "org.txm.para.rcp.messages.messages"; //$NON-NLS-1$ |
17 | 17 |
|
18 | 18 |
public static String paraBrowserDDotGetNextP0StructP1ParaidP2ValueP3; |
19 |
public static String mOVETo; |
|
20 |
public static String dontMOVENEXTIs; |
|
21 | 19 |
public static String ParaBrowserEditor_21; |
22 | 20 |
public static String openParabrowser; |
23 |
public static String refDDot; |
|
21 |
public static String refDDotP0;
|
|
24 | 22 |
public static String references; |
25 | 23 |
public static String refDDotP0DDotP1; |
26 | 24 |
|
tmp/org.txm.para.rcp/src/org/txm/para/rcp/editors/ParaBrowserEditor.java (revision 1364) | ||
---|---|---|
327 | 327 |
selectedReference += property.getName() + "/"; //$NON-NLS-1$ |
328 | 328 |
} |
329 | 329 |
} |
330 |
referenceLabel.setText(ParaBrowserUIMessages.refDDot + selectedReference);
|
|
330 |
referenceLabel.setText(NLS.bind(ParaBrowserUIMessages.refDDotP0, selectedReference));
|
|
331 | 331 |
corpusRefAreas.put(displayedCorpus, referenceLabel); |
332 | 332 |
} |
333 | 333 |
|
... | ... | |
710 | 710 |
// } |
711 | 711 |
} |
712 | 712 |
if (!newValue.equals("")) { //$NON-NLS-1$ |
713 |
System.out.println(ParaBrowserUIMessages.mOVETo + newValue); |
|
714 | 713 |
int index = paraIdCombo.indexOf(newValue); |
715 | 714 |
if (index != -1) { |
716 | 715 |
selectedValue = newValue; |
717 | 716 |
paraIdCombo.select(index); |
718 | 717 |
} |
719 | 718 |
} else { |
720 |
System.out.println(ParaBrowserUIMessages.dontMOVENEXTIs + newValue); |
|
721 | 719 |
} |
722 | 720 |
reloadTexts(); |
723 | 721 |
reloadReferences(); |
tmp/org.txm.para.rcp/.settings/org.eclipse.core.resources.prefs (revision 1364) | ||
---|---|---|
1 | 1 |
eclipse.preferences.version=1 |
2 | 2 |
encoding//src/org/txm/para/rcp/messages/messages.properties=UTF-8 |
3 | 3 |
encoding//src/org/txm/para/rcp/messages/messages_fr.properties=UTF-8 |
4 |
encoding//src/org/txm/para/rcp/messages/messages_ru.properties=UTF-8 |
tmp/org.txm.translate.rcp/report.txt (revision 1364) | ||
---|---|---|
1 |
/home/mdecorde/workspace047/org.txm.lexicaltable.rcp/src/org/txm/lexicaltable/rcp/editors/LexicalTableEditor.java |
|
2 |
473 this.setContentDescription(TXMCoreMessages.common_t + lexicalTable.getData().getTotal() + TXMCoreMessages.v + lexicalTable.getData().getNRows() |
|
3 |
474 + TXMCoreMessages.fmin + lexicalTable.getData().getFMin() + TXMCoreMessages.fmax + lexicalTable.getData().getFMax()); |
|
4 |
/home/mdecorde/workspace047/org.txm.para.rcp/src/org/txm/para/rcp/editors/ParaBrowserEditor.java |
|
5 |
330 referenceLabel.setText(ParaBrowserUIMessages.refDDot + selectedReference); |
|
6 |
713 System.out.println(ParaBrowserUIMessages.mOVETo + newValue); |
|
7 |
720 System.out.println(ParaBrowserUIMessages.dontMOVENEXTIs + newValue); |
|
8 |
/home/mdecorde/workspace047/org.txm.progression.core/src/org/txm/progression/core/chartsengine/base/Utils.java |
|
9 |
26 String title = ProgressionCoreMessages.progressionOf + " "; //$NON-NLS-1$ |
|
10 |
37 title += " " + ProgressionCoreMessages.in + " " + progression.getCorpus().getName(); //$NON-NLS-1$ //$NON-NLS-2$ |
|
11 |
45 title += "\n(" + ProgressionCoreMessages.structureDDot + progression.getStructuralUnit().getName(); |
|
12 |
47 title += ProgressionCoreMessages.propertyDDot + progression.getStructuralUnitProperty().getName(); |
|
13 |
49 title += ProgressionCoreMessages.filteringREGEXDDot + progression.getPropertyRegex(); |
|
14 |
/home/mdecorde/workspace047/org.txm.progression.rcp/src/org/txm/progression/rcp/editors/ProgressionEditor.java |
|
15 |
651 Log.severe(ProgressionUIMessages.stripMultiplierErrorDDot + e); |
|
16 |
652 StatusLine.error(ProgressionUIMessages.stripMultiplierErrorDDot + e); |
|
17 |
/home/mdecorde/workspace047/org.txm.properties.core/src/org/txm/properties/core/functions/Properties.java |
|
18 |
288 buff.append("<h2 style'font-family:\"Arial\";'>" + PropertiesCoreMessages.descriptionOf + this.corpus.getName() + " (id=" + this.corpus.getID() + ")</h2>\n"); //$NON-NLS-2$ //$NON-NLS-1$ |
|
19 |
294 buff.append("<h3 style'font-family:\"Arial\";'>" + PropertiesCoreMessages.generalStatistics_2 + "</h3>\n"); //$NON-NLS-1$ //$NON-NLS-2$ |
|
20 |
298 buff.append("<li>" + PropertiesCoreMessages.numberOfWords + numberOfWords + "</li>\n"); //$NON-NLS-1$ //$NON-NLS-2$ |
|
21 |
299 buff.append("<li>" + PropertiesCoreMessages.numberOfWordProperties + (NProperties - 1) + "</li>\n"); //$NON-NLS-2$ //$NON-NLS-1$ |
|
22 |
300 buff.append("<li>" + PropertiesCoreMessages.numberOfStructuralUnits + NStructures + "</li>\n"); //$NON-NLS-2$ //$NON-NLS-1$ |
|
23 |
333 subbuffer.append("<li>" + PropertiesCoreMessages.noProperty + "</li>\n"); //$NON-NLS-1$ //$NON-NLS-2$ |
|
24 |
392 buff.append(PropertiesCoreMessages.t + String.format(Locale.FRANCE, "%,d", numberOfWords) + "\n"); //$NON-NLS-1$ |
|
25 |
393 buff.append(PropertiesCoreMessages.wordProperties + String.format("%,d", NProperties) + "\n"); //$NON-NLS-1$ |
|
26 |
399 buff.append(PropertiesCoreMessages.s + String.format("%,d", NStructures) + "\n"); //$NON-NLS-1$ |
|
27 | 1 |
/home/mdecorde/workspace047/org.txm.queryindex.rcp/src/org/txm/queryindex/rcp/editors/QueryIndexEditor.java |
28 | 2 |
255 title = Messages.QueryIndexEditor_0 + partition.getName(); |
29 | 3 |
258 title = Messages.QueryIndexEditor_0 + corpus; |
... | ... | |
58 | 32 |
98 dialog.setMessage(TXMUIMessages.areYouSureYouWantToDeleteToSort+files+" ? "); //$NON-NLS-1$ |
59 | 33 |
108 if (!file.delete()) System.out.println(TXMUIMessages.failedToDeleteFile+file); |
60 | 34 |
110 if (!DeleteDir.deleteDirectory(file)) System.out.println(TXMUIMessages.failedToDeleteFile+file); |
61 |
|
|
62 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/handlers/files/PasteFile.java |
|
63 |
83 System.out.println(TXMUIMessages.failedToCopy+source+TXMUIMessages.to+dest); |
|
64 |
85 System.out.println(TXMUIMessages.failedToCopy+source+TXMUIMessages.to+dest+TXMUIMessages.dDot+e); |
|
65 |
96 System.out.println(TXMUIMessages.failedToCopy+source+TXMUIMessages.to+dest); |
|
66 |
98 System.out.println(TXMUIMessages.failedToDelete+source); |
|
67 |
101 System.out.println(TXMUIMessages.failedToCopy+source+TXMUIMessages.to+dest+TXMUIMessages.dDot+e); |
|
68 |
120 System.out.println(TXMUIMessages.failedToCopy+source+TXMUIMessages.to+dest); |
|
69 |
124 System.out.println(TXMUIMessages.failedToCopy+source+TXMUIMessages.to+dest+TXMUIMessages.dDot+e); |
|
70 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/handlers/files/RenameFile.java |
|
71 |
71 TXMUIMessages.renameFile, TXMUIMessages.renameFile+newname, newname, null); |
|
72 |
74 System.out.println(TXMUIMessages.renamingByDDot+newname); |
|
73 |
79 System.out.println(TXMUIMessages.failedToRename+file+TXMUIMessages.to+newname); |
|
74 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/handlers/results/DeleteObject.java |
|
75 |
171 StatusLine.setMessage(TXMUIMessages.errorDDotDeleteReturnedFalse+" : "+o); |
|
76 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/handlers/scripts/ExecuteGroovyScript.java |
|
77 |
256 System.out.println(TXMUIMessages.errorDuringScriptExecutionDDot+e); |
|
78 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/handlers/scripts/ExecuteImportScript.java |
|
79 |
148 System.out.println(TXMUIMessages.errorDDotCorporaDirectoryDoesntExistDDot+corporadir); |
|
80 |
149 Log.severe(TXMUIMessages.errorDDotCorporaDirectoryDoesntExistDDot+corporadir); |
|
81 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/handlers/scripts/ExecuteLastGroovyScript.java |
|
82 |
80 System.out.println(TXMUIMessages.executingLastMacroDDot+lastScript); |
|
83 |
82 System.out.println(TXMUIMessages.executingLastScriptDDot+lastScript); |
|
84 |
89 System.out.println(TXMUIMessages.errorDDotCurrentGroovyScriptDirectoryDoesNotExistDDot+currentRootDir); |
|
85 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/handlers/scripts/ExecuteScript.java |
|
86 |
131 MessageDialog dialog = new MessageDialog(shell, TXMUIMessages.executionOfP0+result, null, |
|
87 |
207 System.out.println(TXMUIMessages.noInterpreterFoundForScriptFileExtension+script.getName()); |
|
88 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/handlers/scripts/ExecuteText.java |
|
89 |
91 System.out.println(TXMUIMessages.noInterpreterFoundForScriptFileExtension+script.getName()); |
|
90 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/swt/dialog/MultipleValueTreeDialog.java |
|
91 |
139 addButton.setText(TXMUIMessages.addDDot+itemSubName); |
|
92 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/swt/widget/NavigationWidget.java |
|
93 |
237 System.out.println(TXMUIMessages.errorWhileGettingCurrentPositionValueDDot+e); |
|
94 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/swt/widget/PartitionComposer.java |
|
95 |
216 p.setTitle(TXMUIMessages.part + (parts.size() + 1)); |
|
96 |
253 p.setTitle(TXMUIMessages.part + (parts.size() + 1)); |
|
97 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/swt/widget/parameters/ParametersDialog.java |
|
98 |
151 System.out.println(TXMUIMessages.unknowedWidgetNameDDot+widgetName+TXMUIMessages.FileTreeContentProvider_4); |
|
99 |
262 System.out.println(TXMUIMessages.unknowedWidgetNameDDot+widgetName+TXMUIMessages.FileTreeContentProvider_4); |
|
100 |
294 System.out.println(TXMUIMessages.errorDDotMissingValueDDot+field); |
|
101 |
357 System.out.println(TXMUIMessages.errorInAtOptionNameDeclarationDDot+e.getMessage()); |
|
102 |
433 System.out.println(TXMUIMessages.errorInAtOptionNameDeclarationDDot+e.getMessage()); |
|
103 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/swt/widget/parameters/UIParameterException.java |
|
104 |
17 super(TXMUIMessages.error+true); |
|
105 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/utils/JobHandler.java |
|
106 |
243 System.out.println(TXMUIMessages.canceling_2 + " " + this.getName()); //$NON-NLS-1$ |
|
107 |
255 Log.severe(TXMUIMessages.failedToCancel + this.getName()); |
|
108 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/utils/LanguageSwitchHandler.java |
|
109 |
147 System.out.println(TXMUIMessages.tXMiniDDot+location); |
|
110 |
148 Log.severe(TXMUIMessages.tXMiniDDot+location); |
|
111 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/views/GroovyConsole.java |
|
112 |
173 textArea.append(TXMUIMessages.theErrorIsDDot + e); |
|
113 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/views/SummaryView.java |
|
114 |
351 System.out.println(TXMUIMessages.noDefaultEditionPageFoundForElementDDot+node); |
|
115 |
/home/mdecorde/workspace047/org.txm.rcp/src/main/java/org/txm/rcp/views/fileexplorer/FileTreeContentProvider.java |
|
116 |
59 } catch(Exception e) { System.out.println(TXMUIMessages.fileExplorerDDotIncorrectPattern+regex+TXMUIMessages.eRROR+e);} |
|
117 |
105 System.out.println(TXMUIMessages.errorElementDDot+element+TXMUIMessages.FileTreeContentProvider_4); |
|
118 |
/home/mdecorde/workspace047/org.txm.rcp.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/UpdateWizard.java |
|
119 |
106 mainPage.setTitle(ProvUIMessages.UpdateAction_UpdatesAvailableTitle+" - TXM"); |
|
120 |
/home/mdecorde/workspace047/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/CQPSearchEngine.java |
|
121 |
383 String cmd = TXMCoreMessages.killPsAuxPipeGrepCqpserverPipeAwkP + CQPLibPreferences.getInstance().getString(CQPLibPreferences.CQI_SERVER_PORT) + TXMCoreMessages.print2; |
|
122 |
/home/mdecorde/workspace047/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/MemCqiClient.java |
|
123 |
81 throw new CqiErrorGeneralError(CQPSearchEngineCoreMessages.unknownCQPErrorDDotB1+b+CQPSearchEngineCoreMessages.b2+b2); //$NON-NLS-2$ |
|
124 |
86 lastError = CQPSearchEngineCoreMessages.internalCQIErrorDDot+" CQI_ERROR ("+b+")"; |
|
125 |
98 throw new CqiErrorGeneralError(CQPSearchEngineCoreMessages.unknownCQPCQIErrorDDotB1+b+CQPSearchEngineCoreMessages.b2+b2); |
|
126 |
126 throw new CqiErrorGeneralError(CQPSearchEngineCoreMessages.unknownCQPCodeDDotB1+b+CQPSearchEngineCoreMessages.b2+b2); |
|
127 |
130 lastError = CQPSearchEngineCoreMessages.cLErrorDDot+"CL_ERROR ("+b+")"; |
|
128 |
156 throw new CqiErrorGeneralError(CQPSearchEngineCoreMessages.unknownCQPErrorDDotB1+b+CQPSearchEngineCoreMessages.b2+b2); |
|
129 |
180 throw new CqiErrorGeneralError(CQPSearchEngineCoreMessages.unknownCQPErrorDDotB1+b+CQPSearchEngineCoreMessages.b2+b2); |
|
130 |
183 throw new CqiErrorGeneralError(CQPSearchEngineCoreMessages.unknownCQPCodesDDotB1+b+CQPSearchEngineCoreMessages.b2+b2); |
|
131 |
/home/mdecorde/workspace047/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/NetCqiClient.java |
|
132 |
550 lastError = CQPSearchEngineCoreMessages.internalCQIErrorDDot+b; |
|
133 |
593 lastError = CQPSearchEngineCoreMessages.cLErrorDDot+b; |
|
134 |
617 lastError = CQPSearchEngineCoreMessages.cQPErrorDDotP0+b; |
|
135 |
837 Log.severe(CQPSearchEngineCoreMessages.lastCQiErrorDDot + e); |
|
136 |
858 Log.severe(CQPSearchEngineCoreMessages.lastCQPErrorDDot + e); |
|
137 |
1575 System.out.println(CQPSearchEngineCoreMessages.couldNotReconnectToServerDDot+e); |
|
138 |
1742 System.out.println(CQPSearchEngineCoreMessages.clientdumpSubCorpussubcorpusNetCqiClientCQICONSTFIELDMATCH12DDot+Arrays.toString(client.dumpSubCorpus(subcorpusid, NetCqiClient.CQI_CONST_FIELD_MATCH, 1, 10))); |
|
139 |
/home/mdecorde/workspace047/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/NetCqiServer.java |
|
140 |
285 System.out.println(CQPSearchEngineCoreMessages.cqpserverStdoutDDot + line); |
|
141 |
304 System.out.println(CQPSearchEngineCoreMessages.cqpserverStderrDDot + line); |
|
142 |
/home/mdecorde/workspace047/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/core/functions/selection/Selection.java |
|
143 |
119 System.out.println(TXMCoreMessages.selectionErrorDDotTheCorpus+corpus+TXMCoreMessages.hasNoBase); |
|
144 |
142 Log.warning(TXMCoreMessages.cantFindStructuralUnitForMetadataWithIdDDot+m.id); |
|
145 |
147 Log.severe(TXMCoreMessages.errorWhileGettingMetadatasFromBaseimportMetadatasDDot+e); |
|
146 |
225 System.out.println(TXMCoreMessages.corpusDDot+corpus); |
|
147 |
449 System.out.println(TXMCoreMessages.failedToGetSupValuesOf+sup.getFullName()); |
|
148 |
/home/mdecorde/workspace047/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/corpus/CQPCorpus.java |
|
149 |
427 Log.info(SearchEngineCoreMessages.deletingQueryResultP0 + queryResult.getName()); |
|
150 |
508 return TXMCoreMessages.corpusDDot + this.pID + TXMCoreMessages.encodingDDot + getCharset() |
|
151 |
509 + TXMCoreMessages.languageDDot + getLanguage(); |
|
152 |
543 System.out.println(TXMCoreMessages.corpusDDotgetLocaleDDotCQPIsNotReadyToAnswerDDot+e); |
|
153 |
801 System.out.println(TXMCoreMessages.warningDDotCantLoadCorpus+this+TXMCoreMessages.informationsFromWorkspaceSelfElementNull); |
|
154 |
854 Log.warning(this.pID + TXMCoreMessages.failedToRestorePartition + name |
|
155 |
/home/mdecorde/workspace047/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/corpus/Part.java |
|
156 |
91 throw new CqiClientException(TXMCoreMessages.failedToCreatePartDDot + this.getParent().getName() + "_" + this.getName() + e + " last error: " + CQPSearchEngine.getCqiClient().getLastCQPError()); //$NON-NLS-1$ //$NON-NLS-2$ |
|
157 |
93 Log.severe(TXMCoreMessages.failedToGetLastCQPErrorDDot + e1); |
|
158 |
/home/mdecorde/workspace047/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/corpus/Partition.java |
|
159 |
509 Log.finest(TXMCoreMessages.queryingPartitionP0 + this.userName); |
|
160 |
/home/mdecorde/workspace047/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/corpus/Subcorpus.java |
|
161 |
299 Log.warning(this.pID + TXMCoreMessages.failedToRestoreSubcorpus + subcorpusElem.getAttribute("name") |
|
162 |
324 Log.warning(this.pID + TXMCoreMessages.failedToRestorePartition + name |
|
163 |
/home/mdecorde/workspace047/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/corpus/query/PartitionFocus.java |
|
164 |
94 Log.finest(TXMCoreMessages.theP0PartFocusDoesntBelongToPartitionP1 + mod |
|
165 |
/home/mdecorde/workspace047/org.txm.searchengine.cqp.rcp/src/org/txm/searchengine/cqp/rcp/handlers/base/CreateSubCorpus.java |
|
166 |
73 System.out.println(TXMUIMessages.noSelectionForDDot+HandlerUtil.getActiveWorkbenchWindow(event).getActivePage().getActiveEditor()); |
|
167 |
79 System.out.println(TXMUIMessages.selectionIsNotACorpusDDot+firstElement); |
|
168 |
153 System.out.println(TXMUIMessages.failedToGetLastCQPErrorDDot+e1); |
|
169 |
/home/mdecorde/workspace047/org.txm.specificities.core/src/org/txm/functions/contrasts/Contrast.java |
|
170 |
116 String txt = SpecificitiesCoreMessages.unit+colseparator+"F"; //$NON-NLS-1$ |
|
171 |
/home/mdecorde/workspace047/org.txm.specificities.core/src/org/txm/functions/contrasts/Contrasts.java |
|
172 |
41 System.out.println(TXMCoreMessages.computingDDot+m.getName()); |
|
173 |
/home/mdecorde/workspace047/org.txm.specificities.core/src/org/txm/specificities/core/functions/Specificities.java |
|
174 |
568 String txt = SpecificitiesCoreMessages.unit+colseparator+"F"; //$NON-NLS-1$ |
|
175 |
/home/mdecorde/workspace047/org.txm.specificities.core/src/org/txm/specificities/core/statsengine/r/function/SpecificitiesR.java |
|
176 |
144 throw new StatException(SpecificitiesCoreMessages.failedToGetTheSpecificitesDDot + e.getMessage(), e); |
|
177 |
/home/mdecorde/workspace047/org.txm.specificities.rcp/src/org/txm/specificities/rcp/editors/SpecificitiesEditor.java |
|
178 |
240 typeFrequencyColumn.setText(TXMCoreMessages.common_frequency + " " + SpecificitiesUIMessages.t + " " + this.getResult().getCorpusSize()); //$NON-NLS-1$ //$NON-NLS-2$ |
|
179 |
/home/mdecorde/workspace047/org.txm.statsengine.r.core/src/org/txm/statsengine/r/core/RScriptEngine.java |
|
180 |
71 System.out.println(RCoreMessages.doneDDot+(System.currentTimeMillis()-time)+RCoreMessages.ms); |
|
181 |
133 System.out.println(RCoreMessages.doneDDot+(System.currentTimeMillis()-time)+RCoreMessages.ms); |
|
182 |
/home/mdecorde/workspace047/org.txm.statsengine.r.core/src/org/txm/statsengine/r/core/RWorkspace.java |
|
183 |
215 System.out.println(RCoreMessages.error_failedToConnectToTheRWorkspace + host+ ", " + port + ", " + user); //$NON-NLS-1$//$NON-NLS-2$ |
|
184 |
216 Log.severe(RCoreMessages.error_failedToConnectToTheRWorkspace + host+ ", " + port + ", " + user); //$NON-NLS-1$//$NON-NLS-2$ |
|
185 |
1137 int[] dims = eval(StatsEngineCoreMessages.dim+exp+")").asIntegers(); //$NON-NLS-2$ |
|
186 |
/home/mdecorde/workspace047/org.txm.statsengine.r.core/src/org/txm/statsengine/r/core/StartRserve.java |
|
187 |
154 Log.severe(RCoreMessages.error_failedToStartRServeWithCommand + x.getMessage()); |
|
188 |
211 System.err.println(RCoreMessages.error_failedToRunREG + rge); |
|
189 |
/home/mdecorde/workspace047/org.txm.statsengine.r.core/src/org/txm/statsengine/r/core/data/MatrixImpl.java |
|
190 |
438 throw new IllegalArgumentException(StatsEngineCoreMessages.columnIndex + index |
|
191 |
439 + StatsEngineCoreMessages.tooBigMax + ncol + ")"); //$NON-NLS-1$ |
|
192 |
490 return RWorkspace.getRWorkspaceInstance().eval(StatsEngineCoreMessages.dim+symbol+")[2]").asInteger(); //$NON-NLS-2$ |
|
193 |
503 return RWorkspace.getRWorkspaceInstance().eval(StatsEngineCoreMessages.dim+symbol+")[1]").asInteger(); //$NON-NLS-2$ |
|
194 |
505 Log.severe(StatsEngineCoreMessages.matrixDDotFailedToGetNrowDDot + e); |
|
195 |
517 throw new IllegalArgumentException(StatsEngineCoreMessages.rowIndex + index |
|
196 |
518 + StatsEngineCoreMessages.tooBigMax + nrow + ")"); //$NON-NLS-1$ |
|
197 |
615 System.out.println(StatsEngineCoreMessages.matrixImplDDotErrorDDotColumnSizeDiffersDDotOriginal+ncol+" imported="+colsize); //$NON-NLS-2$ |
|
198 |
922 throw new IllegalArgumentException(StatsEngineCoreMessages.rowIndex + row |
|
199 |
923 + StatsEngineCoreMessages.tooBigMax + nrow + ")"); //$NON-NLS-1$ |
|
200 |
926 throw new IllegalArgumentException(StatsEngineCoreMessages.colIndex + col |
|
201 |
927 + StatsEngineCoreMessages.tooBigMax + ncol + ")"); //$NON-NLS-1$ |
|
202 |
/home/mdecorde/workspace047/org.txm.statsengine.r.rcp/src/org/txm/rcp/commands/R/ShowSvgHelp.java |
|
203 |
49 TXMUIMessages.panDDotRightMousePlusDrag + |
|
204 |
50 TXMUIMessages.zoomInAmpoutDDotMouseWheelORShiftPlusRightMousePlusDrag + |
|
205 |
51 TXMUIMessages.zoomToSelectionDDotCtrlPlusLeftMousePlusdrag + |
|
206 |
52 TXMUIMessages.EMPTY + |
|
207 |
/home/mdecorde/workspace047/org.txm.statsengine.r.rcp/src/org/txm/statsengine/r/rcp/handlers/CheckRPackages.java |
|
208 |
100 System.out.println(RUIMessages.anErrorOccuredWhileGettingRWorkspaceInsanceDDot+e); |
|
209 |
124 System.out.println(RUIMessages.the+p+RUIMessages.packageIsNotInstalledTryingToInstallItNow); |
|
210 |
131 System.out.println(RUIMessages.doneDDot+p+RUIMessages.installedSuccessfully); |
|
211 |
134 System.out.println(RUIMessages.the+p+RUIMessages.packageWasNotInstalledPleaseInstallItManuallyDDotRunRAndExecuteInstallpackages+p+RUIMessages.CheckRPackages_23); |
|
212 |
139 System.out.println(RUIMessages.errorWhileInstallingPackageDDot+e); |
|
213 |
181 System.out.println(RUIMessages.eRRORDDotRlistFirstElementIsNotREXPIntegerDDot+elem); |
|
214 |
184 System.out.println(RUIMessages.eRRORDDotREvalListSizeIs0DDot+rList); |
|
215 |
187 System.out.println(RUIMessages.eRRORDDotREvalIsNotAListDDot+rRez); |
|
216 |
207 System.out.println(RUIMessages.updatingThe+p+RUIMessages.CheckRPackages_36+currentVersion+RUIMessages.rPackageUpToVersion+packages.get(p)); |
|
217 |
218 System.out.println(RUIMessages.updateOf+p+RUIMessages.failedCurrentVersionIsStill+newVersion+RUIMessages.warningDDotWindowsUsersNeedToRestartTXM); |
|
218 |
/home/mdecorde/workspace047/org.txm.statsengine.r.rcp/src/org/txm/statsengine/r/rcp/handlers/SendToRCommand.java |
|
219 |
69 JobHandler jobhandler = new JobHandler(RUIMessages.sendingToRWorkspaceDDot+ list) { |
|
220 |
76 monitor.beginTask(RUIMessages.sendingToRWorkspaceDDot+ list, 100); |
|
221 |
81 monitor.subTask(RUIMessages.sendingToRWorkspaceDDot+ o); |
|
222 |
/home/mdecorde/workspace047/org.txm.statsengine.r.rcp/src/org/txm/statsengine/r/rcp/views/RConsole.java |
|
223 |
249 System.out.println(RUIMessages.errorWhileInitializingRConsoleDDot + e); |
|
224 |
/home/mdecorde/workspace047/org.txm.tigersearch.rcp/src/org/txm/searchengine/ts/TSCmd.java |
|
225 |
92 System.out.println(TXMCoreMessages.queryWasDDot+ query); |
|
226 |
/home/mdecorde/workspace047/org.txm.tigersearch.rcp/src/org/txm/searchengine/ts/TSCorpus.java |
|
227 |
131 catch (Exception e) { System.out.println(TXMCoreMessages.couldntReadCorpusDDot+e.getMessage());} |
|
228 |
/home/mdecorde/workspace047/org.txm.tigersearch.rcp/src/org/txm/searchengine/ts/TSCorpusManager.java |
|
229 |
68 System.out.println(TXMCoreMessages.errorRegDirDDot+registrydir); |
|
230 |
72 System.out.println(TXMCoreMessages.errorConfigdirDirDDot+configdir); |
|
231 |
/home/mdecorde/workspace047/org.txm.tigersearch.rcp/src/org/txm/searchengine/ts/TSResult.java |
|
232 |
163 System.out.println(TXMCoreMessages.numberOfMatch+this.getNumberOfMatch()); |
|
233 |
165 System.out.println(TXMCoreMessages.numberOfSubMatch+this.getCurrentMatch().getNumberOfSubGraph()); |
|
234 |
/home/mdecorde/workspace047/org.txm.tigersearch.rcp/src/org/txm/searchengine/ts/TigerXmlIndexing.java |
|
235 |
42 catch (IOException e) { System.out.println(TXMCoreMessages.iODDot+e.getMessage()); org.txm.utils.logger.Log.printStackTrace(e); } |
|
236 |
43 catch (SAXException e) { System.out.println(TXMCoreMessages.sAXDDot+e.getMessage()); org.txm.utils.logger.Log.printStackTrace(e);} |
|
237 |
/home/mdecorde/workspace047/org.txm.tigersearch.rcp/src/org/txm/tigersearch/editors/TSIndexEditor.java |
|
238 |
402 System.out.println(CQPSearchEngineCoreMessages.cQPErrorDDotP0+e1); |
|
239 |
875 freqColumn.setText(TXMCoreMessages.common_frequency + " T=" + partition.getTotalSize()); //$NON-NLS-1$ |
|
240 |
878 freqColumn.setText(TXMCoreMessages.common_frequency + " T=" + corpus.getSize()); //$NON-NLS-1$ |
|
241 |
1100 lFminInfo.setText(IndexUIMessages.IndexEditor_17 + index.getFmin()); |
|
242 |
1101 lFmaxInfo.setText(IndexUIMessages.IndexEditor_17 + index.getFmax()); |
|
243 |
1102 lTInfo.setText(IndexUIMessages.IndexEditor_17 + index.getT()); |
|
244 |
1103 lVInfo.setText(IndexUIMessages.IndexEditor_17 + index.getV()); |
|
245 |
/home/mdecorde/workspace047/org.txm.utils.core/src/org/txm/utils/ExecTimer.java |
|
246 |
23 message = ""+((int)t)+UtilsCoreMessages.ExecTimer_0; //$NON-NLS-1$ |
|
247 |
29 message = ""+(message.substring(0, 3))+UtilsCoreMessages.ExecTimer_1; //$NON-NLS-1$ |
|
248 |
31 message = ""+((int)t)+UtilsCoreMessages.ExecTimer_1; //$NON-NLS-1$ |
|
249 |
33 message = ""+((int)t/60)+UtilsCoreMessages.ExecTimer_2+((int)t%60)+UtilsCoreMessages.ExecTimer_1; //$NON-NLS-1$ |
|
250 |
35 message = ""+((int)t/3600)+UtilsCoreMessages.ExecTimer_3+((int)(t%3600)/60)+UtilsCoreMessages.ExecTimer_2+((int)(t%3600)%60)+ UtilsCoreMessages.ExecTimer_1; //$NON-NLS-1$ |
|
251 |
/home/mdecorde/workspace047/org.txm.utils.core/src/org/txm/utils/LS.java |
|
252 |
35 System.err.println(UtilsCoreMessages.LS_0 + dir + UtilsCoreMessages.LS_1); |
|
253 |
/home/mdecorde/workspace047/org.txm.utils.core/src/org/txm/utils/i18n/Localizer.java |
|
254 |
150 return UtilsCoreMessages.Localizer_0 + getDefaultBundle().getString(key); |
|
255 |
/home/mdecorde/workspace047/org.txm.utils.core/src/org/txm/utils/io/FileCopy.java |
|
256 |
140 throw new IOException(UtilsCoreMessages.FileCopy_0 + src.getAbsolutePath() |
|
257 |
144 throw new IOException(UtilsCoreMessages.FileCopy_2 + src.getAbsolutePath() |
|
258 |
/home/mdecorde/workspace047/org.txm.wordcloud.rcp/src/org/txm/wordcloud/rcp/editors/WordCloudEditor.java |
|
259 |
72 Log.info(WordCloudUIMessages.wordCloudReadyDDot + this.getResult()); |
|
260 |
/home/mdecorde/workspace047/org.txm.xmleditor.rcp/src/org/txm/xmleditor/OpenXMLEditor.java |
|
261 |
109 System.out.println(XMLEditorMessages.OpenXMLEditor_4+e); |
tmp/org.txm.rcp/src/main/java/org/txm/rcp/editors/imports/sections/InfosSection.java (revision 1364) | ||
---|---|---|
1 | 1 |
package org.txm.rcp.editors.imports.sections; |
2 | 2 |
|
3 |
import org.eclipse.osgi.util.NLS; |
|
3 | 4 |
import org.eclipse.swt.SWT; |
4 | 5 |
import org.eclipse.swt.graphics.Color; |
5 | 6 |
import org.eclipse.swt.graphics.Device; |
... | ... | |
70 | 71 |
|
71 | 72 |
@Override |
72 | 73 |
public void update(Project project) { |
73 |
section.setText(TXMUIMessages.corpusInfos+" "+project.getSrcdir()); //$NON-NLS-1$
|
|
74 |
section.setText(NLS.bind(TXMUIMessages.corpusInfosP0, project.getSrcdir())); //$NON-NLS-1$
|
|
74 | 75 |
|
75 | 76 |
corpusText.setText(project.getName()); |
76 | 77 |
|
... | ... | |
93 | 94 |
} |
94 | 95 |
|
95 | 96 |
if (!corpusText.getText().matches("[A-Z][-A-Z0-9]{1,20}")) { //$NON-NLS-1$ |
96 |
System.out.println(TXMUIMessages.importStoppedDDotCorpusNameDoesNotMatchesTheAZAZ09120PatternDDot+corpusText.getText());
|
|
97 |
System.out.println(NLS.bind(TXMUIMessages.importStoppedDDotCorpusNameDoesNotMatchesTheAZAZ09120PatternDDotP0, corpusText.getText()));
|
|
97 | 98 |
return false; |
98 | 99 |
} |
99 | 100 |
|
... | ... | |
109 | 110 |
String corpusname = corpusText.getText(); |
110 | 111 |
Log.warning("Checking corpus name validity with '[A-Z][-A-Z0-9]+': "+corpusname); |
111 | 112 |
if (!corpusname.matches("[A-Z][-A-Z0-9]+")) { //$NON-NLS-1$ |
112 |
System.out.println(TXMUIMessages.importStoppedDDotCorpusNameDoesNotMatchesTheAZAZ09120PatternDDot+corpusname);
|
|
113 |
System.out.println(NLS.bind(TXMUIMessages.importStoppedDDotCorpusNameDoesNotMatchesTheAZAZ09120PatternDDotP0, corpusname));
|
|
113 | 114 |
|
114 | 115 |
Device device = Display.getCurrent (); |
115 | 116 |
Color red = new Color (device, 255, 0, 0); |
tmp/org.txm.rcp/src/main/java/org/txm/rcp/editors/imports/CorpusPage.java (revision 1364) | ||
---|---|---|
823 | 823 |
if (metadataFile.exists()) |
824 | 824 |
this.editor.getMetaPage().setMetadataFile(metadataFile); |
825 | 825 |
|
826 |
Log.info(TXMUIMessages.moduleUIParametersDDot+moduleParams);
|
|
826 |
Log.info(NLS.bind(TXMUIMessages.moduleUIParametersDDotP0, moduleParams));
|
|
827 | 827 |
this.setPartName(project.getName()); |
828 | 828 |
|
829 | 829 |
if (infosSection != null && !infosSection.isDisposed()) { |
tmp/org.txm.rcp/src/main/java/org/txm/rcp/editors/imports/MetadataPage.java (revision 1364) | ||
---|---|---|
427 | 427 |
if (inputElement instanceof Metadatas) { |
428 | 428 |
Metadatas m = (Metadatas) inputElement; |
429 | 429 |
ArrayList<String> header = m.getHeadersList(); |
430 |
System.out.println(TXMUIMessages.metadataColumnTitles+header);
|
|
430 |
System.out.println(NLS.bind(TXMUIMessages.metadataColumnTitlesP0, header));
|
|
431 | 431 |
|
432 | 432 |
Object[] elems = new Object[m.keySet().size()]; |
433 | 433 |
int i = 0; |
tmp/org.txm.rcp/src/main/java/org/txm/rcp/editors/input/AbstractSVGGraphicable.java (revision 1364) | ||
---|---|---|
32 | 32 |
|
33 | 33 |
import org.eclipse.core.runtime.IPath; |
34 | 34 |
import org.eclipse.core.runtime.Path; |
35 |
import org.eclipse.osgi.util.NLS; |
|
35 | 36 |
import org.txm.Toolbox; |
36 | 37 |
import org.txm.core.preferences.TBXPreferences; |
37 | 38 |
import org.txm.core.preferences.TXMPreferences; |
... | ... | |
70 | 71 |
this.path = Path.fromOSString(tmp.getCanonicalPath()); |
71 | 72 |
|
72 | 73 |
} catch (IOException e) { |
73 |
Log.severe(TXMUIMessages.cannotCreateTheGraphic + e);
|
|
74 |
Log.severe(NLS.bind(TXMUIMessages.cannotCreateTheGraphic, e));
|
|
74 | 75 |
} |
75 | 76 |
} |
76 | 77 |
return this.path; |
tmp/org.txm.rcp/src/main/java/org/txm/rcp/editors/TxtEditor.java (revision 1364) | ||
---|---|---|
30 | 30 |
import java.io.File; |
31 | 31 |
|
32 | 32 |
import org.eclipse.jface.text.TextViewer; |
33 |
import org.eclipse.osgi.util.NLS; |
|
33 | 34 |
import org.eclipse.swt.custom.StyledText; |
34 | 35 |
import org.eclipse.swt.graphics.Image; |
35 | 36 |
import org.eclipse.swt.widgets.Composite; |
... | ... | |
113 | 114 |
if (encoding != null && encodingSupport != null) { |
114 | 115 |
try { |
115 | 116 |
encodingSupport.setEncoding(encoding); |
116 |
System.out.println(TXMUIMessages.textEditorDDot+f+TXMUIMessages.encodingFound+encoding);
|
|
117 |
System.out.println(NLS.bind(TXMUIMessages.textEditorDDotP0EncodingFoundP1, f, encoding));
|
|
117 | 118 |
} catch(Throwable e) { } |
118 | 119 |
|
119 | 120 |
} |
tmp/org.txm.rcp/src/main/java/org/txm/rcp/handlers/export/ExportSVG.java (revision 1364) | ||
---|---|---|
178 | 178 |
if (outfile.exists()) { |
179 | 179 |
System.out.println(NLS.bind(TXMUIMessages.p1FileSavedInP0, outfile, "")); //$NON-NLS-1$ |
180 | 180 |
} else { |
181 |
System.out.println(NLS.bind(TXMUIMessages.failedToExportFileP0WithDeviceP1 + outfile, "")); //$NON-NLS-1$
|
|
181 |
System.out.println(NLS.bind(TXMUIMessages.failedToExportFileP0, outfile)); //$NON-NLS-1$
|
|
182 | 182 |
} |
183 | 183 |
} |
184 | 184 |
|
tmp/org.txm.rcp/src/main/java/org/txm/rcp/handlers/files/DeleteFile.java (revision 1364) | ||
---|---|---|
35 | 35 |
import org.eclipse.core.commands.ExecutionException; |
36 | 36 |
import org.eclipse.jface.viewers.ISelection; |
37 | 37 |
import org.eclipse.jface.viewers.IStructuredSelection; |
38 |
import org.eclipse.osgi.util.NLS; |
|
38 | 39 |
import org.eclipse.swt.SWT; |
39 | 40 |
import org.eclipse.swt.widgets.MessageBox; |
40 | 41 |
import org.eclipse.swt.widgets.Shell; |
... | ... | |
72 | 73 |
|
73 | 74 |
Shell shell = new Shell(); |
74 | 75 |
MessageBox dialog = new MessageBox(shell, SWT.YES | SWT.NO); |
75 |
dialog.setMessage(TXMUIMessages.areYouSureYouWantToDeleteToSort+file+" ? "); //$NON-NLS-1$
|
|
76 |
dialog.setMessage(TXMUIMessages.areYouSureYouWantToDeleteP0DDot+file+" ? "); //$NON-NLS-1$
|
|
76 | 77 |
|
77 | 78 |
int buttonID = dialog.open(); |
78 | 79 |
switch(buttonID) { |
79 | 80 |
case SWT.YES: |
80 | 81 |
if (file.isFile()) { |
81 |
if (!file.delete()) System.out.println(TXMUIMessages.failedToDeleteFile+file);
|
|
82 |
if (!file.delete()) System.out.println(NLS.bind(TXMUIMessages.failedToDeleteFileP0, file));
|
|
82 | 83 |
} else if (file.isDirectory()) { |
83 |
if (!DeleteDir.deleteDirectory(file)) System.out.println(TXMUIMessages.failedToDeleteFile+file);
|
|
84 |
if (!DeleteDir.deleteDirectory(file)) System.out.println(NLS.bind(TXMUIMessages.failedToDeleteFileP0, file));
|
|
84 | 85 |
} |
85 | 86 |
Explorer.refresh(); |
86 | 87 |
MacroExplorer.refresh(); |
... | ... | |
95 | 96 |
public static void delete(List files) { |
96 | 97 |
Shell shell = new Shell(); |
97 | 98 |
MessageBox dialog = new MessageBox(shell, SWT.YES | SWT.NO); |
98 |
dialog.setMessage(TXMUIMessages.areYouSureYouWantToDeleteToSort+files+" ? "); //$NON-NLS-1$
|
|
99 |
dialog.setMessage(TXMUIMessages.areYouSureYouWantToDeleteP0DDot+files+" ? "); //$NON-NLS-1$
|
|
99 | 100 |
|
100 | 101 |
int buttonID = dialog.open(); |
101 | 102 |
switch(buttonID) { |
... | ... | |
105 | 106 |
File file = (File) o; |
106 | 107 |
if (file.exists()) |
107 | 108 |
if (file.isFile()) { |
108 |
if (!file.delete()) System.out.println(TXMUIMessages.failedToDeleteFile+file);
|
|
109 |
if (!file.delete()) System.out.println(NLS.bind(TXMUIMessages.failedToDeleteFileP0, file));
|
|
109 | 110 |
} else if (file.isDirectory()) { |
110 |
if (!DeleteDir.deleteDirectory(file)) System.out.println(TXMUIMessages.failedToDeleteFile+file);
|
|
111 |
if (!DeleteDir.deleteDirectory(file)) System.out.println(NLS.bind(TXMUIMessages.failedToDeleteFileP0, file));
|
|
111 | 112 |
} |
112 | 113 |
} |
113 | 114 |
} |
tmp/org.txm.rcp/src/main/java/org/txm/rcp/messages/messages_ru.properties (revision 1364) | ||
---|---|---|
58 | 58 |
|
59 | 59 |
andFrom = и от |
60 | 60 |
|
61 |
areYouSureYouWantToDeleteToSort = Вы уверены, что хотите удалить
|
|
61 |
areYouSureYouWantToDeleteP0DDot = Вы уверены, что хотите удалить : {0}
|
|
62 | 62 |
|
63 | 63 |
assign = Назначить |
64 | 64 |
|
... | ... | |
80 | 80 |
|
81 | 81 |
cannotCreateALexicalTableFromAnIndexCreatedWithACorpusMoreThanOneColumnIsNeeded = Невозможно составить словарную таблицу из Индекса, полученного на Корпусе |
82 | 82 |
|
83 |
cannotCreateTheGraphic = ** Невозможно создать график
|
|
83 |
cannotCreateTheGraphicP0 = ** Невозможно создать график {0}
|
|
84 | 84 |
|
85 | 85 |
cannotDrawAGraphicWithTheInformationProvided = Не удается показать график на основе предоставленной информации. |
86 | 86 |
|
... | ... | |
143 | 143 |
|
144 | 144 |
corpusConversionFailed = |
145 | 145 |
|
146 |
corpusInfos = Папка с исходными материалами:
|
|
146 |
corpusInfosP0 = Папка с исходными материалами: {0}
|
|
147 | 147 |
|
148 | 148 |
corpusNameIsMandatory = Имя корпуса обязательно |
149 | 149 |
|
... | ... | |
233 | 233 |
|
234 | 234 |
enableAutomaticSaveOfAllResultsPersistence = |
235 | 235 |
|
236 |
encodingFound = Найденная кодировка |
|
237 |
|
|
238 | 236 |
endOfColumnMerge = Объединение колонок завершено. |
239 | 237 |
|
240 | 238 |
endsWith = заканчивается на |
... | ... | |
317 | 315 |
|
318 | 316 |
failedToDelete = ** Не удалось удалить |
319 | 317 |
|
320 |
failedToDeleteFile = ** Не удалось удалить файл
|
|
318 |
failedToDeleteFileP0 = ** Не удалось удалить файл {0}
|
|
321 | 319 |
|
322 | 320 |
failedToDeleteSubcorpusP0 = ** Ошибка при удалении подкорпуса {0} |
323 | 321 |
|
... | ... | |
452 | 450 |
|
453 | 451 |
mergeResultName = имя результата объединения |
454 | 452 |
|
455 |
metadataColumnTitles = Заглавия колонок в файле с метаданными
|
|
453 |
metadataColumnTitlesP0 = Заглавия колонок в файле с метаданными {0}
|
|
456 | 454 |
|
457 | 455 |
metadataPreview = Метаданные |
458 | 456 |
|
... | ... | |
460 | 458 |
|
461 | 459 |
minAnd = \ мин. и |
462 | 460 |
|
463 |
moduleUIParametersDDot = Параметры модуля: |
|
461 |
moduleUIParametersDDot = Параметры модуля: {0}
|
|
464 | 462 |
|
465 | 463 |
movingCorporaToP0 = Перемещение существующих корпусов... |
466 | 464 |
|
... | ... | |
682 | 680 |
|
683 | 681 |
termsOfService = Licence d'utilisation |
684 | 682 |
|
685 |
textEditorDDot = ТекстовыйРедактор:
|
|
683 |
textEditorDDotP0EncodingFoundP1 = ТекстовыйРедактор: {0} Найденная кодировка {1}
|
|
686 | 684 |
|
687 | 685 |
textID = Индентификатор текста |
688 | 686 |
|
tmp/org.txm.rcp/src/main/java/org/txm/rcp/messages/messages_fr.properties (revision 1364) | ||
---|---|---|
64 | 64 |
|
65 | 65 |
annotateTheCorpus = Annoter le corpus |
66 | 66 |
|
67 |
areYouSureYouWantToDeleteToSort = Etes vous sûr de vouloir supprimer
|
|
67 |
areYouSureYouWantToDeleteP0DDot = Etes vous sûr de vouloir supprimer les fichiers {0}
|
|
68 | 68 |
|
69 | 69 |
assign = Affecter |
70 | 70 |
|
... | ... | |
90 | 90 |
|
91 | 91 |
cannotCreateALexicalTableFromAnIndexCreatedWithACorpusMoreThanOneColumnIsNeeded = Impossible de créer une table lexicale à partir d'un Index créé sur un Corpus |
92 | 92 |
|
93 |
cannotCreateTheGraphic = ** Impossible de créer le graphique
|
|
93 |
cannotCreateTheGraphicP0 = ** Impossible de créer le graphique : {0}
|
|
94 | 94 |
|
95 | 95 |
cannotDrawAGraphicWithTheInformationProvided = Impossible d'afficher un graphique avec les informations fournies. |
96 | 96 |
|
... | ... | |
171 | 171 |
|
172 | 172 |
corpusConversionFailed = La conversion du corpus a échoué. |
173 | 173 |
|
174 |
corpusInfos = Dossier des sources :
|
|
174 |
corpusInfosP0 = Dossier des sources : {0}
|
|
175 | 175 |
|
176 | 176 |
corpusNameIsMandatory = Le nom du corpus est obligatoire |
177 | 177 |
|
... | ... | |
271 | 271 |
|
272 | 272 |
enableAutomaticSaveOfAllResultsPersistence = Activer la sauvegarde automatique de tous les résultats (persistance) |
273 | 273 |
|
274 |
encodingFound = Encodage trouvé |
|
275 |
|
|
276 | 274 |
endOfColumnMerge = Fin de la fusion des colonnes. |
277 | 275 |
|
278 | 276 |
endOfSentenceCharacters = Caractères de fin de phrase |
... | ... | |
367 | 365 |
|
368 | 366 |
failedToDelete = ** Échec de la suppression |
369 | 367 |
|
370 |
failedToDeleteFile = ** Échec de la suppression du fichier
|
|
368 |
failedToDeleteFileP0 = ** Échec de la suppression du fichier {0}
|
|
371 | 369 |
|
372 | 370 |
failedToDeleteSubcorpusP0 = ** Erreur lors de la suppression du sous-corpus {0} |
373 | 371 |
|
374 | 372 |
failedToExportCorpusP0 = ** Échec de l''exportation du corpus {0} |
375 | 373 |
|
376 |
failedToExportFileP0WithDeviceP1 = Échec de l''export dans le fichier {0} au format {1}
|
|
374 |
failedToExportFileP0 = Échec de l''export dans le fichier {0}
|
|
377 | 375 |
|
378 | 376 |
failedToExportInFileP0WithFormatP1 = ** Échec de l''export dans le fichier {0} de format {1} |
379 | 377 |
|
... | ... | |
518 | 516 |
|
519 | 517 |
mergeResultName = nom du résultat de la fusion |
520 | 518 |
|
521 |
metadataColumnTitles = Titre des colonnes du fichier de métadonnées
|
|
519 |
metadataColumnTitlesP0 = Titre des colonnes du fichier de métadonnées : {0}
|
|
522 | 520 |
|
523 | 521 |
metadataPreview = Aperçu des métadonnées |
524 | 522 |
|
... | ... | |
530 | 528 |
|
531 | 529 |
minimalCoFrequence = Co-fréquence minimum |
532 | 530 |
|
533 |
moduleUIParametersDDot = Paramètres du module : |
|
531 |
moduleUIParametersDDot = Paramètres du module : {0}
|
|
534 | 532 |
|
535 | 533 |
movingCorporaToP0 = Sauvegarde des corpus existants dans ''{0}''. |
536 | 534 |
|
... | ... | |
786 | 784 |
|
787 | 785 |
termsOfService = Licence d'utilisation |
788 | 786 |
|
789 |
textEditorDDot = Editeur de Texte:
|
|
787 |
textEditorDDotP0EncodingFoundP1 = Editeur de Texte: {0} encodage={1}
|
|
790 | 788 |
|
791 | 789 |
textID = Identifiant de texte |
792 | 790 |
|
tmp/org.txm.rcp/src/main/java/org/txm/rcp/messages/TXMUIMessages.java (revision 1364) | ||
---|---|---|
210 | 210 |
public static String buildEdition; |
211 | 211 |
public static String _default_2; |
212 | 212 |
public static String addAXsltParameter; |
213 |
public static String moduleUIParametersDDot; |
|
213 |
public static String moduleUIParametersDDotP0;
|
|
214 | 214 |
public static String savingImportParameters; |
215 | 215 |
public static String corpusNameIsMandatory; |
216 | 216 |
public static String fontName; |
... | ... | |
223 | 223 |
public static String deleteParameter; |
224 | 224 |
public static String generalInformations; |
225 | 225 |
public static String corpusNameOnlyCapsAndNoDigitAtBeginning; |
226 |
public static String importStoppedDDotCorpusNameDoesNotMatchesTheAZAZ09120PatternDDot; |
|
226 |
public static String importStoppedDDotCorpusNameDoesNotMatchesTheAZAZ09120PatternDDotP0;
|
|
227 | 227 |
public static String descriptionHTMLCompleteNameAuthorDateLicenseComment; |
228 | 228 |
public static String newFileDDotP0; |
229 | 229 |
public static String newFolderDDotP0; |
... | ... | |
265 | 265 |
public static String referencesAmpdisplayOptions; |
266 | 266 |
public static String referencesAmpsortOptions; |
267 | 267 |
public static String referencesSortOptions; |
268 |
public static String areYouSureYouWantToDeleteToSort;
|
|
269 |
public static String failedToDeleteFile; |
|
268 |
public static String areYouSureYouWantToDeleteP0DDot;
|
|
269 |
public static String failedToDeleteFileP0;
|
|
270 | 270 |
public static String failedToDeleteSubcorpusP0; |
271 | 271 |
public static String theTableMustContainAtLeastOneLine; |
272 | 272 |
public static String deletingP0Continue; |
... | ... | |
334 | 334 |
public static String impossibleToReadP0; |
335 | 335 |
public static String failedToExportResultP0DDotP1; |
336 | 336 |
public static String p1FileSavedInP0; |
337 |
public static String failedToExportFileP0WithDeviceP1;
|
|
337 |
public static String failedToExportFileP0; |
|
338 | 338 |
public static String failedToSavePreferencesDDotP0; |
339 | 339 |
public static String regexpPatternToHideFiles; |
340 | 340 |
public static String showHiddenFiles; |
... | ... | |
409 | 409 |
public static String mainLanguage; |
410 | 410 |
public static String sourceCharactersEncoding; |
411 | 411 |
public static String importParametersOfP0; |
412 |
public static String corpusInfos; |
|
412 |
public static String corpusInfosP0;
|
|
413 | 413 |
public static String newName; |
414 | 414 |
public static String editTheNameOfTheNewColumnCreatedByTheMergedColumns; |
415 | 415 |
public static String namesDDot; |
... | ... | |
420 | 420 |
public static String editTheNameOfTheNewLineCreatedByTheMergedLines; |
421 | 421 |
public static String metadataPreview; |
422 | 422 |
public static String metadatasParameters; |
423 |
public static String metadataColumnTitles; |
|
423 |
public static String metadataColumnTitlesP0;
|
|
424 | 424 |
public static String textID; |
425 | 425 |
public static String noMetadataFileP0; |
426 | 426 |
public static String addDDot; |
... | ... | |
543 | 543 |
public static String computing; |
544 | 544 |
public static String computing_3; |
545 | 545 |
public static String showHideCommandParameters; |
546 |
public static String textEditorDDot; |
|
547 |
public static String encodingFound; |
|
546 |
public static String textEditorDDotP0EncodingFoundP1; |
|
548 | 547 |
public static String error; |
549 | 548 |
public static String automaticRecomputingWhenChangingAParameter; |
550 | 549 |
public static String doNotConfirmToDeleteAnObject; |
tmp/org.txm.rcp/src/main/java/org/txm/rcp/messages/messages.properties (revision 1364) | ||
---|---|---|
66 | 66 |
|
67 | 67 |
annotateTheCorpus = Annotate the corpus |
68 | 68 |
|
69 |
areYouSureYouWantToDeleteToSort = Are you sure you want to delete to sort |
|
70 |
|
|
71 | 69 |
argsDDot = Args: {0}. |
72 | 70 |
|
73 | 71 |
assign = Assign |
... | ... | |
94 | 92 |
|
95 | 93 |
cannotCreateALexicalTableFromAnIndexCreatedWithACorpusMoreThanOneColumnIsNeeded = Cannot create a Lexical Table from an Index created with a Corpus (more than one column is needed) |
96 | 94 |
|
97 |
cannotCreateTheGraphic = ** Cannot create the graphic
|
|
95 |
cannotCreateTheGraphicP0 = ** Cannot create the graphic {0}
|
|
98 | 96 |
|
99 | 97 |
cannotDrawAGraphicWithTheInformationProvided = Cannot draw a graphic with the information provided. |
100 | 98 |
|
... | ... | |
177 | 175 |
|
178 | 176 |
corpusConversionFailed = Corpus conversion failed. |
179 | 177 |
|
180 |
corpusInfos = Corpus infos
|
|
178 |
corpusInfosP0=Corpus infos {0}
|
|
181 | 179 |
|
182 | 180 |
corpusNameIsMandatory = Corpus name is mandatory |
183 | 181 |
|
... | ... | |
283 | 281 |
|
284 | 282 |
enableAutomaticSaveOfAllResultsPersistence = Enable automatic save of all results (persistence) |
285 | 283 |
|
286 |
encodingFound = Encoding found |
|
287 |
|
|
288 | 284 |
endOfColumnMerge = End of column merge. |
289 | 285 |
|
290 | 286 |
endOfSentenceCharacters = End of sentence characters |
... | ... | |
399 | 395 |
|
400 | 396 |
failedToDelete = ** Failed to delete |
401 | 397 |
|
402 |
failedToDeleteFile = ** Failed to delete file
|
|
398 |
areYouSureYouWantToDeleteP0DDot = ** Failed to delete files: {0}
|
|
403 | 399 |
|
404 | 400 |
failedToDeleteSubcorpusP0 = ** Failed to delete subcorpus {0} |
405 | 401 |
|
406 | 402 |
failedToExportCorpusP0 = ** Failed to export corpus {0} |
407 | 403 |
|
408 |
failedToExportFileP0WithDeviceP1 = Failed to export file {0} with device {1}
|
|
404 |
failedToExportFileP0=Failed to export file {0} with device {1}
|
|
409 | 405 |
|
410 | 406 |
failedToExportInFileP0WithFormatP1 = ** Failed to export in file {0} with format {1} |
411 | 407 |
|
... | ... | |
481 | 477 |
|
482 | 478 |
importStarted = Import started |
483 | 479 |
|
484 |
importStoppedDDotCorpusNameDoesNotMatchesTheAZAZ09120PatternDDot = Import stopped: corpus name does not matches the '[A-Z][-A-Z0-9]{1,20}' pattern:
|
|
480 |
importStoppedDDotCorpusNameDoesNotMatchesTheAZAZ09120PatternDDotP0=Import stopped: corpus name does not matches the '[A-Z][-A-Z0-9]{1,20}' pattern: {0}
|
|
485 | 481 |
|
486 | 482 |
impossibleToReadP0 = ** Impossible to read {0} |
487 | 483 |
|
... | ... | |
564 | 560 |
|
565 | 561 |
mergeResultName = merge result name |
566 | 562 |
|
567 |
metadataColumnTitles = Metadata column titles
|
|
563 |
metadataColumnTitlesP0=Metadata column titles {0}
|
|
568 | 564 |
|
569 | 565 |
metadataPreview = Metadata preview |
570 | 566 |
|
... | ... | |
578 | 574 |
|
579 | 575 |
minimalCoFrequence = Minimal co frequence |
580 | 576 |
|
581 |
moduleUIParametersDDot = module UI parameters:
|
|
577 |
moduleUIParametersDDotP0=module UI parameters: {0}
|
|
582 | 578 |
|
583 | 579 |
movingCorporaToP0 = Moving corpora to {0}. |
584 | 580 |
|
... | ... | |
864 | 860 |
|
865 | 861 |
termsOfService = Terms of service |
866 | 862 |
|
867 |
textEditorDDot = TextEditor:
|
|
863 |
textEditorDDotP0EncodingFoundP1 = TextEditor: {0} encoding found {1}
|
|
868 | 864 |
|
869 | 865 |
textID = Text ID |
870 | 866 |
|
Formats disponibles : Unified diff