Code

Pot and Dutch translation update
[inkscape.git] / src / ui / dialog / find.cpp
index 3ff79a0d3b2e8efdeb556c9d3b3a42c95bb2dd06..7fad00f56d32eea7afc716e75d2e6c4a433d8fed 100644 (file)
 #include "helper/window.h"
 #include "macros.h"
 #include "inkscape.h"
-#include "document.h"
 #include "desktop.h"
+#include "document.h"
 #include "selection.h"
 #include "desktop-handles.h"
 
 #include "dialogs/dialog-events.h"
-#include "prefs-utils.h"
 #include "verbs.h"
 #include "interface.h"
 #include "sp-text.h"
@@ -49,7 +48,7 @@
 #include "sp-use.h"
 #include "sp-image.h"
 #include "sp-offset.h"
-#include <xml/repr.h>
+#include "xml/repr.h"
 
 
 namespace Inkscape {
@@ -57,11 +56,11 @@ namespace UI {
 namespace Dialog {
 
 Find::Find()
-    : UI::Widget::Panel("", "dialogs.find", SP_VERB_DIALOG_FIND),
-      _entry_text(_("_Text: "), _("Find objects by their text content (exact or partial match)")),
-      _entry_id(_("_ID: "), _("Find objects by the value of the id attribute (exact or partial match)")),
-      _entry_style(_("_Style: "), _("Find objects by the value of the style attribute (exact or partial match)")),
-      _entry_attribute(_("_Attribute: "), _("Find objects by the name of an attribute (exact or partial match)")),
+    : UI::Widget::Panel("", "/dialogs/find", SP_VERB_DIALOG_FIND),
+      _entry_text(_("_Text:"), _("Find objects by their text content (exact or partial match)")),
+      _entry_id(_("_ID:"), _("Find objects by the value of the id attribute (exact or partial match)")),
+      _entry_style(_("_Style:"), _("Find objects by the value of the style attribute (exact or partial match)")),
+      _entry_attribute(_("_Attribute:"), _("Find objects by the name of an attribute (exact or partial match)")),
       _check_search_selection(_("Search in s_election"), _("Limit search to the current selection")),
       _check_search_layer(_("Search in current _layer"), _("Limit search to the current layer")),
       _check_include_hidden(_("Include _hidden"), _("Include hidden objects in search")),
@@ -76,7 +75,9 @@ Find::Find()
       _check_paths(_("Paths"), _("Search paths, lines, polylines")),
       _check_texts(_("Texts"), _("Search text objects")),
       _check_groups(_("Groups"), _("Search groups")),
-      _check_clones(_("Clones"), _("Search clones")),
+      _check_clones(
+                  //TRANSLATORS: "Clones" is a noun indicating type of object to find
+                 C_("Find dialog", "Clones"), _("Search clones")),
       _check_images(_("Images"), _("Search images")),
       _check_offsets(_("Offsets"), _("Search offset objects")),