brasero r1846 - in trunk: . src src/plugins/dvdcss
- From: philippr svn gnome org
- To: svn-commits-list gnome org
- Subject: brasero r1846 - in trunk: . src src/plugins/dvdcss
- Date: Sat, 31 Jan 2009 10:19:32 +0000 (UTC)
Author: philippr
Date: Sat Jan 31 10:19:32 2009
New Revision: 1846
URL: http://svn.gnome.org/viewvc/brasero?rev=1846&view=rev
Log:
2009-01-31 Philippe Rouquier <ykw localhost localdomain>
Fix #569923 â Grammar issues
Use "Please " instead of "Please,"
Patch by Bruce Cowan
* src/brasero-burn-dialog.c
(brasero_burn_dialog_get_media_type_string),
(brasero_burn_dialog_insert_disc_cb):
* src/brasero-burn-options.c
(brasero_burn_options_update_no_medium_warning),
(brasero_burn_options_valid_media_cb):
* src/brasero-data-disc.c (brasero_data_disc_project_oversized_cb),
(brasero_data_disc_load_track):
* src/brasero-project.c (brasero_project_check_status):
* src/brasero-src-image.c (brasero_src_image_error):
* src/plugins/dvdcss/burn-dvdcss.c (brasero_dvdcss_library_init):
Modified:
trunk/ChangeLog
trunk/src/brasero-burn-dialog.c
trunk/src/brasero-burn-options.c
trunk/src/brasero-data-disc.c
trunk/src/brasero-project.c
trunk/src/brasero-src-image.c
trunk/src/plugins/dvdcss/burn-dvdcss.c
Modified: trunk/src/brasero-burn-dialog.c
==============================================================================
--- trunk/src/brasero-burn-dialog.c (original)
+++ trunk/src/brasero-burn-dialog.c Sat Jan 31 10:19:32 2009
@@ -385,15 +385,15 @@
if (type & BRASERO_MEDIUM_HAS_DATA) {
if (!insert) {
if (type & BRASERO_MEDIUM_REWRITABLE)
- message = g_strdup (_("Please, replace the disc with a rewritable disc holding data."));
+ message = g_strdup (_("Please replace the disc with a rewritable disc holding data."));
else
- message = g_strdup (_("Please, replace the disc with a disc holding data."));
+ message = g_strdup (_("Please replace the disc with a disc holding data."));
}
else {
if (type & BRASERO_MEDIUM_REWRITABLE)
- message = g_strdup (_("Please, insert a rewritable disc holding data."));
+ message = g_strdup (_("Please insert a rewritable disc holding data."));
else
- message = g_strdup (_("Please, insert a disc holding data."));
+ message = g_strdup (_("Please insert a disc holding data."));
}
}
else if (type & BRASERO_MEDIUM_WRITABLE) {
@@ -408,48 +408,48 @@
if ((type & BRASERO_MEDIUM_CD) && !(type & BRASERO_MEDIUM_DVD)) {
if (!insert) {
if (isosize)
- message = g_strdup_printf (_("Please, replace the disc with a recordable CD with at least %i MiB of free space."),
+ message = g_strdup_printf (_("Please replace the disc with a recordable CD with at least %i MiB of free space."),
(int) (isosize / 1048576));
else
- message = g_strdup (_("Please, replace the disc with a recordable CD."));
+ message = g_strdup (_("Please replace the disc with a recordable CD."));
}
else {
if (isosize)
- message = g_strdup_printf (_("Please, insert a recordable CD with at least %i MiB of free space."),
+ message = g_strdup_printf (_("Please insert a recordable CD with at least %i MiB of free space."),
(int) (isosize / 1048576));
else
- message = g_strdup (_("Please, insert a recordable CD."));
+ message = g_strdup (_("Please insert a recordable CD."));
}
}
else if (!(type & BRASERO_MEDIUM_CD) && (type & BRASERO_MEDIUM_DVD)) {
if (!insert) {
if (isosize)
- message = g_strdup_printf (_("Please, replace the disc with a recordable DVD with at least %i MiB of free space."),
+ message = g_strdup_printf (_("Please replace the disc with a recordable DVD with at least %i MiB of free space."),
(int) (isosize / 1048576));
else
- message = g_strdup (_("Please, replace the disc with a recordable DVD."));
+ message = g_strdup (_("Please replace the disc with a recordable DVD."));
}
else {
if (isosize)
- message = g_strdup_printf (_("Please, insert a recordable DVD with at least %i MiB of free space."),
+ message = g_strdup_printf (_("Please insert a recordable DVD with at least %i MiB of free space."),
(int) (isosize / 1048576));
else
- message = g_strdup (_("Please, insert a recordable DVD."));
+ message = g_strdup (_("Please insert a recordable DVD."));
}
}
else if (!insert) {
if (isosize)
- message = g_strdup_printf (_("Please, replace the disc with a recordable CD or DVD with at least %i MiB of free space."),
+ message = g_strdup_printf (_("Please replace the disc with a recordable CD or DVD with at least %i MiB of free space."),
(int) (isosize / 1048576));
else
- message = g_strdup (_("Please, replace the disc with a recordable CD or DVD."));
+ message = g_strdup (_("Please replace the disc with a recordable CD or DVD."));
}
else {
if (isosize)
- message = g_strdup_printf (_("Please, insert a recordable CD or DVD with at least %i MiB of free space."),
+ message = g_strdup_printf (_("Please insert a recordable CD or DVD with at least %i MiB of free space."),
(int) (isosize / 1048576));
else
- message = g_strdup (_("Please, insert a recordable CD or DVD."));
+ message = g_strdup (_("Please insert a recordable CD or DVD."));
}
}
@@ -501,7 +501,7 @@
}
else if (error == BRASERO_BURN_WARNING_CHECKSUM) {
secondary_message = g_strdup (_("A data integrity test will begin as soon as the disc is inserted."));
- main_message = g_strdup (_("Please, re-insert the disc in the CD/DVD burner."));
+ main_message = g_strdup (_("Please re-insert the disc in the CD/DVD burner."));
}
else if (error == BRASERO_BURN_ERROR_DRIVE_BUSY) {
/* Translators: %s is the name of a drive */
@@ -538,7 +538,7 @@
}
else if (error == BRASERO_BURN_ERROR_MEDIUM_NEED_RELOADING) {
secondary_message = g_strdup_printf (_("The disc in \"%s\" needs to be reloaded."), drive_name);
- main_message = g_strdup (_("Please, eject the disc and reload it."));
+ main_message = g_strdup (_("Please eject the disc and reload it."));
}
g_free (drive_name);
Modified: trunk/src/brasero-burn-options.c
==============================================================================
--- trunk/src/brasero-burn-options.c (original)
+++ trunk/src/brasero-burn-options.c Sat Jan 31 10:19:32 2009
@@ -221,7 +221,7 @@
/* The user may have forgotten to insert a disc so remind him of that if
* there aren't any other possibility in the selection */
brasero_notify_message_add (BRASERO_NOTIFY (priv->message_output),
- _("Please, insert a recordable CD or DVD if you don't want to write to an image file."),
+ _("Please insert a recordable CD or DVD if you don't want to write to an image file."),
NULL,
-1,
BRASERO_BURN_OPTIONS_NO_MEDIUM_WARNING);
@@ -254,14 +254,14 @@
if (valid == BRASERO_SESSION_INSUFFICIENT_SPACE) {
brasero_notify_message_add (BRASERO_NOTIFY (priv->message_output),
- _("Please, choose another CD or DVD or insert a new one."),
+ _("Please choose another CD or DVD or insert a new one."),
_("The size of the project is too large for the disc even with the overburn option."),
-1,
BRASERO_NOTIFY_CONTEXT_SIZE);
}
else if (valid == BRASERO_SESSION_NO_OUTPUT) {
brasero_notify_message_add (BRASERO_NOTIFY (priv->message_output),
- _("Please, insert a recordable CD or DVD."),
+ _("Please insert a recordable CD or DVD."),
_("There is no recordable disc inserted."),
-1,
BRASERO_NOTIFY_CONTEXT_SIZE);
@@ -279,7 +279,7 @@
if (priv->message_input) {
gtk_widget_show (priv->message_input);
message = brasero_notify_message_add (BRASERO_NOTIFY (priv->message_input),
- _("Please, insert a disc holding data."),
+ _("Please insert a disc holding data."),
_("There is no inserted disc to copy."),
-1,
BRASERO_NOTIFY_CONTEXT_SIZE);
@@ -291,7 +291,7 @@
if (priv->message_input) {
gtk_widget_show (priv->message_input);
message = brasero_notify_message_add (BRASERO_NOTIFY (priv->message_input),
- _("Please, select an image."),
+ _("Please select an image."),
_("There is no selected image."),
-1,
BRASERO_NOTIFY_CONTEXT_SIZE);
@@ -303,7 +303,7 @@
if (priv->message_input) {
gtk_widget_show (priv->message_input);
message = brasero_notify_message_add (BRASERO_NOTIFY (priv->message_input),
- _("Please, select another image."),
+ _("Please select another image."),
_("It doesn't appear to be a valid image or a valid cue file."),
-1,
BRASERO_NOTIFY_CONTEXT_SIZE);
@@ -315,7 +315,7 @@
if (priv->message_input) {
gtk_widget_show (priv->message_input);
message = brasero_notify_message_add (BRASERO_NOTIFY (priv->message_input),
- _("Please, insert a disc that is not copy protected."),
+ _("Please insert a disc that is not copy protected."),
_("Such a disc cannot be copied without the proper plugins."),
-1,
BRASERO_NOTIFY_CONTEXT_SIZE);
@@ -323,7 +323,7 @@
}
else if (valid == BRASERO_SESSION_NOT_SUPPORTED) {
brasero_notify_message_add (BRASERO_NOTIFY (priv->message_output),
- _("Please, replace the disc with a supported CD or DVD."),
+ _("Please replace the disc with a supported CD or DVD."),
_("It is not possible to write with the current set of plugins."),
-1,
BRASERO_NOTIFY_CONTEXT_SIZE);
Modified: trunk/src/brasero-data-disc.c
==============================================================================
--- trunk/src/brasero-data-disc.c (original)
+++ trunk/src/brasero-data-disc.c Sat Jan 31 10:19:32 2009
@@ -624,7 +624,7 @@
}
else if (oversized) {
message = brasero_notify_message_add (BRASERO_NOTIFY (priv->message),
- _("Please, delete some files from the project."),
+ _("Please delete some files from the project."),
_("The size of the project is too large for the disc even with the overburn option."),
-1,
BRASERO_NOTIFY_CONTEXT_SIZE);
@@ -1682,7 +1682,7 @@
}
message = brasero_notify_message_add (BRASERO_NOTIFY (priv->message),
- _("Please, wait while the project is loading."),
+ _("Please wait while the project is loading."),
NULL,
-1,
BRASERO_NOTIFY_CONTEXT_LOADING);
Modified: trunk/src/brasero-project.c
==============================================================================
--- trunk/src/brasero-project.c (original)
+++ trunk/src/brasero-project.c Sat Jan 31 10:19:32 2009
@@ -778,7 +778,7 @@
/* This dialog can run as a standalone window when run from nautilus
* to burn burn:// URI contents. */
dialog = brasero_app_dialog (brasero_app_get_default (),
- _("Please, wait until the estimation of the project size is completed."),
+ _("Please wait until the estimation of the project size is completed."),
GTK_BUTTONS_CANCEL,
GTK_MESSAGE_OTHER);
Modified: trunk/src/brasero-src-image.c
==============================================================================
--- trunk/src/brasero-src-image.c (original)
+++ trunk/src/brasero-src-image.c Sat Jan 31 10:19:32 2009
@@ -241,7 +241,7 @@
GError *error)
{
brasero_utils_message_dialog (gtk_widget_get_toplevel (GTK_WIDGET (self)),
- _("Please, select another image."),
+ _("Please select another image."),
error->message,
GTK_MESSAGE_ERROR);
}
Modified: trunk/src/plugins/dvdcss/burn-dvdcss.c
==============================================================================
--- trunk/src/plugins/dvdcss/burn-dvdcss.c (original)
+++ trunk/src/plugins/dvdcss/burn-dvdcss.c Sat Jan 31 10:19:32 2009
@@ -119,14 +119,14 @@
g_set_error (error,
BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_GENERAL,
- _("Encrypted DVD: please, install libdvdcss version 1.2.x"));
+ _("Encrypted DVD: please install libdvdcss version 1.2.x"));
return FALSE;
error_version:
g_set_error (error,
BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_GENERAL,
- _("Libdvdcss version %s is not supported.\nPlease, install libdvdcss version 1.2.x"),
+ _("Libdvdcss version %s is not supported.\nPlease install libdvdcss version 1.2.x"),
dvdcss_interface_2);
g_module_close (module);
return FALSE;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]