1. 17 Mar, 2020 1 commit
  2. 12 Mar, 2020 1 commit
  3. 11 Mar, 2020 1 commit
  4. 05 Mar, 2020 1 commit
  5. 25 Feb, 2020 1 commit
  6. 14 Feb, 2020 1 commit
  7. 11 Feb, 2020 1 commit
  8. 05 Feb, 2020 1 commit
  9. 31 Jan, 2020 1 commit
  10. 29 Jan, 2020 1 commit
  11. 28 Jan, 2020 1 commit
  12. 22 Jan, 2020 1 commit
  13. 16 Jan, 2020 1 commit
  14. 10 Jan, 2020 1 commit
  15. 08 Jan, 2020 1 commit
  16. 07 Jan, 2020 1 commit
  17. 30 Dec, 2019 1 commit
  18. 21 Dec, 2019 1 commit
  19. 19 Dec, 2019 3 commits
  20. 17 Dec, 2019 1 commit
  21. 13 Dec, 2019 2 commits
  22. 06 Dec, 2019 1 commit
    • Shi-Hao Hong's avatar
      gen_l10n.dart tool testing (#44856) · 37e66b21
      Shi-Hao Hong authored
      * Add tests to gen_l10n.dart tool
      
      * Separate out LocalizationsGenerator class to improve testability of code
      
      * Add testing dependencies to dev/tools
      
      * Integrate dev/tools testing to flutter CI
      
      * Restructure dev/tools folder for testing
      
      * Fix license headers
      37e66b21
  23. 05 Dec, 2019 1 commit
  24. 27 Nov, 2019 1 commit
    • Ian Hickson's avatar
      License update (#45373) · 449f4a66
      Ian Hickson authored
      * Update project.pbxproj files to say Flutter rather than Chromium
      
      Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright.
      
      * Update the copyright notice checker to require a standard notice on all files
      
      * Update copyrights on Dart files. (This was a mechanical commit.)
      
      * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine.
      
      Some were already marked "The Flutter Authors", not clear why. Their
      dates have been normalized. Some were missing the blank line after the
      license. Some were randomly different in trivial ways for no apparent
      reason (e.g. missing the trailing period).
      
      * Clean up the copyrights in non-Dart files. (Manual edits.)
      
      Also, make sure templates don't have copyrights.
      
      * Fix some more ORGANIZATIONNAMEs
      449f4a66
  25. 19 Nov, 2019 1 commit
  26. 13 Nov, 2019 2 commits
  27. 11 Nov, 2019 1 commit
    • Shi-Hao Hong's avatar
      l10n tool improvements, stocks app i18n refresh (#44473) · 159a47da
      Shi-Hao Hong authored
      * Add check for placeholders being an empty map
      
      * Remove unnecessary properties from en_ES.arb in the stocks example
      
      * Use getter instead of methods in the stocks example
      
      * Fixed "annotating types for function expression parameters" lint issue from generated localizations delegate code
      159a47da
  28. 09 Nov, 2019 1 commit
  29. 07 Nov, 2019 1 commit
  30. 06 Nov, 2019 1 commit
  31. 05 Nov, 2019 1 commit
    • Shi-Hao Hong's avatar
      l10n Localizations and LocalizationsDelegate Generation Tool (#43934) · ede637a7
      Shi-Hao Hong authored
      *Starting with arb files in lib/l10n, the tool creates the following by default:
      1. An AppLocalizations class containing:
      - an `AppLocalizationsDelegate`
      - a `supportedLocales` property that returns a list of all supported locales.
      - a `localizationsDelegate` property that returns a list containing this delegate along with `GlobalMaterialLocalizations.delegate`, `GlobalCupertinoLocalizations.delegate`, and `GlobalWidgetsLocalizations.delegate`.
      2. One Dart `message_<locale>.dart` file for each arb file, as well as a `messages_all.dart` file that performs the locale message lookup. The tool infers the locale of each arb file from the @@Locale property or the arb file's name.
      ede637a7