Revert "Update link branches to main" (#146880)

Reverts flutter/flutter#146558

Causes failure
This commit is contained in:
Pierre-Louis
2024-04-17 13:25:18 +02:00
committed by GitHub
parent f2be9bcad5
commit 33a9643b5d
41 changed files with 53 additions and 118 deletions

View File

@@ -20,7 +20,7 @@ and `WidgetsLocalizations`, with appropriate name substitutions):
String get showMenuTooltip;
```
to the localizations class `MaterialLocalizations`,
in [`packages/flutter/lib/src/material/material_localizations.dart`](https://github.com/flutter/flutter/blob/main/packages/flutter/lib/src/material/material_localizations.dart);
in [`packages/flutter/lib/src/material/material_localizations.dart`](https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/material/material_localizations.dart);
### For messages with parameters, add new function
```
@@ -41,7 +41,7 @@ and `WidgetsLocalizations`, with appropriate name substitutions):
@override
String aboutListTileTitle(String applicationName) => 'About $applicationName';
```
For messages with parameters, do also add the function to `GlobalMaterialLocalizations` in [`packages/flutter_localizations/lib/src/material_localizations.dart`](https://github.com/flutter/flutter/blob/main/packages/flutter_localizations/lib/src/material_localizations.dart), and add a raw getter as demonstrated below:
For messages with parameters, do also add the function to `GlobalMaterialLocalizations` in [`packages/flutter_localizations/lib/src/material_localizations.dart`](https://github.com/flutter/flutter/blob/master/packages/flutter_localizations/lib/src/material_localizations.dart), and add a raw getter as demonstrated below:
```
/// The raw version of [aboutListTileTitle], with `$applicationName` verbatim