OLD | NEW |
| (Empty) |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 library trydart.messages; | |
6 | |
7 const Map<String, dynamic> messages = const <String, dynamic> { | |
8 'alwaysRunInWorker': | |
9 'Always run in Worker thread.', | |
10 | |
11 'alwaysRunInIframe': | |
12 'Always run in inline frame.', | |
13 | |
14 'communicateViaBlobs': | |
15 'Use blobs to send source code between components.', | |
16 | |
17 'verboseCompiler': | |
18 'Verbose compiler output.', | |
19 | |
20 'minified': | |
21 'Generate compact (minified) JavaScript.', | |
22 | |
23 'onlyAnalyze': | |
24 'Only analyze program.', | |
25 | |
26 'enableDartMind': | |
27 'Talk to "Dart Mind" server.', | |
28 | |
29 'compilationPaused': | |
30 'Pause compilation.', | |
31 | |
32 'codeFont': const [ | |
33 'Code font:', | |
34 'Enter a size and font, for example, 11pt monospace'], | |
35 | |
36 'currentSample': | |
37 'N/A', | |
38 | |
39 'theme': | |
40 'Theme:', | |
41 | |
42 'incrementalCompilation': | |
43 'Enable incremental compilation (EXPERIMENTAL).', | |
44 | |
45 'hasSelectionModify': | |
46 'Use Selection.modify.', | |
47 }; | |
OLD | NEW |