mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
fix: Bitrate text 'Mps' -> 'Mbps' (#441)
This commit is contained in:
parent
19f2b5473b
commit
a94eff0dc2
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ enum Bitrate {
|
||||||
String label(BuildContext context) => switch (this) {
|
String label(BuildContext context) => switch (this) {
|
||||||
Bitrate.original => context.localized.qualityOptionsOriginal,
|
Bitrate.original => context.localized.qualityOptionsOriginal,
|
||||||
Bitrate.auto => context.localized.qualityOptionsAuto,
|
Bitrate.auto => context.localized.qualityOptionsAuto,
|
||||||
_ => name.toString().replaceAll('b', '').replaceAll('_', '.').toUpperCaseSplit()
|
_ => name.toString().replaceFirst('b', '').replaceAll('_', '.').toUpperCaseSplit()
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue