Blame hig/de/search.page

Packit 1470ea
Packit 1470ea
<page xmlns="http://projectmallard.org/1.0/" type="topic" id="search" xml:lang="de">
Packit 1470ea
Packit 1470ea
  <info>
Packit 1470ea
    <link type="guide" xref="patterns#primary"/>
Packit 1470ea
    <desc>Inhalte bei der Eingabe suchen und filtern</desc> 
Packit 1470ea
    <credit type="author">
Packit 1470ea
      <name>Allan Day</name>
Packit 1470ea
      <email>aday@gnome.org</email>
Packit 1470ea
    </credit>
Packit 1470ea
    <include xmlns="http://www.w3.org/2001/XInclude" href="legal.xml"/>
Packit 1470ea
  
Packit 1470ea
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
Packit 1470ea
      <mal:name>Christian Kirbach</mal:name>
Packit 1470ea
      <mal:email>christian.kirbach@gmail.com</mal:email>
Packit 1470ea
      <mal:years>2014</mal:years>
Packit 1470ea
    </mal:credit>
Packit 1470ea
  
Packit 1470ea
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
Packit 1470ea
      <mal:name>Mario Blättermann</mal:name>
Packit 1470ea
      <mal:email>mario.blaettermann@gmail.com</mal:email>
Packit 1470ea
      <mal:years>2016</mal:years>
Packit 1470ea
    </mal:credit>
Packit 1470ea
  </info>
Packit 1470ea
Packit 1470ea
<title>Suchen</title>
Packit 1470ea
Packit 1470ea
<media type="image" mime="image/svg" src="figures/patterns/search.svg"/>
Packit 1470ea
Packit 1470ea

Search allows content items to be located by filtering content that is displayed on screen. It is distinct from find, which involves moving or highlighting the content that is being searched for, rather than filtering.

Packit 1470ea
Packit 1470ea
<section id="when-to-use">
Packit 1470ea
<title>Anwendungsfälle</title>
Packit 1470ea
Packit 1470ea

Provide search whenever a large collection of content is presented, and those content items have a textual component. This could be a collection of actual content items, such as documents, contacts or videos, or a list of options.

Packit 1470ea
Packit 1470ea

Search is a great way to make it easy for users to find what it is they are looking for, and its consistent availability means that users can rely on and expect it to be present.

Packit 1470ea
Packit 1470ea

However, while search can be highly effective, and some users will use it, others will not. Therefore, try to supplement other means for finding content items with search, rather than relying on it exclusively.

Packit 1470ea
Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
<section id="search-bar">
Packit 1470ea
<title>Die Suchleiste</title>
Packit 1470ea
Packit 1470ea

The standard pattern for search in GNOME 3 utilizes a special search bar which slides down from beneath the header bar.

Packit 1470ea
Packit 1470ea
In primary windows, the search bar is typically hidden until it is activated by the user. There are three common ways to activate search in this context:

Packit 1470ea
Packit 1470ea
<list>
Packit 1470ea
<item>

Typing when a text entry field is not focused should activate search, and the entered text should be added to the search field. This is called “type to search”.

</item>
Packit 1470ea
<item>

The keyboard shortcut for search (<keyseq><key>Ctrl</key><key>F</key></keyseq>).

</item>
Packit 1470ea
<item>

A search button in the header bar should allow the search bar to be displayed (the search button should toggle).

</item>
Packit 1470ea
</list>
Packit 1470ea
Packit 1470ea

If search is a primary method for finding content in your application, you can make the search bar permanently visible, or visible when the application is first started.

Packit 1470ea
Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
<section id="search-results">
Packit 1470ea
<title>Suchergebnisse</title>
Packit 1470ea
Packit 1470ea
<list>
Packit 1470ea
<item>

Search should be “live” wherever possible - the content view should update to display search results as they are entered.

</item>
Packit 1470ea
<item>

In order to be effective, it is important that search results are quickly returned.

</item>
Packit 1470ea
<item>

If a search term does not return any results, ensure that feedback is given in the content view. Often a simple "No results" label is sufficient.

</item>
Packit 1470ea
</list>
Packit 1470ea
Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
<section id="additional-guidance">
Packit 1470ea
<title>Zusätzliche Richtlinien</title>
Packit 1470ea
Packit 1470ea
<list>
Packit 1470ea
<item>

Be tolerant of mistakes in search terms. Matching misspellings or incorrect terminology is one way to do this. Presenting suggestions for similar matches or related content is another.

</item>
Packit 1470ea
<item>

Permit a broad range of matching search terms. This helps people who are unsure of the exact term they require but who do know characteristics associated with the item they want to find. A list of cities could return matches for country or region, for example.

</item>
Packit 1470ea
<item>

Die Ergebnisse sollten so geordnet werden, dass das relevanteste Ergebnis zuerst angezeigt wird.

</item>
Packit 1470ea
</list>
Packit 1470ea
Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
<section id="api-reference">
Packit 1470ea
<title>API-Referenz</title>
Packit 1470ea
<list>
Packit 1470ea
<item>

<link href="https://developer.gnome.org/gtk3/stable/GtkSearchEntry.html">GtkSearchEntry</link>

</item>
Packit 1470ea
</list>
Packit 1470ea
</section>
Packit 1470ea
Packit 1470ea
</page>