brasero r1678 - in trunk: . src
- From: philippr svn gnome org
- To: svn-commits-list gnome org
- Subject: brasero r1678 - in trunk: . src
- Date: Thu, 1 Jan 2009 13:47:47 +0000 (UTC)
Author: philippr
Date: Thu Jan 1 13:47:47 2009
New Revision: 1678
URL: http://svn.gnome.org/viewvc/brasero?rev=1678&view=rev
Log:
2009-01-01 Philippe Rouquier <ykw localhost localdomain>
Allow the use of translated names for plugins
* src/brasero-plugin-manager-ui.c (about_button_cb),
(plugin_manager_ui_view_info_cell_cb), (name_search_cb),
(model_name_sort_func):
* src/brasero-plugin-option.c (brasero_plugin_option_set_plugin):
Modified:
trunk/ChangeLog
trunk/src/brasero-plugin-manager-ui.c
trunk/src/brasero-plugin-option.c
Modified: trunk/src/brasero-plugin-manager-ui.c
==============================================================================
--- trunk/src/brasero-plugin-manager-ui.c (original)
+++ trunk/src/brasero-plugin-manager-ui.c Thu Jan 1 13:47:47 2009
@@ -143,7 +143,7 @@
brasero_plugin_get_author (plugin));
dialog = g_object_new (GTK_TYPE_ABOUT_DIALOG,
- "program-name", brasero_plugin_get_name (plugin),
+ "program-name", _(brasero_plugin_get_name (plugin)),
"copyright", copyright,
"authors", authors,
"comments", brasero_plugin_get_description (plugin),
@@ -216,12 +216,16 @@
if (brasero_plugin_get_error (plugin))
text = g_markup_printf_escaped ("<b>%s</b>\n%s\n<i>%s</i>",
- brasero_plugin_get_name (plugin),
+ /* Use the translated name of
+ * the plugin. */
+ _(brasero_plugin_get_name (plugin)),
brasero_plugin_get_description (plugin),
brasero_plugin_get_error (plugin));
else
text = g_markup_printf_escaped ("<b>%s</b>\n%s",
- brasero_plugin_get_name (plugin),
+ /* Use the translated name of
+ * the plugin. */
+ _(brasero_plugin_get_name (plugin)),
brasero_plugin_get_description (plugin));
g_object_set (G_OBJECT (cell),
@@ -505,8 +509,13 @@
if (!plugin)
return FALSE;
- normalized_string = g_utf8_normalize (brasero_plugin_get_name (plugin), -1, G_NORMALIZE_ALL);
- normalized_key = g_utf8_normalize (key, -1, G_NORMALIZE_ALL);
+ /* Use translated name for the plugin */
+ normalized_string = g_utf8_normalize (_(brasero_plugin_get_name (plugin)),
+ -1,
+ G_NORMALIZE_ALL);
+ normalized_key = g_utf8_normalize (key,
+ -1,
+ G_NORMALIZE_ALL);
case_normalized_string = g_utf8_casefold (normalized_string, -1);
case_normalized_key = g_utf8_casefold (normalized_key, -1);
@@ -794,8 +803,9 @@
gtk_tree_model_get (model, iter1, PLUGIN_COLUMN, &plugin1, -1);
gtk_tree_model_get (model, iter2, PLUGIN_COLUMN, &plugin2, -1);
- return g_utf8_collate (brasero_plugin_get_name (plugin1),
- brasero_plugin_get_name (plugin2));
+ /* Use the translated name for the plugins */
+ return g_utf8_collate (_(brasero_plugin_get_name (plugin1)),
+ _(brasero_plugin_get_name (plugin2)));
}
static void
Modified: trunk/src/brasero-plugin-option.c
==============================================================================
--- trunk/src/brasero-plugin-option.c (original)
+++ trunk/src/brasero-plugin-option.c Thu Jan 1 13:47:47 2009
@@ -390,7 +390,8 @@
priv = BRASERO_PLUGIN_OPTION_PRIVATE (self);
- tmp = g_strdup_printf (_("Options for plugin %s"), brasero_plugin_get_name (plugin));
+ /* Use the translated name for the plugin. */
+ tmp = g_strdup_printf (_("Options for plugin %s"), _(brasero_plugin_get_name (plugin)));
string = g_strdup_printf ("<b>%s</b>", tmp);
g_free (tmp);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]