Révision 520
tmp/org.txm.statsengine.r.core/build.properties (revision 520) | ||
---|---|---|
1 | 1 |
output.. = bin/ |
2 | 2 |
bin.includes = META-INF/,\ |
3 |
plugin.xml |
|
3 |
plugin.xml,\ |
|
4 |
. |
|
5 |
source.. = src/ |
tmp/org.txm.statsengine.r.core/META-INF/MANIFEST.MF (revision 520) | ||
---|---|---|
3 | 3 |
Bundle-Name: R Statistics Engine Core |
4 | 4 |
Bundle-SymbolicName: org.txm.statsengine.r.core;singleton:=true |
5 | 5 |
Bundle-Version: 1.0.0.qualifier |
6 |
Require-Bundle: org.txm.utils;bundle-version="1.0.0";visibility:=reexport, |
|
6 |
Require-Bundle: org.txm.statsengine.core;bundle-version="1.0.0";visibility:=reexport, |
|
7 |
org.txm.core;bundle-version="0.7.0";visibility:=reexport, |
|
8 |
org.txm.libs.rserve;bundle-version="0.0.0";visibility:=reexport, |
|
9 |
org.txm.utils;bundle-version="1.0.0";visibility:=reexport, |
|
7 | 10 |
org.eclipse.osgi, |
8 | 11 |
org.eclipse.core.runtime;visibility:=reexport, |
9 |
org.txm.statsengine.core;bundle-version="1.0.0";visibility:=reexport, |
|
10 |
org.txm.libs.colt;bundle-version="1.0.0";visibility:=reexport, |
|
11 |
org.txm.libs.rserve;bundle-version="0.0.0";visibility:=reexport, |
|
12 |
org.txm.core;bundle-version="0.7.0";visibility:=reexport |
|
12 |
org.txm.libs.colt;bundle-version="1.0.0";visibility:=reexport |
|
13 | 13 |
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 |
14 | 14 |
Export-Package: org.txm.statsengine.r.core, |
15 | 15 |
org.txm.statsengine.r.core.data, |
... | ... | |
18 | 18 |
org.txm.statsengine.r.core.preferences, |
19 | 19 |
org.txm.statsengine.r.core.rcolt |
20 | 20 |
Bundle-Vendor: Textometrie.org |
21 |
Bundle-ClassPath: . |
|
22 |
Bundle-ActivationPolicy: lazy |
tmp/org.txm.libs.batik/META-INF/MANIFEST.MF (revision 520) | ||
---|---|---|
2 | 2 |
Bundle-ManifestVersion: 2 |
3 | 3 |
Bundle-Name: Batik |
4 | 4 |
Bundle-SymbolicName: org.txm.libs.batik |
5 |
Bundle-ClassPath: batik-anim.jar, |
|
5 |
Bundle-ClassPath: ., |
|
6 |
batik-anim.jar, |
|
6 | 7 |
batik-awt-util.jar, |
7 | 8 |
batik-bridge.jar, |
8 | 9 |
batik-codec.jar, |
tmp/org.txm.libs.batik/build.properties (revision 520) | ||
---|---|---|
19 | 19 |
build.properties,\ |
20 | 20 |
js.jar,\ |
21 | 21 |
xml-apis-ext.jar,\ |
22 |
xml-apis.jar |
|
22 |
xml-apis.jar,\ |
|
23 |
. |
tmp/org.txm.rcp/src/main/java/org/txm/rcp/perspective/TXMPerspective.java (revision 520) | ||
---|---|---|
56 | 56 |
String editorArea = layout.getEditorArea(); |
57 | 57 |
layout.setEditorAreaVisible(true); |
58 | 58 |
|
59 |
IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT, 0.25f, editorArea); //$NON-NLS-1$
|
|
59 |
IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT, 0.20f, editorArea); //$NON-NLS-1$
|
|
60 | 60 |
left.addView(CorporaView.ID); |
61 | 61 |
left.addView(Explorer.ID); |
62 | 62 |
|
63 | 63 |
layout.getViewLayout(CorporaView.ID).setCloseable(false); |
64 | 64 |
layout.getViewLayout(Explorer.ID).setCloseable(false); |
65 | 65 |
|
66 |
IFolderLayout bottom = layout.createFolder("bottom", IPageLayout.BOTTOM, 0.66f, editorArea); //$NON-NLS-1$
|
|
66 |
IFolderLayout bottom = layout.createFolder("bottom", IPageLayout.BOTTOM, 0.7f, editorArea); //$NON-NLS-1$
|
|
67 | 67 |
// bottom.addView(IPageLayout.ID_OUTLINE); |
68 | 68 |
bottom.addView(IConsoleConstants.ID_CONSOLE_VIEW); |
69 | 69 |
//bottom.addView("org.eclipse.ui.views.ProgressView"); //$NON-NLS-1$ |
tmp/org.txm.libs.colt/META-INF/MANIFEST.MF (revision 520) | ||
---|---|---|
29 | 29 |
hep.aida, |
30 | 30 |
hep.aida.bin, |
31 | 31 |
hep.aida.ref |
32 |
Bundle-ClassPath: ., |
|
33 |
lib/colt-1.2.0.jar |
tmp/org.txm.libs.colt/build.properties (revision 520) | ||
---|---|---|
1 | 1 |
bin.includes = META-INF/,\ |
2 | 2 |
about.html,\ |
3 |
lib/colt-1.2.0.jar |
|
3 |
lib/colt-1.2.0.jar,\ |
|
4 |
. |
tmp/org.txm.searchengine.core/src/org/txm/searchengine/core/SearchEngines.java (revision 520) | ||
---|---|---|
1 | 1 |
package org.txm.searchengine.core; |
2 | 2 |
|
3 |
import org.eclipse.core.runtime.CoreException; |
|
4 | 3 |
import org.eclipse.core.runtime.IConfigurationElement; |
5 | 4 |
import org.eclipse.core.runtime.IProgressMonitor; |
6 | 5 |
import org.eclipse.core.runtime.Platform; |
... | ... | |
11 | 10 |
|
12 | 11 |
public class SearchEngines extends EnginesManager<SearchEngine> { |
13 | 12 |
|
14 |
@Override |
|
15 |
public boolean startEngines(IProgressMonitor monitor) { |
|
16 |
|
|
17 |
for (Engine e : engines.values()) { |
|
18 |
SearchEngine se = (SearchEngine)e; |
|
19 |
//System.out.println("Starting "+ se.getName()+" searchengine."); |
|
20 |
if (monitor != null) monitor.subTask("Starting "+ se.getName()+" searchengine."); |
|
21 |
try { |
|
22 |
se.start(monitor); |
|
23 |
} catch (Exception e2) { |
|
24 |
System.out.println("Error: fail to start SearchEngine: "+se.getName()+": "+e2.getLocalizedMessage()); |
|
25 |
} |
|
26 |
} |
|
27 |
return true; |
|
28 |
} |
|
29 |
|
|
30 |
@Override |
|
31 |
public boolean stopEngines() { |
|
32 |
for (Engine e : engines.values()) { |
|
33 |
SearchEngine se = (SearchEngine)e; |
|
34 |
System.out.println("Stoping "+ se.getName()+" searchengine."); |
|
35 |
try { |
|
36 |
se.stop(); |
|
37 |
} catch (Exception e2) { |
|
38 |
System.out.println("Error: fail to stop SearchEngine: "+se.getName()+": "+e2.getLocalizedMessage()); |
|
39 |
} |
|
40 |
} |
|
41 |
return true; |
|
42 |
} |
|
43 |
|
|
44 |
@Override |
|
45 |
public EngineType getEnginesType() { |
|
46 |
return EngineType.SEARCH; |
|
47 |
} |
|
48 |
|
|
49 | 13 |
public static SearchEngine getCQPEngine() { |
50 | 14 |
return (SearchEngine) Toolbox.getEngineManager(EngineType.SEARCH).getEngine("CQP"); |
51 | 15 |
} |
... | ... | |
56 | 20 |
|
57 | 21 |
@Override |
58 | 22 |
protected boolean fetchEngines() { |
59 |
|
|
23 |
|
|
60 | 24 |
IConfigurationElement[] contributions = Platform.getExtensionRegistry().getConfigurationElementsFor(SearchEngine.EXTENSION_POINT_ID); |
61 | 25 |
//System.out.println("search engine contributions: "+SearchEngine.EXTENSION_POINT_ID); |
62 | 26 |
for (int i = 0; i < contributions.length; i++) { |
... | ... | |
72 | 36 |
e.printStackTrace(); |
73 | 37 |
} |
74 | 38 |
} |
75 |
|
|
39 |
|
|
76 | 40 |
return engines.size() > 0; |
77 | 41 |
} |
42 |
|
|
43 |
@Override |
|
44 |
public EngineType getEnginesType() { |
|
45 |
return EngineType.SEARCH; |
|
46 |
} |
|
47 |
|
|
48 |
@Override |
|
49 |
public boolean startEngines(IProgressMonitor monitor) { |
|
50 |
|
|
51 |
for (Engine e : engines.values()) { |
|
52 |
SearchEngine se = (SearchEngine)e; |
|
53 |
//System.out.println("Starting "+ se.getName()+" searchengine."); |
|
54 |
if (monitor != null) monitor.subTask("Starting "+ se.getName()+" searchengine."); |
|
55 |
try { |
|
56 |
se.start(monitor); |
|
57 |
} catch (Exception e2) { |
|
58 |
System.out.println("Error: fail to start SearchEngine: "+se.getName()+": "+e2.getLocalizedMessage()); |
|
59 |
} |
|
60 |
} |
|
61 |
return true; |
|
62 |
} |
|
63 |
|
|
64 |
@Override |
|
65 |
public boolean stopEngines() { |
|
66 |
|
|
67 |
for (Engine e : engines.values()) { |
|
68 |
|
|
69 |
SearchEngine se = (SearchEngine)e; |
|
70 |
System.out.println("Stoping "+ se.getName()+" searchengine."); |
|
71 |
try { |
|
72 |
se.stop(); |
|
73 |
} catch (Exception e2) { |
|
74 |
System.out.println("Error: fail to stop SearchEngine: "+se.getName()+": "+e2.getLocalizedMessage()); |
|
75 |
} |
|
76 |
} |
|
77 |
return true; |
|
78 |
} |
|
78 | 79 |
} |
tmp/org.txm.libs.groovy-all/META-INF/MANIFEST.MF (revision 520) | ||
---|---|---|
116 | 116 |
org.codehaus.groovy.vmplugin.v5, |
117 | 117 |
org.codehaus.groovy.vmplugin.v6 |
118 | 118 |
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 |
119 |
Bundle-ClassPath: ., |
|
120 |
lib/groovy-all-2.3.3.jar |
tmp/org.txm.libs.groovy-all/build.properties (revision 520) | ||
---|---|---|
1 | 1 |
bin.includes = META-INF/,\ |
2 |
lib/ |
|
2 |
lib/,\ |
|
3 |
lib/groovy-all-2.3.3.jar,\ |
|
4 |
. |
tmp/org.txm.referencer.rcp/build.properties (revision 520) | ||
---|---|---|
3 | 3 |
bin.includes = META-INF/,\ |
4 | 4 |
.,\ |
5 | 5 |
plugin.xml,\ |
6 |
icons/ |
|
6 |
icons/,\ |
|
7 |
OSGI-INF/ |
tmp/org.txm.referencer.rcp/OSGI-INF/l10n/bundle.properties (revision 520) | ||
---|---|---|
1 |
#Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/) |
|
2 |
# |
|
3 |
#Thu Jul 25 14:46:50 CEST 2013 |
|
4 |
|
|
5 |
Bundle-Name = org.txm.referencer.rcp |
|
6 |
|
|
7 |
Bundle-Vendor = Textometrie.org |
|
8 |
|
|
9 |
category.description = Textometry Functions |
|
10 |
category.name = TXM |
|
11 |
category.name.0 = TXM |
|
12 |
category.name.1 = TXM |
|
13 |
category.name.2 = TXM |
|
14 |
category.name.3 = TXM |
|
15 |
|
|
16 |
command.label = Open in browser... |
|
17 |
command.label.0 = CNR + CSV |
|
18 |
command.label.1 = XML/w + CSV |
|
19 |
command.label.100 = Find Previous |
|
20 |
command.label.101 = Chart... |
|
21 |
command.label.102 = Send to concordances |
|
22 |
command.label.103 = Send to progression |
|
23 |
command.label.105 = Merge lines |
|
24 |
command.label.106 = Export table to re-import |
|
25 |
command.label.107 = Import table |
|
26 |
command.label.108 = Referencer |
|
27 |
command.label.109 = Incremental Find |
|
28 |
command.label.110 = Incremental Find (reverse) |
|
29 |
command.label.111 = Save Annotation |
|
30 |
command.label.113 = Goto line |
|
31 |
command.label.114 = Export |
|
32 |
command.label.116 = Classification |
|
33 |
command.label.117 = Send to R |
|
34 |
command.label.118 = Export |
|
35 |
command.label.12 = XML-TEI TXM |
|
36 |
command.label.120 = Classification |
|
37 |
command.label.121 = Send to R |
|
38 |
command.label.122 = Create new file |
|
39 |
command.label.123 = Create new folder |
|
40 |
command.label.124 = Export |
|
41 |
command.label.126 = Classification |
|
42 |
command.label.127 = Send to R |
|
43 |
command.label.128 = Send to index |
|
44 |
command.label.129 = Copy |
|
45 |
command.label.13 = Load TXM 0.5 corpus |
|
46 |
command.label.130 = Paste |
|
47 |
command.label.131 = Corpus |
|
48 |
command.label.132 = R |
|
49 |
command.label.133 = Open URL |
|
50 |
command.label.134 = Corpus |
|
51 |
command.label.135 = File |
|
52 |
command.label.136 = Query |
|
53 |
command.label.139 = Other... |
|
54 |
command.label.14 = About TXM |
|
55 |
command.label.140 = Show Line Numbers |
|
56 |
command.label.141 = Graphics shortcuts |
|
57 |
command.label.142 = New session |
|
58 |
command.label.143 = Submit |
|
59 |
command.label.144 = Toggle Show Whitespace Characters |
|
60 |
command.label.145 = Revert to saved |
|
61 |
command.label.146 = Update corpus |
|
62 |
command.label.147 = Recode corpus |
|
63 |
command.label.149 = Send to cooccurrence |
|
64 |
command.label.15 = Search and Replace... |
|
65 |
command.label.150 = Knowledge repositories |
|
66 |
command.label.151 = Save Annotation |
|
67 |
command.label.152 = Update corpus |
|
68 |
command.label.153 = Recode corpus |
|
69 |
command.label.154 = Save Annotation |
|
70 |
command.label.155 = Update corpus |
|
71 |
command.label.156 = Execute a Groovy file |
|
72 |
command.label.157 = New window |
|
73 |
command.label.158 = New |
|
74 |
command.label.159 = Search and Replace |
|
75 |
command.label.16 = Undo |
|
76 |
command.label.160 = Find previous |
|
77 |
command.label.161 = Find next |
|
78 |
command.label.162 = Find incremental |
|
79 |
command.label.163 = Find incremental (reverse) |
|
80 |
command.label.164 = Revert to save |
|
81 |
command.label.165 = Select All |
|
82 |
command.label.166 = Goto |
|
83 |
command.label.167 = Hyperlink |
|
84 |
command.label.168 = Show line numbers |
|
85 |
command.label.169 = Show Control characters |
|
86 |
command.label.17 = Redo |
|
87 |
command.label.170 = Execute current script |
|
88 |
command.label.171 = Execute selected text |
|
89 |
command.label.172 = Execute a Groovy script |
|
90 |
command.label.173 = Welcome |
|
91 |
command.label.174 = Download the manual - PDF |
|
92 |
command.label.175 = Test all commands |
|
93 |
command.label.176 = Vue interne |
|
94 |
command.label.177 = Macro |
|
95 |
command.label.178 = FAQ |
|
96 |
command.label.179 = Contribuer |
|
97 |
command.label.18 = Cut |
|
98 |
command.label.180 = Test imports |
|
99 |
command.label.181 = Check for updates |
|
100 |
command.label.182 = Add an extension |
|
101 |
command.label.183 = Vue interne |
|
102 |
command.label.184 = Recode corpus |
|
103 |
command.label.185 = Vue interne |
|
104 |
command.label.186 = Edit |
|
105 |
command.label.187 = Create Macro from template |
|
106 |
command.label.188 = Copy to clipboard |
|
107 |
command.label.189 = Synchronize values |
|
108 |
command.label.19 = Copy |
|
109 |
command.label.190 = Informations |
|
110 |
command.label.191 = Add |
|
111 |
command.label.192 = Delete |
|
112 |
command.label.193 = Annotations in XML-TEI format... |
|
113 |
command.label.2 = XML Factiva |
|
114 |
command.label.20 = Paste |
|
115 |
command.label.21 = Open |
|
116 |
command.label.22 = Open in HTML browser |
|
117 |
command.label.23 = Run Script |
|
118 |
command.label.24 = Properties |
|
119 |
command.label.25 = Execute Text Selection |
|
120 |
command.label.27 = Delete |
|
121 |
command.label.28 = Select All |
|
122 |
command.label.29 = Save as... |
|
123 |
command.label.3 = XML Transcriber + CSV |
|
124 |
command.label.30 = Character encoding |
|
125 |
command.label.31 = Nils |
|
126 |
command.label.32 = CooccurrencesList |
|
127 |
command.label.33 = Macros documentation |
|
128 |
command.label.34 = Add a third-party extension |
|
129 |
command.label.35 = txm-users wiki |
|
130 |
command.label.39 = CooccurrencesList |
|
131 |
command.label.4 = Parameters |
|
132 |
command.label.40 = Replay |
|
133 |
command.label.41 = CooccurrencesList |
|
134 |
command.label.43 = Console |
|
135 |
command.label.44 = Delete File |
|
136 |
command.label.45 = Edit... |
|
137 |
command.label.46 = Copy File |
|
138 |
command.label.47 = Cut File |
|
139 |
command.label.48 = Description |
|
140 |
command.label.49 = Description |
|
141 |
command.label.5 = XML-TEI BFM |
|
142 |
command.label.50 = Load |
|
143 |
command.label.51 = Data... |
|
144 |
command.label.52 = Keyboard shortcuts |
|
145 |
command.label.53 = Report a bug |
|
146 |
command.label.54 = Ask for enhancement |
|
147 |
command.label.55 = Subscribe to txm-users mailing list |
|
148 |
command.label.56 = TXM website |
|
149 |
command.label.57 = Paste File |
|
150 |
command.label.58 = Export data |
|
151 |
command.label.59 = Restart engines |
|
152 |
command.label.6 = Exit |
|
153 |
command.label.60 = Clipboard |
|
154 |
command.label.61 = Hyperbase |
|
155 |
command.label.62 = Alceste |
|
156 |
command.label.63 = Read the manual |
|
157 |
command.label.64 = Factiva TXT |
|
158 |
command.label.65 = Delete |
|
159 |
command.label.66 = Index |
|
160 |
command.label.67 = Install TreeTagger |
|
161 |
command.label.68 = Online manual - HTML |
|
162 |
command.label.69 = Textometrie project web site |
|
163 |
command.label.7 = Sub-Corpus |
|
164 |
command.label.70 = TXM manuals directory |
|
165 |
command.label.71 = Edition |
|
166 |
command.label.72 = Textometrie project documentation |
|
167 |
command.label.73 = Send to concordance |
|
168 |
command.label.74 = Send to concordance |
|
169 |
command.label.75 = Change language |
|
170 |
command.label.76 = Chat #txm |
|
171 |
command.label.77 = Send to index |
|
172 |
command.label.78 = TXT + CSV |
|
173 |
command.label.79 = Lexicon |
|
174 |
command.label.8 = Partition |
|
175 |
command.label.81 = XML-TMX |
|
176 |
command.label.82 = CQP |
|
177 |
command.label.83 = New file |
|
178 |
command.label.84 = Lexicon |
|
179 |
command.label.85 = CA |
|
180 |
command.label.86 = Save |
|
181 |
command.label.87 = ODT/DOC/RTF + CSV |
|
182 |
command.label.88 = Save All |
|
183 |
command.label.89 = LexicalTable |
|
184 |
command.label.9 = XML-TEI Frantext |
|
185 |
command.label.90 = Close |
|
186 |
command.label.92 = XML-XTZ + CSV |
|
187 |
command.label.93 = Close all |
|
188 |
command.label.94 = LexicalTable |
|
189 |
command.label.98 = Find next |
|
190 |
command.label.99 = Send to progression |
|
191 |
command.name = Open a file |
|
192 |
command.name.0 = Run Script |
|
193 |
command.name.1 = Create Sub-Corpus |
|
194 |
command.name.10 = Execute Text Selection as Groovy code |
|
195 |
command.name.100 = Recode corpus |
|
196 |
command.name.101 = Copy |
|
197 |
command.name.102 = Reload |
|
198 |
command.name.103 = Informations |
|
199 |
command.name.104 = Delete |
|
200 |
command.name.105 = Add |
|
201 |
command.name.106 = Edit selected file |
|
202 |
command.name.107 = Export annotations in XML-TEI stand-off... |
|
203 |
command.name.108 = Rename |
|
204 |
command.name.11 = Add Project |
|
205 |
command.name.12 = Remove Project |
|
206 |
command.name.13 = Add Base |
|
207 |
command.name.14 = Remove Base |
|
208 |
command.name.15 = Add Text |
|
209 |
command.name.16 = Remove Text |
|
210 |
command.name.17 = Build Corpus |
|
211 |
command.name.18 = Remove all corpus |
|
212 |
command.name.19 = Open the test editor |
|
213 |
command.name.20 = Set SearchEngine |
|
214 |
command.name.21 = ExecuteScript |
|
215 |
command.name.22 = Run Script Import |
|
216 |
command.name.23 = Description |
|
217 |
command.name.24 = Export data |
|
218 |
command.name.25 = Restart |
|
219 |
command.name.26 = Delete |
|
220 |
command.name.28 = Clipboard (FR) |
|
221 |
command.name.29 = Text |
|
222 |
command.name.3 = Convert old binary corpus |
|
223 |
command.name.30 = IndexToConcordance |
|
224 |
command.name.31 = Change language |
|
225 |
command.name.33 = ParaBrowser |
|
226 |
command.name.34 = ExportSVG |
|
227 |
command.name.36 = ComputeLexicalTable |
|
228 |
command.name.37 = Delete |
|
229 |
command.name.41 = CoocToConc |
|
230 |
command.name.42 = IndexToProgress |
|
231 |
command.name.43 = IndexToLexicalTable |
|
232 |
command.name.44 = References |
|
233 |
command.name.47 = Create new file |
|
234 |
command.name.48 = Create new folder |
|
235 |
command.name.50 = ExecuteText |
|
236 |
command.name.51 = Settings |
|
237 |
command.name.52 = Corpus in binary format... |
|
238 |
command.name.54 = Classification |
|
239 |
command.name.55 = Copy |
|
240 |
command.name.56 = Paste |
|
241 |
command.name.57 = RefToConc |
|
242 |
command.name.58 = LexiconToIndex |
|
243 |
command.name.59 = OpenEmptyTextEditor |
|
244 |
command.name.6 = Compute Correspondance Analysis |
|
245 |
command.name.60 = SubmitRcode |
|
246 |
command.name.61 = show svg help |
|
247 |
command.name.62 = OpenImportForm |
|
248 |
command.name.63 = Open Biblio |
|
249 |
command.name.64 = CopySelection |
|
250 |
command.name.65 = IndexToCooccurrence |
|
251 |
command.name.66 = Execute a Groovy file |
|
252 |
command.name.67 = SaveAs |
|
253 |
command.name.68 = DeleteFile |
|
254 |
command.name.69 = CopyFile |
|
255 |
command.name.70 = PasteFile |
|
256 |
command.name.71 = CutFile |
|
257 |
command.name.72 = Set encoding |
|
258 |
command.name.73 = Browse |
|
259 |
command.name.74 = Open localized HTML page |
|
260 |
command.name.78 = Tests commands |
|
261 |
command.name.79 = Execute Macro |
|
262 |
command.name.8 = View in HTML Viewer |
|
263 |
command.name.80 = CreateMacro |
|
264 |
command.name.81 = InterText Distance |
|
265 |
command.name.82 = QueryIndex |
|
266 |
command.name.83 = CoocMatrix |
|
267 |
command.name.84 = Test imports |
|
268 |
command.name.85 = NilsTest |
|
269 |
command.name.86 = QueryIndexToLexicalTable |
|
270 |
command.name.87 = Update TXM |
|
271 |
command.name.88 = Update TXM |
|
272 |
command.name.89 = Execute last Groovy script |
|
273 |
command.name.9 = Display |
|
274 |
command.name.91 = DownloadFile |
|
275 |
command.name.94 = Reset display |
|
276 |
command.name.95 = Open Manual |
|
277 |
command.name.96 = TextToConcordance |
|
278 |
command.name.97 = Save Annotations |
|
279 |
command.name.98 = Update corpus |
|
280 |
command.name.99 = KR view |
|
281 |
command.tooltip = Browse |
|
282 |
command.tooltip.0 = Open the settings windows |
|
283 |
command.tooltip.1 = Import with the XML-PPS format |
|
284 |
command.tooltip.10 = Display the properties of that instance of the TXM platform |
|
285 |
command.tooltip.11 = XML-TEI TXM |
|
286 |
command.tooltip.12 = Convert 0.5 binary corpus to 0.6 binary corpus |
|
287 |
command.tooltip.13 = Macros documentation |
|
288 |
command.tooltip.14 = Execute script |
|
289 |
command.tooltip.15 = Delete File |
|
290 |
command.tooltip.16 = Copy File |
|
291 |
command.tooltip.17 = Open File in a Text Editor |
|
292 |
command.tooltip.18 = Open File in browser |
|
293 |
command.tooltip.19 = Run Script |
|
294 |
command.tooltip.2 = Exit the TXM platform |
|
295 |
command.tooltip.20 = Cut File |
|
296 |
command.tooltip.21 = Paste File |
|
297 |
command.tooltip.22 = Factiva TXT |
|
298 |
command.tooltip.23 = Read TXM online manual |
|
299 |
command.tooltip.233 = Download the PDF version of TXM manual |
|
300 |
command.tooltip.24 = XML-TMX |
|
301 |
command.tooltip.25 = CQP |
|
302 |
command.tooltip.26 = Restart TXM |
|
303 |
command.tooltip.27 = After you've copied a text use this function |
|
304 |
command.tooltip.28 = Import a directory of files in CNR format associated to a CSV metadata file |
|
305 |
command.tooltip.29 = Import a directory of files in Hyperbase format |
|
306 |
command.tooltip.3 = Select a subset of words of the selected item |
|
307 |
command.tooltip.30 = Import a directory of files in Alceste format |
|
308 |
command.tooltip.31 = Toggle Show Whitespace Characters |
|
309 |
command.tooltip.32 = Display Edition |
|
310 |
command.tooltip.33 = Delete the selected item |
|
311 |
command.tooltip.34 = Creates a new File |
|
312 |
command.tooltip.35 = Toggle Show Whitespace Characters |
|
313 |
command.tooltip.36 = Execute selected text |
|
314 |
command.tooltip.37 = Execute a Groovy script from a file |
|
315 |
command.tooltip.38 = Starts a long process to test all the available commands |
|
316 |
command.tooltip.39 = Display Edition |
|
317 |
command.tooltip.4 = Divide the selected item in several parts |
|
318 |
command.tooltip.40 = Vue interne |
|
319 |
command.tooltip.41 = FAQ |
|
320 |
command.tooltip.42 = Change language |
|
321 |
command.tooltip.43 = txm-users wiki |
|
322 |
command.tooltip.44 = XML/w |
|
323 |
command.tooltip.45 = From a directory containing text files |
|
324 |
command.tooltip.47 = Contribuer |
|
325 |
command.tooltip.48 = Test imports |
|
326 |
command.tooltip.49 = CA |
|
327 |
command.tooltip.5 = XML-TRS |
|
328 |
command.tooltip.50 = Replay last Groovy script |
|
329 |
command.tooltip.51 = LexicalTable |
|
330 |
command.tooltip.52 = Vue interne |
|
331 |
command.tooltip.53 = Process the cooccurrents of a query |
|
332 |
command.tooltip.54 = Export SVG |
|
333 |
command.tooltip.58 = LexicalTable |
|
334 |
command.tooltip.59 = Internal view |
|
335 |
command.tooltip.60 = Display properties of structures and lexical units |
|
336 |
command.tooltip.63 = Process the references of a query |
|
337 |
command.tooltip.64 = Open the PDF Manual with the default PDF reader |
|
338 |
command.tooltip.65 = TXM IRC channel |
|
339 |
command.tooltip.66 = Libre Office, Word and RTF import module |
|
340 |
command.tooltip.67 = Export |
|
341 |
command.tooltip.7 = Build a kwic concordance of a focus in the selected item |
|
342 |
command.tooltip.70 = Send the selection to R |
|
343 |
command.tooltip.71 = Export as a binary file |
|
344 |
command.tooltip.73 = Classification |
|
345 |
command.tooltip.74 = Send the selection to R |
|
346 |
command.tooltip.75 = Create new file |
|
347 |
command.tooltip.76 = Create new folder |
|
348 |
command.tooltip.77 = Export as a binary file |
|
349 |
command.tooltip.79 = Classification |
|
350 |
command.tooltip.8 = XML-TEI BFM |
|
351 |
command.tooltip.80 = Send the selection to R |
|
352 |
command.tooltip.81 = Copy selected queries |
|
353 |
command.tooltip.82 = Add a new query in log |
|
354 |
command.tooltip.83 = Graphics keyboard shortcuts |
|
355 |
command.tooltip.84 = New session |
|
356 |
command.tooltip.85 = Run R code from selection or file |
|
357 |
command.tooltip.86 = Edit this macro |
|
358 |
command.tooltip.87 = Open edition |
|
359 |
command.tooltip.88 = XML-XTZ + CSV |
|
360 |
command.tooltip.89 = Copy to clipboard |
|
361 |
command.tooltip.9 = XML-TEI Frantext |
|
362 |
command.tooltip.90 = Reset and reload all values |
|
363 |
command.tooltip.91 = Open biblio |
|
364 |
command.tooltip.92 = Create Macro |
|
365 |
command.tooltip.93 = Display informations about the selected element |
|
366 |
command.tooltip.94 = Add a new element |
|
367 |
command.tooltip.95 = Delete the selected element |
|
368 |
|
|
369 |
editor.name = SVG Graph |
|
370 |
editor.name.14 = Referencer |
|
371 |
editor.name.6 = ObjectExplorer |
|
372 |
|
|
373 |
menu.label = File |
|
374 |
menu.label.0 = Import |
|
375 |
menu.label.1 = Corpus |
|
376 |
menu.label.10 = Groovy |
|
377 |
menu.label.12 = Recettes |
|
378 |
menu.label.2 = Help |
|
379 |
menu.label.3 = Edit |
|
380 |
menu.label.4 = Extensions |
|
381 |
menu.label.5 = Export |
|
382 |
menu.label.6 = Tools |
|
383 |
menu.label.7 = View |
|
384 |
menu.label.8 = Perspectives |
|
385 |
menu.label.9 = Views |
|
386 |
menu.tooltip = Read TXM User's Guide |
|
387 |
menu.tooltip.0 = view |
|
388 |
menu.tooltip.1 = Recettes de plugins |
|
389 |
|
|
390 |
page.name = User |
|
391 |
page.name.0 = Advanced |
|
392 |
page.name.10 = Correspondence Analysis |
|
393 |
page.name.12 = Export |
|
394 |
page.name.16 = Referencer |
|
395 |
page.name.17 = Classification |
|
396 |
page.name.18 = Scripts |
|
397 |
page.name.19 = Import |
|
398 |
page.name.2 = File explorer |
|
399 |
page.name.20 = Charts Engine |
|
400 |
page.name.21 = JFreeChart |
|
401 |
page.name.22 = Partition |
|
402 |
page.name.23 = Annotation |
|
403 |
page.name.4 = Corpus Engine |
|
404 |
page.name.5 = WordCloud |
|
405 |
page.name.6 = \ TXM |
|
406 |
page.name.7 = TreeTagger |
|
407 |
page.name.8 = NLP |
|
408 |
page.name.9 = Description |
|
0 | 409 |
tmp/org.txm.referencer.rcp/OSGI-INF/l10n/bundle_ru.properties (revision 520) | ||
---|---|---|
1 |
#Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/) |
|
2 |
#= |
|
3 |
#Mon Mar 05 10:02:31 CET 2012=N/A_ |
|
4 |
|
|
5 |
Bundle-Name = org.txm.referencer.rcp |
|
6 |
|
|
7 |
category.description = \u0422\u0435\u043A\u0441\u0442\u043E\u043C\u0435\u0442\u0440\u0438\u0447\u0435\u0441\u043A\u0438\u0435 \u043A\u043E\u043C\u0430\u043D\u0434\u044B |
|
8 |
category.name = TXM |
|
9 |
category.name.0 = TXM |
|
10 |
|
|
11 |
command.label = \u041F\u0440\u043E\u0447\u0438\u0442\u0430\u0442\u044C \u0444\u0430\u0439\u043B HTML |
|
12 |
command.label.0 = CNR + CSV |
|
13 |
command.label.1 = XML/w + CSV |
|
14 |
command.label.100 = N/A_ Find Previous |
|
15 |
command.label.101 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442 SVG |
|
16 |
command.label.102 = \u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u0432 \u043A\u043E\u043D\u043A\u043E\u0440\u0434\u0430\u043D\u0441 |
|
17 |
command.label.103 = \u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u043D\u0430 \u043F\u0440\u043E\u0433\u0440\u0435\u0441\u0441\u0438\u044E |
|
18 |
command.label.105 = \u041E\u0431\u044A\u0435\u0434\u0438\u043D\u0438\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0438 |
|
19 |
command.label.106 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0442\u0430\u0431\u043B\u0438\u0446\u0443 |
|
20 |
command.label.107 = \u0418\u043C\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0442\u0430\u0431\u043B\u0438\u0446\u0443 |
|
21 |
command.label.108 = \u0421\u0441\u044B\u043B\u043A\u0438 |
|
22 |
command.label.109 = N/A_ Incremental Find |
|
23 |
command.label.11 = \u041A\u043E\u043D\u043A\u043E\u0440\u0434\u0430\u043D\u0441\u044B |
|
24 |
command.label.110 = N/A_ Incremental Find (reverse) |
|
25 |
command.label.111 = \u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0441\u043A\u0440\u0438\u043F\u0442 R |
|
26 |
command.label.113 = N/A_ Goto line |
|
27 |
command.label.114 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043A\u043E\u0440\u043F\u0443\u0441 |
|
28 |
command.label.116 = \u041A\u043B\u0430\u0441\u0441\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044F |
|
29 |
command.label.117 = \u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u0432 R |
|
30 |
command.label.118 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043A\u043E\u0440\u043F\u0443\u0441 |
|
31 |
command.label.12 = XML-TEI TXM |
|
32 |
command.label.120 = \u041A\u043B\u0430\u0441\u0441\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044F |
|
33 |
command.label.121 = \u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u0432 R |
|
34 |
command.label.122 = \u0421\u043E\u0437\u0434\u0430\u0442\u044C \u0444\u0430\u0439\u043B |
|
35 |
command.label.123 = \u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043F\u0430\u043F\u043A\u0443 |
|
36 |
command.label.124 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043A\u043E\u0440\u043F\u0443\u0441 |
|
37 |
command.label.126 = \u041A\u043B\u0430\u0441\u0441\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044F |
|
38 |
command.label.127 = \u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u043D\u0430 R |
|
39 |
command.label.128 = \u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u043D\u0430 \u0418\u043D\u0434\u0435\u043A\u0441 |
|
40 |
command.label.129 = \u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C |
|
41 |
command.label.13 = \u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u043A\u043E\u0440\u043F\u0443\u0441 TXM 0.5 |
|
42 |
command.label.130 = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C |
|
43 |
command.label.131 = \u041A\u043E\u0440\u043F\u0443\u0441 |
|
44 |
command.label.132 = R |
|
45 |
command.label.133 = N/A_ Open URL |
|
46 |
command.label.134 = \u041A\u043E\u0440\u043F\u0443\u0441 |
|
47 |
command.label.135 = \u0424\u0430\u0439\u043B |
|
48 |
command.label.136 = \u0417\u0430\u043F\u0440\u043E\u0441 |
|
49 |
command.label.139 = \u0415\u0449\u0451... |
|
50 |
command.label.14 = \u041E \u041F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0435 TXM |
|
51 |
command.label.140 = N/A_ Show Line Numbers |
|
52 |
command.label.141 = \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 SVG |
|
53 |
command.label.142 = \u041D\u043E\u0432\u044B\u0439 \u0441\u0435\u0430\u043D\u0441 |
|
54 |
command.label.143 = \u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C |
|
55 |
command.label.144 = N/A_ Toggle Show Whitespace Characters |
|
56 |
command.label.145 = N/A_ Revert to saved |
|
57 |
command.label.146 = \u0411\u0438\u0431\u043B\u0438\u043E\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u0437\u0430\u043F\u0438\u0441\u044C |
|
58 |
command.label.147 = \u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0431\u0438\u0431\u043B\u0438\u043E\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043A\u0443\u044E \u0437\u0430\u043F\u0438\u0441\u044C |
|
59 |
command.label.148 = \u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0431\u0438\u0431\u043B\u0438\u043E\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043A\u0443\u044E \u0437\u0430\u043F\u0438\u0441\u044C |
|
60 |
command.label.149 = \u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u0432 \u0421\u043E\u0432\u043C\u0435\u0441\u0442\u043D\u0443\u044E \u0432\u0441\u0442\u0440\u0435\u0447\u0430\u0435\u043C\u043E\u0441\u0442\u044C |
|
61 |
command.label.15 = \u041F\u043E\u0438\u0441\u043A... |
|
62 |
command.label.150 = Execute import script |
|
63 |
command.label.151 = Execute import script |
|
64 |
command.label.152 = Execute import script |
|
65 |
command.label.153 = Execute import script |
|
66 |
command.label.154 = \u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0441\u043A\u0440\u0438\u043F\u0442 \u0438\u043C\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F |
|
67 |
command.label.155 = \u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0444\u0430\u0439\u043B \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 |
|
68 |
command.label.156 = \u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0444\u0430\u0439\u043B Groovy |
|
69 |
command.label.157 = N/A_ New window |
|
70 |
command.label.158 = N/A_ New |
|
71 |
command.label.159 = N/A_ Search and Replace |
|
72 |
command.label.16 = \u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C |
|
73 |
command.label.160 = N/A_ Find previous |
|
74 |
command.label.161 = N/A_ Find next |
|
75 |
command.label.162 = N/A_ Find incremental |
|
76 |
command.label.163 = N/A_ Find incremental (reverse) |
|
77 |
command.label.164 = N/A_ Revert to save |
|
78 |
command.label.165 = N/A_ Select All |
|
79 |
command.label.166 = N/A_ Goto |
|
80 |
command.label.167 = N/A_ Hyperlink |
|
81 |
command.label.168 = N/A_ Show line numbers |
|
82 |
command.label.169 = N/A_ Show Control characters |
|
83 |
command.label.17 = \u041F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u044C |
|
84 |
command.label.170 = N/A_ Execute current script |
|
85 |
command.label.171 = N/A_ Execute selected text |
|
86 |
command.label.172 = N/A_ Execute a Groovy script |
|
87 |
command.label.173 = N/A_ Welcome |
|
88 |
command.label.174 = N/A_ Download the manual |
|
89 |
command.label.175 = N/A_ Test all commands |
|
90 |
command.label.18 = \u0412\u044B\u0440\u0435\u0437\u0430\u0442\u044C |
|
91 |
command.label.19 = \u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C |
|
92 |
command.label.2 = XML-PPS |
|
93 |
command.label.20 = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C |
|
94 |
command.label.21 = \u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0432 \u0442\u0435\u043A\u0441\u0442\u043E\u0432\u043E\u043C \u0440\u0435\u0434\u0430\u043A\u0442\u043E\u0440\u0435 |
|
95 |
command.label.22 = \u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 HTML |
|
96 |
command.label.23 = \u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0441\u043A\u0440\u0438\u043F\u0442 |
|
97 |
command.label.24 = \u0421\u0432\u043E\u0439\u0441\u0442\u0432\u0430 |
|
98 |
command.label.25 = \u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0432\u044B\u0434\u0435\u043B\u0435\u043D\u043D\u044B\u0435 \u0441\u0442\u0440\u043E\u043A\u0438 |
|
99 |
command.label.27 = \u0423\u0434\u0430\u043B\u0438\u0442\u044C |
|
100 |
command.label.28 = \u0412\u044B\u0431\u0440\u0430\u0442\u044C \u0432\u0441\u0451 |
|
101 |
command.label.29 = \u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u043A\u0430\u043A... |
|
102 |
command.label.3 = XML-TRS + CSV |
|
103 |
command.label.30 = \u041A\u043E\u0434\u0438\u0440\u043E\u0432\u043A\u0430 |
|
104 |
command.label.31 = \u041F\u0440\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C |
|
105 |
command.label.32 = \u041F\u0440\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C |
|
106 |
command.label.33 = \u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u043A\u0430\u043A... |
|
107 |
command.label.34 = Add a third-party extension |
|
108 |
command.label.35 = \u0412\u044B\u043F\u043E\u043B\u0438\u043D\u0442\u044C \u0441\u043A\u0440\u0438\u043F\u0442 |
|
109 |
command.label.36 = \u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u0440\u043E\u0435\u043A\u0442 |
|
110 |
command.label.37 = \u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0431\u0430\u0437\u0443 |
|
111 |
command.label.39 = \u0414\u043E\u0431\u0430\u0432\u0442\u044C \u0441\u043A\u0440\u0438\u043F\u0442 |
|
112 |
command.label.4 = \u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 |
|
113 |
command.label.40 = \u0423\u0434\u0430\u043B\u0438\u0442\u044C \u043F\u0440\u043E\u0435\u043A\u0442 |
|
114 |
command.label.41 = \u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0431\u0430\u0437\u0443 |
|
115 |
command.label.43 = \u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0441\u043A\u0440\u0438\u043F\u0442 |
|
116 |
command.label.44 = \u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0444\u0430\u0439\u043B |
|
117 |
command.label.45 = \u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0444\u0430\u0439\u043B |
|
118 |
command.label.46 = \u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0444\u0430\u0439\u043B |
|
119 |
command.label.47 = \u0412\u044B\u0440\u0435\u0437\u0430\u0442\u044C \u0444\u0430\u0439\u043B |
|
120 |
command.label.48 = \u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 |
|
121 |
command.label.49 = \u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 |
|
122 |
command.label.5 = XML-TEI-BFM |
|
123 |
command.label.50 = \u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C |
|
124 |
command.label.51 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C |
|
125 |
command.label.52 = Key assist |
|
126 |
command.label.53 = \u0421\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u044F \u043E\u0431 \u043E\u0448\u0438\u0431\u043A\u0430\u0445 |
|
127 |
command.label.54 = \u0417\u0430\u044F\u0432\u043A\u0438 \u043D\u0430 \u043D\u043E\u0432\u044B\u0435 \u0444\u0443\u043D\u043A\u0446\u0438\u0438 |
|
128 |
command.label.55 = \u041F\u043E\u0434\u043F\u0438\u0441\u0430\u0442\u044C\u0441\u044F \u043D\u0430 \u0440\u0430\u0441\u0441\u044B\u043B\u043A\u0443 txm-users |
|
129 |
command.label.56 = \u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F |
|
130 |
command.label.57 = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0444\u0430\u0439\u043B |
|
131 |
command.label.58 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C |
|
132 |
command.label.59 = \u041F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C |
|
133 |
command.label.6 = \u0412\u044B\u0439\u0442\u0438 |
|
134 |
command.label.60 = \u0411\u0443\u0444\u0435\u0440 \u043E\u0431\u043C\u0435\u043D\u0430 (FR) |
|
135 |
command.label.61 = Hyperbase |
|
136 |
command.label.62 = Alceste |
|
137 |
command.label.63 = \u041F\u0440\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C |
|
138 |
command.label.64 = N/A_ Factiva TXT |
|
139 |
command.label.65 = \u0423\u0434\u0430\u043B\u0438\u0442\u044C |
|
140 |
command.label.66 = \u0418\u043D\u0434\u0435\u043A\u0441 |
|
141 |
command.label.67 = \u0423\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C TreeTagger |
|
142 |
command.label.68 = N/A_ Online manual |
|
143 |
command.label.69 = N/A_ Textometrie project web site |
|
144 |
command.label.7 = \u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043F\u043E\u0434\u043A\u043E\u0440\u043F\u0443\u0441 |
|
145 |
command.label.70 = N/A_ TXM manuals directory |
|
146 |
command.label.71 = \u0418\u0437\u0434\u0430\u043D\u0438\u0435 |
|
147 |
command.label.72 = N/A_ Textometrie project documentation |
|
148 |
command.label.73 = \u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u0432 \u043A\u043E\u043D\u043A\u043E\u0440\u0434\u0430\u043D\u0441 |
|
149 |
command.label.74 = \u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u0432 \u043A\u043E\u043D\u043A\u043E\u0440\u0434\u0430\u043D\u0441 |
|
150 |
command.label.75 = \u0418\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u044F\u0437\u044B\u043A |
|
151 |
command.label.76 = XML-TEI BFM |
|
152 |
command.label.77 = N/A_ Send to index |
|
153 |
command.label.78 = TXT + CSV |
|
154 |
command.label.79 = \u0421\u043B\u043E\u0432\u0430\u0440\u044C |
|
155 |
command.label.8 = \u0421\u043E\u0437\u0434\u0430\u0442\u044C \u0420\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u0438\u0435 |
|
156 |
command.label.80 = \u0424\u0410\u0421 |
|
157 |
command.label.81 = N/A_ XML-TMX |
|
158 |
command.label.82 = N/A_ CWB |
|
159 |
command.label.83 = N/A_ New |
|
160 |
command.label.84 = \u0421\u043B\u043E\u0432\u0430\u0440\u044C |
|
161 |
command.label.85 = \u0424\u0410\u0421 |
|
162 |
command.label.86 = N/A_ Save |
|
163 |
command.label.87 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442 |
|
164 |
command.label.88 = N/A_ Save All |
|
165 |
command.label.89 = \u0421\u043B\u043E\u0432\u0430\u0440\u043D\u0430\u044F \u0442\u0430\u0431\u043B\u0438\u0446\u0430 |
|
166 |
command.label.9 = XML-TEI Frantext |
|
167 |
command.label.90 = N/A_ Close |
|
168 |
command.label.92 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442 |
|
169 |
command.label.93 = N/A_ Close all |
|
170 |
command.label.94 = \u0421\u043B\u043E\u0432\u0430\u0440\u043D\u0430\u044F \u0442\u0430\u0431\u043B\u0438\u0446\u0430 |
|
171 |
command.label.96 = \u0421\u043E\u0432\u043C\u0435\u0441\u0442\u043D\u0430\u044F \u0432\u0441\u0442\u0440\u0435\u0447\u0430\u0435\u043C\u043E\u0441\u0442\u044C |
|
172 |
command.label.98 = N/A_ Find next |
|
173 |
command.label.99 = \u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u0432 \u043F\u0440\u043E\u0433\u0440\u0435\u0441\u0441\u0438\u044E |
|
174 |
command.name = \u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0444\u0430\u0439\u043B |
|
175 |
command.name.0 = \u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0441\u043A\u0440\u0438\u043F\u0442 Groovy |
|
176 |
command.name.1 = \u0421\u043E\u0437\u0434\u0430\u0442\u044C \u041F\u043E\u0434\u043A\u043E\u0440\u043F\u0443\u0441 |
|
177 |
command.name.10 = \u0412\u044B\u043F\u043E\u043B\u0438\u043D\u0442\u044C \u0432\u044B\u0434\u0435\u043B\u0435\u043D\u043D\u044B\u0435 \u0441\u0442\u0440\u043E\u043A\u0438 \u043A\u0430\u043A \u0441\u043A\u0440\u0438\u043F\u0442 Groovy |
|
178 |
command.name.11 = \u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u0440\u043E\u0435\u043A\u0442 |
|
179 |
command.name.12 = \u0423\u0434\u0430\u043B\u0438\u0442\u044C \u043F\u0440\u043E\u0435\u043A\u0442 |
|
180 |
command.name.13 = \u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0431\u0430\u0437\u0443 |
|
181 |
command.name.14 = \u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0431\u0430\u0437\u0443 |
|
182 |
command.name.15 = \u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0442\u0435\u043A\u0441\u0442 |
|
183 |
command.name.16 = \u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0442\u0435\u043A\u0441\u0442 |
|
184 |
command.name.17 = \u041F\u043E\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u043A\u043E\u0440\u043F\u0443\u0441 |
|
185 |
command.name.18 = \u0412\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u043A\u043E\u0440\u043F\u0443\u0441\u0430 |
|
186 |
command.name.19 = OPENTESTEDITOR |
|
187 |
command.name.2 = \u0421\u043E\u0437\u0434\u0430\u0442\u044C \u0420\u0430\u0441\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u0438\u0435 |
|
188 |
command.name.20 = \u0412\u044B\u0431\u0440\u0430\u0442\u044C \u043F\u043E\u0438\u0441\u043A\u043E\u0432\u0443\u044E \u043C\u0430\u0448\u0438\u043D\u0443 |
|
189 |
command.name.21 = \u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C\u0421\u043A\u0440\u0438\u043F\u0442 |
|
190 |
command.name.22 = \u0412\u044B\u043F\u043E\u043D\u0438\u0442\u044C \u0441\u043A\u0440\u0438\u043F\u0442 \u0438\u043C\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F |
|
191 |
command.name.23 = \u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 |
|
192 |
command.name.24 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C |
|
193 |
command.name.25 = \u041F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C |
|
194 |
command.name.26 = \u0423\u0434\u0430\u043B\u0438\u0442\u044C |
|
195 |
command.name.28 = \u0418\u043C\u043F\u043E\u0440\u0442\u0438\u0440\u0443\u0435\u0442 \u043A\u043E\u0440\u043F\u0443\u0441 \u0438\u0437 \u0431\u0443\u0444\u0435\u0440\u0430 \u043E\u0431\u043C\u0435\u043D\u0430 (FR) |
|
196 |
command.name.29 = \u041E\u0442\u043A\u0440\u044B\u0432\u0430\u0435\u0442 \u0438\u0437\u0434\u0430\u043D\u0438\u0435 |
|
197 |
command.name.3 = \u041A\u043E\u043D\u0432\u0435\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u0442\u0430\u0440\u044B\u0439 \u0431\u0438\u043D\u0430\u0440\u043D\u044B\u0439 \u0444\u0430\u0439\u043B |
|
198 |
command.name.30 = IndexToConcordances |
|
199 |
command.name.31 = \u0418\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u044F\u0437\u044B\u043A |
|
200 |
command.name.33 = \u041F\u0430\u0440\u0430\u0431\u0440\u0430\u0443\u0437\u0435\u0440 |
|
201 |
command.name.34 = ExportSVG |
|
202 |
command.name.36 = ComputeLexicalTable |
|
203 |
command.name.37 = \u0423\u0434\u0430\u043B\u0438\u0442\u044C |
|
204 |
command.name.38 = \u041E\u0431\u044A\u0435\u0434\u0438\u043D\u0438\u0442\u044C |
|
205 |
command.name.39 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0442\u0430\u0431\u043B\u0438\u0446\u0443 |
|
206 |
command.name.40 = \u0418\u043C\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0442\u0430\u0431\u043B\u0438\u0446\u0443 |
|
207 |
command.name.41 = CoocToConc |
|
208 |
command.name.42 = VocToProgress |
|
209 |
command.name.43 = VocToLexicalTable |
|
210 |
command.name.44 = \u0421\u0441\u044B\u043B\u043A\u0438 |
|
211 |
command.name.47 = \u0421\u043E\u0437\u0434\u0430\u0442\u044C \u0444\u0430\u0439\u043B |
|
212 |
command.name.48 = \u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043F\u0430\u043F\u043A\u0443 |
|
213 |
command.name.50 = \u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C\u0422\u0435\u043A\u0441\u0442 |
|
214 |
command.name.51 = \u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 |
|
215 |
command.name.52 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043A\u043E\u0440\u043F\u0443\u0441 |
|
216 |
command.name.54 = \u041A\u043B\u0430\u0441\u0441\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044F |
|
217 |
command.name.55 = \u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C |
|
218 |
command.name.56 = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C |
|
219 |
command.name.57 = RefToConc |
|
220 |
command.name.58 = LexiconToIndex |
|
221 |
command.name.59 = OpenEmptyTextEditor |
|
222 |
command.name.6 = \u0410\u043D\u0430\u043B\u0438\u0437 \u041A\u043E\u0440\u0440\u0435\u043B\u044F\u0446\u0438\u0439 |
|
223 |
command.name.60 = SubmitRcode |
|
224 |
command.name.61 = show svg help |
|
225 |
command.name.62 = OpenImportForm |
|
226 |
command.name.63 = Open Biblio |
|
227 |
command.name.64 = CopySelection |
|
228 |
command.name.65 = IndexToCooccurrence |
|
229 |
command.name.66 = \u0412\u044B\u043F\u043E\u043B\u0438\u0442\u044C \u0444\u0430\u0439\u043B Groovy |
|
230 |
command.name.67 = \u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C\u041A\u0430\u043A |
|
231 |
command.name.68 = \u0423\u0434\u0430\u043B\u0438\u0442\u044C\u0424\u0430\u0439\u043B |
|
232 |
command.name.69 = \u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C\u0424\u0430\u0439\u043B |
|
233 |
command.name.70 = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C\u0424\u0430\u0439\u043B |
|
234 |
command.name.71 = \u0412\u044B\u0440\u0435\u0437\u0430\u0442\u044C\u0424\u0430\u0439\u043B |
|
235 |
command.name.72 = \u041A\u043E\u0434\u0438\u0440\u043E\u0432\u043A\u0430 |
|
236 |
command.name.73 = \u041F\u0440\u043E\u0441\u043C\u043E\u0442\u0440\u0435\u0442\u044C |
|
237 |
command.name.74 = N/A_ Open localized HTML page |
|
238 |
command.name.78 = N/A_ Tests commands |
|
239 |
command.name.8 = \u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 HTML |
|
240 |
command.name.9 = \u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C |
|
241 |
command.tooltip = \u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 HTML |
|
242 |
command.tooltip.0 = \u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 |
|
243 |
command.tooltip.1 = XML-PPS |
|
244 |
command.tooltip.10 = \u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0441\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u044D\u0442\u043E\u0433\u043E \u044D\u043A\u0437\u0435\u043C\u043F\u043B\u044F\u0440\u0430 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u044B TXM |
|
245 |
command.tooltip.11 = XML-TEI TXM |
|
246 |
command.tooltip.12 = \u041A\u043E\u043D\u0432\u0435\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0431\u0438\u043D\u0430\u0440\u043D\u044B\u0439 \u043A\u043E\u0440\u043F\u0443\u0441 TXM 0.5 \u0432 \u0444\u043E\u0440\u043C\u0430\u0442 TXM 0.6 |
|
247 |
command.tooltip.13 = \u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0441\u043A\u0440\u0438\u043F\u0442 |
|
248 |
command.tooltip.14 = \u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0441\u043A\u0440\u0438\u043F\u0442 |
|
249 |
command.tooltip.15 = \u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0444\u0430\u0439\u043B |
|
250 |
command.tooltip.16 = \u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0444\u0430\u0439\u043B |
|
251 |
command.tooltip.17 = \u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0444\u0430\u0439\u043B \u0432 \u0442\u0435\u043A\u0441\u0442\u043E\u0432\u043E\u043C \u0440\u0435\u0434\u0430\u043A\u0442\u043E\u0440\u0435 |
|
252 |
command.tooltip.18 = \u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0444\u0430\u0439\u043B \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 HTML |
|
253 |
command.tooltip.19 = \u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0421\u043A\u0440\u0438\u043F\u0442 |
|
254 |
command.tooltip.2 = \u0412\u044B\u0439\u0442\u0438 \u0438\u0437 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u044B TXM |
|
255 |
command.tooltip.20 = \u0412\u044B\u0440\u0435\u0437\u0430\u0442\u044C \u0444\u0430\u0439\u043B |
|
256 |
command.tooltip.21 = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0444\u0430\u0439\u043B |
|
257 |
command.tooltip.22 = N/A_ Factiva TXT |
|
258 |
command.tooltip.23 = N/A_TXM online manual |
|
259 |
command.tooltip.24 = N/A_ XML-TMX |
|
260 |
command.tooltip.25 = N/A_ CWB |
|
261 |
command.tooltip.26 = \u041F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C TXM |
|
262 |
command.tooltip.27 = \u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 \u044D\u0442\u0443 \u0444\u0443\u043D\u043A\u0446\u0438\u044E \u043F\u043E\u0441\u043B\u0435 \u0442\u043E\u0433\u043E, \u043A\u0430\u043A \u0441\u043A\u043E\u043F\u0438\u0440\u0443\u0435\u0442\u0435 \u0442\u0435\u043A\u0441\u0442 \u0432 \u0431\u0443\u0444\u0435\u0440 \u043E\u0431\u043C\u0435\u043D\u0430 |
|
263 |
command.tooltip.28 = \u0418\u043C\u043F\u043E\u0440\u0442\u0438\u0440\u0443\u0435\u0442 \u043A\u043E\u0440\u043F\u0443\u0441 \u0438\u0437 \u043F\u0430\u043F\u043A\u0438, \u0441\u043E\u0434\u0435\u0440\u0436\u0430\u0449\u0435\u0439 \u0444\u0430\u0439\u043B csv \u0438 \u0444\u0430\u0439\u043B\u044B cnr |
|
264 |
command.tooltip.29 = \u0418\u043C\u043F\u043E\u0440\u0442\u0438\u0440\u0443\u0435\u0442 \u043A\u043E\u0440\u043F\u0443\u0441 \u0438\u0437 \u043F\u0430\u043F\u043A\u0438, \u0441\u043E\u0434\u0435\u0440\u0436\u0430\u0449\u0435\u0439 \u0438\u0441\u0445\u043E\u0434\u043D\u044B\u0439 \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B \u0432 \u0444\u043E\u0440\u043C\u0430\u0442\u0435 Hyperbase |
|
265 |
command.tooltip.3 = \u0412\u044B\u0431\u0440\u0430\u0442\u044C \u0447\u0430\u0441\u0442\u044C \u0443\u043F\u043E\u0442\u0440\u0435\u0431\u043B\u0435\u043D\u0438\u0439 |
|
266 |
command.tooltip.30 = \u0418\u043C\u043F\u043E\u0440\u0442\u0438\u0440\u0443\u0435\u0442 \u043A\u043E\u0440\u043F\u0443\u0441 \u0438\u0437 \u043F\u0430\u043F\u043A\u0438, \u0441\u043E\u0434\u0435\u0440\u0436\u0430\u0449\u0435\u0439 \u0438\u0441\u0445\u043E\u0434\u043D\u044B\u0439 \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B \u0432 \u0444\u043E\u0440\u043C\u0430\u0442\u0435 Alceste |
|
267 |
command.tooltip.31 = N/A_ Toggle Show Whitespace Characters |
|
268 |
command.tooltip.32 = \u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0438\u0437\u0434\u0430\u043D\u0438\u0435 \u043A\u043E\u0440\u043F\u0443\u0441\u0430 |
|
269 |
command.tooltip.33 = \u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0432\u044B\u0434\u0435\u043B\u0435\u043D\u043D\u044B\u0439 \u044D\u043B\u0435\u043C\u0435\u043D\u0442 |
|
270 |
command.tooltip.34 = N/A_ Creates a new File |
|
271 |
command.tooltip.35 = N/A_ Toggle Show Whitespace Characters |
|
272 |
command.tooltip.36 = N/A_ Execute selected text |
|
273 |
command.tooltip.37 = N/A_ Execute a Groovy script from a file |
|
274 |
command.tooltip.38 = N/A_ Starts a long process to test all the available commands |
|
275 |
command.tooltip.39 = \u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0438\u0437\u0434\u0430\u043D\u0438\u0435 \u043A\u043E\u0440\u043F\u0443\u0441\u0430 |
|
276 |
command.tooltip.4 = \u0420\u0430\u0437\u0434\u0435\u043B\u0438\u0442\u044C \u0432\u044B\u0434\u0435\u043B\u0435\u043D\u043D\u044B\u0439 \u043E\u0431\u044A\u0435\u043A\u0442 \u043D\u0430 \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u043E \u0447\u0430\u0441\u0442\u0435\u0439 |
|
277 |
command.tooltip.42 = \u0418\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u044F\u0437\u044B\u043A |
|
278 |
command.tooltip.43 = XML-TEI BFM |
|
279 |
command.tooltip.44 = XML/w |
|
280 |
command.tooltip.45 = \u0418\u0437 \u043F\u0430\u043F\u043A\u0438 \u0441 \u0442\u0435\u043A\u0441\u0442\u043E\u0432\u044B\u043C\u0438 \u0444\u0430\u0439\u043B\u0430\u043C\u0438 |
|
281 |
command.tooltip.46 = \u0424\u0410\u041A |
|
282 |
command.tooltip.49 = \u0424\u0410\u041A |
|
283 |
command.tooltip.5 = XML-TRS |
|
284 |
command.tooltip.50 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442 SVG |
|
285 |
command.tooltip.51 = \u0421\u043B\u043E\u0432\u0430\u0440\u043D\u0430\u044F \u0442\u0430\u0431\u043B\u0438\u0446\u0430 |
|
286 |
command.tooltip.53 = \u041F\u043E\u043A\u0430\u0437\u044B\u0432\u0430\u0435\u0442 \u0441\u043E\u0432\u043C\u0435\u0441\u0442\u043D\u044B\u0435 \u0443\u043F\u043E\u0442\u0440\u0435\u0431\u043B\u0435\u043D\u0438\u044F \u0434\u043B\u044F \u0437\u0430\u043F\u0440\u043E\u0441\u0430 |
|
287 |
command.tooltip.54 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442 SVG |
|
288 |
command.tooltip.55 = \u0421\u043B\u043E\u0432\u0430\u0440\u043D\u0430\u044F \u0442\u0430\u0431\u043B\u0438\u0446\u0430 |
|
289 |
command.tooltip.58 = \u0421\u043B\u043E\u0432\u0430\u0440\u043D\u0430\u044F \u0442\u0430\u0431\u043B\u0438\u0446\u0430 |
|
290 |
command.tooltip.60 = \u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0441\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440 \u0438 \u0441\u043B\u043E\u0432\u0430\u0440\u043D\u044B\u0445 \u0435\u0434\u0438\u043D\u0438\u0446 |
|
291 |
command.tooltip.63 = \u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0441\u0441\u044B\u043B\u043A\u0438 \u043E\u0442\u0432\u0435\u0442\u043E\u0432 \u043D\u0430 \u0437\u0430\u043F\u0440\u043E\u0441 |
|
292 |
command.tooltip.64 = \u0418\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0444\u0430\u0439\u043B\u044B \u0432 \u0444\u043E\u0440\u043C\u0430\u0442\u0435 XML-TXM \u0438\u0437 \u043F\u0430\u043F\u043A\u0438 |
|
293 |
command.tooltip.65 = \u0418\u043C\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0444\u0430\u0439\u043B\u044B \u0432 \u0444\u043E\u0440\u043C\u0430\u0442\u043A TRS, \u043F\u0440\u0438\u0432\u044F\u0437\u0430\u043D\u043D\u044B\u0435 \u043A \u0444\u0430\u0439\u043B\u0443 metadata.csv |
|
294 |
command.tooltip.66 = \u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u043A\u0430\u043A \u0441\u043A\u0440\u0438\u043F\u0442 R |
|
295 |
command.tooltip.67 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043A\u043E\u0440\u043F\u0443\u0441 \u0432 \u0430\u0440\u0445\u0438\u0432 |
|
296 |
command.tooltip.69 = \u041A\u043B\u0430\u0441\u0441\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044F |
|
297 |
command.tooltip.7 = \u0421\u043E\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u043A\u043E\u043D\u043A\u043E\u0440\u0434\u0430\u043D\u0441 |
|
298 |
command.tooltip.70 = \u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u0432 R |
|
299 |
command.tooltip.71 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043A\u043E\u0440\u043F\u0443\u0441 \u0432 \u0430\u0440\u0445\u0438\u0432 |
|
300 |
command.tooltip.73 = \u041A\u043B\u0430\u0441\u0441\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044F |
|
301 |
command.tooltip.74 = \u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u0432 R |
|
302 |
command.tooltip.75 = \u0421\u043E\u0437\u0434\u0430\u0442\u044C \u0444\u0430\u0439\u043B |
|
303 |
command.tooltip.76 = \u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043F\u0430\u043F\u043A\u0443 |
|
304 |
command.tooltip.77 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043A\u043E\u0440\u043F\u0443\u0441 \u0432 \u0430\u0440\u0445\u0438\u0432 |
|
305 |
command.tooltip.79 = \u041A\u043B\u0430\u0441\u0441\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044F |
|
306 |
command.tooltip.8 = XML-TEI-BFM |
|
307 |
command.tooltip.80 = \u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u0432 R |
|
308 |
command.tooltip.81 = \u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0432\u044B\u0434\u0435\u043B\u0435\u043D\u043D\u044B\u0435 \u0437\u0430\u043F\u0440\u043E\u0441\u044B |
|
309 |
command.tooltip.82 = \u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0437\u0430\u043F\u0440\u043E\u0441 \u0432 \u043E\u0442\u0447\u0435\u0442 |
|
310 |
command.tooltip.83 = \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 SVG |
|
311 |
command.tooltip.84 = \u041D\u043E\u0432\u044B\u0439 \u0441\u0435\u0430\u043D\u0441 |
|
312 |
command.tooltip.85 = \u0412\u044B\u043F\u043E\u043B\u043D\u0438\u0442\u044C \u0432\u044B\u0434\u0435\u043B\u0435\u043D\u043D\u044B\u0435 \u0441\u0442\u0440\u043E\u043A\u0438 \u0438\u043B\u0438 \u0441\u043A\u0440\u0438\u043F\u0442 |
|
313 |
command.tooltip.87 = Open edition |
|
314 |
command.tooltip.88 = Open file in browser |
|
315 |
command.tooltip.89 = Open biblio |
|
316 |
command.tooltip.9 = XML-TEI Frantext |
|
317 |
command.tooltip.90 = Open biblio |
|
318 |
command.tooltip.91 = \u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0431\u0438\u0431\u043B\u0438\u043E\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043A\u0443\u044E \u0437\u0430\u043F\u0438\u0441\u044C |
|
319 |
|
|
320 |
editor.name = \u0413\u0440\u0430\u0444\u0438\u043A\u0438 SVG |
|
321 |
editor.name.14 = \u041C\u0430\u0441\u0442\u0435\u0440 \u0441\u0441\u044B\u043B\u043E\u043A |
|
322 |
editor.name.6 = \u041F\u0440\u043E\u0432\u043E\u0434\u043D\u0438\u043A \u043F\u043E \u043E\u0431\u044A\u0435\u043A\u0442\u0430\u043C |
|
323 |
|
|
324 |
menu.label = \u0424\u0430\u0439\u043B |
|
325 |
menu.label.0 = \u0418\u043C\u043F\u043E\u0440\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C |
|
326 |
menu.label.1 = \u041A\u043E\u0440\u043F\u0443\u0441 |
|
327 |
menu.label.10 = Groovy |
|
328 |
menu.label.2 = \u041F\u043E\u043C\u043E\u0449\u044C |
|
329 |
menu.label.3 = \u0418\u0437\u0434\u0430\u043D\u0438\u0435 |
|
330 |
menu.label.6 = \u0418\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\u044B |
|
331 |
menu.label.7 = \u0412\u0438\u0434 |
|
332 |
menu.label.8 = \u041F\u0435\u0440\u0441\u043F\u0435\u043A\u0442\u0438\u0432\u044B |
|
333 |
menu.label.9 = \u0412\u0438\u0434\u044B |
|
334 |
menu.tooltip = \u0427\u0438\u0442\u0430\u0442\u044C \u0420\u0443\u043A\u043E\u0432\u043E\u0434\u0441\u0442\u0432\u043E \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044F TXM |
|
335 |
menu.tooltip.0 = \u0412\u0438\u0434 |
|
336 |
|
|
337 |
page.name = \u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C |
|
338 |
page.name.0 = \u0414\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u043E |
|
339 |
page.name.10 = \u0430\u043D\u0430\u043B\u0438\u0437 \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0439 |
|
340 |
page.name.12 = \u042D\u043A\u0441\u043F\u043E\u0440\u0442 |
|
341 |
page.name.16 = \u0421\u0441\u044B\u043B\u043A\u0438 |
|
342 |
page.name.17 = \u041A\u043B\u0430\u0441\u0441\u0438\u0444\u0438\u043A\u0430\u0446\u0438\u044F |
|
343 |
page.name.18 = \u0421\u043A\u0440\u0438\u043F\u0442\u044B |
|
344 |
page.name.19 = \u0418\u043C\u043F\u043E\u0440\u0442 |
|
345 |
page.name.2 = \u041F\u0440\u043E\u0432\u043E\u0434\u043D\u0438\u043A \u043F\u043E \u0444\u0430\u0439\u043B\u0430\u043C |
|
346 |
page.name.3 = \u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u043C\u0430\u0448\u0438\u043D\u0430 |
|
347 |
page.name.4 = \u041F\u043E\u0438\u0441\u043A\u043E\u0432\u0430\u044F \u043C\u0430\u0448\u0438\u043D\u0430 |
|
348 |
page.name.5 = \u042F\u0437\u044B\u043A |
|
349 |
page.name.6 = \ TXM |
|
350 |
page.name.7 = TreeTagger |
|
351 |
page.name.8 = NLP |
|
352 |
page.name.9 = \u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435 |
|
0 | 353 |
tmp/org.txm.referencer.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 520) | ||
---|---|---|
1 |
#Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/) |
|
2 |
# |
|
3 |
#Thu Jul 25 14:48:07 CEST 2013 |
|
4 |
|
|
5 |
Bundle-Name = org.txm.referencer.rcp |
|
6 |
|
|
7 |
category.description = Commandes de Textometrie |
|
8 |
category.name = TXM |
|
9 |
category.name.0 = TXM |
|
10 |
category.name.1 = TXM |
|
11 |
category.name.2 = TXM |
|
12 |
category.name.3 = TXM |
|
13 |
|
|
14 |
command.label = Ouvrir dans un navigateur... |
|
15 |
command.label.0 = CNR + CSV |
|
16 |
command.label.1 = XML/w + CSV |
|
17 |
command.label.10 = Sp\u00C3\u00A9cificiti\u00C3\u00A9s |
|
18 |
command.label.100 = Trouver pr\u00C3\u00A9c\u00C3\u00A9dent |
|
19 |
command.label.101 = Graphique... |
|
20 |
command.label.102 = Envoyer vers concordances |
|
21 |
command.label.103 = Envoyer vers progression |
|
22 |
command.label.104 = Supprimer la ligne |
|
23 |
command.label.105 = Fusionner les lignes |
|
24 |
command.label.106 = Exporter la table pour r\u00C3\u00A9-import |
|
25 |
command.label.107 = Importer une table |
|
26 |
command.label.108 = R\u00C3\u00A9f\u00C3\u00A9rences |
|
27 |
command.label.109 = Recherche incr\u00C3\u00A9mentielle |
|
28 |
command.label.110 = Recherche incr\u00C3\u00A9mentielle (invers\u00C3\u00A9e) |
|
29 |
command.label.111 = Enregistrer les annotations |
|
30 |
command.label.112 = Ex\u00C3\u00A9cuter la s\u00C3\u00A9lection de texte |
|
31 |
command.label.113 = Aller \u00C3\u00A0 la ligne... |
|
32 |
command.label.114 = Exporter |
|
33 |
command.label.115 = Dimensions |
|
34 |
command.label.116 = Classification |
|
35 |
command.label.117 = Envoyer vers R |
|
36 |
command.label.118 = Exporter |
|
37 |
command.label.119 = Dimensions |
|
38 |
command.label.12 = XML-TEI TXM |
|
39 |
command.label.120 = Classification |
|
40 |
command.label.121 = Envoyer vers R |
|
41 |
command.label.122 = Nouveau fichier |
|
42 |
command.label.123 = Nouveau dossier |
|
43 |
command.label.124 = Exporter |
|
44 |
command.label.125 = Dimensions |
|
45 |
command.label.126 = Classification |
|
46 |
command.label.127 = Envoyer vers R |
|
47 |
command.label.128 = Envoyer vers l'Index |
|
48 |
command.label.129 = Copier |
|
49 |
command.label.13 = Charger corpus TXM 0.5 |
|
50 |
command.label.130 = Coller |
|
51 |
command.label.131 = Corpus |
|
52 |
command.label.132 = R |
|
53 |
command.label.133 = Hyperlien |
|
54 |
command.label.134 = Corpus |
|
55 |
command.label.135 = Fichier |
|
56 |
command.label.136 = Requ\u00C3\u00AAte |
|
57 |
command.label.137 = Console R |
|
58 |
command.label.138 = Variables R |
|
59 |
command.label.139 = Autres... |
|
60 |
command.label.14 = \u00C3\u0080 Propos de TXM |
|
61 |
command.label.140 = Afficher les num\u00C3\u00A9ros de ligne |
|
62 |
command.label.141 = Raccourcis clavier graphiques |
|
63 |
command.label.142 = Nouvelle session |
|
64 |
command.label.143 = Ex\u00C3\u00A9cuter |
|
65 |
command.label.144 = Activer l'affichage des caract\u00C3\u00A8res invisibles |
|
66 |
command.label.145 = Retour \u00C3\u00A0 l'\u00C3\u00A9tat initial du fichier |
|
67 |
command.label.146 = Mettre \u00C3\u00A0 jour le corpus |
|
68 |
command.label.147 = Recoder le corpus |
|
69 |
command.label.148 = Ouvrir biblio |
|
70 |
command.label.149 = Envoyer vers les cooccurrences |
|
71 |
command.label.15 = Chercher et Remplacer... |
|
72 |
command.label.150 = R\u00C3\u00A9f\u00C3\u00A9rentiels |
|
73 |
command.label.151 = Enregistrer les annotations |
|
74 |
command.label.152 = Mettre \u00C3\u00A0 jour le corpus |
|
75 |
command.label.153 = Recoder le corpus |
|
76 |
command.label.154 = Enregistrer les annotations |
|
77 |
command.label.155 = Mettre \u00C3\u00A0 jour le corpus |
|
78 |
command.label.156 = Ex\u00C3\u00A9cuter un fichier Groovy |
|
79 |
command.label.157 = Nouvelle fen\u00C3\u00AAtre |
|
80 |
command.label.158 = Nouveau fichier |
|
81 |
command.label.159 = Chercher et remplacer |
|
82 |
command.label.16 = Annuler |
|
83 |
command.label.160 = Trouver le pr\u00C3\u00A9c\u00C3\u00A9dent |
|
84 |
command.label.161 = Trouver le suivante |
|
85 |
command.label.162 = Recherche incr\u00C3\u00A9mentielle |
|
86 |
command.label.163 = Recherche incr\u00C3\u00A9mentielle (invers\u00C3\u00A9e) |
|
87 |
command.label.164 = Retour \u00C3\u00A0 l'\u00C3\u00A9tat initial du fichier |
|
88 |
command.label.165 = Tout s\u00C3\u00A9lectionner |
|
89 |
command.label.166 = Aller \u00C3\u00A0 la ligne... |
|
90 |
command.label.167 = Hyperlien |
|
91 |
command.label.168 = Afficher les num\u00C3\u00A9ros de ligne |
|
92 |
command.label.169 = Show Control characters |
|
93 |
command.label.17 = R\u00C3\u00A9tablir |
|
94 |
command.label.170 = Ex\u00C3\u00A9cuter le script courant |
|
95 |
command.label.171 = Ex\u00C3\u00A9cuter le texte s\u00C3\u00A9lectionn\u00C3\u00A9 |
|
96 |
command.label.172 = Ex\u00C3\u00A9cuter un script Groovy |
|
97 |
command.label.173 = Bienvenue |
|
98 |
command.label.174 = T\u00C3\u00A9l\u00C3\u00A9charger le manuel - PDF |
|
99 |
command.label.175 = Tester toutes les commandes |
|
100 |
command.label.176 = Vue interne |
|
101 |
command.label.177 = Macro |
|
102 |
command.label.178 = FAQ |
|
103 |
command.label.179 = Contribuer |
|
104 |
command.label.18 = Couper |
|
105 |
command.label.180 = Tester les modules d'imports |
|
106 |
command.label.181 = V\u00C3\u00A9rifier les mises \u00C3\u00A0 jour |
|
107 |
command.label.182 = Ajouter une extension |
|
108 |
command.label.183 = Vue interne |
|
109 |
command.label.184 = Recoder le corpus |
|
110 |
command.label.185 = Vue interne |
|
111 |
command.label.186 = \u00C3\u0089diter |
|
112 |
command.label.187 = Cr\u00C3\u00A9er une macro \u00C3\u00A0 partir d'un template |
|
113 |
command.label.188 = Copier dans le presse-papier |
|
114 |
command.label.189 = Synchronization des valeurs |
|
115 |
command.label.19 = Copier |
|
116 |
command.label.190 = Informations |
|
117 |
command.label.191 = Ajouter |
|
118 |
command.label.192 = Supprimer |
|
119 |
command.label.193 = Annotations au format XML-TEI... |
|
120 |
command.label.2 = XML Factiva |
|
121 |
command.label.20 = Coller |
|
122 |
command.label.21 = Ouvrir dans un \u00C3\u00A9diteur de texte |
|
123 |
command.label.22 = Ouvrir dans un navigateur |
|
124 |
command.label.23 = Ex\u00C3\u00A9cuter le Script |
|
125 |
command.label.24 = Propri\u00C3\u00A9t\u00C3\u00A9s |
|
126 |
command.label.25 = Ex\u00C3\u00A9cuter la s\u00C3\u00A9lection de texte |
|
127 |
command.label.26 = Ex\u00C3\u00A9cuter le Script |
|
128 |
command.label.27 = Supprimer |
|
129 |
command.label.28 = S\u00C3\u00A9lectionner tout |
|
130 |
command.label.29 = Sauver sous... |
|
131 |
command.label.3 = XML Transcriber +CSV |
|
132 |
command.label.30 = Encodage des caract\u00C3\u00A8res |
|
133 |
command.label.31 = Nils |
|
134 |
command.label.32 = CooccurrencesList |
|
135 |
command.label.33 = Documentation des macros |
|
136 |
command.label.34 = Ajouter une extension tierce |
|
137 |
command.label.35 = Wiki txm-users |
|
138 |
command.label.36 = Ajouter un Projet |
|
139 |
command.label.37 = Ajouter une Base |
|
140 |
command.label.38 = V\u00C3\u00A9rifier les packages R |
|
141 |
command.label.39 = CooccurrencesList |
|
142 |
command.label.4 = Pr\u00C3\u00A9f\u00C3\u00A9rences |
|
143 |
command.label.40 = R\u00C3\u00A9-ex\u00C3\u00A9cuter |
|
144 |
command.label.41 = CooccurrencesList |
|
145 |
command.label.42 = Graphique... |
|
146 |
command.label.43 = Console |
|
147 |
command.label.44 = Supprimer |
|
148 |
command.label.45 = \u00C3\u0089diter... |
|
149 |
command.label.46 = Copier |
|
150 |
command.label.47 = Couper |
|
151 |
command.label.48 = Description |
|
152 |
command.label.49 = Description |
|
153 |
command.label.5 = XML-TEI BFM |
|
154 |
command.label.50 = Charger |
|
155 |
command.label.51 = Donn\u00C3\u00A9es... |
|
156 |
command.label.52 = Raccourcis clavier |
|
157 |
command.label.53 = Signaler un bug |
|
158 |
command.label.54 = Proposer une am\u00C3\u00A9lioration |
|
159 |
command.label.55 = S'inscrire \u00C3\u00A0 la liste de diffusion txm-users |
|
160 |
command.label.56 = Site web du logiciel TXM |
|
161 |
command.label.57 = Coller |
|
162 |
command.label.58 = Exporter les donn\u00C3\u00A9es |
|
163 |
command.label.59 = Red\u00C3\u00A9marrer les moteurs |
|
164 |
command.label.6 = Quitter |
|
165 |
command.label.60 = Presse-papier |
|
166 |
command.label.61 = Hyperbase |
|
167 |
command.label.62 = Alceste |
|
168 |
command.label.63 = Lire le manuel |
|
169 |
command.label.64 = Factiva TXT |
|
170 |
command.label.65 = Supprimer |
|
171 |
command.label.66 = Index |
|
172 |
command.label.67 = Installer TreeTagger |
|
173 |
command.label.68 = Lire le manuel en ligne |
|
174 |
command.label.69 = Site web du projet Textom\u00C3\u00A9trie |
|
175 |
command.label.7 = Sous-Corpus |
|
176 |
command.label.70 = Dossier des manuels de TXM |
|
177 |
command.label.71 = \u00C3\u0089dition |
|
178 |
command.label.72 = Documentation du projet Textom\u00C3\u00A9trie |
|
179 |
command.label.73 = Envoyer vers les concordances |
|
180 |
command.label.74 = Envoyer vers les concordances |
|
181 |
command.label.75 = Changer la langue |
|
182 |
command.label.76 = Chat #txm |
|
183 |
command.label.77 = Envoyer vers l'Index |
|
184 |
command.label.78 = TXT + CSV |
|
185 |
command.label.79 = Lexique |
|
186 |
command.label.8 = Partition |
|
187 |
command.label.80 = AFC |
|
188 |
command.label.81 = XML-TMX |
|
189 |
command.label.82 = CQP |
|
190 |
command.label.83 = Nouveau fichier |
|
191 |
command.label.84 = Lexique |
|
192 |
command.label.85 = AFC |
|
193 |
command.label.86 = Sauvegarder |
|
194 |
command.label.87 = ODT/DOC/RTF + CSV |
|
195 |
command.label.88 = Tout sauvegarder |
|
196 |
command.label.89 = Table lexicale |
|
197 |
command.label.9 = XML-TEI Frantext |
|
198 |
command.label.90 = Fermer |
|
199 |
command.label.91 = Cooccurrences |
|
200 |
command.label.92 = XML-XTZ + CSV |
|
201 |
command.label.93 = Tout fermer |
|
202 |
command.label.94 = Table lexicale |
|
203 |
command.label.95 = Progression |
|
204 |
command.label.96 = Cooccurrences |
|
205 |
command.label.97 = Table lexicale |
|
206 |
command.label.98 = Trouver suivant |
|
207 |
command.label.99 = Envoyer vers progression |
|
208 |
command.name = Ouvrir un fichier |
|
209 |
command.name.0 = Ex\u00C3\u00A9cuter un Script Groovy |
|
210 |
command.name.1 = Cr\u00C3\u00A9er un Sous-Corpus |
|
211 |
command.name.10 = Ex\u00C3\u00A9cuter la s\u00C3\u00A9lection de texte en tant que script Groovy |
|
212 |
command.name.100 = Recoder le corpus |
|
213 |
command.name.101 = Copier |
|
214 |
command.name.102 = Recharger |
|
215 |
command.name.103 = Informations |
|
216 |
command.name.104 = Supprimer |
|
217 |
command.name.105 = Ajouter |
|
218 |
command.name.106 = Editer le fichier s\u00C3\u00A9lection\u00C3\u00A9 |
|
219 |
command.name.107 = Exporter les annotations en stand-off |
|
220 |
command.name.109 = Calculer le diagramme en b\u00E2tons des lignes s\u00C3\u00A9lectionn\u00C3\u00A9es |
|
221 |
command.name.11 = Ajouter un Projet |
|
222 |
command.name.12 = Supprimer un Projet |
|
223 |
command.name.13 = Ajouter une Base |
|
224 |
command.name.14 = Supprimer une Base |
|
225 |
command.name.15 = Ajouter un Texte |
|
226 |
command.name.16 = Supprimer un Texte |
|
227 |
command.name.17 = Construire un Corpus |
|
228 |
command.name.18 = Supprimer tous les corpus |
|
229 |
command.name.19 = Ouvrir l'\u00C3\u00A9diteur de test |
|
230 |
command.name.2 = Cr\u00C3\u00A9er une Partition |
|
231 |
command.name.20 = Choisir moteur de recherche |
|
232 |
command.name.21 = Ex\u00C3\u00A9cuter Script |
|
233 |
command.name.22 = Ex\u00C3\u00A9cuter un Script d'import |
|
234 |
command.name.23 = Description |
|
235 |
command.name.24 = Exporter les donn\u00C3\u00A9es |
|
236 |
command.name.25 = Red\u00C3\u00A9marrer |
|
237 |
command.name.26 = Supprimer |
|
238 |
command.name.27 = Index |
|
239 |
command.name.28 = Importe un corpus depuis le presse-papier (FR) |
|
240 |
command.name.29 = Ouvre l'\u00C3\u00A9dition |
|
241 |
command.name.3 = Convertir ancien fichier binaire |
|
242 |
command.name.30 = IndexToConcordances |
|
243 |
command.name.31 = Changer la langue |
|
244 |
command.name.32 = Progression |
|
245 |
command.name.33 = Parabrowser |
|
246 |
command.name.34 = ExportSVG |
|
247 |
command.name.35 = ComputeCooccurrences |
|
248 |
command.name.36 = ComputeLexicalTable |
|
249 |
command.name.37 = Supprimer |
|
250 |
command.name.38 = Fusionner |
|
251 |
command.name.39 = Exporter la table |
|
252 |
command.name.4 = Sp\u00C3\u00A9cificit\u00C3\u00A9s |
|
253 |
command.name.40 = Importer une table |
|
254 |
command.name.41 = CoocToConc |
|
255 |
command.name.42 = VocToProgress |
|
256 |
command.name.43 = VocToLexicalTable |
|
257 |
command.name.44 = R\u00C3\u00A9f\u00C3\u00A9rences |
|
258 |
command.name.45 = Ex\u00C3\u00A9cuter un script R |
|
259 |
command.name.46 = Ex\u00C3\u00A9cuter la s\u00C3\u00A9lection de texte |
|
260 |
command.name.47 = Nouveau fichier |
|
261 |
command.name.48 = Nouveau dossier |
|
262 |
command.name.49 = Dimensions |
|
263 |
command.name.50 = Ex\u00C3\u00A9cuter Text |
|
264 |
command.name.51 = R\u00C3\u00A9glages |
|
265 |
command.name.52 = Corpus au format binaire... |
|
266 |
command.name.53 = Envoyer vers R |
|
267 |
command.name.54 = Classification |
|
268 |
command.name.55 = Copier |
|
269 |
command.name.56 = Coller |
|
270 |
command.name.57 = RefToConc |
|
271 |
command.name.58 = LexiconToIndex |
|
272 |
command.name.59 = OpenEmptyTextEditor |
|
273 |
command.name.6 = Analyse des Correspondances |
|
274 |
command.name.60 = SoumettreRcode |
|
275 |
command.name.61 = afficher l'aide svg |
|
276 |
command.name.62 = OuvrirFormulaireImport |
|
277 |
command.name.63 = Ouvrir Biblio |
|
278 |
command.name.64 = CopySelection |
|
279 |
command.name.65 = IndexToCooccurrence |
|
280 |
command.name.66 = Ex\u00C3\u00A9cuter un fichier Groovy |
|
281 |
command.name.67 = Sauver Sous |
|
282 |
command.name.68 = Supprimer |
|
283 |
command.name.69 = Copier |
|
284 |
command.name.7 = Index |
|
285 |
command.name.70 = Coller |
|
286 |
command.name.71 = Couper |
|
287 |
command.name.72 = Encodage Caracteres |
|
288 |
command.name.73 = Naviguer |
|
289 |
command.name.74 = Ouvrir page web par langue |
|
290 |
command.name.75 = Envoyer vers la concordance |
|
291 |
command.name.76 = Envoyer vers l'Index |
|
292 |
command.name.77 = Envoyer vers la progression |
|
293 |
command.name.78 = Tester toutes les commandes |
|
294 |
command.name.79 = Ex\u00C3\u00A9cuter la Macro |
|
295 |
command.name.8 = Afficher dans un lecteur HTML |
|
296 |
command.name.80 = Cr\u00C3\u00A9erMacro |
|
297 |
command.name.81 = Distance intertextuelle |
|
298 |
command.name.82 = Index de requ\u00C3\u00AAte |
|
299 |
command.name.83 = CoocMatrix |
|
300 |
command.name.84 = Test imports |
|
301 |
command.name.85 = Test Nils |
|
302 |
command.name.86 = Index de requ\u00C3\u00AAte vers Table lexicale |
|
303 |
command.name.87 = Mise \u00C3\u00A0 jour de TXM |
|
304 |
command.name.88 = Mise \u00C3\u00A0 jour de TXM |
|
305 |
command.name.89 = R\u00C3\u00A9-ex\u00C3\u00A9cuter le dernier script Groovy |
|
306 |
command.name.9 = Propri\u00C3\u00A9t\u00C3\u00A9s |
|
307 |
command.name.90 = V\u00C3\u00A9rifier les packages R |
|
308 |
command.name.91 = DownloadFile |
|
309 |
command.name.92 = Exporter le graphique |
|
310 |
command.name.93 = Reconnecter le RWorkspace |
|
311 |
command.name.94 = R\u00C3\u00A9initialiser l'affichage |
|
312 |
command.name.95 = Lire le manuel |
|
313 |
command.name.96 = TextToConcordance |
|
314 |
command.name.97 = Enregistrer les annotations |
|
315 |
command.name.98 = Mettre \u00C3\u00A0 jour le corpus |
|
316 |
command.name.99 = Vue r\u00C3\u00A9f\u00C3\u00A9rentiels |
|
317 |
command.tooltip = Ouvrir dans un navigateur HTML |
|
318 |
command.tooltip.0 = Afficher les pr\u00C3\u00A9f\u00C3\u00A9rences |
|
319 |
command.tooltip.1 = Import au format XML-PPS de Factiva |
|
320 |
command.tooltip.10 = Afficher les propri\u00C3\u00A9t\u00C3\u00A9s de cette instance de la plateforme TXM |
|
321 |
command.tooltip.11 = XML-TEI TXM |
|
322 |
command.tooltip.12 = Convertir un corpus binaire TXM 0.5 en binaire TXM 0.6 |
|
323 |
command.tooltip.13 = Documentation des macros |
|
324 |
command.tooltip.14 = Ex\u00C3\u00A9cuter le script |
|
325 |
command.tooltip.15 = Supprimer fichier |
|
326 |
command.tooltip.16 = Copier le fichier |
|
327 |
command.tooltip.17 = Ouvrir un fichier dans un \u00C3\u00A9diteur de texte |
|
328 |
command.tooltip.18 = Ouvrir un fichier dans un navigateur |
|
329 |
command.tooltip.19 = Ex\u00C3\u00A9cuter le Script |
|
330 |
command.tooltip.2 = Quitter la plateforme TXM |
|
331 |
command.tooltip.20 = Couper le fichier |
|
332 |
command.tooltip.21 = Coller le fichier |
|
333 |
command.tooltip.22 = Importer un corpus au format Factiva TXT |
|
334 |
command.tooltip.23 = Lire la version HTML du manuel de TXM |
|
335 |
command.tooltip.233 = T\u00C3\u00A9l\u00C3\u00A9charger la version PDF du manuel de TXM pour impression |
|
336 |
command.tooltip.24 = Importer un corpus au format XML-TMX |
|
337 |
command.tooltip.25 = Importer un corpus au format CQP |
|
338 |
command.tooltip.26 = Red\u00C3\u00A9marrer les moteurs de TXM |
|
339 |
command.tooltip.27 = Importer un corpus depuis le presse-papier |
|
340 |
command.tooltip.28 = Importer un corpus au format CNR |
|
341 |
command.tooltip.29 = Importer un corpus au format Hyperbase |
|
342 |
command.tooltip.3 = S\u00C3\u00A9lectionner un sous-ensemble d'occurrences |
|
343 |
command.tooltip.30 = Importer un corpus au format Alceste |
|
344 |
command.tooltip.31 = Afficher les caract\u00C3\u00A8res non imprimables |
|
345 |
command.tooltip.32 = Lire l'\u00C3\u00A9dition |
|
346 |
command.tooltip.33 = Supprimer l'objet s\u00C3\u00A9lectionn\u00C3\u00A9 |
|
347 |
command.tooltip.34 = Cr\u00C3\u00A9\u00C3\u00A9 un nouveau fichier |
|
348 |
command.tooltip.35 = Afficher les caract\u00C3\u00A8res non imprimables |
|
349 |
command.tooltip.36 = Ex\u00C3\u00A9cuter le texte s\u00C3\u00A9lectionn\u00C3\u00A9 |
|
350 |
command.tooltip.37 = Ex\u00C3\u00A9cuter un script Groovy |
|
351 |
command.tooltip.38 = Lancer un long processus de test de toute les commandes disponibles |
|
352 |
command.tooltip.39 = Lire l'\u00C3\u00A9dition |
|
353 |
command.tooltip.4 = Diviser l'objet s\u00C3\u00A9lectionn\u00C3\u00A9 en plusieurs parties |
|
354 |
command.tooltip.40 = Lire les propri\u00C3\u00A9t\u00C3\u00A9s des mots du corpus |
|
355 |
command.tooltip.41 = R\u00C3\u00A9ponses aux questions les plus fr\u00C3\u00A9quentes |
|
356 |
command.tooltip.42 = Changer la langue de l'interface |
|
357 |
command.tooltip.43 = Wiki txm-users |
|
358 |
command.tooltip.44 = XML/w + CSV |
|
359 |
command.tooltip.45 = Ex\u00C3\u00A9cuter un script d'import sur un dossier de fichiers source |
|
360 |
command.tooltip.46 = Calculer l'Analyse Factorielle des Correspondances |
|
361 |
command.tooltip.47 = Contribuer \u00C3\u00A0 TXM |
|
362 |
command.tooltip.48 = Tester les modules d'import |
|
363 |
command.tooltip.49 = Calculer l'Analyse Factorielle des Correspondances |
|
364 |
command.tooltip.5 = Import au format XML-TRS de Trasncriber |
|
365 |
command.tooltip.50 = R\u00C3\u00A9-ex\u00C3\u00A9cuter le dernier script Groovy |
|
366 |
command.tooltip.51 = Calculer une table lexicale |
|
367 |
command.tooltip.52 = Lire les propri\u00C3\u00A9t\u00C3\u00A9s des mots du corpus |
|
368 |
command.tooltip.53 = Calculer les cooccurrents d'une requ\u00C3\u00AAte |
|
369 |
command.tooltip.54 = Exporter au format SVG... |
|
370 |
command.tooltip.55 = Calculer une table lexicale |
|
371 |
command.tooltip.56 = Calculer la progression d'une ou plusieurs requ\u00C3\u00AAtes |
|
372 |
command.tooltip.57 = Calculer les cooccurrents d'une requ\u00C3\u00AAte |
|
373 |
command.tooltip.58 = Calculer une table lexicale |
|
374 |
command.tooltip.59 = Lire les propri\u00C3\u00A9t\u00C3\u00A9s des mots du corpus |
|
375 |
command.tooltip.6 = Calculer les mots sp\u00C3\u00A9cifiques de chaque partie |
|
376 |
command.tooltip.60 = Calculer la synth\u00C3\u00A8se des propri\u00C3\u00A9t\u00C3\u00A9s du corpus |
|
377 |
command.tooltip.61 = Calculer le lexique complet |
|
378 |
command.tooltip.62 = Calculer le lexique d'une requ\u00C3\u00AAte |
|
379 |
command.tooltip.63 = Calculer les r\u00C3\u00A9f\u00C3\u00A9rences d'une requ\u00C3\u00AAte |
|
380 |
command.tooltip.64 = Ouvre le manuel PDF avec le lecteur PDF par d\u00C3\u00A9faut |
|
381 |
command.tooltip.65 = cannal IRC TXM |
|
382 |
command.tooltip.66 = Libre Office, Word and RTF import module |
|
383 |
command.tooltip.67 = Exporter dans un fichier |
|
384 |
command.tooltip.68 = Visualiser la taille des parties |
|
385 |
command.tooltip.69 = Calculer la classification |
|
386 |
command.tooltip.70 = Envoyer vers R |
|
387 |
command.tooltip.71 = Exporter |
|
388 |
command.tooltip.72 = Dimensions |
|
389 |
command.tooltip.73 = Classification |
|
390 |
command.tooltip.74 = Envoyer vers R |
|
391 |
command.tooltip.75 = Nouveau fichier |
|
392 |
command.tooltip.76 = Nouveau dossier |
|
393 |
command.tooltip.77 = Exporter le corpus dans une archive binaire |
|
394 |
command.tooltip.78 = Dimensions |
|
395 |
command.tooltip.79 = Classification |
|
396 |
command.tooltip.8 = XML-TEI BFM |
|
397 |
command.tooltip.80 = Envoyer vers R |
|
398 |
command.tooltip.81 = Copier les requ\u00C3\u00AAtes s\u00C3\u00A9lectionn\u00C3\u00A9es |
|
399 |
command.tooltip.82 = Ajouter une requ\u00C3\u00AAte au journal |
|
400 |
command.tooltip.83 = Raccourcis clavier graphiques |
|
401 |
command.tooltip.84 = Nouvelle session |
|
402 |
command.tooltip.85 = Ex\u00C3\u00A9cuter la s\u00C3\u00A9lection ou le script |
|
403 |
command.tooltip.86 = Editer la macro |
|
404 |
command.tooltip.87 = Ouvrir l'\u00C3\u00A9dition |
|
405 |
command.tooltip.88 = XML-XTZ + CSV |
|
406 |
command.tooltip.89 = Copier dans le presse-papier |
|
407 |
command.tooltip.9 = XML-TEI Frantext |
|
408 |
command.tooltip.90 = Remise \u00C3\u00A0 z\u00C3\u00A9ro et recharger des valeurs |
|
409 |
command.tooltip.91 = Ouvrir biblio |
|
410 |
command.tooltip.92 = Cr\u00C3\u00A9er une macro |
|
411 |
command.tooltip.93 = Affiche des informations suppl\u00C3\u00A9mentaires de l'\u00C3\u00A9l\u00C3\u00A9ment s\u00C3\u00A9lectionn\u00C3\u00A9 |
|
412 |
command.tooltip.94 = Ajouter un nouvel \u00C3\u00A9l\u00C3\u00A9ment |
|
413 |
command.tooltip.95 = Supprimer l'\u00C3\u00A9l\u00C3\u00A9ment s\u00C3\u00A9lectionn\u00C3\u00A9 |
|
414 |
|
|
415 |
editor.name = Graphiques SVG |
|
416 |
editor.name.14 = R\u00E9f\u00E9rences |
|
417 |
editor.name.6 = Exploreur d'object |
|
418 |
|
|
419 |
menu.label = Fichier |
|
420 |
menu.label.0 = Importer |
|
421 |
menu.label.1 = Corpus |
|
422 |
menu.label.10 = Groovy |
|
423 |
menu.label.11 = R |
|
424 |
menu.label.12 = Recettes |
|
425 |
menu.label.2 = Aide |
|
426 |
menu.label.3 = \u00C3\u0089dition |
|
427 |
menu.label.4 = Extensions |
|
428 |
menu.label.5 = Exporter |
|
429 |
menu.label.6 = Outils |
|
430 |
menu.label.7 = Affichage |
|
431 |
menu.label.8 = Perspectives |
|
432 |
menu.label.9 = Vues |
|
433 |
menu.tooltip = Lire le Guide Utilisateur de TXM |
|
434 |
menu.tooltip.0 = Affichage |
|
435 |
menu.tooltip.1 = Recettes de plugins |
|
436 |
|
|
437 |
page.name = Utilisateur |
|
438 |
page.name.0 = Avanc\u00C3\u00A9 |
|
439 |
page.name.10 = Analyse des correspondances |
|
440 |
page.name.11 = Cooccurrences |
|
441 |
page.name.12 = Export |
|
442 |
page.name.13 = Table lexicale |
|
443 |
page.name.14 = Progression |
|
444 |
page.name.15 = Sp\u00C3\u00A9cificit\u00C3\u00A9s |
|
445 |
page.name.16 = R\u00C3\u00A9f\u00C3\u00A9rences |
|
446 |
page.name.17 = Classification |
|
447 |
page.name.18 = Scripts |
|
448 |
page.name.19 = Import |
|
449 |
page.name.2 = Explorateur de fichiers |
|
450 |
page.name.20 = Moteur de Graphiques |
|
451 |
page.name.21 = JFreeChart |
|
452 |
page.name.22 = Partition |
|
453 |
page.name.23 = Annotation |
|
454 |
page.name.3 = Moteur de Statistique |
|
455 |
page.name.4 = Moteur de Corpus |
|
456 |
page.name.5 = Nuage de mot |
|
457 |
page.name.6 = \ TXM |
|
458 |
page.name.7 = TreeTagger |
|
459 |
page.name.8 = TAL |
|
460 |
page.name.9 = Description |
|
0 | 461 |
Formats disponibles : Unified diff