summaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorDanilo Šegan <dsegan@gmx.net>2004-01-13 00:59:53 +0000
committerDanilo Šegan <danilo@src.gnome.org>2004-01-13 00:59:53 +0000
commita1121cd4a6709f0d5f66bc586d25f0bda4a94dad (patch)
treee2dfe241626c248909c03d7fc4e508bbe01fb3c8 /components
parenta6a45baffecd4ea39930af8e8be4121462844be3 (diff)
downloadnautilus-a1121cd4a6709f0d5f66bc586d25f0bda4a94dad.tar.gz
Use ngettext (fixes bug #106702), based on the patch by Christian Neumair
2004-01-13 Danilo Šegan <dsegan@gmx.net> * src/nautilus-location-bar.c (drag_data_received_callback): * src/file-manager/fm-search-list-view.c (compute_reveal_item_name_and_sensitivity): * src/file-manager/fm-properties-window.c (directory_contents_value_field_update): * src/file-manager/fm-directory-view.c (fm_directory_view_confirm_multiple_windows): (confirm_delete_directly) (fm_directory_view_display_selection_info) (confirm_delete_from_trash, copy_or_cut_files) (real_update_menus): * libnautilus-private/nautilus-file.c (format_item_count_for_display): * components/image_properties/nautilus-image-properties-view.c (load_finished): Use ngettext (fixes bug #106702), based on the patch by Christian Neumair <chris@gnome-de.org>. (Lets hope I didn't screw anything up)
Diffstat (limited to 'components')
-rw-r--r--components/image_properties/nautilus-image-properties-view.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/components/image_properties/nautilus-image-properties-view.c b/components/image_properties/nautilus-image-properties-view.c
index fe7b3e624..2376eee26 100644
--- a/components/image_properties/nautilus-image-properties-view.c
+++ b/components/image_properties/nautilus-image-properties-view.c
@@ -219,7 +219,9 @@ load_finished (NautilusImagePropertiesView *view)
name = gdk_pixbuf_format_get_name (format);
desc = gdk_pixbuf_format_get_description (format);
- g_string_append_printf (str, _("<b>Image Type:</b> %s (%s)\n<b>Resolution:</b> %dx%d pixels\n"),
+ g_string_append_printf (str, ngettext ("<b>Image Type:</b> %s (%s)\n<b>Resolution:</b> %dx%d pixels\n",
+ "<b>Image Type:</b> %s (%s)\n<b>Resolution:</b> %dx%d pixels\n",
+ view->details->height),
name, desc, view->details->width, view->details->height);
g_free (name);
g_free (desc);