diff options
author | Piotr Drąg <piotrdrag@gmail.com> | 2016-09-30 05:47:15 +0200 |
---|---|---|
committer | Piotr Drąg <piotrdrag@gmail.com> | 2016-10-12 21:30:42 +0200 |
commit | 10c490cdfe3ae042f747bd00f787492e2bdb7ed0 (patch) | |
tree | b75b4850b83006add6b6775888f47137d28d780a /gio/gdtlsconnection.c | |
parent | da509fd67d1e78adb20e1e132bd14b2bcbb036f2 (diff) | |
download | glib-10c490cdfe3ae042f747bd00f787492e2bdb7ed0.tar.gz |
Use Unicode in translatable strings
See https://developer.gnome.org/hig/stable/typography.html
https://bugzilla.gnome.org/show_bug.cgi?id=772221
Diffstat (limited to 'gio/gdtlsconnection.c')
-rw-r--r-- | gio/gdtlsconnection.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gio/gdtlsconnection.c b/gio/gdtlsconnection.c index 08fa84f67..cfa282680 100644 --- a/gio/gdtlsconnection.c +++ b/gio/gdtlsconnection.c @@ -183,7 +183,7 @@ g_dtls_connection_default_init (GDtlsConnectionInterface *iface) g_object_interface_install_property (iface, g_param_spec_object ("certificate", P_("Certificate"), - P_("The connection's certificate"), + P_("The connection’s certificate"), G_TYPE_TLS_CERTIFICATE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); @@ -203,7 +203,7 @@ g_dtls_connection_default_init (GDtlsConnectionInterface *iface) g_object_interface_install_property (iface, g_param_spec_object ("peer-certificate", P_("Peer Certificate"), - P_("The connection's peer's certificate"), + P_("The connection’s peer’s certificate"), G_TYPE_TLS_CERTIFICATE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS)); @@ -222,7 +222,7 @@ g_dtls_connection_default_init (GDtlsConnectionInterface *iface) g_object_interface_install_property (iface, g_param_spec_flags ("peer-certificate-errors", P_("Peer Certificate Errors"), - P_("Errors found with the peer's certificate"), + P_("Errors found with the peer’s certificate"), G_TYPE_TLS_CERTIFICATE_FLAGS, 0, G_PARAM_READABLE | |