aboutsummaryrefslogtreecommitdiffstats
path: root/src/pdm-dialog.c
diff options
context:
space:
mode:
authorChristian Neumair <cneumair@src.gnome.org>2003-05-17 20:43:34 +0800
committerChristian Neumair <cneumair@src.gnome.org>2003-05-17 20:43:34 +0800
commitda4bacb5a3de0dafe863ea82aea78d2e40731730 (patch)
treee31bad9600bf78b6e2a6523091e3af0e613941ab /src/pdm-dialog.c
parente5d335763657c0ebf4d464f4bc1d81542220141b (diff)
downloadgsoc2013-epiphany-da4bacb5a3de0dafe863ea82aea78d2e40731730.tar
gsoc2013-epiphany-da4bacb5a3de0dafe863ea82aea78d2e40731730.tar.gz
gsoc2013-epiphany-da4bacb5a3de0dafe863ea82aea78d2e40731730.tar.bz2
gsoc2013-epiphany-da4bacb5a3de0dafe863ea82aea78d2e40731730.tar.lz
gsoc2013-epiphany-da4bacb5a3de0dafe863ea82aea78d2e40731730.tar.xz
gsoc2013-epiphany-da4bacb5a3de0dafe863ea82aea78d2e40731730.tar.zst
gsoc2013-epiphany-da4bacb5a3de0dafe863ea82aea78d2e40731730.zip
Fixed many issues mentioned in #112781.
Diffstat (limited to 'src/pdm-dialog.c')
-rwxr-xr-xsrc/pdm-dialog.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c
index a108cae88..41bb553e4 100755
--- a/src/pdm-dialog.c
+++ b/src/pdm-dialog.c
@@ -16,6 +16,10 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "pdm-dialog.h"
#include "ephy-shell.h"
#include "ephy-embed-shell.h"
@@ -25,6 +29,7 @@
#include <gtk/gtktreeview.h>
#include <gtk/gtkliststore.h>
#include <gtk/gtkcellrenderertext.h>
+
#include <bonobo/bonobo-i18n.h>
typedef struct PdmActionInfo PdmActionInfo;
@@ -609,7 +614,7 @@ show_cookies_properties (PdmDialog *dialog,
gtk_table_set_col_spacings (GTK_TABLE(table), 10);
gtk_widget_show (table);
- str = g_strconcat ("<b>", _("Value"), "</b>", NULL);
+ str = g_strconcat ("<b>", _("Value:"), "</b>", NULL);
label = gtk_label_new (str);
g_free (str);
gtk_label_set_use_markup (GTK_LABEL(label), TRUE);
@@ -623,7 +628,7 @@ show_cookies_properties (PdmDialog *dialog,
gtk_widget_show (label);
gtk_table_attach_defaults (GTK_TABLE (table), label, 1, 2, 0, 1);
- str = g_strconcat ("<b>", _("Path"), "</b>", NULL);
+ str = g_strconcat ("<b>", _("Path:"), "</b>", NULL);
label = gtk_label_new (str);
g_free (str);
gtk_label_set_use_markup (GTK_LABEL(label), TRUE);
@@ -637,7 +642,7 @@ show_cookies_properties (PdmDialog *dialog,
gtk_widget_show (label);
gtk_table_attach_defaults (GTK_TABLE (table), label, 1, 2, 1, 2);
- str = g_strconcat ("<b>", _("Secure"), "</b>", NULL);
+ str = g_strconcat ("<b>", _("Secure:"), "</b>", NULL);
label = gtk_label_new (str);
g_free (str);
gtk_label_set_use_markup (GTK_LABEL(label), TRUE);
@@ -651,7 +656,7 @@ show_cookies_properties (PdmDialog *dialog,
gtk_widget_show (label);
gtk_table_attach_defaults (GTK_TABLE (table), label, 1, 2, 2, 3);
- str = g_strconcat ("<b>", _("Expire"), "</b>", NULL);
+ str = g_strconcat ("<b>", _("Expire:"), "</b>", NULL);
label = gtk_label_new (str);
g_free (str);
gtk_label_set_use_markup (GTK_LABEL(label), TRUE);