Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: dart/site/try/src/messages.dart

Issue 197923002: Mock up code completion. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Too many changes to summarize in one line. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: dart/site/try/src/messages.dart
diff --git a/dart/site/try/src/messages.dart b/dart/site/try/src/messages.dart
new file mode 100644
index 0000000000000000000000000000000000000000..a4f0771211635b866d7bdf7ba8dfffc8ef42df42
--- /dev/null
+++ b/dart/site/try/src/messages.dart
@@ -0,0 +1,35 @@
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library trydart.messages;
+
+const Map<String, dynamic> messages = const <String, dynamic> {
+ 'alwaysRunInWorker':
+ 'Always run in Worker thread.',
kasperl 2014/03/24 10:32:51 Maybe indent the values with two extra spaces to m
ahe 2014/03/24 15:20:23 Done.
+
+ 'verboseCompiler':
+ 'Verbose compiler output.',
+
+ 'minified':
+ 'Generate compact (minified) JavaScript.',
+
+ 'onlyAnalyze':
+ 'Only analyze program.',
+
+ 'enableDartMind':
+ 'Talk to "Dart Mind" server.',
+
+ 'compilationPaused':
+ 'Pause compilation.',
+
+ 'codeFont': const [
+ 'Code font:',
+ 'Enter a size and font, for example, 11pt monospace'],
+
+ 'currentSample':
+ 'N/A',
+
+ 'theme':
+ 'Theme:',
+};

Powered by Google App Engine
This is Rietveld 408576698