~mfisch/brasero/update-to-3.8.0

« back to all changes in this revision

Viewing changes to libbrasero-burn/brasero-burn-dialog.c

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2009-07-14 14:13:00 UTC
  • mfrom: (1.1.25 upstream)
  • Revision ID: james.westby@ubuntu.com-20090714141300-e08q13sp48b2xzwd
Tags: 2.27.4-0ubuntu1
* New upstream release: (LP: #399112)
  - Hal support removed, now relies on GIO only for drives/media probing
  - New layout for size reporting in data/audio/video project
  - Lot's of bug fixes
  - Fixed some memleaks
  - Bump libbrasero-media version to reflect changes (important to packagers)
  - Fix #582261 – brasero shows 0% done, while continues burning disc
  - Fix #582513 – Bogus VIDEO_TS directory error if AUDIO_TS directory present
  - Fix #573805 – "Increase compatibility with Windows systems"?
  - Fix #585190 – remove 0 from 03 % status
  - Fix #586744 – Use AS_HELP_STRING for configure switches
  - Fix #584793 – Poor language in warning dialog when attempting to burn an audio CD onto a CDRW
  - Fix #580617 – Brasero floods .xsession-errors log with "Unknown (or already deleted) monitored directory" warnings
  - Fix #563501 – Brasero burning window shouldn't try to show drive speed while is converting audio files
  - Fix #485719 – Burn dialog CD icon
  - Fix #585481 – Deep hierarchy warning
  - Fix #554070 – The need of a "replace all" and "replace non" button
  - Fix #582461 – Brasero hangs at normalizing tracks
  - Fix #587284 – nautilus hangs every time
  - Fix #574093 – Caret visible in instructions for project creation
  - Fix #581742 – port from HAL to DeviceKit-disks
  - Fix #573801 – Bad error message when burning empty burn:///
  - Fix #573486 – Various i18n and string issues for good
  - Fix #587399 – License clarification
  - Fix #587554 – Unclear meaning of text
  - Fix #582979 – brasero should not include Categories in mime handler .desktop files
  - Fix #586040 – duplicated command listed in open-with dialog
  - Fixes for #573486 – Various i18n and string issues
* debian/control.in:
  - Add in missing comma in brasero suggests

Show diffs side-by-side

added added

removed removed

Lines of Context:
629
629
        g_free (main_message);
630
630
        g_free (secondary_message);
631
631
 
632
 
        /* update the infos */
633
 
        brasero_burn_dialog_update_info (dialog,
634
 
                                         &priv->input, 
635
 
                                         brasero_burn_session_get_dest_media (priv->session));
636
 
 
637
632
        if (result != GTK_RESPONSE_OK)
638
633
                return BRASERO_BURN_CANCEL;
639
634
 
751
746
                format = brasero_burn_session_get_output_format (priv->session);
752
747
                brasero_burn_session_get_output (priv->session,
753
748
                                                 &image,
754
 
                                                 &toc,
755
 
                                                 NULL);
 
749
                                                 &toc);
756
750
 
757
751
                if (toc) {
758
752
                        gchar *name;
861
855
                                  GtkDialog *dialog)
862
856
{
863
857
        return brasero_burn_dialog_loss_warnings_cb (dialog,
864
 
                                                     _("Do you really want to erase the current disc?"),
 
858
                                                     _("Do you really want to blank the current disc?"),
865
859
                                                     _("The disc in the drive holds data."),
866
 
                                                     _("_Erase Disc"),
 
860
                                                     /* Translators: Blank is a verb here */
 
861
                                                     _("_Blank Disc"),
867
862
                                                     "media-optical-blank");
868
863
}
869
864
 
895
890
        BraseroBurnResult result;
896
891
 
897
892
        secondary = g_strdup_printf ("%s\n%s",
898
 
                                     _("You might not be able to listen to them with stereos and CD-TEXT won't be written."),
 
893
                                     _("CD-RW audio discs may not play correctly in older CD players and CD-TEXT won't be written."),
899
894
                                     _("Do you want to continue anyway?"));
900
895
 
901
896
        result = brasero_burn_dialog_loss_warnings_cb (dialog,
915
910
        BraseroBurnResult result;
916
911
 
917
912
        secondary = g_strdup_printf ("%s\n%s",
918
 
                                     _("You might not be able to listen to it with stereos."),
 
913
                                     _("CD-RW audio discs may not play correctly in older CD players."),
919
914
                                     _("Do you want to continue anyway?"));
920
915
 
921
916
        result = brasero_burn_dialog_loss_warnings_cb (dialog,
1178
1173
                BraseroMedia media = BRASERO_MEDIUM_NONE;
1179
1174
 
1180
1175
                brasero_burn_status (burn, &media, NULL, NULL, NULL);
1181
 
                brasero_burn_dialog_update_info (dialog,
1182
 
                                                 &priv->input,
1183
 
                                                 media);
1184
1176
        }
1185
1177
 
1186
1178
        priv->is_creating_image = (action == BRASERO_BURN_ACTION_CREATING_IMAGE);
2162
2154
 
2163
2155
        priv = BRASERO_BURN_DIALOG_PRIVATE (dialog);
2164
2156
 
 
2157
        /* Update info */
2165
2158
        brasero_burn_dialog_update_info (dialog, &priv->input, media);
2166
2159
 
2167
2160
        /* start the recording session */