diff --git a/data/locale/deutsch.locale b/data/locale/deutsch.locale index 908ac3abe..07df3d9ad 100644 --- a/data/locale/deutsch.locale +++ b/data/locale/deutsch.locale @@ -174,6 +174,7 @@ audioplayer.fastforward schneller Vorl. audioplayer.follow Selektiere akt. Track audioplayer.head Audio Playlist audioplayer.highprio Hohe Decodier-Priorität +audioplayer.internetradio.name Audioplayer und Internetradio audioplayer.jump_backwards rückw. springen audioplayer.jump_dialog_hint1 Bitte Sprungziel eingeben audioplayer.jump_dialog_hint2 (relativ, in Sekunden) diff --git a/data/locale/english.locale b/data/locale/english.locale index 07bd77549..651463734 100644 --- a/data/locale/english.locale +++ b/data/locale/english.locale @@ -174,6 +174,7 @@ audioplayer.fastforward Fast forward audioplayer.follow Auto select current audioplayer.head Audio Playlist audioplayer.highprio High decode priority +audioplayer.internetradio.name Audioplayer and Internetradio audioplayer.jump_backwards Jump backwards audioplayer.jump_dialog_hint1 Please enter jump target audioplayer.jump_dialog_hint2 (relative, in seconds) diff --git a/src/gui/audioplayer_setup.cpp b/src/gui/audioplayer_setup.cpp index 4cb4e7eca..4f5380771 100644 --- a/src/gui/audioplayer_setup.cpp +++ b/src/gui/audioplayer_setup.cpp @@ -111,7 +111,7 @@ int CAudioPlayerSetup::showAudioPlayerSetup() CMenuWidget* audioplayerSetup = new CMenuWidget(LOCALE_MAINMENU_SETTINGS, NEUTRINO_ICON_SETTINGS, width, MN_WIDGET_ID_AUDIOSETUP); - audioplayerSetup->addIntroItems(LOCALE_AUDIOPLAYER_NAME); + audioplayerSetup->addIntroItems(LOCALE_AUDIOPLAYER_INTERNETRADIO_NAME); // display order mc = new CMenuOptionChooser(LOCALE_AUDIOPLAYER_DISPLAY_ORDER, &g_settings.audioplayer_display, AUDIOPLAYER_DISPLAY_ORDER_OPTIONS, AUDIOPLAYER_DISPLAY_ORDER_OPTION_COUNT, true); diff --git a/src/gui/mediaplayer_setup.cpp b/src/gui/mediaplayer_setup.cpp index 1ac0e6d4f..e3fc1e4ad 100644 --- a/src/gui/mediaplayer_setup.cpp +++ b/src/gui/mediaplayer_setup.cpp @@ -89,7 +89,7 @@ int CMediaPlayerSetup::showMediaPlayerSetup() CMenuForwarder *mf; CAudioPlayerSetup asetup; - mf = new CMenuForwarder(LOCALE_AUDIOPLAYER_NAME, true, NULL, &asetup, "", CRCInput::RC_red); + mf = new CMenuForwarder(LOCALE_AUDIOPLAYER_INTERNETRADIO_NAME, true, NULL, &asetup, "", CRCInput::RC_red); mf->setHint(NEUTRINO_ICON_HINT_APLAY, LOCALE_MENU_HINT_APLAY_SETUP); mediaSetup->addItem(mf); diff --git a/src/system/locals.h b/src/system/locals.h index 12c174ce4..4a8b5320e 100644 --- a/src/system/locals.h +++ b/src/system/locals.h @@ -201,6 +201,7 @@ typedef enum LOCALE_AUDIOPLAYER_FOLLOW, LOCALE_AUDIOPLAYER_HEAD, LOCALE_AUDIOPLAYER_HIGHPRIO, + LOCALE_AUDIOPLAYER_INTERNETRADIO_NAME, LOCALE_AUDIOPLAYER_JUMP_BACKWARDS, LOCALE_AUDIOPLAYER_JUMP_DIALOG_HINT1, LOCALE_AUDIOPLAYER_JUMP_DIALOG_HINT2, diff --git a/src/system/locals_intern.h b/src/system/locals_intern.h index e7ea4042c..f26bf77e9 100644 --- a/src/system/locals_intern.h +++ b/src/system/locals_intern.h @@ -201,6 +201,7 @@ const char * locale_real_names[] = "audioplayer.follow", "audioplayer.head", "audioplayer.highprio", + "audioplayer.internetradio.name", "audioplayer.jump_backwards", "audioplayer.jump_dialog_hint1", "audioplayer.jump_dialog_hint2",