[brasero/gnome-2-30] Fix part of 617831 - "Write to Disc" button sensitivity regression Also write the name of applicat
- From: Philippe Rouquier <philippr src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [brasero/gnome-2-30] Fix part of 617831 - "Write to Disc" button sensitivity regression Also write the name of applicat
- Date: Sat, 15 May 2010 19:31:55 +0000 (UTC)
commit 59af2a9c7fb00c508ebc1cad3d15290bc4d2f776
Author: Philippe Rouquier <bonfire-app wanadoo fr>
Date: Sat May 15 17:10:05 2010 +0200
Fix part of 617831 - "Write to Disc" button sensitivity regression
Also write the name of applications with a symbolic link in the dialog appearing to require the installation of some apps or libs
libbrasero-burn/brasero-burn-options.c | 7 +++++--
libbrasero-burn/brasero-burn.c | 7 +++++--
src/brasero-project.c | 7 +++++--
3 files changed, 15 insertions(+), 6 deletions(-)
---
diff --git a/libbrasero-burn/brasero-burn-options.c b/libbrasero-burn/brasero-burn-options.c
index db61e3d..87220c2 100644
--- a/libbrasero-burn/brasero-burn-options.c
+++ b/libbrasero-burn/brasero-burn-options.c
@@ -1181,12 +1181,15 @@ brasero_burn_options_list_missing (BraseroPluginErrorType type,
{
GString *string = user_data;
- if (type == BRASERO_PLUGIN_ERROR_MISSING_APP) {
+ if (type == BRASERO_PLUGIN_ERROR_MISSING_APP ||
+ type == BRASERO_PLUGIN_ERROR_SYMBOLIC_LINK_APP ||
+ type == BRASERO_PLUGIN_ERROR_WRONG_APP_VERSION) {
g_string_append_c (string, '\n');
/* Translators: %s is the name of a missing application */
g_string_append_printf (string, _("%s (application)"), detail);
}
- else if (type == BRASERO_PLUGIN_ERROR_MISSING_LIBRARY) {
+ else if (type == BRASERO_PLUGIN_ERROR_MISSING_LIBRARY ||
+ type == BRASERO_PLUGIN_ERROR_LIBRARY_VERSION) {
g_string_append_c (string, '\n');
/* Translators: %s is the name of a missing library */
g_string_append_printf (string, _("%s (library)"), detail);
diff --git a/libbrasero-burn/brasero-burn.c b/libbrasero-burn/brasero-burn.c
index 979fc99..da9c65b 100644
--- a/libbrasero-burn/brasero-burn.c
+++ b/libbrasero-burn/brasero-burn.c
@@ -1701,12 +1701,15 @@ brasero_burn_list_missing (BraseroPluginErrorType type,
{
GString *string = user_data;
- if (type == BRASERO_PLUGIN_ERROR_MISSING_APP) {
+ if (type == BRASERO_PLUGIN_ERROR_MISSING_APP ||
+ type == BRASERO_PLUGIN_ERROR_SYMBOLIC_LINK_APP ||
+ type == BRASERO_PLUGIN_ERROR_WRONG_APP_VERSION) {
g_string_append_c (string, '\n');
/* Translators: %s is the name of a missing application */
g_string_append_printf (string, _("%s (application)"), detail);
}
- else if (type == BRASERO_PLUGIN_ERROR_MISSING_LIBRARY) {
+ else if (type == BRASERO_PLUGIN_ERROR_MISSING_LIBRARY ||
+ type == BRASERO_PLUGIN_ERROR_LIBRARY_VERSION) {
g_string_append_c (string, '\n');
/* Translators: %s is the name of a missing library */
g_string_append_printf (string, _("%s (library)"), detail);
diff --git a/src/brasero-project.c b/src/brasero-project.c
index ffd3f51..4adebf9 100644
--- a/src/brasero-project.c
+++ b/src/brasero-project.c
@@ -1368,12 +1368,15 @@ brasero_project_list_missing (BraseroPluginErrorType type,
{
GString *string = user_data;
- if (type == BRASERO_PLUGIN_ERROR_MISSING_APP) {
+ if (type == BRASERO_PLUGIN_ERROR_MISSING_APP ||
+ type == BRASERO_PLUGIN_ERROR_SYMBOLIC_LINK_APP ||
+ type == BRASERO_PLUGIN_ERROR_WRONG_APP_VERSION) {
g_string_append_c (string, '\n');
/* Translators: %s is the name of a missing application */
g_string_append_printf (string, _("%s (application)"), detail);
}
- else if (type == BRASERO_PLUGIN_ERROR_MISSING_LIBRARY) {
+ else if (type == BRASERO_PLUGIN_ERROR_MISSING_LIBRARY ||
+ type == BRASERO_PLUGIN_ERROR_LIBRARY_VERSION) {
g_string_append_c (string, '\n');
/* Translators: %s is the name of a missing library */
g_string_append_printf (string, _("%s (library)"), detail);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]