[brasero] Display proper success string after creating an image (video and audio) (backportable?)
- From: Philippe Rouquier <philippr src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [brasero] Display proper success string after creating an image (video and audio) (backportable?)
- Date: Wed, 25 Nov 2009 14:46:11 +0000 (UTC)
commit 2d515933dede67d9f285a10c0e9e1a88866818c1
Author: Philippe Rouquier <bonfire-app wanadoo fr>
Date: Wed Nov 25 15:41:37 2009 +0100
Display proper success string after creating an image (video and audio) (backportable?)
libbrasero-burn/brasero-burn-dialog.c | 15 +++++++++------
1 files changed, 9 insertions(+), 6 deletions(-)
---
diff --git a/libbrasero-burn/brasero-burn-dialog.c b/libbrasero-burn/brasero-burn-dialog.c
index c54c123..a35ef1c 100644
--- a/libbrasero-burn/brasero-burn-dialog.c
+++ b/libbrasero-burn/brasero-burn-dialog.c
@@ -1665,15 +1665,18 @@ brasero_burn_dialog_get_success_message (BraseroBurnDialog *dialog)
drive = brasero_burn_session_get_burner (priv->session);
if (brasero_track_type_get_has_stream (&priv->input)) {
- if (BRASERO_STREAM_FORMAT_HAS_VIDEO (brasero_track_type_get_stream_format (&priv->input))) {
- if (priv->media & BRASERO_MEDIUM_DVD)
- return g_strdup (_("Video DVD successfully burned"));
+ if (!brasero_drive_is_fake (drive)) {
+ if (BRASERO_STREAM_FORMAT_HAS_VIDEO (brasero_track_type_get_stream_format (&priv->input))) {
+ if (priv->media & BRASERO_MEDIUM_DVD)
+ return g_strdup (_("Video DVD successfully burned"));
- return g_strdup (_("(S)VCD successfully burned"));
+ return g_strdup (_("(S)VCD successfully burned"));
+ }
+ else
+ return g_strdup (_("Audio CD successfully burned"));
}
- else
- return g_strdup (_("Audio CD successfully burned"));
+ return g_strdup (_("Image successfully created"));
}
else if (brasero_track_type_get_has_medium (&priv->input)) {
if (!brasero_drive_is_fake (drive)) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]