Revision 1568
tmp/org.txm.rcp/src/main/java/org/txm/rcp/messages/messages.properties (revision 1568) | ||
---|---|---|
477 | 477 |
usingLanguage={0} language will be used. |
478 | 478 |
valueSelector=Values selector |
479 | 479 |
warning=Warning |
480 |
warning_popup_allDescendantResultsWillBeUpdated=All descendant results will be updated. Do you want to continue? |
|
481 |
warning_popup_theP0HasBeenEditedItsChangesWillBeLost=The {0} has been edited. Its changes will be lost. Do you want to continue? |
|
480 | 482 |
warningColonTheCorpusP0IsCorruptedSomeCommandsWontWorkCorrectly=** Warning\: corpus {0} is corrupted. Some commands will not work correctly. |
481 | 483 |
warningColonTheImportScriptIsMissingColonP0=** The {0} import script is unreachable |
482 | 484 |
withinAContextOf=within a context of |
tmp/org.txm.rcp/src/main/java/org/txm/rcp/messages/TXMUIMessages.java (revision 1568) | ||
---|---|---|
83 | 83 |
public static String warningColonTheCorpusP0IsCorruptedSomeCommandsWontWorkCorrectly; |
84 | 84 |
public static String cannotReadTheFileP0; |
85 | 85 |
public static String warning; |
86 |
public static String warning_popup_allDescendantResultsWillBeUpdated; |
|
87 |
|
|
88 |
|
|
89 |
|
|
90 |
public static String warning_popup_theP0HasBeenEditedItsChangesWillBeLost; |
|
91 |
|
|
92 |
|
|
93 |
|
|
86 | 94 |
public static String newCorpusColonP0; |
87 | 95 |
public static String theP0CorpusDirectoryAlreadyExistsDoYouWantToReplaceIt; |
88 | 96 |
public static String thisFileIsNotATXMFileColonP0; |
tmp/org.txm.rcp/src/main/java/org/txm/rcp/editors/TXMEditor.java (revision 1568) | ||
---|---|---|
827 | 827 |
|
828 | 828 |
// popup alert to inform user that the result has been manually edited |
829 | 829 |
if (TXMEditor.this.getResult().isAltered() |
830 |
&& !MessageDialog.openQuestion(getShell(), "Warning", TXMCoreMessages.bind("The {0} has been edited. Its changes will be lost. Do you want to continue?", TXMEditor.this.getResult().getResultype()))) {
|
|
830 |
&& !MessageDialog.openQuestion(getShell(), TXMCoreMessages.common_warning, TXMCoreMessages.bind(TXMUIMessages.warning_popup_theP0HasBeenEditedItsChangesWillBeLost, TXMEditor.this.getResult().getResultype()))) {
|
|
831 | 831 |
setCanceled(true); |
832 | 832 |
} |
833 | 833 |
else { |
... | ... | |
836 | 836 |
// FIXME: SJ: to fix that, temporarily or not, I had finally this test on the visibility state of the children. Actually this test may be useful for any result type |
837 | 837 |
// popup alert to inform user that children results will be recomputed |
838 | 838 |
if(!TBXPreferences.getInstance().getBoolean(TBXPreferences.EXPERT_USER) |
839 |
&& TXMEditor.this.getResult().hasVisibleChild() && !MessageDialog.openQuestion(getShell(), "Warning", "All descendant results will be updated. Do you want to continue?")) {
|
|
839 |
&& TXMEditor.this.getResult().hasVisibleChild() && !MessageDialog.openQuestion(getShell(), TXMCoreMessages.common_warning, TXMUIMessages.warning_popup_allDescendantResultsWillBeUpdated)) {
|
|
840 | 840 |
setCanceled(true); |
841 | 841 |
} |
842 | 842 |
|
843 | 843 |
|
844 | 844 |
|
845 | 845 |
// subclasses manual result updating from editor fields |
846 |
Log.finest("TXMEditor.compute(): " + TXMEditor.this.getClass().getSimpleName() + ": manually updating result from editor."); //$NON-NLS-1$
|
|
846 |
Log.finer("TXMEditor.compute(): " + TXMEditor.this.getClass().getSimpleName() + ": manually updating result from editor."); //$NON-NLS-1$
|
|
847 | 847 |
updateResultFromEditor(); |
848 | 848 |
|
849 | 849 |
// auto updating result from Parameter annotations in result <=> editor |
850 |
Log.finest("TXMEditor.compute(): " + TXMEditor.this.getClass().getSimpleName() + ": auto updating result from editor."); //$NON-NLS-1$
|
|
850 |
Log.finer("TXMEditor.compute(): " + TXMEditor.this.getClass().getSimpleName() + ": auto updating result from editor."); //$NON-NLS-1$
|
|
851 | 851 |
autoUpdateResultFromEditorParameters(); |
852 | 852 |
|
853 | 853 |
|
... | ... | |
871 | 871 |
notifyExtensions("notifyStartOfCompute"); //$NON-NLS-1$ |
872 | 872 |
|
873 | 873 |
if (!TXMEditor.this.getResult().compute(monitor)) { |
874 |
Log.finest("TXMEditor.compute(): " + TXMEditor.this.getClass().getSimpleName() + ": computing failed.");
|
|
874 |
Log.fine("TXMEditor.compute(): " + TXMEditor.this.getClass().getSimpleName() + ": computing failed."); |
|
875 | 875 |
} |
876 | 876 |
|
877 | 877 |
notifyExtensions("notifyEndOfCompute"); //$NON-NLS-1$ |
... | ... | |
889 | 889 |
setFocus(); |
890 | 890 |
|
891 | 891 |
} catch (Exception e) { |
892 |
Log.finest("TXMEditor.compute(): " + TXMEditor.this.getClass().getSimpleName() + ": Error while refreshing the editor: " + e); //$NON-NLS-1$
|
|
892 |
Log.finer("TXMEditor.compute(): " + TXMEditor.this.getClass().getSimpleName() + ": Error while refreshing the editor: " + e); //$NON-NLS-1$
|
|
893 | 893 |
Log.printStackTrace(e); |
894 | 894 |
} |
895 | 895 |
} |
tmp/org.txm.core/src/java/org/txm/core/messages/messages.properties (revision 1568) | ||
---|---|---|
1 |
#TXM messages generated by the PluginMessagesManager class |
|
2 |
#Tue Dec 18 10:24:08 CET 2018 |
|
3 |
binaryDirectoryP0NotFound=Corpus binary folder {0} not found. |
|
4 |
cantFindStructuralUnitForMetadataWithIdColon=** Can not find structural unit for metadata with identifier |
|
5 |
catalogFileNotFoundP0=** Catalog file {0} not found. |
|
6 |
checkingBinaryFormat=Checking binary corpus format… |
|
7 |
common_absoluteFrequency=Absolute Frequency |
|
8 |
common_cols=Columns |
|
9 |
common_delete=Delete |
|
10 |
common_description=Description |
|
11 |
common_done=Done. |
|
12 |
common_fMax=Fmax |
|
13 |
common_fMin=Fmin |
|
14 |
common_fMinEquals=Fmin\={0} |
|
15 |
common_frequency=Frequency |
|
16 |
common_lowestFrequency=Lowest frequency |
|
17 |
common_numberOfLines=Number of lines |
|
18 |
common_ok=OK |
|
19 |
common_properties=Properties\: |
|
20 |
common_property=Property\: |
|
21 |
common_queriesColonP0=Queries\: {0}. |
|
22 |
common_query=Query |
|
23 |
common_reference=Reference |
|
24 |
common_rows=Rows |
|
25 |
common_structuralUnitAndProperty=Structural unit and property |
|
26 |
common_structure=Structure |
|
27 |
common_t=t |
|
28 |
common_thresholds=Thresholds |
|
29 |
common_units=Units |
|
30 |
common_vMax=Vmax |
|
31 |
computingColon=Computing\: |
|
32 |
connectedToCQP=Connected to CQP. |
|
33 |
corpusColon=Corpus\: |
|
34 |
corpusColongetLocaleColonCQPIsNotReadyToAnswerColon=Corpus\:getLocale\: CQP is not ready to answer\: |
|
35 |
couldNotCreateTXMHOMEDirectoryColonP0=** Failed to create TXMHOME folder {0}. |
|
36 |
couldntReadCorpusColon=** Can not read the corpus data\: |
|
37 |
cQiClientNotInitialized=** CQi Client not initialized |
|
38 |
dataDirectoryIsMissingColonP0=The 'data'' folder {0} is missing |
|
39 |
doesNotExists=\ does not exist. |
|
40 |
encodingColon=, Encoding\: |
|
41 |
endOfCQPWaitTest=End of the CQP waiting test. |
|
42 |
error_error=** Error\: {0}. |
|
43 |
error_error2=Error |
|
44 |
error_errorWhileSortingResult=** Error while sorting result. |
|
45 |
eRRORColonExists=** Error\: does not exist |
|
46 |
errorColonLinkGrplinkAttargetMalformedColonP0=** Error\: linkGrp/link/@target malformed\: {0}. |
|
47 |
errorColonP0=** Error\: {0}. |
|
48 |
errorColonP0CorpusDirectoryIsNotConformantToTXM079CorpusBinaryFormatColonCorpusSkipped=** Error\: the {0} corpus folder is not conformant with TXM 0.7.9 corpus binary format\: corpus skipped. |
|
49 |
errorColonP0CorpusDirectoryIsNotConformantToTXMCorpusBinaryFormatColonCorpusSkipped=** Error\: the {0} corpus folder is not conformant with TXM corpus binary format\: corpus skipped. |
|
50 |
eRRORColonRead=** Error\: can not read |
|
51 |
errorColonSkippingTheLoadingOfTheP0Corpus=** Error\: the {0} corpus will not be loaded |
|
52 |
errorColonTheConnexionToTheServerFailedColonWrongPortFormat=** The connection to the search engine has failed\: the port provided as parameter is not an integer\: {0}. |
|
53 |
errorColonThisExceptionShouldNotBeThrown=** Error\: this exception should not be thrown |
|
54 |
errorColonWhileConnectionToSearchEngineWithTheFollowingParametersColon=** Failed to connect to the search engine with the following parameters\: {0} and {1}. |
|
55 |
errorConfigdirDirColon=** Error in the configuration folder\: |
|
56 |
errorDuringWorkspaceInitializationColonP0=** Failed to initialize workspace\: {0}. |
|
57 |
errorLoadingWorkspaceFromFileColonP0=** Failed to read workspace from file {0}. |
|
58 |
errorRegDirColon=** Error in the registry directory\: |
|
59 |
errorWhileConnectingToSearchEngine=** Failed to connect to the search engine\: |
|
60 |
errorWhileGettingMetadatasFromBaseimportMetadatasColon=** Error while retrieving metadata of the corpus\: |
|
61 |
errorWhileWaitingForCQP=** Error while waiting for CQP\: {0}. |
|
62 |
evaluatingExtensionColonP0FromP1=Evaluating extension\: {0} from {1} |
|
63 |
exceptionColonP0=Exception\: {0} |
|
64 |
failedToAccessStructuralPropertyValues=** Failed to access structural property values |
|
65 |
failedToCopyTXMFilesFromTXMINSTALLDIRToTXMHOMEColonP0=** Failed to copy TXM files from the TXMINSTALL DIR folder to the TXMHOME folder\: {0}. |
|
66 |
failedToCreatePartColon=** Failed to create part\: |
|
67 |
failedToExec=** Failed to execute {0}\: {1}. |
|
68 |
failedToExecTaskkillIMCqpserverexeFColon=** Failed to execute 'taskkill /IM cqpserver.exe /F'\: {0}. |
|
69 |
failedToExecTskillCqpserverexeColon=** Failed to execute 'tskill cqpserver.exe'\: {0}. |
|
70 |
failedToGetLastCQPErrorColon=** Failed to retrieve last CQP error\: |
|
71 |
failedToGetSupValuesOf=** Failed to retrieve structural values of |
|
72 |
failedToLoadBaseParametersFromTheP0File=** Failed to load the corpus parameters from the {0} file. |
|
73 |
failedToRestorePartition=** Failed to restore partition |
|
74 |
failedToRestoreSubcorpus=** Failed to restore subcorpus |
|
75 |
failedToStartMemCqiClientColon=** Failed to start CQP in memory mode. |
|
76 |
file=** File |
|
77 |
fillImportxmlWithColon=Fill ‘'import.xml' file with\: |
|
78 |
filterManagerErrorColonInitializationP0NotFound=** Initialization error of the filter manager\: {0} not found. |
|
79 |
fmax=, fmax |
|
80 |
fmin=, fmin |
|
81 |
focusIsEmptyOrNull=Focus is empty or null |
|
82 |
hasNoBase=has no ‘'root corpus' |
|
83 |
htmlDirectoryIsMissingColonP0=The 'HTML' folder {0} is missing |
|
84 |
in=\ in \t\t\t\t\t\t\t\t |
|
85 |
informationsFromWorkspaceSelfElementNull=Informations from workspace (selfElement null) |
|
86 |
initializationOfGroovyImportScriptRunner=Initialization of GroovyImportScriptRunner |
|
87 |
iOColon=IO\: |
|
88 |
isMissing='{0}'' can not be found. |
|
89 |
isNotAValidCQPIDForACorpusItMustBeInUppercaseCharacters=\ is not a valid CQP identifier for a corpus. It must be in uppercase characters. |
|
90 |
isNotAValidCQPIdForASubcorpusItMustBeAnUppercaseCharactersFollowedByLowercaseCharacters=\ is not a valid CQP identifier for a sub-corpus. It must be in uppercase followed by lowercase characters. |
|
91 |
killPsAuxPipeGrepCqpserverPipeAwkP=kill `ps aux | grep cqpserver | awk '/-P |
|
92 |
languageColon=, Language\: |
|
93 |
loadingExtensions=Loading extensions… |
|
94 |
loadingWorkspaceFromFileColonP0=Loading workspace from the {0} file |
|
95 |
malformedURLFileP0=** Malformed URL\: {0}. |
|
96 |
managerErrorDuringInitializationColonP0NotFound=** Catalog Manager initialization error\: {0} not found. |
|
97 |
matchesFound=matches found. |
|
98 |
noValuesGiven=No values given |
|
99 |
noWorkspaceFoundCreatingANewOneP0=** No workspace found, creating a new workspace in the {0} folder. |
|
100 |
numberOfMatch=Number of matches |
|
101 |
numberOfSubMatch=Number of sub-matches |
|
102 |
orTheEngineWasNotStartedWithTheCommandLineColon=** CQP server startup failed with the command line\: {0}. |
|
103 |
pARAMSColonP0=Parameters\: {0} |
|
104 |
parentDirectoryP0NotFound=Parent folder ‘'{0}' not found. |
|
105 |
print2=/ {print $2}'` |
|
106 |
processing=Processing… |
|
107 |
processingTextColonP0=Processing file ‘'{0}'... |
|
108 |
queryingPartitionP0=Querying partition {0} |
|
109 |
queryOnP0ColonP1InfP2=Query on {0} \: {1} <- {2} |
|
110 |
queryWasColon=Query was\: |
|
111 |
readCorpusInfosFromOldImportxmlFileColonP0=Reading the corpus properties from the ‘'import.xml' file\: {0} |
|
112 |
readError=** Read error |
|
113 |
registryFileIsMissingColonP0=The ‘''registry' file {0} is missing |
|
114 |
reorganizingFilesOfP0=reorganizing files of {0} |
|
115 |
sAXColon=SAX\: |
|
116 |
selectionErrorColonTheCorpus=Object selection error\: the corpus |
|
117 |
supBeginningExecutionOfP0=> beginning execution of {0} |
|
118 |
supEndOfExecution=> end of execution |
|
119 |
textMetadataColon=Text metadata\: |
|
120 |
theFocusCannotBeNullOrEmpty=The focus can not be empty or null. |
|
121 |
theFocusIsEmptyOrNull=** The focus is empty or null. |
|
122 |
theP0PartFocusDoesntBelongToPartitionP1=There is no {0} part in the {1} partition. |
|
123 |
ToolboxStatesWorkspaceColonP0=\ Workspace\: {0} |
|
124 |
txmDirectoryIsMissingColonP0=The 'txm'' folder {0} is missing |
|
125 |
tXMNeedsFoldersColonP0P1P2AndP3=TXM needs the folders\: {0}, {1}, {2} and {3}. |
|
126 |
unknownPartitionName=** Unknown partition name. |
|
127 |
v=, v |
|
128 |
warningColonCantLoadCorpus=Warning\: can not load the corpus |
|
129 |
warningColonDuplicateQueryEntryColonP0=Warning\: the {0} query is duplicated. |
|
130 |
warningColonQueryFailedColonP0=Warning\: query {0} failed. |
|
131 |
wrongLoginOrPasswordOrPortColon=Wrong login, password, host or port in \: {0}, {1}, {2} ,{3}. |
|
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 |
ToolboxStatesWorkspaceColonP0 = \ Workspace: {0} |
|
6 |
|
|
7 |
binaryDirectoryP0NotFound = Corpus binary folder {0} not found. |
|
8 |
|
|
9 |
cQiClientNotInitialized = ** CQi Client not initialized |
|
10 |
|
|
11 |
cantFindStructuralUnitForMetadataWithIdColon = ** Can not find structural unit for metadata with identifier |
|
12 |
|
|
13 |
catalogFileNotFoundP0 = ** Catalog file {0} not found. |
|
14 |
|
|
15 |
checkingBinaryFormat = Checking binary corpus format… |
|
16 |
|
|
17 |
common_absoluteFrequency = Absolute Frequency |
|
18 |
common_cols = Columns |
|
19 |
common_delete = Delete |
|
20 |
common_description = Description |
|
21 |
common_done = Done. |
|
22 |
common_fMax = Fmax |
|
23 |
common_fMin = Fmin |
|
24 |
common_fMinEquals = Fmin={0} |
|
25 |
common_frequency = Frequency |
|
26 |
common_lowestFrequency = Lowest frequency |
|
27 |
common_numberOfLines = Number of lines |
|
28 |
common_ok = OK |
|
29 |
common_properties = Properties: |
|
30 |
common_property = Property: |
|
31 |
common_queriesColonP0 = Queries: {0}. |
|
32 |
common_query = Query |
|
33 |
common_reference = Reference |
|
34 |
common_rows = Rows |
|
35 |
common_structuralUnitAndProperty = Structural unit and property |
|
36 |
common_structure = Structure |
|
37 |
common_t = t |
|
38 |
common_thresholds = Thresholds |
|
39 |
common_units = Units |
|
40 |
common_vMax = Vmax |
|
41 |
common_warning = Warning |
|
42 |
|
|
43 |
computingColon = Computing: |
|
44 |
|
|
45 |
connectedToCQP = Connected to CQP. |
|
46 |
|
|
47 |
corpusColon = Corpus: |
|
48 |
|
|
49 |
corpusColongetLocaleColonCQPIsNotReadyToAnswerColon = Corpus:getLocale: CQP is not ready to answer: |
|
50 |
|
|
51 |
couldNotCreateTXMHOMEDirectoryColonP0 = ** Failed to create TXMHOME folder {0}. |
|
52 |
|
|
53 |
couldntReadCorpusColon = ** Can not read the corpus data: |
|
54 |
|
|
55 |
dataDirectoryIsMissingColonP0 = The 'data'' folder {0} is missing |
|
56 |
|
|
57 |
doesNotExists = \ does not exist. |
|
58 |
|
|
59 |
eRRORColonExists = ** Error: does not exist |
|
60 |
|
|
61 |
eRRORColonRead = ** Error: can not read |
|
62 |
|
|
63 |
encodingColon = , Encoding: |
|
64 |
|
|
65 |
endOfCQPWaitTest = End of the CQP waiting test. |
|
66 |
|
|
67 |
errorColonLinkGrplinkAttargetMalformedColonP0 = ** Error: linkGrp/link/@target malformed: {0}. |
|
68 |
|
|
69 |
errorColonP0 = ** Error: {0}. |
|
70 |
|
|
71 |
errorColonP0CorpusDirectoryIsNotConformantToTXM079CorpusBinaryFormatColonCorpusSkipped = ** Error: the {0} corpus folder is not conformant with TXM 0.7.9 corpus binary format: corpus skipped. |
|
72 |
|
|
73 |
errorColonP0CorpusDirectoryIsNotConformantToTXMCorpusBinaryFormatColonCorpusSkipped = ** Error: the {0} corpus folder is not conformant with TXM corpus binary format: corpus skipped. |
|
74 |
|
|
75 |
errorColonSkippingTheLoadingOfTheP0Corpus = ** Error: the {0} corpus will not be loaded |
|
76 |
|
|
77 |
errorColonTheConnexionToTheServerFailedColonWrongPortFormat = ** The connection to the search engine has failed: the port provided as parameter is not an integer: {0}. |
|
78 |
|
|
79 |
errorColonThisExceptionShouldNotBeThrown = ** Error: this exception should not be thrown |
|
80 |
|
|
81 |
errorColonWhileConnectionToSearchEngineWithTheFollowingParametersColon = ** Failed to connect to the search engine with the following parameters: {0} and {1}. |
|
82 |
|
|
83 |
errorConfigdirDirColon = ** Error in the configuration folder: |
|
84 |
|
|
85 |
errorDuringWorkspaceInitializationColonP0 = ** Failed to initialize workspace: {0}. |
|
86 |
|
|
87 |
errorLoadingWorkspaceFromFileColonP0 = ** Failed to read workspace from file {0}. |
|
88 |
|
|
89 |
errorRegDirColon = ** Error in the registry directory: |
|
90 |
|
|
91 |
errorWhileConnectingToSearchEngine = ** Failed to connect to the search engine: |
|
92 |
|
|
93 |
errorWhileGettingMetadatasFromBaseimportMetadatasColon = ** Error while retrieving metadata of the corpus: |
|
94 |
|
|
95 |
errorWhileWaitingForCQP = ** Error while waiting for CQP: {0}. |
|
96 |
|
|
97 |
error_error = ** Error: {0}. |
|
98 |
error_error2 = Error |
|
99 |
error_errorWhileSortingResult = ** Error while sorting result. |
|
100 |
|
|
101 |
evaluatingExtensionColonP0FromP1 = Evaluating extension: {0} from {1} |
|
102 |
|
|
103 |
exceptionColonP0 = Exception: {0} |
|
104 |
|
|
105 |
failedToAccessStructuralPropertyValues = ** Failed to access structural property values |
|
106 |
|
|
107 |
failedToCopyTXMFilesFromTXMINSTALLDIRToTXMHOMEColonP0 = ** Failed to copy TXM files from the TXMINSTALL DIR folder to the TXMHOME folder: {0}. |
|
108 |
|
|
109 |
failedToCreatePartColon = ** Failed to create part: |
|
110 |
|
|
111 |
failedToExec = ** Failed to execute {0}: {1}. |
|
112 |
|
|
113 |
failedToExecTaskkillIMCqpserverexeFColon = ** Failed to execute 'taskkill /IM cqpserver.exe /F': {0}. |
|
114 |
|
|
115 |
failedToExecTskillCqpserverexeColon = ** Failed to execute 'tskill cqpserver.exe': {0}. |
|
116 |
|
|
117 |
failedToGetLastCQPErrorColon = ** Failed to retrieve last CQP error: |
|
118 |
|
|
119 |
failedToGetSupValuesOf = ** Failed to retrieve structural values of |
|
120 |
|
|
121 |
failedToLoadBaseParametersFromTheP0File = ** Failed to load the corpus parameters from the {0} file. |
|
122 |
|
|
123 |
failedToRestorePartition = ** Failed to restore partition |
|
124 |
|
|
125 |
failedToRestoreSubcorpus = ** Failed to restore subcorpus |
|
126 |
|
|
127 |
failedToStartMemCqiClientColon = ** Failed to start CQP in memory mode. |
|
128 |
|
|
129 |
file = ** File |
|
130 |
|
|
131 |
fillImportxmlWithColon = Fill ‘'import.xml' file with: |
|
132 |
|
|
133 |
filterManagerErrorColonInitializationP0NotFound = ** Initialization error of the filter manager: {0} not found. |
|
134 |
|
|
135 |
fmax = , fmax |
|
136 |
|
|
137 |
fmin = , fmin |
|
138 |
|
|
139 |
focusIsEmptyOrNull = Focus is empty or null |
|
140 |
|
|
141 |
hasNoBase = has no ‘'root corpus' |
|
142 |
|
|
143 |
htmlDirectoryIsMissingColonP0 = The 'HTML' folder {0} is missing |
|
144 |
|
|
145 |
iOColon = IO: |
|
146 |
|
|
147 |
in = \ in \ \ \ \ \ \ \ \ |
|
148 |
|
|
149 |
informationsFromWorkspaceSelfElementNull = Informations from workspace (selfElement null) |
|
150 |
|
|
151 |
initializationOfGroovyImportScriptRunner = Initialization of GroovyImportScriptRunner |
|
152 |
|
|
153 |
isMissing = '{0}'' can not be found. |
|
154 |
|
|
155 |
isNotAValidCQPIDForACorpusItMustBeInUppercaseCharacters = \ is not a valid CQP identifier for a corpus. It must be in uppercase characters. |
|
156 |
|
|
157 |
isNotAValidCQPIdForASubcorpusItMustBeAnUppercaseCharactersFollowedByLowercaseCharacters = \ is not a valid CQP identifier for a sub-corpus. It must be in uppercase followed by lowercase characters. |
|
158 |
|
|
159 |
killPsAuxPipeGrepCqpserverPipeAwkP = kill `ps aux | grep cqpserver | awk '/-P |
|
160 |
|
|
161 |
languageColon = , Language: |
|
162 |
|
|
163 |
loadingExtensions = Loading extensions… |
|
164 |
|
|
165 |
loadingWorkspaceFromFileColonP0 = Loading workspace from the {0} file |
|
166 |
|
|
167 |
malformedURLFileP0 = ** Malformed URL: {0}. |
|
168 |
|
|
169 |
managerErrorDuringInitializationColonP0NotFound = ** Catalog Manager initialization error: {0} not found. |
|
170 |
|
|
171 |
matchesFound = matches found. |
|
172 |
|
|
173 |
noValuesGiven = No values given |
|
174 |
|
|
175 |
noWorkspaceFoundCreatingANewOneP0 = ** No workspace found, creating a new workspace in the {0} folder. |
|
176 |
|
|
177 |
numberOfMatch = Number of matches |
|
178 |
|
|
179 |
numberOfSubMatch = Number of sub-matches |
|
180 |
|
|
181 |
orTheEngineWasNotStartedWithTheCommandLineColon = ** CQP server startup failed with the command line: {0}. |
|
182 |
|
|
183 |
pARAMSColonP0 = Parameters: {0} |
|
184 |
|
|
185 |
parentDirectoryP0NotFound = Parent folder ‘'{0}' not found. |
|
186 |
|
|
187 |
print2 = / {print $2}'` |
|
188 |
|
|
189 |
processing = Processing… |
|
190 |
|
|
191 |
processingTextColonP0 = Processing file ‘'{0}'... |
|
192 |
|
|
193 |
queryOnP0ColonP1InfP2 = Query on {0} : {1} <- {2} |
|
194 |
|
|
195 |
queryWasColon = Query was: |
|
196 |
|
|
197 |
queryingPartitionP0 = Querying partition {0} |
|
198 |
|
|
199 |
readCorpusInfosFromOldImportxmlFileColonP0 = Reading the corpus properties from the ‘'import.xml' file: {0} |
|
200 |
|
|
201 |
readError = ** Read error |
|
202 |
|
|
203 |
registryFileIsMissingColonP0 = The ‘''registry' file {0} is missing |
|
204 |
|
|
205 |
reorganizingFilesOfP0 = reorganizing files of {0} |
|
206 |
|
|
207 |
sAXColon = SAX: |
|
208 |
|
|
209 |
selectionErrorColonTheCorpus = Object selection error: the corpus |
|
210 |
|
|
211 |
supBeginningExecutionOfP0 = > beginning execution of {0} |
|
212 |
|
|
213 |
supEndOfExecution = > end of execution |
|
214 |
|
|
215 |
tXMNeedsFoldersColonP0P1P2AndP3 = TXM needs the folders: {0}, {1}, {2} and {3}. |
|
216 |
|
|
217 |
textMetadataColon = Text metadata: |
|
218 |
|
|
219 |
theFocusCannotBeNullOrEmpty = The focus can not be empty or null. |
|
220 |
|
|
221 |
theFocusIsEmptyOrNull = ** The focus is empty or null. |
|
222 |
|
|
223 |
theP0PartFocusDoesntBelongToPartitionP1 = There is no {0} part in the {1} partition. |
|
224 |
|
|
225 |
txmDirectoryIsMissingColonP0 = The 'txm'' folder {0} is missing |
|
226 |
|
|
227 |
unknownPartitionName = ** Unknown partition name. |
|
228 |
|
|
229 |
v = , v |
|
230 |
|
|
231 |
warningColonCantLoadCorpus = Warning: can not load the corpus |
|
232 |
|
|
233 |
warningColonDuplicateQueryEntryColonP0 = Warning: the {0} query is duplicated. |
|
234 |
|
|
235 |
warningColonQueryFailedColonP0 = Warning: query {0} failed. |
|
236 |
|
|
237 |
wrongLoginOrPasswordOrPortColon = Wrong login, password, host or port in : {0}, {1}, {2} ,{3}. |
tmp/org.txm.core/src/java/org/txm/core/messages/messages_ru.properties (revision 1568) | ||
---|---|---|
1 |
#TXM messages generated by the PluginMessagesManager class |
|
2 |
#Tue Dec 18 10:24:08 CET 2018 |
|
3 |
common_cols= |
|
4 |
common_delete=удалить |
|
5 |
common_description=Описание |
|
6 |
common_fMax= |
|
7 |
common_fMin= |
|
8 |
common_frequency=Частотность |
|
9 |
common_lowestFrequency=Минимальная частотность |
|
10 |
common_numberOfLines=Число строк |
|
11 |
common_ok=OK |
|
12 |
common_property=Свойство |
|
13 |
common_queriesColonP0=Запросы\: {0}. |
|
14 |
common_query=Запрос\: |
|
15 |
common_structure=Структура |
|
16 |
common_thresholds=Пороги |
|
17 |
common_units=Единицы |
|
18 |
couldNotCreateTXMHOMEDirectoryColonP0=** Не удалось создать папку TXMHOME \: {0} |
|
19 |
error_error=** Ошибка\: {0} |
|
20 |
error_error2=Ошибка |
|
21 |
error_errorWhileSortingResult= |
|
22 |
failedToCopyTXMFilesFromTXMINSTALLDIRToTXMHOMEColonP0=** Не удалось скопировать файлы из папки TXMINSTALL в TXMHOME\: {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 |
common_cols = |
|
6 |
common_delete = удалить |
|
7 |
common_description = Описание |
|
8 |
common_fMax = |
|
9 |
common_fMin = |
|
10 |
common_frequency = Частотность |
|
11 |
common_lowestFrequency = Минимальная частотность |
|
12 |
common_numberOfLines = Число строк |
|
13 |
common_ok = OK |
|
14 |
common_property = Свойство |
|
15 |
common_queriesColonP0 = Запросы: {0}. |
|
16 |
common_query = Запрос: |
|
17 |
common_structure = Структура |
|
18 |
common_thresholds = Пороги |
|
19 |
common_units = Единицы |
|
20 |
common_warning = |
|
21 |
|
|
22 |
couldNotCreateTXMHOMEDirectoryColonP0 = ** Не удалось создать папку TXMHOME : {0} |
|
23 |
|
|
24 |
error_error = ** Ошибка: {0} |
|
25 |
error_error2 = Ошибка |
|
26 |
error_errorWhileSortingResult = |
|
27 |
|
|
28 |
failedToCopyTXMFilesFromTXMINSTALLDIRToTXMHOMEColonP0 = ** Не удалось скопировать файлы из папки TXMINSTALL в TXMHOME: {0} |
tmp/org.txm.core/src/java/org/txm/core/messages/TXMCoreMessages.java (revision 1568) | ||
---|---|---|
39 | 39 |
public static String common_units; |
40 | 40 |
public static String common_t; |
41 | 41 |
public static String common_vMax; |
42 |
public static String common_warning; |
|
42 | 43 |
|
43 | 44 |
|
44 | 45 |
|
tmp/org.txm.core/src/java/org/txm/core/messages/messages_fr.properties (revision 1568) | ||
---|---|---|
1 |
#TXM messages generated by the PluginMessagesManager class |
|
2 |
#Tue Dec 18 10:24:08 CET 2018 |
|
3 |
binaryDirectoryP0NotFound=Impossible de trouver le répertoire de corpus binaire {0}. |
|
4 |
cantFindStructuralUnitForMetadataWithIdColon=** Erreur \: pas de structures trouvées pour la métadonnée d'identifiant |
|
5 |
catalogFileNotFoundP0=** Fichier de catalogue introuvable {0}. |
|
6 |
checkingBinaryFormat=Vérification du format du corpus binaire… |
|
7 |
common_absoluteFrequency=Fréquence absolue |
|
8 |
common_cols=Colonnes |
|
9 |
common_delete=Supprimer |
|
10 |
common_description=Description |
|
11 |
common_done=Terminé. |
|
12 |
common_fMax=Fmax |
|
13 |
common_fMin=Fmin |
|
14 |
common_fMinEquals=Fmin\={0} |
|
15 |
common_frequency=Fréquence |
|
16 |
common_lowestFrequency=Fréquence minimale |
|
17 |
common_numberOfLines=Nombre de lignes |
|
18 |
common_ok=OK |
|
19 |
common_properties=Propriétés \: |
|
20 |
common_property=Propriété \: |
|
21 |
common_queriesColonP0=Requêtes \: {0}. |
|
22 |
common_query=Requête |
|
23 |
common_reference=Référence |
|
24 |
common_rows=Lignes |
|
25 |
common_structuralUnitAndProperty=Unité structurelle et propriété |
|
26 |
common_structure=Structure |
|
27 |
common_t=t |
|
28 |
common_thresholds=Seuils |
|
29 |
common_units=Unités |
|
30 |
common_vMax=Vmax |
|
31 |
computingColon=Calcul\: |
|
32 |
connectedToCQP=Connecté à CQP. |
|
33 |
corpusColon=Corpus \: |
|
34 |
corpusColongetLocaleColonCQPIsNotReadyToAnswerColon=Corpus\: getLocale\: CQP n'est pas prêt à répondre \: |
|
35 |
couldNotCreateTXMHOMEDirectoryColonP0=** Échec de la création du dossier TXMHOME {0}. |
|
36 |
couldntReadCorpusColon=** Impossible de lire les données du corpus \: |
|
37 |
cQiClientNotInitialized=** Le client CQi n'est pas initialisé |
|
38 |
dataDirectoryIsMissingColonP0=Le dossier ''data'' {0} est manquant |
|
39 |
doesNotExists=\ n'existe pas. |
|
40 |
encodingColon=, Encodage \: |
|
41 |
endOfCQPWaitTest=Fin du test d'attente de CQP. |
|
42 |
error_error=** Erreur \: {0}. |
|
43 |
error_error2=Erreur |
|
44 |
error_errorWhileSortingResult=** Erreur pendant le tri du résultat. |
|
45 |
eRRORColonExists=** Erreur \: n'existe pas |
|
46 |
errorColonLinkGrplinkAttargetMalformedColonP0=** Erreur \: linkGrp/link/@target mal formé \: {0}. |
|
47 |
errorColonP0=** Erreur \: {0}. |
|
48 |
errorColonP0CorpusDirectoryIsNotConformantToTXM079CorpusBinaryFormatColonCorpusSkipped=** Erreur \: le dossier d''entrée {0} n''est pas conforme au format de corpus binaire de TXM 0.7.9 \: corpus ignoré. |
|
49 |
errorColonP0CorpusDirectoryIsNotConformantToTXMCorpusBinaryFormatColonCorpusSkipped=** Erreur \: le dossier d''entrée {0} n''est pas conforme au format de corpus binaire de TXM \: corpus ignoré. |
|
50 |
eRRORColonRead=** Erreur \: pas d'accès en lecture |
|
51 |
errorColonSkippingTheLoadingOfTheP0Corpus=** Erreur \: le corpus {0} ne sera pas chargé |
|
52 |
errorColonTheConnexionToTheServerFailedColonWrongPortFormat=** La connexion au moteur de recherche a échoué \: le port fourni en paramètre n''est pas un nombre entier\: {0}. |
|
53 |
errorColonThisExceptionShouldNotBeThrown=** Erreur \: cette exception ne devrait pas se lever |
|
54 |
errorColonWhileConnectionToSearchEngineWithTheFollowingParametersColon=** Échec de la connexion au moteur de recherche avec les paramètres suivants \: {0} et {1}. |
|
55 |
errorConfigdirDirColon=** Erreur dans le dossier de configuration \: |
|
56 |
errorDuringWorkspaceInitializationColonP0=** Échec de l''initialisation de l''espace de travail \: {0}. |
|
57 |
errorLoadingWorkspaceFromFileColonP0=** Échec de lecture de l''espace de travail à partir du fichier {0} . |
|
58 |
errorRegDirColon=** Erreur dans le dossier registre \: |
|
59 |
errorWhileConnectingToSearchEngine=** Échec de la connexion au moteur de recherche \: |
|
60 |
errorWhileGettingMetadatasFromBaseimportMetadatasColon=** Erreur lors de la récupération des métadonnées du corpus \: |
|
61 |
errorWhileWaitingForCQP=** Erreur pendant l''attente de CQP \: {0}. |
|
62 |
evaluatingExtensionColonP0FromP1=Évaluation de l''extension\: {0} à partir de {1} |
|
63 |
exceptionColonP0=Exception\: {0} |
|
64 |
failedToAccessStructuralPropertyValues=** Échec de lecture des valeurs de la propriété de structure |
|
65 |
failedToCopyTXMFilesFromTXMINSTALLDIRToTXMHOMEColonP0=** Échec de la copie des fichiers TXM du dossier TXMINSTALL vers le dossier TXMHOME \: {0}. |
|
66 |
failedToCreatePartColon=** Échec de la création de la partie \: |
|
67 |
failedToExec=** Échec de l''exécution de {0} \: {1}. |
|
68 |
failedToExecTaskkillIMCqpserverexeFColon=** Échec de la commande ''taskkill /IM cqpserver.exe /F''\: {0}. |
|
69 |
failedToExecTskillCqpserverexeColon=** Échec de la commande ‘''tskill cqpserver.exe''\: {0}. |
|
70 |
failedToGetLastCQPErrorColon=** Erreur lors de la récupération de la dernière erreur CQP \: |
|
71 |
failedToGetSupValuesOf=** Échec de la récupération des valeurs de structures de |
|
72 |
failedToLoadBaseParametersFromTheP0File=** Impossible de charger les paramètres de corpus depuis le fichier {0}. |
|
73 |
failedToRestorePartition=** Échec de la restauration de la partition |
|
74 |
failedToRestoreSubcorpus=** Échec de la restauration du sous-corpus |
|
75 |
failedToStartMemCqiClientColon=** Impossible de démarrer CQP en mode mémoire. |
|
76 |
file=** Le fichier |
|
77 |
fillImportxmlWithColon=Remplir le fichier 'import.xml' avec \: |
|
78 |
filterManagerErrorColonInitializationP0NotFound=** Erreur d''initialisation du gestionnaire de filtre \: {0} non trouvé. |
|
79 |
fmax=, fmax |
|
80 |
fmin=, fmin |
|
81 |
focusIsEmptyOrNull=Le focus est vide ou nul |
|
82 |
hasNoBase=n'a pas de ‘'corpus racine' |
|
83 |
htmlDirectoryIsMissingColonP0=Le dossier ''HTML'' {0} est manquant |
|
84 |
in=\ dans\t\t\t\t\t\t\t\t |
|
85 |
informationsFromWorkspaceSelfElementNull=Informations de l'espace de travail (selfElement null) |
|
86 |
initializationOfGroovyImportScriptRunner=Initialisation de GroovyImportScriptRunner |
|
87 |
iOColon=IO \: |
|
88 |
isMissing=''{0}'' est introuvable. |
|
89 |
isNotAValidCQPIDForACorpusItMustBeInUppercaseCharacters=\ n'est pas un identifiant de corpus CQP valide. Il doit être en majuscule. |
|
90 |
isNotAValidCQPIdForASubcorpusItMustBeAnUppercaseCharactersFollowedByLowercaseCharacters=\ n'est pas un identifiant de sous-corpus CQP valide. Il doit être en majuscules suivies de caractères minuscules. |
|
91 |
killPsAuxPipeGrepCqpserverPipeAwkP=kill `ps aux | grep cqpserver | awk '/-P |
|
92 |
languageColon=, Langue \: |
|
93 |
loadingExtensions=Chargement des extensions... |
|
94 |
loadingWorkspaceFromFileColonP0=Chargement de l'espace de travail depuis le fichier {0} |
|
95 |
malformedURLFileP0=** URL mal formée \: {0}. |
|
96 |
managerErrorDuringInitializationColonP0NotFound=** Erreur d''initialisation du gestionnaire de catalogue \: {0} non trouvé. |
|
97 |
matchesFound=résultats trouvés. |
|
98 |
noValuesGiven=Pas de valeurs fournies |
|
99 |
noWorkspaceFoundCreatingANewOneP0=** Pas d''espace de travail trouvé, création d''un nouvel espace de travail dans le dossier {0}. |
|
100 |
numberOfMatch=Nombre de matchs |
|
101 |
numberOfSubMatch=Nombre de sous matchs |
|
102 |
orTheEngineWasNotStartedWithTheCommandLineColon=** Le démarrage du serveur CQP a échoué avec la ligne de commande \: {0}. |
|
103 |
pARAMSColonP0=Paramètres \: {0} |
|
104 |
parentDirectoryP0NotFound=Dossier parent ‘'{0}' introuvable. |
|
105 |
print2=/ {print $2}'` |
|
106 |
processing=Traitement en cours… |
|
107 |
processingTextColonP0=Traitement du fichier ‘'{0}'... |
|
108 |
queryingPartitionP0=Requête sur la partition {0} |
|
109 |
queryOnP0ColonP1InfP2=Requête sur {0} \: {1} <- {2} |
|
110 |
queryWasColon=La requête était \: |
|
111 |
readCorpusInfosFromOldImportxmlFileColonP0=Lecture des propriétés du corpus depuis le fichier ‘'import.xml' \: {0} |
|
112 |
readError=** Erreur de lecture |
|
113 |
registryFileIsMissingColonP0=Le dossier 'registry' est manquant |
|
114 |
reorganizingFilesOfP0=réorganisation des fichiers de {0} |
|
115 |
sAXColon=SAX \: |
|
116 |
selectionErrorColonTheCorpus=Erreur de sélection d'objet \: le corpus |
|
117 |
supBeginningExecutionOfP0=> début de l''exécution de {0} |
|
118 |
supEndOfExecution=> fin de l'exécution |
|
119 |
textMetadataColon=Métadonnées de textes \: |
|
120 |
theFocusCannotBeNullOrEmpty=Le focus ne peut pas être vide ou nul. |
|
121 |
theFocusIsEmptyOrNull=** Le focus est vide ou nul. |
|
122 |
theP0PartFocusDoesntBelongToPartitionP1=Il n'y a pas de partie {0} dans la partition {1}. |
|
123 |
ToolboxStatesWorkspaceColonP0=\ Espace de travail \: {0} |
|
124 |
txmDirectoryIsMissingColonP0=Le dossier ‘''txm'' {0} est manquant |
|
125 |
tXMNeedsFoldersColonP0P1P2AndP3=TXM a besoin des dossiers {0}, {1}, {2} et {3}. |
|
126 |
unknownPartitionName=** Nom de partition inconnu. |
|
127 |
v=, v |
|
128 |
warningColonCantLoadCorpus=Avertissement\: le corpus ne peut pas être chargé |
|
129 |
warningColonDuplicateQueryEntryColonP0=Avertissement \: la requête {0} est dupliquée. |
|
130 |
warningColonQueryFailedColonP0=Avertissement \: échec de la requête {0}. |
|
131 |
wrongLoginOrPasswordOrPortColon=Mauvais login, mot de passe, nom de machine ou port dans \: {0}, {1}, {2}, {3}. |
|
132 |
xmlValidationColonP0DoesNotExists=Validation XML \: {0} n''existe pas ? |
|
133 |
xmlValidationColonP0IsADirectory=Validation XML \: {0} est un dossier |
|
134 |
xmlValidationColonP0IsNotReadable=Validation XML \: {0} n''a pas les bon droits de lecture |
|
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 |
ToolboxStatesWorkspaceColonP0 = \ Espace de travail : {0} |
|
6 |
|
|
7 |
binaryDirectoryP0NotFound = Impossible de trouver le répertoire de corpus binaire {0}. |
|
8 |
|
|
9 |
cQiClientNotInitialized = ** Le client CQi n'est pas initialisé |
|
10 |
|
|
11 |
cantFindStructuralUnitForMetadataWithIdColon = ** Erreur : pas de structures trouvées pour la métadonnée d'identifiant |
|
12 |
|
|
13 |
catalogFileNotFoundP0 = ** Fichier de catalogue introuvable {0}. |
|
14 |
|
|
15 |
checkingBinaryFormat = Vérification du format du corpus binaire… |
|
16 |
|
|
17 |
common_absoluteFrequency = Fréquence absolue |
|
18 |
common_cols = Colonnes |
|
19 |
common_delete = Supprimer |
|
20 |
common_description = Description |
|
21 |
common_done = Terminé. |
|
22 |
common_fMax = Fmax |
|
23 |
common_fMin = Fmin |
|
24 |
common_fMinEquals = Fmin={0} |
|
25 |
common_frequency = Fréquence |
|
26 |
common_lowestFrequency = Fréquence minimale |
|
27 |
common_numberOfLines = Nombre de lignes |
|
28 |
common_ok = OK |
|
29 |
common_properties = Propriétés : |
|
30 |
common_property = Propriété : |
|
31 |
common_queriesColonP0 = Requêtes : {0}. |
|
32 |
common_query = Requête |
|
33 |
common_reference = Référence |
|
34 |
common_rows = Lignes |
|
35 |
common_structuralUnitAndProperty = Unité structurelle et propriété |
|
36 |
common_structure = Structure |
|
37 |
common_t = t |
|
38 |
common_thresholds = Seuils |
|
39 |
common_units = Unités |
|
40 |
common_vMax = Vmax |
|
41 |
common_warning = Attention |
|
42 |
|
|
43 |
computingColon = Calcul: |
|
44 |
|
|
45 |
connectedToCQP = Connecté à CQP. |
|
46 |
|
|
47 |
corpusColon = Corpus : |
|
48 |
|
|
49 |
corpusColongetLocaleColonCQPIsNotReadyToAnswerColon = Corpus: getLocale: CQP n'est pas prêt à répondre : |
|
50 |
|
|
51 |
couldNotCreateTXMHOMEDirectoryColonP0 = ** Échec de la création du dossier TXMHOME {0}. |
|
52 |
|
|
53 |
couldntReadCorpusColon = ** Impossible de lire les données du corpus : |
|
54 |
|
|
55 |
dataDirectoryIsMissingColonP0 = Le dossier ''data'' {0} est manquant |
|
56 |
|
|
57 |
doesNotExists = \ n'existe pas. |
|
58 |
|
|
59 |
eRRORColonExists = ** Erreur : n'existe pas |
|
60 |
|
|
61 |
eRRORColonRead = ** Erreur : pas d'accès en lecture |
|
62 |
|
|
63 |
encodingColon = , Encodage : |
|
64 |
|
|
65 |
endOfCQPWaitTest = Fin du test d'attente de CQP. |
|
66 |
|
|
67 |
errorColonLinkGrplinkAttargetMalformedColonP0 = ** Erreur : linkGrp/link/@target mal formé : {0}. |
|
68 |
|
|
69 |
errorColonP0 = ** Erreur : {0}. |
|
70 |
|
|
71 |
errorColonP0CorpusDirectoryIsNotConformantToTXM079CorpusBinaryFormatColonCorpusSkipped = ** Erreur : le dossier d''entrée {0} n''est pas conforme au format de corpus binaire de TXM 0.7.9 : corpus ignoré. |
|
72 |
|
|
73 |
errorColonP0CorpusDirectoryIsNotConformantToTXMCorpusBinaryFormatColonCorpusSkipped = ** Erreur : le dossier d''entrée {0} n''est pas conforme au format de corpus binaire de TXM : corpus ignoré. |
|
74 |
|
|
75 |
errorColonSkippingTheLoadingOfTheP0Corpus = ** Erreur : le corpus {0} ne sera pas chargé |
|
76 |
|
|
77 |
errorColonTheConnexionToTheServerFailedColonWrongPortFormat = ** La connexion au moteur de recherche a échoué : le port fourni en paramètre n''est pas un nombre entier: {0}. |
|
78 |
|
|
79 |
errorColonThisExceptionShouldNotBeThrown = ** Erreur : cette exception ne devrait pas se lever |
|
80 |
|
|
81 |
errorColonWhileConnectionToSearchEngineWithTheFollowingParametersColon = ** Échec de la connexion au moteur de recherche avec les paramètres suivants : {0} et {1}. |
|
82 |
|
|
83 |
errorConfigdirDirColon = ** Erreur dans le dossier de configuration : |
|
84 |
|
|
85 |
errorDuringWorkspaceInitializationColonP0 = ** Échec de l''initialisation de l''espace de travail : {0}. |
|
86 |
|
|
87 |
errorLoadingWorkspaceFromFileColonP0 = ** Échec de lecture de l''espace de travail à partir du fichier {0} . |
|
88 |
|
|
89 |
errorRegDirColon = ** Erreur dans le dossier registre : |
|
90 |
|
|
91 |
errorWhileConnectingToSearchEngine = ** Échec de la connexion au moteur de recherche : |
|
92 |
|
|
93 |
errorWhileGettingMetadatasFromBaseimportMetadatasColon = ** Erreur lors de la récupération des métadonnées du corpus : |
|
94 |
|
|
95 |
errorWhileWaitingForCQP = ** Erreur pendant l''attente de CQP : {0}. |
|
96 |
|
|
97 |
error_error = ** Erreur : {0}. |
|
98 |
error_error2 = Erreur |
|
99 |
error_errorWhileSortingResult = ** Erreur pendant le tri du résultat. |
|
100 |
|
|
101 |
evaluatingExtensionColonP0FromP1 = Évaluation de l''extension: {0} à partir de {1} |
|
102 |
|
|
103 |
exceptionColonP0 = Exception: {0} |
|
104 |
|
|
105 |
failedToAccessStructuralPropertyValues = ** Échec de lecture des valeurs de la propriété de structure |
|
106 |
|
|
107 |
failedToCopyTXMFilesFromTXMINSTALLDIRToTXMHOMEColonP0 = ** Échec de la copie des fichiers TXM du dossier TXMINSTALL vers le dossier TXMHOME : {0}. |
|
108 |
|
|
109 |
failedToCreatePartColon = ** Échec de la création de la partie : |
|
110 |
|
|
111 |
failedToExec = ** Échec de l''exécution de {0} : {1}. |
|
112 |
|
|
113 |
failedToExecTaskkillIMCqpserverexeFColon = ** Échec de la commande ''taskkill /IM cqpserver.exe /F'': {0}. |
|
114 |
|
|
115 |
failedToExecTskillCqpserverexeColon = ** Échec de la commande ‘''tskill cqpserver.exe'': {0}. |
|
116 |
|
|
117 |
failedToGetLastCQPErrorColon = ** Erreur lors de la récupération de la dernière erreur CQP : |
|
118 |
|
|
119 |
failedToGetSupValuesOf = ** Échec de la récupération des valeurs de structures de |
|
120 |
|
|
121 |
failedToLoadBaseParametersFromTheP0File = ** Impossible de charger les paramètres de corpus depuis le fichier {0}. |
|
122 |
|
|
123 |
failedToRestorePartition = ** Échec de la restauration de la partition |
|
124 |
|
|
125 |
failedToRestoreSubcorpus = ** Échec de la restauration du sous-corpus |
|
126 |
|
|
127 |
failedToStartMemCqiClientColon = ** Impossible de démarrer CQP en mode mémoire. |
|
128 |
|
|
129 |
file = ** Le fichier |
|
130 |
|
|
131 |
fillImportxmlWithColon = Remplir le fichier 'import.xml' avec : |
|
132 |
|
|
133 |
filterManagerErrorColonInitializationP0NotFound = ** Erreur d''initialisation du gestionnaire de filtre : {0} non trouvé. |
|
134 |
|
|
135 |
fmax = , fmax |
|
136 |
|
|
137 |
fmin = , fmin |
|
138 |
|
|
139 |
focusIsEmptyOrNull = Le focus est vide ou nul |
|
140 |
|
|
141 |
hasNoBase = n'a pas de ‘'corpus racine' |
|
142 |
|
|
143 |
htmlDirectoryIsMissingColonP0 = Le dossier ''HTML'' {0} est manquant |
|
144 |
|
|
145 |
iOColon = IO : |
|
146 |
|
|
147 |
in = \ dans\ \ \ \ \ \ \ \ |
|
148 |
|
|
149 |
informationsFromWorkspaceSelfElementNull = Informations de l'espace de travail (selfElement null) |
|
150 |
|
|
151 |
initializationOfGroovyImportScriptRunner = Initialisation de GroovyImportScriptRunner |
|
152 |
|
|
153 |
isMissing = ''{0}'' est introuvable. |
|
154 |
|
|
155 |
isNotAValidCQPIDForACorpusItMustBeInUppercaseCharacters = \ n'est pas un identifiant de corpus CQP valide. Il doit être en majuscule. |
|
156 |
|
|
157 |
isNotAValidCQPIdForASubcorpusItMustBeAnUppercaseCharactersFollowedByLowercaseCharacters = \ n'est pas un identifiant de sous-corpus CQP valide. Il doit être en majuscules suivies de caractères minuscules. |
|
158 |
|
|
159 |
killPsAuxPipeGrepCqpserverPipeAwkP = kill `ps aux | grep cqpserver | awk '/-P |
|
160 |
|
|
161 |
languageColon = , Langue : |
|
162 |
|
|
163 |
loadingExtensions = Chargement des extensions... |
|
164 |
|
|
165 |
loadingWorkspaceFromFileColonP0 = Chargement de l'espace de travail depuis le fichier {0} |
|
166 |
|
|
167 |
malformedURLFileP0 = ** URL mal formée : {0}. |
|
168 |
|
|
169 |
managerErrorDuringInitializationColonP0NotFound = ** Erreur d''initialisation du gestionnaire de catalogue : {0} non trouvé. |
|
170 |
|
|
171 |
matchesFound = résultats trouvés. |
|
172 |
|
|
173 |
noValuesGiven = Pas de valeurs fournies |
|
174 |
|
|
175 |
noWorkspaceFoundCreatingANewOneP0 = ** Pas d''espace de travail trouvé, création d''un nouvel espace de travail dans le dossier {0}. |
|
176 |
|
|
177 |
numberOfMatch = Nombre de matchs |
|
178 |
|
|
179 |
numberOfSubMatch = Nombre de sous matchs |
|
180 |
|
|
181 |
orTheEngineWasNotStartedWithTheCommandLineColon = ** Le démarrage du serveur CQP a échoué avec la ligne de commande : {0}. |
|
182 |
|
|
183 |
pARAMSColonP0 = Paramètres : {0} |
|
184 |
|
|
185 |
parentDirectoryP0NotFound = Dossier parent ‘'{0}' introuvable. |
|
186 |
|
|
187 |
print2 = / {print $2}'` |
|
188 |
|
|
189 |
processing = Traitement en cours… |
|
190 |
|
|
191 |
processingTextColonP0 = Traitement du fichier ‘'{0}'... |
|
192 |
|
|
193 |
queryOnP0ColonP1InfP2 = Requête sur {0} : {1} <- {2} |
|
194 |
|
|
195 |
queryWasColon = La requête était : |
|
196 |
|
|
197 |
queryingPartitionP0 = Requête sur la partition {0} |
|
198 |
|
|
199 |
readCorpusInfosFromOldImportxmlFileColonP0 = Lecture des propriétés du corpus depuis le fichier ‘'import.xml' : {0} |
|
200 |
|
|
201 |
readError = ** Erreur de lecture |
|
202 |
|
|
203 |
registryFileIsMissingColonP0 = Le dossier 'registry' est manquant |
|
204 |
|
|
205 |
reorganizingFilesOfP0 = réorganisation des fichiers de {0} |
|
206 |
|
|
207 |
sAXColon = SAX : |
|
208 |
|
|
209 |
selectionErrorColonTheCorpus = Erreur de sélection d'objet : le corpus |
|
210 |
|
|
211 |
supBeginningExecutionOfP0 = > début de l''exécution de {0} |
|
212 |
|
|
213 |
supEndOfExecution = > fin de l'exécution |
|
214 |
|
|
215 |
tXMNeedsFoldersColonP0P1P2AndP3 = TXM a besoin des dossiers {0}, {1}, {2} et {3}. |
|
216 |
|
|
217 |
textMetadataColon = Métadonnées de textes : |
|
218 |
|
|
219 |
theFocusCannotBeNullOrEmpty = Le focus ne peut pas être vide ou nul. |
|
220 |
|
|
221 |
theFocusIsEmptyOrNull = ** Le focus est vide ou nul. |
|
222 |
|
|
223 |
theP0PartFocusDoesntBelongToPartitionP1 = Il n'y a pas de partie {0} dans la partition {1}. |
|
224 |
|
|
225 |
txmDirectoryIsMissingColonP0 = Le dossier ‘''txm'' {0} est manquant |
|
226 |
|
|
227 |
unknownPartitionName = ** Nom de partition inconnu. |
|
228 |
|
|
229 |
v = , v |
|
230 |
|
|
231 |
warningColonCantLoadCorpus = Avertissement: le corpus ne peut pas être chargé |
|
232 |
|
|
233 |
warningColonDuplicateQueryEntryColonP0 = Avertissement : la requête {0} est dupliquée. |
|
234 |
|
|
235 |
warningColonQueryFailedColonP0 = Avertissement : échec de la requête {0}. |
|
236 |
|
|
237 |
wrongLoginOrPasswordOrPortColon = Mauvais login, mot de passe, nom de machine ou port dans : {0}, {1}, {2}, {3}. |
|
238 |
|
|
239 |
xmlValidationColonP0DoesNotExists = Validation XML : {0} n''existe pas ? |
|
240 |
|
|
241 |
xmlValidationColonP0IsADirectory = Validation XML : {0} est un dossier |
|
242 |
|
|
243 |
xmlValidationColonP0IsNotReadable = Validation XML : {0} n''a pas les bon droits de lecture |
Also available in: Unified diff