Skip to content

Commit 6df4d14

Browse files
authored
fix: Spelling of "lyrics" (#1401)
* fix: Spelling of "lyrics" Fixes #1396 * fix: adjust padding and structure in QueueOrLyrics widget
1 parent d6d2428 commit 6df4d14

22 files changed

+98
-28
lines changed

lib/l10n/app_en.arb

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -760,6 +760,7 @@
760760
}
761761
},
762762
"lyrics": "Lyrics",
763+
"noLyricsFound": "No lyrics found",
763764
"autoScrolling": "Auto scroll",
764765
"genericErrorTitle": "An error occurred",
765766
"genericErrorDescription": "An unexpected error occurred. Please try again later.",
@@ -804,6 +805,6 @@
804805
},
805806
"explore": "Explore",
806807
"favorites": "Favorites",
807-
"autoMovePlayerTitle": "Auto move player",
808-
"autoMovePlayerDescription": "Move the player to the right if there is enough horizontal space"
809-
}
808+
"autoMovePlayerTitle": "Auto move player",
809+
"autoMovePlayerDescription": "Move the player to the right if there is enough horizontal space"
810+
}

lib/l10n/app_localizations.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4357,6 +4357,12 @@ abstract class AppLocalizations {
43574357
/// **'Lyrics'**
43584358
String get lyrics;
43594359

4360+
/// No description provided for @noLyricsFound.
4361+
///
4362+
/// In en, this message translates to:
4363+
/// **'No lyrics found'**
4364+
String get noLyricsFound;
4365+
43604366
/// No description provided for @autoScrolling.
43614367
///
43624368
/// In en, this message translates to:

lib/l10n/app_localizations_cs.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2218,6 +2218,9 @@ class AppLocalizationsCs extends AppLocalizations {
22182218
@override
22192219
String get lyrics => 'Lyrics';
22202220

2221+
@override
2222+
String get noLyricsFound => 'No lyrics found';
2223+
22212224
@override
22222225
String get autoScrolling => 'Auto scroll';
22232226

lib/l10n/app_localizations_da.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2220,6 +2220,9 @@ class AppLocalizationsDa extends AppLocalizations {
22202220
@override
22212221
String get lyrics => 'Lyrics';
22222222

2223+
@override
2224+
String get noLyricsFound => 'No lyrics found';
2225+
22232226
@override
22242227
String get autoScrolling => 'Auto scroll';
22252228

lib/l10n/app_localizations_de.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2229,6 +2229,9 @@ class AppLocalizationsDe extends AppLocalizations {
22292229
@override
22302230
String get lyrics => 'Lyrics';
22312231

2232+
@override
2233+
String get noLyricsFound => 'No lyrics found';
2234+
22322235
@override
22332236
String get autoScrolling => 'Auto scroll';
22342237

lib/l10n/app_localizations_en.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2216,6 +2216,9 @@ class AppLocalizationsEn extends AppLocalizations {
22162216
@override
22172217
String get lyrics => 'Lyrics';
22182218

2219+
@override
2220+
String get noLyricsFound => 'No lyrics found';
2221+
22192222
@override
22202223
String get autoScrolling => 'Auto scroll';
22212224

lib/l10n/app_localizations_es.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2228,6 +2228,9 @@ class AppLocalizationsEs extends AppLocalizations {
22282228
@override
22292229
String get lyrics => 'Lyrics';
22302230

2231+
@override
2232+
String get noLyricsFound => 'No lyrics found';
2233+
22312234
@override
22322235
String get autoScrolling => 'Auto scroll';
22332236

lib/l10n/app_localizations_et.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2226,6 +2226,9 @@ class AppLocalizationsEt extends AppLocalizations {
22262226
@override
22272227
String get lyrics => 'Lyrics';
22282228

2229+
@override
2230+
String get noLyricsFound => 'No lyrics found';
2231+
22292232
@override
22302233
String get autoScrolling => 'Auto scroll';
22312234

lib/l10n/app_localizations_eu.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2235,6 +2235,9 @@ class AppLocalizationsEu extends AppLocalizations {
22352235
@override
22362236
String get lyrics => 'Lyrics';
22372237

2238+
@override
2239+
String get noLyricsFound => 'No lyrics found';
2240+
22382241
@override
22392242
String get autoScrolling => 'Auto scroll';
22402243

lib/l10n/app_localizations_fr.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2238,6 +2238,9 @@ class AppLocalizationsFr extends AppLocalizations {
22382238
@override
22392239
String get lyrics => 'Lyrics';
22402240

2241+
@override
2242+
String get noLyricsFound => 'No lyrics found';
2243+
22412244
@override
22422245
String get autoScrolling => 'Auto scroll';
22432246

0 commit comments

Comments
 (0)