Changeset 76d75d3dc50a4c40a6bd48c613c0cabfba0a37f9
- Timestamp:
- 07/29/06 17:32:30
(2 years ago)
- Author:
- Felix Paul Kühne <fkuehne@videolan.org>
- git-committer:
- Felix Paul Kühne <fkuehne@videolan.org> 1154187150 +0000
- git-parent:
[6cb1101a9144409fe27ffd7984c58f33b66eb78c]
- git-author:
- Felix Paul Kühne <fkuehne@videolan.org> 1154187150 +0000
- Message:
* improved some error messages
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc717860 |
r76d75d3 |
|
| 259 | 259 | C: fkuehne |
|---|
| 260 | 260 | D: MacOS X Interface (Wizard, structure, extended controls panel, bookmarks window) |
|---|
| | 261 | D: Interface Interaction (core and OSX) |
|---|
| 261 | 262 | D: German translation |
|---|
| 262 | 263 | S: Germany |
|---|
| r77824cb |
r76d75d3 |
|
| 2020 | 2020 | msg_Err( p_input, "no suitable access module for `%s'", psz_mrl ); |
|---|
| 2021 | 2021 | intf_UserFatal( VLC_OBJECT( p_input), |
|---|
| 2022 | | _("Errors"),"Unable to open '%s'", psz_mrl ); |
|---|
| | 2022 | _("Your input can't be opened"), |
|---|
| | 2023 | _("VLC is unable to open the MRL '%s'." |
|---|
| | 2024 | " Check the log for details."), psz_mrl ); |
|---|
| 2023 | 2025 | goto error; |
|---|
| 2024 | 2026 | } |
|---|
| … | … | |
| 2090 | 2092 | msg_Err( p_input, "no suitable demux module for `%s/%s://%s'", |
|---|
| 2091 | 2093 | psz_access, psz_demux, psz_path ); |
|---|
| 2092 | | intf_UserFatal( VLC_OBJECT( p_input), _("Errors"), |
|---|
| 2093 | | "Unrecognized format for '%s'", psz_mrl ); |
|---|
| | 2094 | intf_UserFatal( VLC_OBJECT( p_input), |
|---|
| | 2095 | _("Can't recognize the input's format"), |
|---|
| | 2096 | _("The format of '%s' can't be detected. " |
|---|
| | 2097 | "Have a look the log for details."), psz_mrl ); |
|---|
| 2094 | 2098 | goto error; |
|---|
| 2095 | 2099 | } |
|---|
| r6cb1101 |
r76d75d3 |
|
| 1271 | 1271 | { |
|---|
| 1272 | 1272 | msg_Err( p_vlc, "Failed to open %s for reading", psz_src ); |
|---|
| 1273 | | intf_UserFatal( p_vlc, "Downloading...", |
|---|
| 1274 | | "Failed to open %s for reading", psz_src ); |
|---|
| | 1273 | intf_UserFatal( p_vlc, "Error while Downloading...", |
|---|
| | 1274 | "VLC failed to open %s for reading.", psz_src ); |
|---|
| 1275 | 1275 | intf_UserHide( p_vlc, i_progress ); |
|---|
| 1276 | 1276 | } |
|---|
| … | … | |
| 1282 | 1282 | { |
|---|
| 1283 | 1283 | msg_Err( p_vlc, "Failed to open %s for writing", psz_dest ); |
|---|
| 1284 | | intf_UserFatal( p_vlc, "Downloading...", |
|---|
| 1285 | | "Failed to open %s for writing", psz_dest ); |
|---|
| | 1284 | intf_UserFatal( p_vlc, "Error while Downloading...", |
|---|
| | 1285 | "VLC failed to open %s for writing.", psz_dest ); |
|---|
| 1286 | 1286 | intf_UserHide( p_vlc, i_progress ); |
|---|
| 1287 | 1287 | } |
|---|