summaryrefslogtreecommitdiff
path: root/libnautilus-private/nautilus-icon-dnd.c
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2005-07-11 10:07:53 +0000
committerAlexander Larsson <alexl@src.gnome.org>2005-07-11 10:07:53 +0000
commit512073058fc15172c6ffa99d0ca4258926bd872f (patch)
tree22e9eaaef895041420747d6d79100de5a093b010 /libnautilus-private/nautilus-icon-dnd.c
parentf444abad0544144a766e6c1a1789885873ec13c9 (diff)
downloadnautilus-512073058fc15172c6ffa99d0ca4258926bd872f.tar.gz
Fix up some strings for the translators. (#309879) Patch from Christian
2005-07-11 Alexander Larsson <alexl@redhat.com> * libnautilus-private/nautilus-icon-dnd.c: * src/file-manager/fm-directory-view.c: * src/file-manager/fm-properties-window.c: * src/nautilus-emblem-sidebar.c: Fix up some strings for the translators. (#309879) Patch from Christian Neumair <chris@gnome-de.org>
Diffstat (limited to 'libnautilus-private/nautilus-icon-dnd.c')
-rw-r--r--libnautilus-private/nautilus-icon-dnd.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libnautilus-private/nautilus-icon-dnd.c b/libnautilus-private/nautilus-icon-dnd.c
index 083473564..eb8149570 100644
--- a/libnautilus-private/nautilus-icon-dnd.c
+++ b/libnautilus-private/nautilus-icon-dnd.c
@@ -768,21 +768,21 @@ confirm_switch_to_manual_layout (NautilusIconContainer *container)
*/
if (nautilus_icon_container_has_stored_icon_positions (container)) {
if (eel_g_list_exactly_one_item (container->details->dnd_info->drag_info.selection_list)) {
- message = _("Do you want to switch to manual layout and leave this item where you dropped it? "
+ message = no_translate("Do you want to switch to manual layout and leave this item where you dropped it? "
"This will clobber the stored manual layout.");
- detail = _("This folder uses automatic layout.");
+ detail = no_translate("This folder uses automatic layout.");
} else {
- message = _("Do you want to switch to manual layout and leave these items where you dropped them? "
+ message = no_translate("Do you want to switch to manual layout and leave these items where you dropped them? "
"This will clobber the stored manual layout.");
- detail = _("This folder uses automatic layout.");
+ detail = no_translate("This folder uses automatic layout.");
}
} else {
if (eel_g_list_exactly_one_item (container->details->dnd_info->drag_info.selection_list)) {
- message = _("Do you want to switch to manual layout and leave this item where you dropped it?");
- detail = _("This folder uses automatic layout.");
+ message = no_translate("Do you want to switch to manual layout and leave this item where you dropped it?");
+ detail = no_translate("This folder uses automatic layout.");
} else {
- message = _("Do you want to switch to manual layout and leave these items where you dropped them?");
- detail = _("This folder uses automatic layout.");
+ message = no_translate("Do you want to switch to manual layout and leave these items where you dropped them?");
+ detail = no_translate("This folder uses automatic layout.");
}
}