Révision 703

tmp/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/CQPPreferences.java (revision 703)
9 9
import org.txm.utils.logger.Log;
10 10

  
11 11
/**
12
 * Default preferences initializer.
12
 * CQP preferences initializer.
13 13
 * 
14 14
 * @author mdecorde
15 15
 * @author sjacquot
......
22 22

  
23 23
	public static final String PREFERENCES_PREFIX = "cqp_"; //$NON-NLS-1$
24 24
	
25
	
26
	/**
27
	 * The maximum number of word property values to display.
28
	 */
29
	public static final String MAX_VALUE = PREFERENCES_PREFIX + "information_max_properties_to_display"; //$NON-NLS-1$
30 25

  
31 26
	@Override
32 27
	public void initializeDefaultPreferences() {
......
34 29

  
35 30
		Preferences preferences = DefaultScope.INSTANCE.getNode(PREFERENCES_NODE);
36 31
		
37
		preferences.putInt(MAX_VALUE, 10);
32

  
38 33
	}
39 34
}
tmp/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/core/messages/messages.properties (revision 703)
1

  
2
Diagnostic_0  = * Structural Units properties\n
3
Diagnostic_1  = ** Failed to access corpus 
4
Diagnostic_11 = \ structures
5
Diagnostic_14 = Lexical Units properties (max {0} values)
6
Diagnostic_16 = Number of structural units 
7
Diagnostic_2  = ** Error
8
Diagnostic_22 = Structural Units properties (max {0} values)
9
Diagnostic_26 = No property
10
Diagnostic_3  = Description of 
11
Diagnostic_4  = \ properties
12
Diagnostic_40 = * General Statistics\n
13
Diagnostic_41 = - T 
14
Diagnostic_43 = - Word properties 
15
Diagnostic_49 = - S 
16
Diagnostic_5  = General Statistics
17
Diagnostic_6  = ** Failed to access corpus 
18
Diagnostic_7  = Number of words 
19
Diagnostic_8  = \ lexicon
20
Diagnostic_9  = Number of word properties 
tmp/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/core/messages/messages_fr.properties (revision 703)
1

  
2
Diagnostic_0  = <h3>Propriétés des structures\n
3
Diagnostic_1  = ** Echec d'accès au corpus
4
Diagnostic_11 = \ structures
5
Diagnostic_14 = Propriétés des unités lexicales (max {0} valeurs)
6
Diagnostic_16 = Nombre d'unités de structure 
7
Diagnostic_2  = ** Erreur
8
Diagnostic_22 = Propriétés des structures (max {0} valeurs)
9
Diagnostic_26 = Pas de propriété
10
Diagnostic_3  = Description du corpus 
11
Diagnostic_4  = \ propriétés
12
Diagnostic_40 = * Statistiques Générales\n
13
Diagnostic_41 = - T
14
Diagnostic_43 = - Propriétés de mot 
15
Diagnostic_49 = - S
16
Diagnostic_5  = Statistiques Générales
17
Diagnostic_6  = ** Echec d'accès au corpus
18
Diagnostic_7  = Nombre de mots 
19
Diagnostic_8  = \ lexique
20
Diagnostic_9  = Nombre de propriétés de mot 
tmp/org.txm.searchengine.cqp.core/src/org/txm/searchengine/cqp/core/messages/CQPSearchEngineCoreMessages.java (revision 703)
16 16
	private static final String BUNDLE_NAME = "org.txm.searchengine.cqp.core.messages.messages"; //$NON-NLS-1$
17 17

  
18 18
	
19
	public static String Diagnostic_0;
20
	public static String Diagnostic_1;
21
	public static String Diagnostic_11;
22
	public static String Diagnostic_14;
23
	public static String Diagnostic_16;
24
	public static String Diagnostic_2;
25
	public static String Diagnostic_22;
26
	public static String Diagnostic_26;
27
	public static String Diagnostic_3;
28
	public static String Diagnostic_4;
29
	public static String Diagnostic_40;
30
	public static String Diagnostic_41;
31
	public static String Diagnostic_43;
32
	public static String Diagnostic_49;
33
	public static String Diagnostic_5;
34
	public static String Diagnostic_6;
35
	public static String Diagnostic_7;
36
	public static String Diagnostic_8;
37
	public static String Diagnostic_9;
38

  
39 19
	
40 20
	
41 21
	static {
tmp/org.txm.searchengine.cqp.core/META-INF/MANIFEST.MF (revision 703)
16 16
Export-Package: org.txm.importer.cwb,
17 17
 org.txm.searchengine.cqp,
18 18
 org.txm.searchengine.cqp.clientExceptions,
19
 org.txm.searchengine.cqp.core.functions.information,
20 19
 org.txm.searchengine.cqp.core.functions.preview,
21 20
 org.txm.searchengine.cqp.core.functions.selection,
22 21
 org.txm.searchengine.cqp.core.functions.summary,
tmp/org.txm.para.core/src/org/txm/para/core/functions/ParaBrowser.java (revision 703)
36 36

  
37 37

  
38 38
	/**
39
	 * Gets the nextor previous.
39
	 * Gets the next or previous.
40 40
	 *
41 41
	 * @param unit the unit
42 42
	 * @param property the property
......
259 259
	@Override
260 260
	public boolean setParameters(TXMParameters parameters) {
261 261
		// FIXME: not yet computed
262
		System.err.println("ParaBrower.setParameters() not implemented");
262
		System.err.println("ParaBrowser.setParameters() not implemented");
263 263
		return false;
264 264
	}
265 265

  
......
267 267
	@Override
268 268
	public boolean saveParameters() throws Exception {
269 269
		// FIXME: not yet computed
270
		System.err.println("ParaBrower.saveParameters() not implemented");
270
		System.err.println("ParaBrowser.saveParameters() not implemented");
271 271
		return false;
272 272
	}
273 273

  
......
275 275
	@Override
276 276
	public boolean loadParameters() throws Exception {
277 277
		// FIXME: not yet computed
278
		System.err.println("ParaBrower.loadParameters() not implemented");
278
		System.err.println("ParaBrowser.loadParameters() not implemented");
279 279
		return false;
280 280
	}
281 281

  
......
283 283
	@Override
284 284
	public boolean canCompute() throws Exception {
285 285
		// FIXME: not yet computed
286
		System.err.println("ParaBrower.canCompute() not implemented");
286
		System.err.println("ParaBrowser.canCompute() not implemented");
287 287
		return false;
288 288
	}
289 289

  
......
291 291
	@Override
292 292
	protected boolean _compute() throws Exception {
293 293
		// FIXME: not yet computed
294
		System.err.println("ParaBrower._compute() not implemented");
294
		System.err.println("ParaBrowser._compute() not implemented");
295 295
		return false;
296 296
	}
297 297
}
tmp/org.txm.rcp/src/main/java/org/txm/rcp/AdapterFactory.java (revision 703)
38 38
import org.eclipse.osgi.util.NLS;
39 39
import org.eclipse.ui.model.IWorkbenchAdapter;
40 40
import org.eclipse.ui.plugin.AbstractUIPlugin;
41
import org.txm.core.preferences.TBXPreferences;
42 41
import org.txm.core.results.TXMResult;
43
import org.txm.objects.SavedQuery;
44
import org.txm.objects.Text;
45 42
//import org.txm.functions.queryindex.QueryIndex;
46 43
import org.txm.rcp.adapters.TXMResultAdapter;
47 44
import org.txm.rcp.messages.TXMUIMessages;
48 45
import org.txm.searchengine.cqp.clientExceptions.CqiClientException;
49
import org.txm.searchengine.cqp.corpus.Corpus;
50 46
import org.txm.searchengine.cqp.corpus.CorpusManager;
51 47
import org.txm.searchengine.cqp.corpus.MainCorpus;
52
import org.txm.searchengine.cqp.corpus.Partition;
53
import org.txm.searchengine.cqp.corpus.Subcorpus;
54 48

  
55 49
// TODO: Auto-generated Javadoc
56 50
/**
tmp/org.txm.rcp/plugin.xml (revision 703)
240 240
            name="%editor.name.6">
241 241
      </editor>
242 242
      <editor
243
            class="org.txm.rcp.editors.parabrowser.ParaBrowserEditor"
244
            default="false"
245
            id="org.txm.rcp.editors.parabrowser.ParaBrowserEditor"
246
            name="%editor.name.8">
247
      </editor>
248
      <editor
249 243
            class="org.txm.rcp.editors.imports.ImportFormEditor"
250 244
            default="false"
251 245
            icon="icons/objects/books.png"
......
1345 1339
                     <reference
1346 1340
                           definitionId="OneCAHSelected">
1347 1341
                     </reference>
1348
                     <reference
1349
                           definitionId="OneTXMResultSelected">
1350
                     </reference>
1351 1342
                  </or>
1352 1343
               </visibleWhen>
1353 1344
            </command>
......
1362 1353
                     <reference
1363 1354
                           definitionId="SVGEditorActive">
1364 1355
                     </reference>
1365
                     <reference
1366
                           definitionId="OneCAHSelected">
1367
                     </reference>
1368
                     <reference
1369
                           definitionId="OneProgressionSelected">
1370
                     </reference>
1371
                     <reference
1372
                           definitionId="OneWordCloudSelected">
1373
                     </reference>
1374 1356
                  </or>
1375 1357
               </visibleWhen>
1376 1358
            </command>
......
2458 2440
         point="org.eclipse.ui.commands">
2459 2441

  
2460 2442
      <command
2461
            categoryId="org.txm.rcp.category.txm"
2462
            defaultHandler="org.txm.para.rcp.handlers.OpenParaBrowser"
2463
            id="org.txm.para.rcp.handlers.OpenParaBrowser"
2464
            name="%command.name.33">
2465
      </command>
2466
      <command
2467 2443
            defaultHandler="org.txm.rcp.commands.tests.NilsTest"
2468 2444
            description="%command.description.2"
2469 2445
            id="org.txm.rcp.commands.tests.NilsTest"
tmp/org.txm.rcp/OSGI-INF/l10n/bundle.properties (revision 703)
442 442

  
443 443
command.name.31 = Change language
444 444

  
445
command.name.33 = ParaBrowser
446

  
447 445
command.name.34 = ExportSVG
448 446

  
449 447
command.name.36 = ComputeLexicalTable
......
772 770

  
773 771
editor.name.6 = ObjectExplorer
774 772

  
775
editor.name.8 = ParaBrowser
776

  
777 773
extension-point.name = Installation command
778 774

  
779 775
extension.name = Workspace Commands
tmp/org.txm.rcp/OSGI-INF/l10n/bundle_ru.properties (revision 703)
1
#=
2
#Mon Mar 05 10:02:31 CET 2012=N/A_
3
command.tooltip.69=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f
4
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
5
command.label.139=\u0415\u0449\u0451...
6
command.tooltip.66=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043a\u0430\u043a \u0441\u043a\u0440\u0438\u043f\u0442 R
7
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
1
#Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/)
2
#=
3
#Mon Mar 05 10:02:31 CET 2012=N/A_
8 4

  
9
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
10
command.label.136=\u0417\u0430\u043f\u0440\u043e\u0441
11
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
12
command.label.135=\u0424\u0430\u0439\u043b
13
command.label.134=\u041a\u043e\u0440\u043f\u0443\u0441
14
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
15
command.label.132=R
16
command.label.131=\u041a\u043e\u0440\u043f\u0443\u0441
17
command.label.130=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c
18
category.name.0=TXM
19
command.name.9=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c
20
command.name.8=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 HTML
21
command.name.6=\u0410\u043d\u0430\u043b\u0438\u0437 \u041a\u043e\u0440\u0440\u0435\u043b\u044f\u0446\u0438\u0439
22
command.name.2=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0420\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435
23
command.name.1=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u041f\u043e\u0434\u043a\u043e\u0440\u043f\u0443\u0441
24
command.name.0=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442 Groovy
25
command.tooltip.58=\u0421\u043b\u043e\u0432\u0430\u0440\u043d\u0430\u044f \u0442\u0430\u0431\u043b\u0438\u0446\u0430
26
command.label.129=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c
27
command.label.128=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430 \u0418\u043d\u0434\u0435\u043a\u0441
28
command.label.127=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430 R
29
command.tooltip.55=\u0421\u043b\u043e\u0432\u0430\u0440\u043d\u0430\u044f \u0442\u0430\u0431\u043b\u0438\u0446\u0430
30
command.label.126=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f
31
command.tooltip.54=\u042d\u043a\u0441\u043f\u043e\u0440\u0442 SVG
32
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
33
command.label.124=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u043e\u0440\u043f\u0443\u0441
34
command.label.123=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443
35
command.tooltip.51=\u0421\u043b\u043e\u0432\u0430\u0440\u043d\u0430\u044f \u0442\u0430\u0431\u043b\u0438\u0446\u0430
36
command.label.122=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0444\u0430\u0439\u043b
37
command.tooltip.50=\u042d\u043a\u0441\u043f\u043e\u0440\u0442 SVG
38
command.label.121=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432 R
39
command.label.120=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f
40
command.tooltip.49=\u0424\u0410\u041a
41
command.tooltip.46=\u0424\u0410\u041a
42
command.label.118=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u043e\u0440\u043f\u0443\u0441
43
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
44
command.label.117=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432 R
45
command.tooltip.44=XML/w
46
command.label.116=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f
47
command.tooltip.43=XML-TEI BFM
48
command.tooltip.42=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u044f\u0437\u044b\u043a
49
command.label.114=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u043e\u0440\u043f\u0443\u0441
50
command.label.111=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442 R
51
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
52
command.label.108=\u0421\u0441\u044b\u043b\u043a\u0438
53
command.label.107=\u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443
54
command.label.106=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443
55
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
56
command.label.105=\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0438
57
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
58
command.label.103=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430 \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0438\u044e
59
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
60
command.label.102=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043d\u043a\u043e\u0440\u0434\u0430\u043d\u0441
61
command.label.101=\u042d\u043a\u0441\u043f\u043e\u0440\u0442 SVG
62
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
63
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
64
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
65
command.tooltip.26=\u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c TXM
66
extension.name=\u041a\u043e\u043c\u0430\u043d\u0434\u044b \u041c\u0430\u0441\u0442\u0435\u0440\u0441\u043a\u043e\u0439
67
menu.label.10=Groovy
68
command.tooltip.19=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0421\u043a\u0440\u0438\u043f\u0442
69
command.tooltip.18=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0444\u0430\u0439\u043b \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 HTML
70
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
71
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
72
menu.tooltip.0=\u0412\u0438\u0434
73
perspective.name= 
74
perspective.name.0= 
75
command.tooltip=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 HTML
76
extension-point.name=N/A_Command
77
command.name=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0444\u0430\u0439\u043b
78
page.name.18=\u0421\u043a\u0440\u0438\u043f\u0442\u044b
79
page.name.17=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f
80
page.name.16=\u0421\u0441\u044b\u043b\u043a\u0438
81
page.name.12=\u042d\u043a\u0441\u043f\u043e\u0440\u0442
82
page.name.10=\u0430\u043d\u0430\u043b\u0438\u0437 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0439
83
page.name=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c
84
menu.label=\u0424\u0430\u0439\u043b
85
command.tooltip.7=\u0421\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043a\u043e\u043d\u043a\u043e\u0440\u0434\u0430\u043d\u0441
86
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
87
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
88
command.tooltip.2=\u0412\u044b\u0439\u0442\u0438 \u0438\u0437 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b TXM
89
command.tooltip.0=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438
90
page.name.8=NLP
91
page.name.6=\ TXM
92
page.name.5=\u042f\u0437\u044b\u043a
93
page.name.4=\u041f\u043e\u0438\u0441\u043a\u043e\u0432\u0430\u044f \u043c\u0430\u0448\u0438\u043d\u0430
94
page.name.3=\u0421\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u043c\u0430\u0448\u0438\u043d\u0430
95
page.name.0=\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e
96
commandParameter.name.2=\u0441\u043a\u0440\u0438\u043f\u0442 \u0434\u043b\u044f \u0438\u043c\u043f\u043e\u0440\u0442\u0430
97
commandParameter.name.1=\u0441\u043a\u0440\u0438\u043f\u0442
98
commandParameter.name.0=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 \u043a\u043e\u0440\u043f\u0443\u0441\u0430
99
editor.name.16=\u0422\u0435\u0441\u0442\u043e\u0432\u044b\u0439 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440
100
editor.name.15=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0438\u043c\u043f\u043e\u0440\u0442\u0430
101
editor.name.13=\u0424\u0410\u0421
102
editor.name.11=\u0421\u043b\u043e\u0432\u0430\u0440\u043d\u0430\u044f \u0442\u0430\u0431\u043b\u0438\u0446\u0430
103
editor.name.10=\u0413\u0440\u0430\u0444 \u0424\u0410\u0421
104
view.name.7=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435
105
view.name.4=\u0417\u0430\u043f\u0440\u043e\u0441
106
view.name.3=\u0411\u0430\u0437\u0430
107
view.name.2=G. \u041a\u043e\u043d\u0441\u043e\u043b\u044c
108
view.name.1=\u0424\u0430\u0439\u043b
109
view.name.0=\u041f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0438\u044f
110
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
111
command.label.99=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432 \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0438\u044e
112
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
113
command.label.94=\u0421\u043b\u043e\u0432\u0430\u0440\u043d\u0430\u044f \u0442\u0430\u0431\u043b\u0438\u0446\u0430
114
command.label.92=\u042d\u043a\u0441\u043f\u043e\u0440\u0442
115
command.label.8=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0420\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435
116
editor.name.8=\u041f\u0430\u0440\u0430\u0431\u0440\u0430\u0443\u0437\u0435\u0440
117
command.label.7=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u0434\u043a\u043e\u0440\u043f\u0443\u0441
118
command.label.6=\u0412\u044b\u0439\u0442\u0438
119
editor.name.6=\u041f\u0440\u043e\u0432\u043e\u0434\u043d\u0438\u043a \u043f\u043e \u043e\u0431\u044a\u0435\u043a\u0442\u0430\u043c
120
editor.name.5=\u0418\u0437\u0434\u0430\u043d\u0438\u0435
121
command.label.4=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438
122
editor.name.4=\u0422\u0435\u043a\u0441\u0442
123
editor.name.2=\u041a\u043e\u043d\u043a\u043e\u0440\u0434\u0430\u043d\u0441\u044b
124
editor.name.1=Multitab
125
command.label.0=CNR + CSV
126
editor.name.0=\u0418\u043d\u0434\u0435\u043a\u0441
127
command.label=\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u0444\u0430\u0439\u043b HTML
128
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
129
command.label.89=\u0421\u043b\u043e\u0432\u0430\u0440\u043d\u0430\u044f \u0442\u0430\u0431\u043b\u0438\u0446\u0430
130
command.label.87=\u042d\u043a\u0441\u043f\u043e\u0440\u0442
131
command.label.84=\u0421\u043b\u043e\u0432\u0430\u0440\u044c
132
command.label.80=\u0424\u0410\u0421
133
category.name=TXM
134
command.label.79=\u0421\u043b\u043e\u0432\u0430\u0440\u044c
135
command.label.78=TXT + CSV
136
command.label.76=XML-TEI BFM
137
command.label.75=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u044f\u0437\u044b\u043a
138
command.label.74=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043d\u043a\u043e\u0440\u0434\u0430\u043d\u0441
139
command.label.73=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043d\u043a\u043e\u0440\u0434\u0430\u043d\u0441
140
command.label.71=\u0418\u0437\u0434\u0430\u043d\u0438\u0435
141
commandParameter.name=\u0424\u0430\u0439\u043b
142
command.name.66=\u0412\u044b\u043f\u043e\u043b\u0438\u0442\u044c \u0444\u0430\u0439\u043b Groovy
143
command.name.64=CopySelection
144
command.name.63=Open Biblio
145
command.name.62=OpenImportForm
146
command.name.61=show svg help
147
command.name.60=SubmitRcode
148
command.label.67=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c TreeTagger
149
command.label.66=\u0418\u043d\u0434\u0435\u043a\u0441
150
command.label.65=\u0423\u0434\u0430\u043b\u0438\u0442\u044c
151
command.label.62=Alceste
152
command.label.61=Hyperbase
153
command.label.60=\u0411\u0443\u0444\u0435\u0440 \u043e\u0431\u043c\u0435\u043d\u0430 (FR)
154
command.name.59=OpenEmptyTextEditor
155
command.name.58=LexiconToIndex
156
command.name.56=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c
157
command.name.55=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c
158
command.name.54=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f
159
command.name.52=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u043e\u0440\u043f\u0443\u0441
160
command.name.51=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438
161
command.label.59=\u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c
162
command.label.58=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
163
command.label.56=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f
164
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
165
command.label.54=\u0417\u0430\u044f\u0432\u043a\u0438 \u043d\u0430 \u043d\u043e\u0432\u044b\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u0438
166
command.label.53=\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043e\u0431 \u043e\u0448\u0438\u0431\u043a\u0430\u0445
167
command.label.52=Key assist
168
command.label.51=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
169
command.label.50=\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c
170
command.name.48=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443
171
command.name.47=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0444\u0430\u0439\u043b
172
command.description=\u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c TXM
173
command.name.43=VocToLexicalTable
174
command.name.42=VocToProgress
175
command.name.41=CoocToConc
176
view.name=\u041a\u043e\u0440\u043f\u0443\u0441
177
command.name.40=\u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443
178
command.label.45=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0444\u0430\u0439\u043b
179
command.label.43=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442
180
command.label.41=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u0430\u0437\u0443
181
decorator.label=\u0414\u0435\u043a\u043e\u0440\u0430\u0442\u043e\u0440 R
182
command.label.40=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442
183
command.name.39=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443
184
command.name.38=\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c
185
command.name.37=\u0423\u0434\u0430\u043b\u0438\u0442\u044c
186
command.name.36=ComputeLexicalTable
187
command.name.34=ExportSVG
188
command.name.33=\u041f\u0430\u0440\u0430\u0431\u0440\u0430\u0443\u0437\u0435\u0440
189
command.name.31=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u044f\u0437\u044b\u043a
190
command.name.30=IndexToConcordances
191
command.label.39=\u0414\u043e\u0431\u0430\u0432\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442
192
command.name.29=\u041e\u0442\u043a\u0440\u044b\u0432\u0430\u0435\u0442 \u0438\u0437\u0434\u0430\u043d\u0438\u0435
193
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)
194
command.name.26=\u0423\u0434\u0430\u043b\u0438\u0442\u044c
195
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
196
command.name.25=\u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c
197
command.tooltip.90=Open biblio
198
command.name.24=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
199
command.name.23=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435
200
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
201
editor.name=\u0413\u0440\u0430\u0444\u0438\u043a\u0438 SVG
202
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
203
menu.label.9=\u0412\u0438\u0434\u044b
204
menu.label.8=\u041f\u0435\u0440\u0441\u043f\u0435\u043a\u0442\u0438\u0432\u044b
205
menu.label.7=\u0412\u0438\u0434
206
menu.label.6=\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b
207
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
208
command.label.24=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430
209
command.label.23=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442
210
menu.label.2=\u041f\u043e\u043c\u043e\u0449\u044c
211
command.label.22=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 HTML
212
menu.label.1=\u041a\u043e\u0440\u043f\u0443\u0441
213
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
214
menu.label.0=\u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
215
command.tooltip.89=Open biblio
216
command.tooltip.88=Open file in browser
217
command.tooltip.87=Open edition
218
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
219
command.tooltip.84=\u041d\u043e\u0432\u044b\u0439 \u0441\u0435\u0430\u043d\u0441
220
command.label.156=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0444\u0430\u0439\u043b Groovy
221
command.tooltip.83=\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 SVG 
222
command.label.155=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0444\u0430\u0439\u043b \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435
223
command.name.17=\u041f\u043e\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043a\u043e\u0440\u043f\u0443\u0441
224
command.tooltip.82=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u043f\u0440\u043e\u0441 \u0432 \u043e\u0442\u0447\u0435\u0442
225
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
226
command.name.16=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u0435\u043a\u0441\u0442
227
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
228
command.label.153=Execute import script
229
command.name.15=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u0435\u043a\u0441\u0442
230
command.tooltip.80=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432 R
231
command.label.152=Execute import script
232
command.name.14=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u0430\u0437\u0443
233
command.label.151=Execute import script
234
command.name.13=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0431\u0430\u0437\u0443
235
command.label.150=Execute import script
236
command.name.12=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442
237
command.name.11=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442
238
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
239
command.label.14=\u041e \u041f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0435 TXM
240
command.label.11=\u041a\u043e\u043d\u043a\u043e\u0440\u0434\u0430\u043d\u0441\u044b
241
command.tooltip.79=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f
242
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
243
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
244
command.tooltip.76=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443
245
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
246
command.tooltip.75=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0444\u0430\u0439\u043b
247
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
248
command.tooltip.74=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432 R
249
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
250
command.tooltip.73=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f
251
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
252
command.label.143=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c
253
command.tooltip.70=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432 R
254
command.label.142=\u041d\u043e\u0432\u044b\u0439 \u0441\u0435\u0430\u043d\u0441
255
command.label.141=\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 SVG 
256
product.name = TXM
257
editor.name.17 = \u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c
258
page.name.2 = \u041f\u0440\u043e\u0432\u043e\u0434\u043d\u0438\u043a \u043f\u043e \u0444\u0430\u0439\u043b\u0430\u043c
259
page.name.19 = \u0418\u043c\u043f\u043e\u0440\u0442
5
category.description = Текстометрические команды
6

  
7
category.name = TXM
8

  
9
category.name.0 = TXM
10

  
11
command.description = Перезагрузить TXM
12

  
13
command.description.0 = Конвертировать старый бинарный файл
14

  
15
command.description.1 = Reset corpora
16

  
17
command.label = Прочитать файл HTML
18

  
19
command.label.0 = CNR + CSV
20

  
260 21
command.label.1 = XML/w + CSV
22

  
23
command.label.100 = N/A_ Find Previous
24

  
25
command.label.101 = Экспорт SVG
26

  
27
command.label.102 = Отправить в конкорданс
28

  
29
command.label.103 = Отправить на прогрессию
30

  
31
command.label.105 = Объединить строки
32

  
33
command.label.106 = Экспортировать таблицу
34

  
35
command.label.107 = Импортировать таблицу
36

  
37
command.label.108 = Ссылки
38

  
39
command.label.109 = N/A_ Incremental Find
40

  
41
command.label.11 = Конкордансы
42

  
43
command.label.110 = N/A_ Incremental Find (reverse)
44

  
45
command.label.111 = Выполнить скрипт R
46

  
47
command.label.113 = N/A_ Goto line
48

  
49
command.label.114 = Экспортировать корпус
50

  
51
command.label.116 = Классификация
52

  
53
command.label.117 = Отправить в R
54

  
55
command.label.118 = Экспортировать корпус
56

  
57
command.label.12 = XML-TEI TXM
58

  
59
command.label.120 = Классификация
60

  
61
command.label.121 = Отправить в R
62

  
63
command.label.122 = Создать файл
64

  
65
command.label.123 = Создать папку
66

  
67
command.label.124 = Экспортировать корпус
68

  
69
command.label.126 = Классификация
70

  
71
command.label.127 = Отправить на R
72

  
73
command.label.128 = Отправить на Индекс
74

  
75
command.label.129 = Копировать
76

  
77
command.label.13 = Загрузить корпус TXM 0.5
78

  
79
command.label.130 = Вставить
80

  
81
command.label.131 = Корпус
82

  
83
command.label.132 = R
84

  
85
command.label.133 = N/A_ Open URL
86

  
87
command.label.134 = Корпус
88

  
89
command.label.135 = Файл
90

  
91
command.label.136 = Запрос
92

  
93
command.label.139 = Ещё...
94

  
95
command.label.14 = О Платформе TXM
96

  
97
command.label.140 = N/A_ Show Line Numbers
98

  
99
command.label.141 = управление SVG 
100

  
101
command.label.142 = Новый сеанс
102

  
103
command.label.143 = Выполнить
104

  
105
command.label.144 = N/A_ Toggle Show Whitespace Characters
106

  
107
command.label.145 = N/A_ Revert to saved
108

  
109
command.label.146 = Библиографическая запись
110

  
111
command.label.147 = Открыть библиографическую запись
112

  
113
command.label.148 = Открыть библиографическую запись
114

  
115
command.label.149 = Отправить в Совместную встречаемость
116

  
117
command.label.15 = Поиск...
118

  
119
command.label.150 = Execute import script
120

  
121
command.label.151 = Execute import script
122

  
123
command.label.152 = Execute import script
124

  
125
command.label.153 = Execute import script
126

  
127
command.label.154 = Выполнить скрипт импортирования
128

  
129
command.label.155 = Открыть файл в браузере
130

  
131
command.label.156 = Выполнить файл Groovy
132

  
133
command.label.157 = N/A_ New window
134

  
135
command.label.158 = N/A_ New
136

  
137
command.label.159 = N/A_ Search and Replace
138

  
139
command.label.16 = Отменить
140

  
141
command.label.160 = N/A_ Find previous
142

  
143
command.label.161 = N/A_ Find next
144

  
145
command.label.162 = N/A_ Find incremental
146

  
147
command.label.163 = N/A_ Find incremental (reverse)
148

  
149
command.label.164 = N/A_ Revert to save
150

  
151
command.label.165 = N/A_ Select All
152

  
153
command.label.166 = N/A_ Goto
154

  
155
command.label.167 = N/A_ Hyperlink
156

  
157
command.label.168 = N/A_ Show line numbers
158

  
159
command.label.169 = N/A_ Show Control characters
160

  
161
command.label.17 = Повторить
162

  
163
command.label.170 = N/A_ Execute current script
164

  
165
command.label.171 = N/A_ Execute selected text
166

  
167
command.label.172 = N/A_ Execute a Groovy script
168

  
169
command.label.173 = N/A_ Welcome
170

  
171
command.label.174 = N/A_ Download the manual
172

  
173
command.label.175 = N/A_ Test all commands
174

  
175
command.label.18 = Вырезать
176

  
177
command.label.19 = Копировать
178

  
261 179
command.label.2 = XML-PPS
180

  
181
command.label.20 = Вставить
182

  
183
command.label.21 = Открыть в текстовом редакторе
184

  
185
command.label.22 = Открыть в браузере HTML
186

  
187
command.label.23 = Выполнить скрипт
188

  
189
command.label.24 = Свойства
190

  
191
command.label.25 = Выполнить выделенные строки
192

  
193
command.label.27 = Удалить
194

  
195
command.label.28 = Выбрать всё
196

  
197
command.label.29 = Сохранить как...
198

  
199
command.label.3 = XML-TRS + CSV
200

  
201
command.label.30 = Кодировка
202

  
203
command.label.31 = Просмотреть
204

  
205
command.label.32 = Просмотреть
206

  
207
command.label.33 = Сохранить как...
208

  
209
command.label.34 = Add a third-party extension
210

  
211
command.label.35 = Выполинть скрипт
212

  
213
command.label.39 = Добавть скрипт
214

  
215
command.label.4 = Настройки
216

  
217
command.label.40 = Удалить проект
218

  
219
command.label.41 = Удалить базу
220

  
221
command.label.43 = Удалить скрипт
222

  
223
command.label.44 = Удалить файл
224

  
225
command.label.45 = Открыть файл
226

  
227
command.label.46 = Копировать файл
228

  
229
command.label.47 = Вырезать файл
230

  
231
command.label.5 = XML-TEI-BFM
232

  
233
command.label.50 = Загрузить
234

  
235
command.label.51 = Экспортировать
236

  
237
command.label.52 = Key assist
238

  
239
command.label.53 = Сообщения об ошибках
240

  
241
command.label.54 = Заявки на новые функции
242

  
243
command.label.55 = Подписаться на рассылку txm-users
244

  
245
command.label.56 = Обновления
246

  
247
command.label.57 = Вставить файл
248

  
249
command.label.58 = Экспортировать
250

  
251
command.label.59 = Перезагрузить
252

  
253
command.label.6 = Выйти
254

  
255
command.label.60 = Буфер обмена (FR)
256

  
257
command.label.61 = Hyperbase
258

  
259
command.label.62 = Alceste
260

  
261
command.label.63 = Просмотреть
262

  
263
command.label.64 = N/A_ Factiva TXT
264

  
265
command.label.65 = Удалить
266

  
267
command.label.66 = Индекс
268

  
269
command.label.67 = Установить TreeTagger
270

  
271
command.label.68 = N/A_ Online manual
272

  
273
command.label.69 = N/A_ Textometrie project web site
274

  
275
command.label.7 = Создать подкорпус
276

  
277
command.label.70 = N/A_ TXM manuals directory
278

  
279
command.label.71 = Издание
280

  
281
command.label.72 = N/A_ Textometrie project documentation
282

  
283
command.label.73 = Отправить в конкорданс
284

  
285
command.label.74 = Отправить в конкорданс
286

  
287
command.label.75 = Изменить язык
288

  
289
command.label.76 = XML-TEI BFM
290

  
291
command.label.77 = N/A_ Send to index
292

  
293
command.label.78 = TXT + CSV
294

  
295
command.label.79 = Словарь
296

  
297
command.label.8 = Создать Распределение
298

  
299
command.label.80 = ФАС
300

  
301
command.label.81 = N/A_ XML-TMX
302

  
303
command.label.82 = N/A_ CWB
304

  
305
command.label.83 = N/A_ New
306

  
307
command.label.84 = Словарь
308

  
309
command.label.86 = N/A_ Save
310

  
311
command.label.87 = Экспорт
312

  
313
command.label.88 = N/A_ Save All
314

  
315
command.label.89 = Словарная таблица
316

  
317
command.label.9 = XML-TEI Frantext
318

  
319
command.label.90 = N/A_ Close
320

  
321
command.label.92 = Экспорт
322

  
323
command.label.93 = N/A_ Close all
324

  
325
command.label.94 = Словарная таблица
326

  
327
command.label.96 = Совместная встречаемость
328

  
329
command.label.98 = N/A_ Find next
330

  
331
command.label.99 = Отправить в прогрессию
332

  
333
command.name = Открыть файл
334

  
335
command.name.0 = Выполнить скрипт Groovy
336

  
337
command.name.1 = Создать Подкорпус
338

  
339
command.name.10 = Выполинть выделенные строки как скрипт Groovy
340

  
341
command.name.11 = Добавить проект
342

  
343
command.name.12 = Удалить проект
344

  
345
command.name.13 = Добавить базу
346

  
347
command.name.14 = Удалить базу
348

  
349
command.name.15 = Добавить текст
350

  
351
command.name.16 = Удалить текст
352

  
353
command.name.17 = Построить корпус
354

  
355
command.name.18 = Восстановить корпуса
356

  
357
command.name.19 = OPENTESTEDITOR
358

  
359
command.name.2 = Создать Распределение
360

  
361
command.name.20 = Выбрать поисковую машину
362

  
363
command.name.21 = ВыполнитьСкрипт
364

  
365
command.name.22 = Выпонить скрипт импортирования
366

  
367
command.name.23 = Описание
368

  
369
command.name.24 = Экспортировать
370

  
371
command.name.25 = Перезагрузить
372

  
373
command.name.26 = Удалить
374

  
375
command.name.28 = Импортирует корпус из буфера обмена (FR)
376

  
377
command.name.29 = Открывает издание
378

  
379
command.name.3 = Конвертировать старый бинарный файл
380

  
381
command.name.30 = IndexToConcordances
382

  
383
command.name.31 = Изменить язык
384

  
385
command.name.34 = ExportSVG
386

  
387
command.name.36 = ComputeLexicalTable
388

  
389
command.name.37 = Удалить
390

  
391
command.name.38 = Объединить
392

  
393
command.name.39 = Экспортировать таблицу
394

  
395
command.name.40 = Импортировать таблицу
396

  
397
command.name.41 = CoocToConc
398

  
399
command.name.42 = VocToProgress
400

  
401
command.name.43 = VocToLexicalTable
402

  
403
command.name.47 = Создать файл
404

  
405
command.name.48 = Создать папку
406

  
407
command.name.50 = ВыполнитьТекст
408

  
409
command.name.51 = Настройки
410

  
411
command.name.52 = Экспортировать корпус
412

  
413
command.name.54 = Классификация
414

  
415
command.name.55 = Копировать
416

  
417
command.name.56 = Вставить
418

  
419
command.name.58 = LexiconToIndex
420

  
421
command.name.59 = OpenEmptyTextEditor
422

  
423
command.name.6 = Анализ Корреляций
424

  
425
command.name.60 = SubmitRcode
426

  
427
command.name.61 = show svg help
428

  
429
command.name.62 = OpenImportForm
430

  
431
command.name.63 = Open Biblio
432

  
433
command.name.64 = CopySelection
434

  
435
command.name.66 = Выполить файл Groovy
436

  
437
command.name.67 = СохранитьКак
438

  
439
command.name.68 = УдалитьФайл
440

  
441
command.name.69 = КопироватьФайл
442

  
443
command.name.70 = ВставитьФайл
444

  
445
command.name.71 = ВырезатьФайл
446

  
447
command.name.72 = Кодировка
448

  
449
command.name.73 = Просмотреть
450

  
451
command.name.74 = N/A_ Open localized HTML page
452

  
453
command.name.78 = N/A_ Tests commands
454

  
455
command.name.8 = Показать в браузере HTML
456

  
457
command.name.9 = Показать
458

  
459
command.tooltip = Открыть в браузере HTML
460

  
461
command.tooltip.0 = Показать настройки
462

  
262 463
command.tooltip.1 = XML-PPS
263
command.label.3 = XML-TRS + CSV
464

  
465
command.tooltip.10 = Показать свойства этого экземпляра платформы TXM
466

  
467
command.tooltip.11 = XML-TEI TXM
468

  
469
command.tooltip.12 = Конвертировать бинарный корпус TXM 0.5 в формат TXM 0.6
470

  
471
command.tooltip.13 = Выполнить скрипт
472

  
473
command.tooltip.14 = Выполнить скрипт
474

  
475
command.tooltip.15 = Удалить файл
476

  
477
command.tooltip.16 = Копировать файл
478

  
479
command.tooltip.17 = Открыть файл в текстовом редакторе
480

  
481
command.tooltip.18 = Открыть файл в браузере HTML
482

  
483
command.tooltip.19 = Выполнить Скрипт
484

  
485
command.tooltip.2 = Выйти из платформы TXM
486

  
487
command.tooltip.20 = Вырезать файл
488

  
489
command.tooltip.21 = Вставить файл
490

  
491
command.tooltip.22 = N/A_ Factiva TXT
492

  
493
command.tooltip.23 = N/A_TXM online manual
494

  
495
command.tooltip.24 = N/A_ XML-TMX
496

  
497
command.tooltip.25 = N/A_ CWB
498

  
499
command.tooltip.26 = Перезагрузить TXM
500

  
501
command.tooltip.27 = Используйте эту функцию после того, как скопируете текст в буфер обмена
502

  
503
command.tooltip.28 = Импортирует корпус из папки, содержащей файл csv и файлы cnr
504

  
505
command.tooltip.29 = Импортирует корпус из папки, содержащей исходный материал в формате Hyperbase
506

  
507
command.tooltip.3 = Выбрать часть употреблений
508

  
509
command.tooltip.30 = Импортирует корпус из папки, содержащей исходный материал в формате Alceste
510

  
511
command.tooltip.31 = N/A_ Toggle Show Whitespace Characters
512

  
513
command.tooltip.32 = Показать издание корпуса
514

  
515
command.tooltip.33 = Удалить выделенный элемент
516

  
517
command.tooltip.34 = N/A_ Creates a new File
518

  
519
command.tooltip.35 = N/A_ Toggle Show Whitespace Characters
520

  
521
command.tooltip.36 = N/A_ Execute selected text
522

  
523
command.tooltip.37 = N/A_ Execute a Groovy script from a file
524

  
525
command.tooltip.38 = N/A_ Starts a long process to test all the available commands
526

  
527
command.tooltip.39 = Показать издание корпуса
528

  
529
command.tooltip.4 = Разделить выделенный объект на несколько частей
530

  
531
command.tooltip.42 = Изменить язык
532

  
533
command.tooltip.43 = XML-TEI BFM
534

  
535
command.tooltip.44 = XML/w
536

  
537
command.tooltip.45 = Из папки с текстовыми файлами
538

  
539
command.tooltip.46 = ФАК
540

  
541
command.tooltip.49 = ФАК
542

  
264 543
command.tooltip.5 = XML-TRS
265
command.label.5 = XML-TEI-BFM
544

  
545
command.tooltip.50 = Экспорт SVG
546

  
547
command.tooltip.51 = Словарная таблица
548

  
549
command.tooltip.53 = Показывает совместные употребления для запроса
550

  
551
command.tooltip.54 = Экспорт SVG
552

  
553
command.tooltip.55 = Словарная таблица
554

  
555
command.tooltip.58 = Словарная таблица
556

  
557
command.tooltip.60 = Показать свойства структур и словарных единиц
558

  
559
command.tooltip.63 = Показать ссылки ответов на запрос
560

  
561
command.tooltip.64 = Испортировать файлы в формате XML-TXM из папки
562

  
563
command.tooltip.65 = Импортировать файлы в форматк TRS, привязанные к файлу metadata.csv
564

  
565
command.tooltip.66 = Выполнить как скрипт R
566

  
567
command.tooltip.67 = Экспортировать корпус в архив
568

  
569
command.tooltip.69 = Классификация
570

  
571
command.tooltip.7 = Составить конкорданс
572

  
573
command.tooltip.70 = Отправить в R
574

  
575
command.tooltip.71 = Экспортировать корпус в архив
576

  
577
command.tooltip.73 = Классификация
578

  
579
command.tooltip.74 = Отправить в R
580

  
581
command.tooltip.75 = Создать файл
582

  
583
command.tooltip.76 = Создать папку
584

  
585
command.tooltip.77 = Экспортировать корпус в архив
586

  
587
command.tooltip.79 = Классификация
588

  
266 589
command.tooltip.8 = XML-TEI-BFM
267
command.label.9 = XML-TEI Frantext
590

  
591
command.tooltip.80 = Отправить в R
592

  
593
command.tooltip.81 = Копировать выделенные запросы
594

  
595
command.tooltip.82 = Добавить запрос в отчет
596

  
597
command.tooltip.83 = управление SVG 
598

  
599
command.tooltip.84 = Новый сеанс
600

  
601
command.tooltip.85 = Выполнить выделенные строки или скрипт
602

  
603
command.tooltip.87 = Open edition
604

  
605
command.tooltip.88 = Open file in browser
606

  
607
command.tooltip.89 = Open biblio
608

  
268 609
command.tooltip.9 = XML-TEI Frantext
269
command.label.12 = XML-TEI TXM
270
command.tooltip.11 = XML-TEI TXM
271
command.label.13 = \u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043a\u043e\u0440\u043f\u0443\u0441 TXM 0.5
272
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
273
menu.label.3 = \u0418\u0437\u0434\u0430\u043d\u0438\u0435
274
command.label.15 = \u041f\u043e\u0438\u0441\u043a...
275
command.label.16 = \u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c
276
command.label.17 = \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c
277
command.label.18 = \u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c
278
command.label.19 = \u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c
279
command.label.20 = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c
280
command.label.27 = \u0423\u0434\u0430\u043b\u0438\u0442\u044c
281
command.label.28 = \u0412\u044b\u0431\u0440\u0430\u0442\u044c \u0432\u0441\u0451
282
command.label.29 = \u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043a\u0430\u043a...
283
command.label.30 = \u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430
284
command.label.31 = \u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c
285
command.label.32 = \u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c
286
command.label.33 = \u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043a\u0430\u043a...
287
command.label.34 = \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
288
command.tooltip.13 = \u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442
289
command.label.35 = \u0412\u044b\u043f\u043e\u043b\u0438\u043d\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442
290
command.tooltip.14 = \u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442
291
command.label.44 = \u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0444\u0430\u0439\u043b
292
command.tooltip.15 = \u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0444\u0430\u0439\u043b
293
command.label.46 = \u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u0430\u0439\u043b
294
command.tooltip.16 = \u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u0430\u0439\u043b
295
command.label.47 = \u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c \u0444\u0430\u0439\u043b
296
command.tooltip.20 = \u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c \u0444\u0430\u0439\u043b
297
command.label.57 = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0444\u0430\u0439\u043b
298
command.tooltip.21 = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0444\u0430\u0439\u043b
299
command.label.63 = \u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c
300
command.description.0 = \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
301
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
302
command.description.1 = Reset corpora
303
command.name.18 = \u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043a\u043e\u0440\u043f\u0443\u0441\u0430
304
command.name.19 = OPENTESTEDITOR
305
command.name.21 = \u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c\u0421\u043a\u0440\u0438\u043f\u0442
306
command.name.50 = \u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c\u0422\u0435\u043a\u0441\u0442
307
command.name.67 = \u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c\u041a\u0430\u043a
308
command.name.68 = \u0423\u0434\u0430\u043b\u0438\u0442\u044c\u0424\u0430\u0439\u043b
309
command.name.69 = \u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0424\u0430\u0439\u043b
310
command.name.70 = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c\u0424\u0430\u0439\u043b
311
command.name.71 = \u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c\u0424\u0430\u0439\u043b
312
command.name.72 = \u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430
313
command.name.73 = \u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c
314
=N/A_
315
command.label.64 =N/A_ Factiva TXT
316
command.tooltip.22 =N/A_ Factiva TXT
317
command.label.68 =N/A_ Online manual
318
command.tooltip.23 =N/A_TXM online manual
319
command.label.69 =N/A_ Textometrie project web site
320
command.label.70 =N/A_ TXM manuals directory
321
command.label.72 =N/A_ Textometrie project documentation
322
command.label.77 =N/A_ Send to index
323
command.name.74 =N/A_ Open localized HTML page
324
commandParameter.name.3 =N/A_ web page key
325
=N/A_
326
command.label.81 =N/A_ XML-TMX
327
command.tooltip.24 =N/A_ XML-TMX
328
command.label.82 =N/A_ CWB
329
command.tooltip.25 =N/A_ CWB
330
command.label.83 =N/A_ New
331
command.label.86 =N/A_ Save
332
command.label.88 =N/A_ Save All
333
command.label.90 =N/A_ Close
334
command.label.93 =N/A_ Close all
335
command.label.98 =N/A_ Find next
336
command.label.100 =N/A_ Find Previous
337
command.label.109 =N/A_ Incremental Find
338
command.label.110 =N/A_ Incremental Find (reverse)
339
command.label.113 =N/A_ Goto line
340
command.label.133 =N/A_ Open URL
341
command.label.140 =N/A_ Show Line Numbers
342
command.label.144 =N/A_ Toggle Show Whitespace Characters
343
command.tooltip.31 =N/A_ Toggle Show Whitespace Characters
344
command.label.145 =N/A_ Revert to saved
345
command.label.157 =N/A_ New window
346
command.label.158 =N/A_ New
347
command.tooltip.34 =N/A_ Creates a new File
348
command.label.159 =N/A_ Search and Replace
349
command.label.160 =N/A_ Find previous
350
command.label.161 =N/A_ Find next
351
command.label.162 =N/A_ Find incremental
352
command.label.163 =N/A_ Find incremental (reverse)
353
command.label.164 =N/A_ Revert to save
354
command.label.165 =N/A_ Select All
355
command.label.166 =N/A_ Goto
356
command.label.167 =N/A_ Hyperlink
357
command.label.168 =N/A_ Show line numbers
358
command.label.169 =N/A_ Show Control characters
359
command.tooltip.35 =N/A_ Toggle Show Whitespace Characters
360
command.label.170 =N/A_ Execute current script
361
command.label.171 =N/A_ Execute selected text
362
command.tooltip.36 =N/A_ Execute selected text
363
command.label.172 =N/A_ Execute a Groovy script
364
command.tooltip.37 =N/A_ Execute a Groovy script from a file
365
=N/A_
366
editor.name.18 =N/A_ Classification
367
command.label.173 =N/A_ Welcome
368
command.label.174 =N/A_ Download the manual
369
command.label.175 =N/A_ Test all commands
370
command.tooltip.38 =N/A_ Starts a long process to test all the available commands
371
command.name.78 =N/A_ Tests commands
372
command.label.34 = Add a third-party extension
610

  
611
command.tooltip.90 = Open biblio
612

  
613
command.tooltip.91 = Открыть библиографическую запись
614

  
615
commandParameter.name = Файл
616

  
617
commandParameter.name.0 = Параметр корпуса
618

  
619
commandParameter.name.1 = скрипт
620

  
621
commandParameter.name.2 = скрипт для импорта
622

  
623
commandParameter.name.3 = N/A_ web page key
624

  
625
decorator.label = Декоратор R
626

  
627
editor.name = Графики SVG
628

  
629
editor.name.0 = Индекс
630

  
631
editor.name.1 = Multitab
632

  
633
editor.name.10 = Граф ФАС
634

  
635
editor.name.11 = Словарная таблица
636

  
637
editor.name.13 = ФАС
638

  
639
editor.name.15 = Параметры импорта
640

  
641
editor.name.16 = Тестовый редактор
642

  
643
editor.name.17 = Просмотреть
644

  
645
editor.name.18 = N/A_ Classification
646

  
647
editor.name.2 = Конкордансы
648

  
649
editor.name.4 = Текст
650

  
651
editor.name.5 = Издание
652

  
653
editor.name.6 = Проводник по объектам
654

  
655
extension-point.name = N/A_Command
656

  
657
extension.name = Команды Мастерской
658

  
659
menu.label = Файл
660

  
661
menu.label.0 = Импортировать
662

  
663
menu.label.1 = Корпус
664

  
665
menu.label.10 = Groovy
666

  
667
menu.label.2 = Помощь
668

  
669
menu.label.3 = Издание
670

  
671
menu.label.6 = Инструменты
672

  
673
menu.label.7 = Вид
674

  
675
menu.label.8 = Перспективы
676

  
677
menu.label.9 = Виды
678

  
679
menu.tooltip = Читать Руководство пользователя TXM
680

  
681
menu.tooltip.0 = Вид
682

  
683
page.name = Пользователь
684

  
685
page.name.0 = Дополнительно
686

  
687
page.name.10 = анализ соответствий
688

  
689
page.name.12 = Экспорт
690

  
691
page.name.16 = Ссылки
692

  
693
page.name.17 = Классификация
694

  
695
page.name.18 = Скрипты
696

  
697
page.name.19 = Импорт
698

  
699
page.name.2 = Проводник по файлам
700

  
701
page.name.3 = Статистическая машина
702

  
703
page.name.4 = Поисковая машина
704

  
705
page.name.5 = Язык
706

  
707
page.name.6 = \ TXM
708

  
709
page.name.8 = NLP
710

  
711
perspective.name = 
712

  
713
perspective.name.0 = 
714

  
715
product.name = TXM
716

  
717
view.name = Корпус
718

  
719
view.name.0 = Прогрессия
720

  
721
view.name.1 = Файл
722

  
723
view.name.2 = G. Консоль
724

  
725
view.name.3 = База
726

  
727
view.name.4 = Запрос
728

  
729
view.name.7 = Содержимое
tmp/org.txm.rcp/OSGI-INF/l10n/bundle_fr.properties (revision 703)
1
#
2
#Thu Jul 25 14:48:07 CEST 2013
3
command.tooltip.69=Calculer la classification
4
command.tooltip.68=Visualiser la taille des parties
5
command.tooltip.67=Exporter dans un fichier
6
command.label.139=Autres...
7
command.label.138=Variables R
8
command.label.137=Console R
9
command.label.136=Requ?te
10
command.tooltip.63=Calculer les r?f?rences d'une requ?te
11
command.label.135=Fichier
12
command.tooltip.62=Calculer le lexique d'une requ?te
13
command.label.134=Corpus
14
command.tooltip.61=Calculer le lexique complet
15
command.label.133=Hyperlien
16
command.tooltip.60=Calculer la synth?se des propri?t?s du corpus
17
command.label.132=R
18
command.label.131=Corpus
19
command.label.130=Coller
20
category.name.0=TXM
21
command.name.9=Propri?t?s
22
command.name.8=Afficher dans un lecteur HTML
23
command.name.7=Index
24
command.name.6=Analyse des Correspondances
1
#Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/)
2
#
3
#Thu Jul 25 14:48:07 CEST 2013
25 4

  
26
command.name.4=Sp?cificit?s
27
command.name.3=Convertir ancien fichier binaire
28
command.name.2=Cr?er une Partition
29
command.name.1=Cr?er un Sous-Corpus
30
command.name.0=Ex?cuter un Script Groovy
31
command.tooltip.59=Lire les propri?t?s des mots du corpus
32
command.tooltip.58=Calculer une table lexicale
33
command.label.129=Copier
34
command.tooltip.57=Calculer les cooccurrents d'une requ?te
35
command.label.128=Envoyer vers l'Index
36
command.tooltip.56=Calculer la progression d'une ou plusieurs requ?tes
37
product.name=TXM
38
command.label.127=Envoyer vers R
39
command.tooltip.55=Calculer une table lexicale
40
command.label.126=Classification
41
command.tooltip.54=Exporter au format SVG...
42
command.label.125=Dimensions
43
command.tooltip.53=Calculer les cooccurrents d'une requ?te
44
command.label.124=Exporter
45
command.tooltip.52=Lire les propri?t?s des mots du corpus
46
command.label.123=Nouveau dossier
47
command.tooltip.51=Calculer une table lexicale
48
command.label.122=Nouveau fichier
49
command.label.121=Envoyer vers R
50
command.label.120=Classification
51
command.tooltip.49=Calculer l'Analyse Factorielle des Correspondances
52
command.tooltip.48=Tester les modules d'import
53
command.tooltip.47=Contribuer ? TXM
54
command.label.119=Dimensions
55
command.tooltip.46=Calculer l'Analyse Factorielle des Correspondances
56
command.label.118=Exporter
57
command.tooltip.45=Ex?cuter un script d'import sur un dossier de fichiers source
58
command.label.117=Envoyer vers R
59
command.tooltip.44=XML/w + CSV
60
command.label.116=Classification
61
command.label.115=Dimensions
62
command.tooltip.42=Changer la langue de l'interface
63
command.label.114=Exporter
64
command.tooltip.41=R?ponses aux questions les plus fr?quentes
65
command.label.113=Aller ? la ligne...
66
command.tooltip.40=Lire les propri?t?s des mots du corpus
67
command.label.112=Ex?cuter la s?lection de texte
68
command.label.110=Recherche incr?mentielle (invers?e)
69
command.tooltip.39=Lire l'?dition
70
command.tooltip.38=Lancer un long processus de test de toute les commandes disponibles
71
command.tooltip.37=Ex?cuter un script Groovy
72
command.label.109=Recherche incr?mentielle
73
command.tooltip.36=Ex?cuter le texte s?lectionn?
74
command.label.108=R?f?rences
75
command.tooltip.35=Afficher les caract?res non imprimables
76
command.label.107=Importer une table
77
command.tooltip.34=Cr?? un nouveau fichier
78
command.label.106=Exporter la table pour r?-import
79
command.tooltip.33=Supprimer l'objet s?lectionn?
80
command.label.105=Fusionner les lignes
81
command.tooltip.32=Lire l'?dition
82
command.label.104=Supprimer la ligne
83
command.tooltip.31=Afficher les caract?res non imprimables
84
command.label.103=Envoyer vers progression
85
command.tooltip.30=Importer un corpus au format Alceste
86
command.label.102=Envoyer vers concordances
87
command.label.101=Graphique...
88
command.label.100=Trouver pr?c?dent
89
command.tooltip.29=Importer un corpus au format Hyperbase
90
command.tooltip.28=Importer un corpus au format CNR
91
command.tooltip.27=Importer un corpus depuis le presse-papier
92
command.tooltip.26=Red?marrer les moteurs de TXM
93
command.tooltip.25=Importer un corpus au format CQP
94
command.tooltip.24=Importer un corpus au format XML-TMX
95
command.tooltip.23=Lire la version HTML du manuel de TXM
96
command.tooltip.22=Importer un corpus au format Factiva TXT
97
command.tooltip.21=Coller le fichier
98
command.tooltip.20=Couper le fichier
99
extension.name=Commandes de l'Atelier
100
menu.label.11=R
101
menu.label.10=Groovy
102
command.tooltip.19=Ex?cuter le Script
103
command.tooltip.18=Ouvrir un fichier dans un navigateur
104
command.tooltip.17=Ouvrir un fichier dans un ?diteur de texte
105
command.tooltip.16=Copier le fichier
106
command.tooltip.15=Supprimer fichier
107
command.tooltip.14=Ex?cuter le script
... Ce différentiel a été tronqué car il excède la taille maximale pouvant être affichée.

Formats disponibles : Unified diff