Merge pull request #2603 from devoncarew/i18n_regenerate
regenerate the i18n files for the stocks example
This commit is contained in:
commit
35c5494f19
10
examples/stocks/lib/i18n/regenerate.md
Normal file
10
examples/stocks/lib/i18n/regenerate.md
Normal file
@ -0,0 +1,10 @@
|
||||
To rebuild the i18n files:
|
||||
|
||||
```
|
||||
pub run intl:generate_from_arb \
|
||||
--output-dir=lib/i18n \
|
||||
--generated-file-prefix=stock_ \
|
||||
--no-use-deferred-loading \
|
||||
lib/*.dart \
|
||||
lib/i18n/*.arb
|
||||
```
|
@ -1,30 +1,29 @@
|
||||
/*
|
||||
* DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
|
||||
* This is a library that looks up messages for specific locales by
|
||||
* delegating to the appropriate library.
|
||||
*/
|
||||
|
||||
library messages_all;
|
||||
// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart
|
||||
// This is a library that looks up messages for specific locales by
|
||||
// delegating to the appropriate library.
|
||||
|
||||
import 'dart:async';
|
||||
|
||||
import 'package:intl/intl.dart';
|
||||
import 'package:intl/message_lookup_by_library.dart';
|
||||
import 'package:intl/src/intl_helpers.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
|
||||
import 'stock_messages_en.dart' as messages_en;
|
||||
import 'stock_messages_es.dart' as messages_es;
|
||||
|
||||
|
||||
Map<String, Function> _deferredLibraries = {
|
||||
'en' : () => new Future.value(null),
|
||||
'es' : () => new Future.value(null),
|
||||
'en': () => new Future.value(null),
|
||||
'es': () => new Future.value(null),
|
||||
};
|
||||
|
||||
MessageLookupByLibrary _findExact(localeName) {
|
||||
switch (localeName) {
|
||||
case 'en' : return messages_en.messages;
|
||||
case 'es' : return messages_es.messages;
|
||||
default: return null;
|
||||
case 'en':
|
||||
return messages_en.messages;
|
||||
case 'es':
|
||||
return messages_es.messages;
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,29 +1,22 @@
|
||||
/*
|
||||
* 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;
|
||||
// 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.
|
||||
|
||||
import 'package:intl/intl.dart';
|
||||
import 'package:intl/message_lookup_by_library.dart';
|
||||
|
||||
final messages = new MessageLookup();
|
||||
|
||||
final _keepAnalysisHappy = Intl.defaultLocale;
|
||||
|
||||
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
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => {
|
||||
"market" : MessageLookupByLibrary.simpleMessage("MARKET"),
|
||||
"portfolio" : MessageLookupByLibrary.simpleMessage("PORTFOLIO"),
|
||||
"title" : MessageLookupByLibrary.simpleMessage("Stocks")
|
||||
};
|
||||
}
|
||||
|
@ -1,29 +1,22 @@
|
||||
/*
|
||||
* 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;
|
||||
// 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.
|
||||
|
||||
import 'package:intl/intl.dart';
|
||||
import 'package:intl/message_lookup_by_library.dart';
|
||||
|
||||
final messages = new MessageLookup();
|
||||
|
||||
final _keepAnalysisHappy = Intl.defaultLocale;
|
||||
|
||||
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
|
||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||
static _notInlinedMessages(_) => {
|
||||
"market" : MessageLookupByLibrary.simpleMessage("MERCADO"),
|
||||
"portfolio" : MessageLookupByLibrary.simpleMessage("CARTERA"),
|
||||
"title" : MessageLookupByLibrary.simpleMessage("Acciones")
|
||||
};
|
||||
}
|
||||
|
@ -386,7 +386,7 @@ class AnalyzeCommand extends FlutterCommand {
|
||||
} else if (filename.endsWith('.mojom.dart')) {
|
||||
// autogenerated code - TODO(ianh): Fix the Dart mojom compiler
|
||||
shouldIgnore = true;
|
||||
} else if ((sourceLines[0] == '/*') && (' * DO NOT EDIT. This is code generated'.matchAsPrefix(sourceLines[1]) != null)) {
|
||||
} else if (sourceLines.first.startsWith('// DO NOT EDIT. This is code generated')) {
|
||||
// autogenerated code - TODO(ianh): Fix the intl package resource generator
|
||||
shouldIgnore = true;
|
||||
} else if (level == 'lint' && errorMessage == 'Name non-constant identifiers using lowerCamelCase.') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user