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

Side by Side Diff: samples/polymer_intl/web/messages_fr.dart

Issue 105073003: Adds a sample for polymer internationalization/localization (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Made a line fit in the prescribed length Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /**
2 * DO NOT EDIT. This is code generated via pkg/intl/generate_localized.dart
3 * This is a library that provides messages for a fr locale. All the
4 * messages from the main program should be duplicated here with the same
5 * function name.
6 */
7
8 library messages_fr;
9 import 'package:intl/intl.dart';
shailentuli 2013/12/06 22:33:38 unused import.
Alan Knight 2013/12/06 23:52:31 OK. But these files are generated, so it'll come b
10 import 'package:intl/message_lookup_by_library.dart';
11
12 final messages = new MessageLookup();
13
14 class MessageLookup extends MessageLookupByLibrary {
15
16 get localeName => 'fr';
17 static helloWorld() => "Bonjour tout le monde de Dart!";
18
shailentuli 2013/12/06 22:33:38 Nit: remove extra blank line.
Alan Knight 2013/12/06 23:52:31 Ditto.
19
20 final messages = const {
21 "helloWorld" : helloWorld
22 };
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698