stock_messages_en.dart 654 Bytes
Newer Older
1 2 3 4 5 6 7 8
/**
 * DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
 * This is a library that provides messages for a en locale. All the
 * messages from the main program should be duplicated here with the same
 * function name.
 */

library messages_en;
9

10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
import 'package:intl/message_lookup_by_library.dart';

final messages = new MessageLookup();

class MessageLookup extends MessageLookupByLibrary {

  get localeName => 'en';
  static market() => "MARKET";

  static portfolio() => "PORTFOLIO";

  static title() => "Stocks";


  final messages = const {
    "market" : market,
    "portfolio" : portfolio,
    "title" : title
  };
29
}