summaryrefslogtreecommitdiff
path: root/gtk/gtkfilesel.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>1999-01-09 22:34:28 +0000
committerOwen Taylor <otaylor@src.gnome.org>1999-01-09 22:34:28 +0000
commit3bd19e15ea49bad4c28c01fa6cf38cff3d20a2db (patch)
tree43ecd8180bfaaf241655ccf431758c13da0a2d23 /gtk/gtkfilesel.c
parent71adaddfa757348b48f13d3f18d53cdf42e66818 (diff)
downloadgtk+-3bd19e15ea49bad4c28c01fa6cf38cff3d20a2db.tar.gz
Added cs to ALL_LINGUAS.
Sat Jan 9 17:36:20 1999 Owen Taylor <otaylor@redhat.com> * configure.in (ALL_LINGUAS): Added cs to ALL_LINGUAS. Sat Jan 9 17:27:49 1999 Owen Taylor <otaylor@redhat.com> * gtk/gtkfilesel.c (gtk_file_selection_populate): Mark another string for internationalization. [ Stanislav Brabec <utx@k332.feld.cvut.cz> ]
Diffstat (limited to 'gtk/gtkfilesel.c')
-rw-r--r--gtk/gtkfilesel.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/gtk/gtkfilesel.c b/gtk/gtkfilesel.c
index a60db8ea5c..2b28c689c5 100644
--- a/gtk/gtkfilesel.c
+++ b/gtk/gtkfilesel.c
@@ -1430,10 +1430,9 @@ gtk_file_selection_populate (GtkFileSelection *fs,
if (fs->selection_entry)
{
- sel_text = g_new (char, strlen (cmpl_reference_position (cmpl_state)) +
- sizeof ("Selection: "));
- strcpy (sel_text, "Selection: ");
- strcat (sel_text, cmpl_reference_position (cmpl_state));
+ sel_text = g_strconcat (_("Selection: "),
+ cmpl_reference_position (cmpl_state),
+ NULL);
gtk_label_set_text (GTK_LABEL (fs->selection_text), sel_text);
g_free (sel_text);