[grisbi-cvs] grisbi/src/plugins/openssl openssl.c,1.19,1.20
Pierre Biava
pbiava at users.sourceforge.net
Sun Oct 4 00:14:58 CEST 2009
- Previous message: [grisbi-cvs] grisbi/po cs.po, 1.59, 1.60 da.po, 1.66, 1.67 de.po, 1.126, 1.127 el.po, 1.30, 1.31 eo.po, 1.23, 1.24 es.po, 1.117, 1.118 fa.po, 1.53, 1.54 fr.po, 1.189, 1.190 grisbi.pot, 1.101, 1.102 he.po, 1.59, 1.60 it.po, 1.59, 1.60 nl.po, 1.58, 1.59 pl.po, 1.64, 1.65 pt_BR.po, 1.61, 1.62 ro.po, 1.59, 1.60 ru.po, 1.58, 1.59 zh_CN.po, 1.53, 1.54
- Next message: [grisbi-cvs] grisbi/src accueil.c, 1.213, 1.214 categories_onglet.c, 1.198, 1.199 dialog.c, 1.72, 1.73 dialog.h, 1.31, 1.32 export.c, 1.26, 1.27 fenetre_principale.c, 1.121, 1.122 gsb_account_property.c, 1.47, 1.48 gsb_assistant.c, 1.47, 1.48 gsb_assistant_archive.c, 1.39, 1.40 gsb_assistant_archive_export.c, 1.18, 1.19 gsb_assistant_first.c, 1.27, 1.28 gsb_assistant_reconcile_config.c, 1.27, 1.28 gsb_data_currency_link.c, 1.15, 1.16 gsb_data_fyear.c, 1.17, 1.18 gsb_data_fyear.h, 1.6, 1.7 gsb_form.c, 1.131, 1.132 gsb_fyear.c, 1.9, 1.10 gsb_fyear.h, 1.6, 1.7 gsb_reconcile.c, 1.41, 1.42 gsb_transactions_list_sort.h, 1.3, 1.4 import.c, 1.293, 1.294 import_csv.c, 1.55, 1.56 imputation_budgetaire.c, 1.160, 1.161 parametres.c, 1.206, 1.207 tiers_onglet.c, 1.166, 1.167 utils.c, 1.54, 1.55
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/grisbi/grisbi/src/plugins/openssl
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv18071/src/plugins/openssl
Modified Files:
openssl.c
Log Message:
escape the string for gtk_label_set_markup with g_markup_escape_text() or g_markup_printf_escaped() and minor corrections
Index: openssl.c
===================================================================
RCS file: /cvsroot/grisbi/grisbi/src/plugins/openssl/openssl.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- openssl.c 2 Oct 2009 21:35:04 -0000 1.19
+++ openssl.c 3 Oct 2009 22:14:56 -0000 1.20
@@ -239,12 +239,16 @@
if ( encrypt )
gtk_label_set_markup ( GTK_LABEL (label),
- g_strdup_printf ( _( "%sPlease enter password to encrypt file\n'<span foreground=\"blue\">%s</span>'" ),
- additional_message, file_name ) );
+ g_markup_printf_escaped (
+ _( "%sPlease enter password to encrypt file\n'<span "
+ "foreground=\"blue\">%s</span>'" ),
+ additional_message, file_name ) );
else
gtk_label_set_markup ( GTK_LABEL (label),
- g_strdup_printf ( _( "%sPlease enter password to decrypt file\n'<span foreground=\"blue\">%s</span>'" ),
- additional_message, file_name ) );
+ g_markup_printf_escaped (
+ _( "%sPlease enter password to decrypt file\n'<span "
+ "foreground=\"blue\">%s</span>'" ),
+ additional_message, file_name ) );
gtk_box_pack_start ( GTK_BOX ( vbox ), label, FALSE, FALSE, 6 );
hbox2 = gtk_hbox_new ( FALSE, 6 );
- Previous message: [grisbi-cvs] grisbi/po cs.po, 1.59, 1.60 da.po, 1.66, 1.67 de.po, 1.126, 1.127 el.po, 1.30, 1.31 eo.po, 1.23, 1.24 es.po, 1.117, 1.118 fa.po, 1.53, 1.54 fr.po, 1.189, 1.190 grisbi.pot, 1.101, 1.102 he.po, 1.59, 1.60 it.po, 1.59, 1.60 nl.po, 1.58, 1.59 pl.po, 1.64, 1.65 pt_BR.po, 1.61, 1.62 ro.po, 1.59, 1.60 ru.po, 1.58, 1.59 zh_CN.po, 1.53, 1.54
- Next message: [grisbi-cvs] grisbi/src accueil.c, 1.213, 1.214 categories_onglet.c, 1.198, 1.199 dialog.c, 1.72, 1.73 dialog.h, 1.31, 1.32 export.c, 1.26, 1.27 fenetre_principale.c, 1.121, 1.122 gsb_account_property.c, 1.47, 1.48 gsb_assistant.c, 1.47, 1.48 gsb_assistant_archive.c, 1.39, 1.40 gsb_assistant_archive_export.c, 1.18, 1.19 gsb_assistant_first.c, 1.27, 1.28 gsb_assistant_reconcile_config.c, 1.27, 1.28 gsb_data_currency_link.c, 1.15, 1.16 gsb_data_fyear.c, 1.17, 1.18 gsb_data_fyear.h, 1.6, 1.7 gsb_form.c, 1.131, 1.132 gsb_fyear.c, 1.9, 1.10 gsb_fyear.h, 1.6, 1.7 gsb_reconcile.c, 1.41, 1.42 gsb_transactions_list_sort.h, 1.3, 1.4 import.c, 1.293, 1.294 import_csv.c, 1.55, 1.56 imputation_budgetaire.c, 1.160, 1.161 parametres.c, 1.206, 1.207 tiers_onglet.c, 1.166, 1.167 utils.c, 1.54, 1.55
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cvs
mailing list