diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-04-13 13:49:12 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-04-13 13:49:12 -0500 |
commit | 70be32de2ecf4f60348a4ec2f5e4c80a85d2aae6 (patch) | |
tree | 2752e450646ee8cd6a11276bc801f1525286c199 | |
parent | a3bc52ff9b9c38aebdd9b48d2ad9cdd0ce45b8ed (diff) | |
download | amarok-70be32de2ecf4f60348a4ec2f5e4c80a85d2aae6.tar.gz amarok-70be32de2ecf4f60348a4ec2f5e4c80a85d2aae6.zip |
Fix missing argument warnings
-rw-r--r-- | amarok/src/engine/xine/xine-engine.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/amarok/src/engine/xine/xine-engine.cpp b/amarok/src/engine/xine/xine-engine.cpp index 48353ac3..19f979c9 100644 --- a/amarok/src/engine/xine/xine-engine.cpp +++ b/amarok/src/engine/xine/xine-engine.cpp @@ -974,11 +974,11 @@ XineEngine::XineEventListener( void *p, const xine_event_t* xineEvent ) case XINE_MSG_UNKNOWN_HOST: message = i18n("The host is unknown for the URL: <i>%1</i>"); goto param; case XINE_MSG_UNKNOWN_DEVICE: - message = i18n("The device name you specified seems invalid."); goto param; + message = i18n("The device name you specified seems invalid.<br>%1"); goto param; case XINE_MSG_NETWORK_UNREACHABLE: - message = i18n("The network appears unreachable."); goto param; + message = i18n("The network appears unreachable.<br>%1"); goto param; case XINE_MSG_AUDIO_OUT_UNAVAILABLE: - message = i18n("Audio output unavailable; the device is busy."); goto param; + message = i18n("Audio output unavailable; the device is busy.<br>%1"); goto param; case XINE_MSG_CONNECTION_REFUSED: message = i18n("The connection was refused for the URL: <i>%1</i>"); goto param; case XINE_MSG_FILE_NOT_FOUND: @@ -988,7 +988,7 @@ XineEngine::XineEventListener( void *p, const xine_event_t* xineEvent ) case XINE_MSG_READ_ERROR: message = i18n("The source cannot be read for the URL: <i>%1</i>"); goto param; case XINE_MSG_LIBRARY_LOAD_ERROR: - message = i18n("A problem occurred while loading a library or decoder."); goto param; + message = i18n("A problem occurred while loading a library or decoder.<br>%1"); goto param; case XINE_MSG_GENERAL_WARNING: message = i18n("General Warning"); goto explain; |