Codebase list policykit-1-gnome / debian/0.8-2
Imported Debian patch 0.8-2 Michael Biebl 14 years ago
3 changed file(s) with 42 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 policykit-gnome (0.8-2) unstable; urgency=low
1
2 * debian/patches/03-fix_i18n.patch
3 - Set the correct gettext domain to make the translations show up.
4 Thanks to James Westby for the patch. (Closes: #482066)
5 * Add symbols file for libpolkit-gnome0.
6
7 -- Michael Biebl <biebl@debian.org> Fri, 23 May 2008 05:23:30 +0200
8
09 policykit-gnome (0.8-1) unstable; urgency=low
110
211 * New upstream release.
0 libpolkit-gnome.so.0 libpolkit-gnome0 #MINVER#
1 polkit_gnome_action_create_button@Base 0.7
2 polkit_gnome_action_get_polkit_result@Base 0.7
3 polkit_gnome_action_get_sensitive@Base 0.7
4 polkit_gnome_action_get_type@Base 0.7
5 polkit_gnome_action_get_visible@Base 0.7
6 polkit_gnome_action_new@Base 0.7
7 polkit_gnome_action_new_default@Base 0.7
8 polkit_gnome_action_set_sensitive@Base 0.7
9 polkit_gnome_action_set_visible@Base 0.7
10 polkit_gnome_auth_obtain@Base 0.7
11 polkit_gnome_context_error_quark@Base 0.7
12 polkit_gnome_context_get@Base 0.7
13 polkit_gnome_context_get_type@Base 0.7
14 polkit_gnome_toggle_action_create_toggle_button@Base 0.7
15 polkit_gnome_toggle_action_get_type@Base 0.7
16 polkit_gnome_toggle_action_new@Base 0.7
17 polkit_gnome_toggle_action_new_default@Base 0.7
0 # Description: Actually set the translation domain to have the application appear translated.
1 # Ubuntu: https://launchpad.net/bugs/199255
2 --- policykit-gnome-0.7.orig/tools/polkit-gnome-authorization.c 2007-12-06 05:31:23.000000000 +0200
3 +++ policykit-gnome-0.7/tools/polkit-gnome-authorization.c 2008-04-07 10:36:32.000000000 +0300
4 @@ -2329,6 +2329,10 @@
5 (GBoxedCopyFunc) polkit_policy_file_entry_ref,
6 (GBoxedFreeFunc) polkit_policy_file_entry_unref);
7
8 + bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
9 + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
10 + textdomain (GETTEXT_PACKAGE);
11 +
12 loop = g_main_loop_new (NULL, FALSE);
13
14 pkgc = polkit_gnome_context_get (NULL);