We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 812d95c commit c8aa4c8Copy full SHA for c8aa4c8
lib/licenses.dart
@@ -23,6 +23,12 @@ Stream<LicenseEntry> additionalLicenses() async* {
23
rootBundle.loadString('assets/Pygments/AUTHORS.txt'),
24
]);
25
26
+ // This does not need to be translated, as it is just a small fragment
27
+ // of text surrounded by a large quantity of English text that isn't
28
+ // translated anyway.
29
+ // (And it would be logistically tricky to translate, as this code is
30
+ // called from the `main` function before the [ZulipApp] widget is built,
31
+ // let alone has updated [GlobalLocalizations].)
32
return '$licenseFileText\n\nAUTHORS file follows:\n\n$authorsFileText';
33
}());
34
yield LicenseEntryWithLineBreaks(
0 commit comments