flutter/examples/stocks/lib/i18n/stock_messages_es.dart
2016-03-10 13:47:20 -08:00

30 lines
654 B
Dart

/*
* DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
* This is a library that provides messages for a es locale. All the
* messages from the main program should be duplicated here with the same
* function name.
*/
library messages_es;
import 'package:intl/message_lookup_by_library.dart';
final messages = new MessageLookup();
class MessageLookup extends MessageLookupByLibrary {
get localeName => 'es';
static market() => "MERCADO";
static portfolio() => "CARTERA";
static title() => "Acciones";
final messages = const {
"market" : market,
"portfolio" : portfolio,
"title" : title
};
}