diff options
| author | Michael Peter Christen <mc@yacy.net> | 2026-07-07 00:20:00 +0200 |
|---|---|---|
| committer | Michael Peter Christen <mc@yacy.net> | 2026-07-07 00:20:00 +0200 |
| commit | 2ca403a1fc80cb9e1d65764cbb42c5dbc7c030ea (patch) | |
| tree | 25152f0699a6675d78a9c7e69d4932bf6c89e8e0 /locales | |
| parent | 2e46033b6834ee5d898e219c9650f7be59e43654 (diff) | |
fix for spelling in web pages, fixes in locale translations, added
missing pages in de-locale, removed translation for non-existing pages
Diffstat (limited to 'locales')
| -rw-r--r-- | locales/README-locales.md | 277 | ||||
| -rw-r--r-- | locales/de.lng | 914 | ||||
| -rw-r--r-- | locales/es.lng | 54 | ||||
| -rw-r--r-- | locales/fr.lng | 412 | ||||
| -rw-r--r-- | locales/hi.lng | 56 | ||||
| -rw-r--r-- | locales/it.lng | 54 | ||||
| -rw-r--r-- | locales/ja.lng | 155 | ||||
| -rw-r--r-- | locales/master.lng.xlf | 41 | ||||
| -rw-r--r-- | locales/ru.lng | 280 | ||||
| -rw-r--r-- | locales/sk.lng | 491 | ||||
| -rw-r--r-- | locales/tr.lng | 237 | ||||
| -rw-r--r-- | locales/uk.lng | 343 | ||||
| -rw-r--r-- | locales/zh.lng | 148 |
13 files changed, 1075 insertions, 2387 deletions
diff --git a/locales/README-locales.md b/locales/README-locales.md new file mode 100644 index 000000000..687c51ec2 --- /dev/null +++ b/locales/README-locales.md @@ -0,0 +1,277 @@ +# YaCy-Lokalisierung: Systematik & Syntax der `.lng`-Dateien + +Dieses Verzeichnis enthält die Übersetzungsdateien für die YaCy-Weboberfläche. +Dieses Dokument beschreibt, wie das Übersetzungssystem funktioniert und wie +`.lng`-Dateien aufgebaut sein müssen, damit Übersetzungen zur Laufzeit greifen. + +--- + +## 1. Überblick + +- Die Oberfläche (die Dateien unter `htroot/`) ist **auf Englisch** geschrieben. + Das Englische ist die Referenz/Quelle. +- Pro Sprache gibt es eine Datei `locales/<code>.lng` (z. B. `de.lng`), die + englische Textstellen auf die Zielsprache abbildet. +- YaCy übersetzt **nicht** live beim Ausliefern jeder Anfrage, sondern erzeugt + beim Aktivieren einer Sprache **übersetzte Kopien** der `htroot`-Dateien nach + `DATA/LOCALE/htroot/<code>/` und liefert diese aus. +- Die Übersetzung selbst ist **reine Textersetzung** (Substring-Replace), + **kein** Template-System. Das hat wichtige Konsequenzen für die Syntax der + Schlüssel (siehe Abschnitt 6). + +Vorhandene Sprachdateien: + +``` +de.lng el.lng es.lng fr.lng hi.lng it.lng ja.lng ru.lng sk.lng tr.lng uk.lng zh.lng +``` + +`de.lng` ist üblicherweise die vollständigste Übersetzung und dient als +Referenz. Zusätzlich existiert `master.lng.xlf` (siehe Abschnitt 8). + +--- + +## 2. Grundaufbau einer `.lng`-Datei + +Eine `.lng`-Datei besteht aus einem Kopf-Kommentar, gefolgt von **Abschnitten +pro Quelldatei**: + +``` +#File: ConfigBasic.html +#--------------------------- +Access Configuration==Zugangseinstellungen +Basic Configuration==Grundkonfiguration +Set Configuration==Konfiguration speichern +#----------------------------- + +#File: env/templates/submenuMaintenance.template +#--------------------------- +Performance==Performance +Web Cache==Web-Cache +#----------------------------- +``` + +Bestandteile: + +| Element | Bedeutung | +|---|---| +| `#File: <pfad>` | Beginn eines Abschnitts. `<pfad>` ist der **htroot-relative** Pfad der Quelldatei (z. B. `ConfigBasic.html`, `env/templates/header.template`, `Settings_Proxy.inc`). | +| `#---------------------------` | Trenner nach der Kopfzeile (dekorativ, üblich aber nicht zwingend geparst). | +| `original==übersetzung` | Ein Übersetzungseintrag (siehe Abschnitt 3). | +| `#-----------------------------` | Abschluss des Abschnitts (dekorativ). | +| `# ...` | Kommentarzeile (Zeilen, die mit `#` beginnen, sind keine Einträge). | +| Leerzeile | Trennt Abschnitte optisch. | + +Wichtig: +- **Kodierung: UTF-8.** +- **Ein Abschnitt = eine Quelldatei.** Der `#File:`-Pfad muss exakt einer real + existierenden Datei unter `htroot/` entsprechen. Abschnitte für gelöschte + Dateien sind tote Einträge und sollten entfernt werden. +- Die Übersetzung gilt **nur** für die im `#File:` genannte Datei. Wenn derselbe + englische Text auf mehreren Seiten vorkommt, braucht **jede** Seite ihren + eigenen Abschnitt mit diesem Eintrag (Übersetzung ist pro Datei-Abschnitt). + +### Lokalisierter Abschnitts-Header (`#Dosya:`) +Ausnahme: `tr.lng` verwendet für viele Abschnitte das türkische Schlüsselwort +**`#Dosya:`** statt `#File:`. Werkzeuge, die Abschnitte parsen, müssen **beide** +erkennen, z. B. per Regex `^#(?:File|Dosya):\s*(.*)$`. Andere `#Xxx:`-Präfixe +(`#YaCy:`, `#Subject:`, `#URL:` …) sind **keine** Header, sondern Übersetzungs- +schlüssel, die zufällig mit `#` beginnen. + +--- + +## 3. Eintrags-Syntax: `original==übersetzung` + +``` +Basic Configuration==Grundkonfiguration +``` + +- Trennzeichen ist **`==`** (doppeltes Gleichheitszeichen). Alles **links** vom + ersten `==` ist der **Schlüssel** (der zu suchende englische Text), alles + **rechts** die Übersetzung. +- Der **Schlüssel darf kein `==` enthalten** (der Split erfolgt am ersten `==`). +- **Genau eine Zeile pro Eintrag.** Schlüssel und Übersetzung dürfen **keine + Zeilenumbrüche** enthalten (das Format ist zeilenbasiert). +- HTML-Entities werden **wörtlich** übernommen (z. B. `Français`, + `&`, ` `), da sie auch so in der Quelle stehen. +- Eine leere Übersetzung (`key==`) bzw. eine identische (`Chat==Chat`) ist + technisch erlaubt, aber vermeide **überflüssige** Einträge – lege keine + Abschnitte oder Einträge an, die nichts übersetzen. + +### Sonder-Einträge im Abschnitt `ConfigLanguage_p.html` +Diese steuern die Anzeige der Sprache in der Sprachauswahl: + +``` +<!-- lang -->default(english)==Deutsch +<!-- author -->==Roland Ramthun, Oliver Wunder, ... +<!-- maintainer -->==<webmaster@daburna.de> +``` + +- `<!-- lang -->…` — der **Anzeigename** der Sprache. +- `<!-- author -->…` — Beitragende. +- `<!-- maintainer -->…` — Pflege-Kontakt. + +--- + +## 4. Wie die Übersetzung technisch funktioniert + +Relevante Klassen: +`net.yacy.data.Translator`, +`net.yacy.utils.translation.TranslationManager` / `TranslatorXliff` / `TranslatorUtil`. + +Ablauf (`Translator.translate` / `translateFilesRecursive`): + +1. Beim Aktivieren einer Sprache werden alle Quelldateien mit den Endungen + **`html`, `template`, `inc`** rekursiv durch `htroot/` verarbeitet und als + übersetzte Kopien nach `DATA/LOCALE/htroot/<code>/` geschrieben. +2. Für jede Datei wird der zugehörige `#File:`-Abschnitt geladen. Für **jeden** + Eintrag `source==target` wird im Dateiinhalt **jedes Vorkommen** von `source` + gesucht (`indexOf`) und durch `target` ersetzt (`replace`). +3. Vor jeder Ersetzung greift eine **Wortgrenzen-Prüfung**: das Zeichen direkt + vor und nach dem Treffer muss eine „Grenze“ sein (Satzzeichen oder + unsichtbares Zeichen — dazu zählen u. a. Leerzeichen sowie `<` und `>`). + Dadurch wird verhindert, dass `bug` in `mybugfix` ersetzt wird, während + `>English<` (umschlossen von `>`/`<`) korrekt getroffen wird. + +**Kernaussage:** Ein Schlüssel wird genau dann übersetzt, wenn er als +**exakter Teilstring** im Dateiinhalt vorkommt und an Wortgrenzen liegt. +Es gibt **keinen** automatischen Extraktor, der „übersetzbare Strings“ +erkennt — die Schlüssel werden von Hand gepflegt. + +--- + +## 5. Template-Markup in den Quelldateien + +Die `htroot`-Dateien enthalten Server-Template-Markup, das **vor** oder +**unabhängig von** der Übersetzung durch die Servlet-Engine ersetzt wird. +Ein Übersetzungsschlüssel darf dieses Markup **nicht überspannen**: + +| Form | Bedeutung | +|---|---| +| `#[name]#` | Einzelwert (Platzhalter), wird durch einen Laufzeitwert ersetzt. | +| `#(name)#A::B::…#(/name)#` | Fallunterscheidung/Alternativen (A für Fall 0, B für Fall 1 …). | +| `#{name}#…#{/name}#` | Wiederholung/Aufzählung (Schleife). | +| `#%pfad%#` | Einbindung eines anderen Templates (z. B. `#%env/templates/header.template%#`). | + +Konsequenz für Schlüssel: Übersetzbarer Text endet **an** solchen Markup-Grenzen. +Beispiel — die Quelle enthält: + +```html +This path can be accessed at #[path]# +``` + +Der brauchbare Schlüssel ist daher `This path can be accessed at ` (mit dem +Leerzeichen, bis zum `#[path]#`), **nicht** die ganze Zeile inkl. `#[path]#`. + +--- + +## 6. Regeln für gute Schlüssel (Authoring) + +1. **Exakter Teilstring.** Der Schlüssel muss **zeichengenau** im Roh-Quelltext + der Datei vorkommen (inkl. HTML-Entities, Groß-/Kleinschreibung, + Interpunktion). Am einfachsten prüfbar mit `content.indexOf(key) >= 0`. +2. **Einzeilig.** Keine Zeilenumbrüche im Schlüssel. +3. **Inline-Tags bleiben im Schlüssel.** Für zusammenhängende Sätze mit + Inline-Auszeichnung wird der ganze Satz **inklusive** der Inline-Tags zu + einem Schlüssel, damit die deutsche Wortstellung passt: + ``` + ... edited in the <a href="IndexSchema_p.html">Schema Editor</a>.==... im <a href="IndexSchema_p.html">Schema-Editor</a> bearbeitet werden. + ``` + Als Inline gelten u. a. `a, em, strong, b, i, code, kbd, abbr, span, sup, + sub, small, var, samp, br`. An **Block-Tags** (`p, div, li, td, h1..h6, + option, label, fieldset, …`) und an Template-Markup wird getrennt. +4. **Menü-Einträge als Klartext.** Menü-Links wie + `<a href="X.html" ...>LLM Selection</a>` werden als reiner Text + `LLM Selection==LLM-Auswahl` gepflegt (der `<a>`-Wrapper enthält oft + Template-Markup und gehört nicht in den Schlüssel). +5. **Reihenfolge: länger/spezifischer zuerst.** Die Einträge werden in + Datei-Reihenfolge angewandt. Ist ein kurzer Schlüssel Teilstring eines + längeren desselben Abschnitts, muss der **längere zuerst** stehen — sonst + „zerschießt“ die kurze Ersetzung den längeren Treffer. + Beispiel: `Index Export` **vor** `Export` einordnen. +6. **Keine Zerlegung über Markup hinweg** (siehe Abschnitt 5). + +--- + +## 7. Was übersetzt wird — und was nicht + +**Übersetzen:** Seiten mit sichtbarem Oberflächentext (`*_p.html`, Konfig-Seiten, +`*.inc`-Includes, `env/templates/submenu*.template` und andere UI-Templates). + +**Nicht übersetzen** (keine leeren Abschnitte anlegen): +- **Daten-/Protokoll-Endpunkte:** `yacy/*.html`, `api/push_p.html`, + `api/share.html` u. ä. (liefern XML/JSON, keine UI). +- **Inhaltsleere Templates:** `env/templates/footer.template`, + `…/simplefooter.template`, `…/embedded*.template` usw. +- **Reine Code-/Beispielblöcke** innerhalb einer Seite (z. B. `curl`-Befehle, + JSON-Snippets) — nur die umgebende Prosa übersetzen. +- **Test-/Demo-Dateien** und rein technische Bezeichner (Feldnamen wie + `num_ctx`, `max_tokens`, Rollennamen wie `search-query`). + +--- + +## 8. `master.lng.xlf` + +`master.lng.xlf` ist eine XLIFF-Datei, die den **Gesamtbestand** aller +übersetzbaren Strings pro Datei als `<source>`-Elemente führt. + +- Sie wird **generiert** (`TranslationManager.createMasterTranslationLists`): + Grundlage sind die vorhandenen `.lng`-Schlüssel, gefiltert danach, ob sie noch + als Teilstring in der jeweiligen Quelldatei vorkommen (`content.indexOf >= 0`). +- **Nicht** von Hand mit Hash-/Zeilen-IDs pflegen — nach Änderungen an Quellen + oder `.lng`-Dateien besser über das YaCy-Tooling neu erzeugen. Ein kompletter + `<file>…</file>`-Block darf jedoch sauber entfernt werden (z. B. wenn die + zugehörige Seite gelöscht wurde). + +--- + +## 9. Arbeitsablauf: eine Sprache vervollständigen + +1. **Fehlende Seiten ermitteln:** alle UI-Dateien unter `htroot/` + (`*.html`, `*.inc`, `*.template`) mit den `#File:`-Abschnitten der `.lng` + abgleichen; Differenz bilden. Daten-Endpunkte/leere Templates (Abschnitt 7) + herausfiltern. +2. **Schlüssel extrahieren:** pro Datei die sichtbaren, einzeiligen Textstellen + gemäß den Regeln in Abschnitt 6 gewinnen (Inline-Tags behalten, an Block-Tags + und Template-Markup trennen, Rand-Tags entfernen). +3. **Übersetzen** und Einträge `key==übersetzung` bilden. +4. **Verifizieren (Pflicht):** für **jeden** Schlüssel prüfen, dass + `key in <roher Dateiinhalt>` gilt. Schlägt das fehl, greift die Übersetzung + zur Laufzeit **nicht**. +5. **Einordnen:** neuen `#File:`-Abschnitt anlegen; Einträge längster-zuerst + sortieren (Abschnitt 6, Regel 5). Neue Abschnitte können am Dateiende + angehängt werden (die Datei ist nicht streng sortiert). +6. **Zeilenenden beachten** (Abschnitt 10). + +--- + +## 10. Fallstricke + +- **Zeilenenden (CRLF):** Einige Dateien verwenden CRLF (`\r\n`), u. a. + `it.lng`, `sk.lng` sowie einige `htroot`-Templates. Werkzeuge, die im + Textmodus lesen und neu schreiben, normalisieren CRLF→LF und erzeugen einen + Diff über die **ganze** Datei. Verwende `perl -i -pe` o. ä. bzw. arbeite + byte-erhaltend; kontrolliere mit `git diff --numstat` (ein `+N -N` in Höhe der + Zeilenzahl deutet auf ungewollte Newline-Normalisierung hin). +- **Synchronität über alle Sprachen:** Wird ein englischer Text in der Quelle + korrigiert, muss der **Schlüssel** in **allen** `.lng`-Dateien analog + angepasst werden (linke Seite von `==`), sonst passt er nicht mehr und die + Übersetzung greift nicht. +- **Stale Keys:** Über die Zeit driften Schlüssel von der Quelle ab (Text in der + Quelle geändert, `.lng` nicht) → der Eintrag greift nie mehr. Solche Einträge + sollten aktualisiert oder entfernt werden. +- **Duplikate:** Doppelte `#File:`-Abschnitte oder doppelte Schlüssel innerhalb + eines Abschnitts vermeiden. +- **`==` im Text:** Ein englischer Text mit `==` lässt sich nicht als Schlüssel + abbilden (der Split bricht am ersten `==`). + +--- + +## 11. Kurz-Checkliste für einen neuen Eintrag + +- [ ] Schlüssel ist **exakter, einzeiliger Teilstring** der Quelldatei. +- [ ] Markup-Grenzen (`#[..]#`, `#(..)#`, `#{..}#`, `#%..%#`) nicht überspannt. +- [ ] Inline-Tags im Schlüssel belassen, an Block-Tags getrennt. +- [ ] Eintrag steht im **richtigen** `#File:`-Abschnitt. +- [ ] Längere Schlüssel stehen vor ihren kürzeren Teilstrings. +- [ ] UTF-8, korrektes Zeilenende, kein `==` im Schlüssel. +- [ ] Kein überflüssiger/leerer Eintrag. diff --git a/locales/de.lng b/locales/de.lng index 41cc5965d..9c68bdfb5 100644 --- a/locales/de.lng +++ b/locales/de.lng @@ -470,7 +470,7 @@ Some pages are protected by passwords.==Einige Seiten sind passwortgeschützt. You should set a password at the <a href="ConfigAccounts_p.html">Accounts Menu</a> to secure your YaCy peer.</p>::==Sie sollten ein Password in der <a href="ConfigAccounts_p.html">Benutzerverwaltung</a> setzen, um Ihren YaCy Peer abzusichern.</p>:: You did not open a port in your firewall or your router does not forward the server port to your peer.==Sie haben keinen Port in Ihrer Firewall geöffnet oder Ihr Router leitet den Server-Port nicht zu Ihrem Peer weiter. This is needed if you want to fully participate in the YaCy network.==Dies ist jedoch erforderlich, wenn Sie vollständig am YaCy-Netzwerk teilhaben möchten. -You can also use your peer without opening it, but this is not recomended.==Sie können Ihren Peer auch nutzen ohne ihn zu öffnen, dies wird jedoch nicht empfohlen. +You can also use your peer without opening it, but this is not recommended.==Sie können Ihren Peer auch nutzen ohne ihn zu öffnen, dies wird jedoch nicht empfohlen. #----------------------------- #File: ConfigHeuristics_p.html @@ -500,7 +500,7 @@ add as global crawl job==als globaler Crawl hinzufügen opensearch load external search result list from active systems below==Lade externe Suchergebnisse von den gelisteten aktiven OpenSearch Systemen When using this heuristic, then every new search request line is used for a call to listed opensearch systems.==Wenn diese Heuristik genutzt wird, dann wird jede neue Suchanfragezeile für einen Aufruf der aufgelisteten OpenSearch Systeme verwendet. -20 results are taken from remote system and loaded simultanously, parsed and indexed immediately.==20 Resultate werden vom remote System genommen und simultan geladen, geparsed und sofort indexiert. +20 results are taken from remote system and loaded simultaneously, parsed and indexed immediately.==20 Resultate werden vom remote System genommen und simultan geladen, geparsed und sofort indexiert. To find out more about OpenSearch see==Um mehr über OpenSearch zu erfahren besuche Available/Active Opensearch System==Verfügbare/Aktive OpenSearch Systeme >Active<==>Aktiv< @@ -567,58 +567,6 @@ Simple Editor==Einfacher Editor to add untranslated text==zum bearbeiten unübersetzter Texte #----------------------------- -#File: ConfigLiveSearch.html -#--------------------------- -Integration of a Search Field for Live Search==Integration eines Suchfeldes für die Live Suche -Integration of Live Search with YaCy Search Widget==Integration der Livesuche mit dem YaCy Such-Widget -There are basically two methods for integrating the YaCy Search Widget with your web site.==Es gibt zwei Methoden, um das YaCy Such-Widget mit Ihrer Webseite zu integrieren. -Static hosting of widget on own HTTP server==Statisches Hosten des Widgets auf Ihrem eigenen HTTP Server -Remote access through selected YaCy Peer==Remote Access durch ausgewähltes YaCy Peer -Advantages:==Vorteile: -faster connection speed==Schnellere Verbindungsgeschwindigkeit -possibility for local adaptions==Möglichkeit von lokalen Anpassungen -Disadvantages:==Nachteile: -No automatic update to future releases of YaCy Search Widget==Kein automatisches Update auf zukünftige YaCy Suchwidgets -Ajax/JSONP cross domain requests needed to query remote YaCy Peer==AJAX/JSON Cross Domain Anfragen müssen den remote YaCy Peer abfragen -Installing:==Installieren: -download yacy-portalsearch.tar.gz from==Downloaden von yacy-portalsearch.tar.gz von -unpack within your HTTP servers path==Entpacken in das HTTP Server Verzeichnis -use ./yacy/portalsearch/yacy-portalsearch.html as reference for integration with your own portal page==Verwenden von ./yacy/portalsearch/yacy-portalsearch.html als Referenz für eine Integration mit Ihrem bestehenen Portal -Always latest version of YaCy Search Widget==Immer die aktuellste Version des YaCy Suchwidgets -No Ajax/JSONP cross domain requests, as Search Widget and YaCy Peer are hosted on the same domain.==Keine AJAX/JSON cross Domainanfragen, da Suchwidget und YaCy auf derselben Domäne gehostet werden. -Under certain cirumstances slower than static hosting==Unter bestimmten Umständen langsamer als statisches Hosting -Just use the code snippet below and paste it any place in your own portal page==Vewenden Sie einfach das Codesnippet unten und kopieren Sie es in Ihr eigenes Suchportal -Please check if '#[ip]#:#[port]#' is appropriate or replace it with address of the YaCy Peer holding your index==Bitte prüfen Sie, ob '#[ip]#:#[port]#' korrekt ist und ersetzen Sie es mit der Adresse des YaCy Peers dass die Konfiguration hat. -A 'Live-Search' input field that reacts as search-as-you-type in a pop-up window can easily be integrated in any web page==Eine 'Live Suche' Eingabefeld zeigt live beim Eingeben in einem Pop-up Fenster Ergebnisse and und kann einfach in jede bestehende Webseite eingebaut werden -This is the same function as can be seen on all pages of the YaCy online-interface (look at the window in the upper right corner)==Das ist dieselbe Funktion, die man auf allen Seiten des YaCy Webinterfaces sehen kann (z.B. das Fenster in der oberen rechten Ecke) -#Just use the code snippet below to integrate that in your own web pages==Verwenden Sie einfach den Code Ausschnitt unten, um das Suchfeld in Ihre Webseite einzubauen. -Just use the code snippet below and paste it any place in your own portal page==Verwenden Sie einfach den Code Ausschnitt unten, um das Suchfeld auf Ihrem eigenen Webportal zu verwenden. -#Please check if the address, as given in the example '#[ip]#:#[port]#' here is correct and replace it with more appropriate values if necessary==Bitte überprüfen Sie, ob die Adresse die im Beispiel '#[ip]#:#[port]#' richtig ist und ersetzen Sie die Adresse wenn nötig mit richtigen Werten -#Code Snippet:==Code Ausschnitt: -#YaCy Portal Search==YaCy Portal Suche -"Search"=="Suche" -Configuration options and defaults for 'yconf':==Konfigurations Optionen und Standardeinstellungen für 'yconf': -Defaults<==Standardeinstellungen< -url<==URL< -#is a mandatory property - no default<==muss angegeben werden< -#YaCy P2P Web Search==YaCy P2P Web Suche -Size and position (width | height | position)==Größe und Position (Breite | Höhe | Position) -Specifies where the dialog should be displayed. Possible values for position: 'center', 'left', 'right', 'top', 'bottom', or an array containing a coordinate pair (in pixel offset from top left of viewport) or the possible string values (e.g. ['right','top'] for top right corner)==Gibt an wo der Dialog angezeigt werden soll. Mögliche Werte für position: 'center', 'left', 'right', 'top', 'bottom', oder ein Array das ein Koordinatenpaar enthält (in Pixel Werten als Offset von der linken oberen Ecke des Viewports) oder einer möglichen String Variabble (e.g. ['right','top'] für die rechte obere Ecke) -Animation effects (show | hide)==Animationseffekte (show | hide) -The effect to be used. Possible values: 'blind', 'clip', 'drop', 'explode', 'fold', 'puff', 'slide', 'scale', 'size', 'pulsate'.==Der Effekt der angewendet werden soll. Mögliche Werte sind: 'blind', 'clip', 'drop', 'explode', 'fold', 'puff', 'slide', 'scale', 'size', 'pulsate'. -Interaction (modal | resizable)==Interaktion (modal | resizable) -If modal is set to true, the dialog will have modal behavior; other items on the page will be disabled (i.e. cannot be interacted with).==Wenn modal auf true gesetzt wird verhält sich der Dialog genau so; Andere Elemente auf der Seite werden deaktiviert. (können also solange das Fenster geöffnet ist nicht verwendet werden) -Modal dialogs create an overlay below the dialog but above other page elements.==Modale Dialoge erzeugen einen Overlay unter dem Dialog aber überhalb anderer Seitenelemente -If resizable is set to true, the dialog will be resizeable.==Wenn resizable auf true gesetzt wird, kann man die Größe des Dialogfensters verändern. -Load JavaScript load_js==JavaScript laden load_js -Load Stylesheets load_css==Stylesheets laden load_css -This parameter is used for static hosting only.==Dieser Parameter wird nur für das statische Hosting verwendet. ->Themes<==>Themen< -You can download standard jquery-ui themes or create your own custom themes on==Sie können Standard jQuery UI Themen herunterladen oder generieren Sie Ihr eigenes Thema auf -Themes are installed in ./yacy/jquery/themes/ (static hosting) or in DATA/HTDOCS/jquery/themes/ on remote YaCy Peer.==Themen sind installiert in ./yacy/jquery/themes/ (statisches Hosting) oder in DATA/HTDOCS/jquery/themes/ beim remote YaCy Peer. -YaCy ships with 'start' and 'smoothness' themes pre-installed.==YaCy kommt vorinstalliert mit 'start' und 'smoothness' Themen. -#----------------------------- - #File: ConfigNetwork_p.html #--------------------------- <html lang="en">==<html lang="de"> @@ -722,7 +670,7 @@ URL of a Small Corporate Image<==URL des kleinen Corporate Identity Bildes< URL of a Large Corporate Image<==URL des großen Corporate Identity Bildes< Enable Search for Everyone?==Suche für Jedermann aktivieren? Search is available for everyone==Suche steht für Jedermann zur Verfügung -Only the administator is allowed to search==Nur der Administrator darf suchen +Only the administrator is allowed to search==Nur der Administrator darf suchen Show additional interaction features in footer==Zeige zusätzliche Features zur Interaktion in der Fußzeile Snippet Fetch Strategy & Link Verification==Snippet Fetch Strategie & Link Verifikation Speed up search results with this option! (use CACHEONLY or FALSE to switch off verification)==Beschleunige die Suchergebnisse mit dieser Option! (Verwende CACHEONLY oder FALSE, um die Verifikation abzuschalten) @@ -1281,7 +1229,7 @@ Never load any page that is already known. Only the start-url may be loaded agai Robot Behaviour==Robot Verhalten Use Special User Agent and robot identification==Verwende speziellen User-Agent und Robot Verifizierung You are running YaCy in non-p2p mode and because YaCy can be used as replacement for commercial search appliances==Sie verwenden YaCy im Nicht-P2P Modus und weil YaCy sich als Ersatz für kommerzielle Suchanwendungen benutzen lässt. -(like the GSA) the user must be able to crawl all web pages that are granted to such commercial plattforms.==(wie z.B. die GSA) der Benutzer muss alle Webseiten die solchen kommerziellen Platformen verfügbar sind crawlen können. +(like the Google Search Appliance aka GSA) the user must be able to crawl all web pages that are granted to such commercial platforms.==(wie z.B. die GSA) der Benutzer muss alle Webseiten die solchen kommerziellen Platformen verfügbar sind crawlen können. Not having this option would be a strong handicap for professional usage of this software. Therefore you are able to select==Diese Option nicht zu haben könnte ein starkes Handicap für die professionelle Nutzung dieser Software darstellen. Darum können Sie hier alternative user agents here which have different crawl timings and also identify itself with another user agent and obey the corresponding robots rule.==alternative User-Agents auswählen, die verschiedene Craw Timings haben und sich selbst auch mit einem anderen User-Agent ausweisen und die jeweiligen robots Regeln anwenden. @@ -1492,7 +1440,7 @@ only urls with the <phrase> in the url==Nur URLs, welche <phrase> en only urls with the <phrase> within outbound links of the document==Nur URLs, die <phrase> in einem Link enthalten only urls with extension==Nur URLs mit der Dateinamenserweiterung only urls from host==Nur URLs vom Server -only pages with as-author-anotated==Nur Seiten mit dem angegebenen Autor +only pages with as-author-annotated==Nur Seiten mit dem angegebenen Autor only pages from top-level-domains==Nur Seiten aus der Top-Level-Domain only resources from http or https servers==Nur Ressources auf HTTP- oder HTTPS-Servern only resources from ftp servers==Nur Ressourcen auf FTP-Servern @@ -1525,30 +1473,6 @@ json search results==JSON-Suchergebnisse for ajax developers: get the search rss feed and replace the '.rss' extension in the search result url with '.json'==Für AJAX-Entwickler: Rufen Sie den RSS-Feed auf und ersetzen Sie '.rss' durch '.json' #----------------------------- -#File: IndexCleaner_p.html -#--------------------------- -Index Cleaner==Index Aufräumer ->URL-DB-Cleaner==>URL-DB-Aufräumer -#ThreadAlive: -#ThreadToString: -Total URLs searched:==Insgesamt durchsuchte URLs: -Blacklisted URLs found:==URLS auf Blacklist gefunden: -Percentage blacklisted:==Prozent auf Blacklist: -last searched URL:==zuletzt durchsuchte URL: -last blacklisted URL found:==zuletzt gefundene URL auf Blacklist: ->RWI-DB-Cleaner==>RWI-DB-Aufräumer -RWIs at Start:==RWIs beim Start: -RWIs now:==RWIs jetzt: -wordHash in Progress:==Wort-Hash in Benutzung: -last wordHash with deleted URLs:==letzter Wort-Hash mit gelöschten URLs: -Number of deleted URLs in on this Hash:==Anzahl an gelöschten URLs in diesem Hash: -URL-DB-Cleaner - Clean up the database by deletion of blacklisted urls:==URL-DB-Aufräumer - Räumen Sie Ihre Datenbank auf, indem Sie URLs, die auf Ihrer Blacklist stehen, löschen: -Start/Resume==Start/Fortsetzen -Stop==Stopp -Pause==Anhalten -RWI-DB-Cleaner - Clean up the database by deletion of words with reference to blacklisted urls:==RWI-DB-Aufräumer - Räumen Sie Ihre Datenbank auf, indem Sie Wörter, die mit Ihrer Blacklist verbunden sind, löschen: -#----------------------------- - #File: IndexControlRWIs_p.html #--------------------------- Reverse Word Index Administration==Reverse Wort Indexverwaltung @@ -1917,64 +1841,6 @@ Delete by Solr Query<==Löschen durch Solr Abfrage< This is the most generic option: select a set of documents using a solr query.==Dies ist die allgemeinste Option: Wählen Sie einen Satz Dokumente anhand einer Solr Abfrage aus. #----------------------------- -#File: IndexImport_p.html -#--------------------------- -YaCy '#[clientname]#': Index Import==YaCy '#[clientname]#': Index Import -#Crawling Queue Import==Crawling Puffer Import -Index DB Import==Index Datenbank Import -The local index currently consists of (at least) #[wcount]# reverse word indexes and #[ucount]# URL references.==Der lokale Index besteht zur Zeit aus (mindestens) #[wcount]# Wörtern und #[ucount]# URLs. -Import Job with the same path already started.==Ein Import mit dem selben Pfad ist bereits gestartet. -Starting new Job==Neuen Import starten -Import Type:==Import-Typ: -Cache Size==Cachegröße -Usage Examples==Benutzungs-<br />beispiele -"Path to the PLASMADB directory of the foreign peer"=="Pfad zum PLASMADB Verzeichnis des fremden Peer" -Import Path:==Import-Pfad: -"Start Import"=="Import starten" -Attention:==Achtung: -Always do a backup of your source and destination database before starting to use this import function.==Machen Sie immer ein Backup von Ihrer Quell- und Zieldatenbank, bevor Sie die Import-Funktion nutzen. -Currently running jobs==Gerade laufende Aufgaben -Job Type==Job-Typ ->Path==>Pfad -Status==Status -Elapsed<br />Time==Verstrichene<br />Zeit -Time<br />Left==verbl.<br />Zeit -Abort Import==Import abbrechen -Pause Import==Import pausieren -Finished::Running::Paused==Fertig::Laufend::Pausiert -"Abort"=="Abbrechen" -#"Pause"=="Pause" -"Continue"=="Fortsetzen" -Finished jobs==Fertige Importierungen -"Clear List"=="Liste löschen" -Last Refresh:==Letzte Aktualisierung: -Example Path:==Beispielpfad: -Requirements:==Voraussetzungen: -You need to have at least the following directories and files in this path:==Sie müssen mindestens die folgenden Dateien und Ordner in diesem Pfad haben: ->Type==>Typ ->Writeable==>Schreibrechte ->Description==>Beschreibung ->File==>Datei ->Directory==>Verzeichnis ->Yes<==>Ja< ->No<==>Nein< -The LoadedURL Database containing all loaded and indexed URLs==Die 'geladene URLs'-Datenbank, enthält alle geladenen und indexierten URLs -The assortment directory containing parts of the word index.==Das Assortment-Verzeichnis, enthält Teile des Wort-Index. -The words directory containing parts of the word index.==Das Wort-Verzeichnis, enthält Teile des Wort-Index. -The assortment file that should be imported.==Die Assortment-Datei die importiert werden soll. -The assortment file must have the postfix==Die Assortment-Datei muss den Suffix -.db".==.db" haben. -If you would like to import an assortment file from the <tt>PLASMADBACLUSTERABKP</tt>== Wenn Sie eine Assortment-Datei aus <tt>PLASMADBACLUSTERABKP</tt> importieren wollen, -you have to rename it first.==müssen Sie sie zuerst umbenennen. ->Notes:==>Anmerkung: -Please note that the imported words are useless if the destination peer doesn't know==Bitte bedenken Sie, dass die importierten Wörter nutzlos sind, wenn der Ziel-Peer nicht weiß, -the URLs the imported words belongs to.==zu welchen URLs sie gehören. -Crawling Queue Import:==Crawler-Puffer-Import: -Contains data about the crawljob an URL belongs to==Enthält Daten über den Crawljob, zu dem eine URL gehört -The crawling queue==Der Crawler-Puffer -Various stack files that belong to the crawling queue==Verschiedene Stack-Dateien, die zum Crawler-Puffer gehören -#----------------------------- - #File: IndexImportMediawiki_p.html #--------------------------- #MediaWiki Dump Import==MediaWiki Dump Import @@ -2129,7 +1995,7 @@ To integrate a search window into phpBB3, you must insert some code into a forum There are several templates that can be used for phpBB3, but in this guide we consider that==Da es viele verschiedene Templates für phpBB3 Foren gibt, gehen wir in dieser Anleitung davon aus, dass you are using the default template, 'prosilver'==Sie das Standard Template 'prosilver' verwenden. open styles/prosilver/template/overall_header.html==Öffnen Sie die Datei styles/prosilver/template/overall_header.html -find the line where the default search window is displayed, thats right behind the <pre><div id="search-box"></pre> statement==Finden Sie die Zeile in der das Standard Suchfeld angezeigt wird, das sich gleich hinter der Anweisung <pre><div id="search-box"></pre> befindet +find the line where the default search window is displayed, that's right behind the <pre><div id="search-box"></pre> statement==Finden Sie die Zeile in der das Standard Suchfeld angezeigt wird, das sich gleich hinter der Anweisung <pre><div id="search-box"></pre> befindet Insert the following code right behind the div tag==Fügen Sie folgenden Code gleich nach dem div Tag ein YaCy Forum Search==YaCy Foren Suche ;YaCy Search==;YaCy Suche @@ -2378,7 +2244,7 @@ A change in the personal profile will create a news entry. You can see recently profile entries on the Network page, where that profile change is visualized with a '*' beside the 'P' (profile) - selector.==Profil Einträge auf der Netzwerk Seite werden nach einer Änderung mit einem '*' neben dem 'P' (Profil) gekennzeichnet. More news services will follow.==Mehr News Services werden folgen. -Above you can see four menues:==Sie können diese vier Menüs sehen: +Above you can see four menus:==Sie können diese vier Menüs sehen: <strong>Incoming News (#[insize]#)</strong>: latest news that arrived your peer.==<strong>Eingehende News(#[insize]#)</strong>: Die neuesten News, die Ihren Peer erreicht haben. Only these news will be used to display specific news services as explained above.==Nur diese News werden benutzt, um spezifische News Services anzuzeigen. You can process these news with a button on the page to remove their appearance from the IndexCreate and Network page==Sie können diese News mit einem Button auf der Seite abarbeiten (als "gelesen" markieren). Dann werden diese Nachrichten nicht mehr auf der Netzwerk und der Index Create Seite erscheinen. @@ -2431,7 +2297,7 @@ This shall improve performance of the affected process (proxy or search).==Dies (current delta is==(Seit dem letzten Zugriff auf Proxy/Lokale-Suche/Globale-Suche sind seconds since last proxy/local-search/remote-search access.)==Sekunden vergangen.) Online Caution Case==Onlinezugriff Typ -indexer delay (milliseconds) after case occurency==Indexierer Verzögerung (Millisekunden) nach Onlinezugriff +indexer delay (milliseconds) after case occurrence==Indexierer Verzögerung (Millisekunden) nach Onlinezugriff #Proxy:==Proxy: Local Search:==Lokale Suche: Remote Search:==Remote Suche: @@ -2566,7 +2432,7 @@ Queue Size<br />Current==Größe der Warteschlange<br />Aktuell Queue Size<br />Maximum==Größe der Warteschlange<br />Maximum Executors:<br />Current Number of Threads==Executors:<br />Aktuelle Anzahl der Threads Concurrency:<br />Maximum Number of Threads==Concurrency:<br />Maximale Anzahl der Threads -Childs==Kindprozesse +Children==Kindprozesse Average<br />Block Time<br />Reading==Durchschnittlich<br />reservierte Zeit<br />lesend Average<br />Exec Time==Durchschnittliche Ausführungszeit Average<br />Block Time<br />Writing==Durchschnittlich<br />reservierte Zeit<br />schreibend @@ -2853,7 +2719,7 @@ Remote proxy port==Remote Proxy Port the port of the remote proxy==Der Port des Remote Proxy Remote proxy user==Remote Proxy Benutzer Remote proxy password==Remote Proxy Passwort -No-proxy adresses==Proxylose Adressen +No-proxy addresses==Proxylose Adressen IP addresses for which the remote proxy should not be used==IP-Adressen für die der Remote Proxy nicht genutzt werden soll "Submit"=="Speichern" Changes will take effect immediately.==Änderungen sind sofort wirksam. @@ -2863,7 +2729,7 @@ Changes will take effect immediately.==Änderungen sind sofort wirksam. #--------------------------- Proxy Access Settings==Proxyzugangs Einstellungen These settings configure the access method to your own http proxy and server.==Diese Einstellungen beeinflussen den Zugriff auf Ihren HTTP-Proxy und -Server. -All traffic is routed throug one single port, for both proxy and server.==Alle Verbindungen werden durch einen einzigen Port hergestellt, für beides (Proxy und Server). +All traffic is routed through one single port, for both proxy and server.==Alle Verbindungen werden durch einen einzigen Port hergestellt, für beides (Proxy und Server). Server/Proxy Port Configuration==Server/Proxy Port Konfiguration The socket addresses where YaCy should listen for incoming connections from other YaCy peers or http clients.==Die Socket-Adressen auf denen YaCy auf eingehende Verbindungen von anderen YaCy-Peers oder HTTP-Clients warten soll. You have four possibilities to specify the address:==Sie haben vier Möglichkeiten die Adresse anzugeben: @@ -2989,7 +2855,7 @@ Error with submitted information.==Es gab einen Fehler bei der Übertragung der Nothing changed.</p>==Nichts wurde verändert.</p> The user name must be given.==Der User Name muss angegeben werden Your request cannot be processed.==Ihre Anfrage konnte nicht bearbeitet werden. -The password redundancy check failed. You have probably misstyped your password.==Die Passwortüberprüfung schlug fehl. Sie haben sich wahrscheinlich vertippt. +The password redundancy check failed. You have probably mistyped your password.==Die Passwortüberprüfung schlug fehl. Sie haben sich wahrscheinlich vertippt. Shutting down.</strong><br />Application will terminate after working off all crawling tasks.==Runterfahren</strong><br />Die Anwendung wird geschlossen, nachdem alle Crawls abgearbeitet wurden. Your administration account setting has been made.==Ihre Administrator Account Einstellungen wurden gespeichert. Your new administration account name is #[user]#. The password has been accepted.<br />If you go back to the Settings page, you must log-in again.==Ihr neuer Administrator Account Name ist #[user]#. Das Passwort wurde akzeptiert.<br />Wenn Sie zurück zu den Einstellungen gehen wollen, müssen Sie sich neu einloggen. @@ -3244,7 +3110,7 @@ YaCy Supporters<==YaCy Unterstützer< provided by YaCy peers using public bookmarks, link votes and crawl start points==automatisch erzeugt durch öffentliche Lesezeichen, Link-Bewertungen und Crawl-Startpunkte anderer YaCy-Peers "Please enter a comment to your link recommendation. (Your Vote is also considered without a comment.)"=="Bitte geben Sie zu Ihrer Linkempfehlung einen Kommentar ein. (Ihre Stimme wird auch ohne Kommentar angenommen.)" #"authentication required"=="Autorisierung erforderlich" -Hide surftips for users without autorization==Verberge Surftipps für Benutzer ohne Autorisierung +Hide surftips for users without authorization==Verberge Surftipps für Benutzer ohne Autorisierung Show surftips to everyone==Zeige Surftipps allen Benutzern #----------------------------- @@ -3517,7 +3383,7 @@ Discover Terms:==Entdecke Bedeutungen: no auto-discovery (empty vocabulary)==Kein Auto-Erkennen (leere Vokabelliste) from file name==von Dateiname from page title ==vom Seitentitel -from page title (splitted)==vom Seitentitel (gesplittet) +from page title (split)==vom Seitentitel (gesplittet) from page author==vom Seitenautor "Create"=="Erzeugen" Vocabulary Editor==Vokabellisten Editor @@ -3614,8 +3480,8 @@ These tags create headlines. If a page has three or more headlines, a table of c Headlines of level 1 will be ignored in the table of content.==Überschriften im ersten Level werden beim Erstellen des Inhaltsverzeichnisses ignoriert. #text==Text These tags create stressed texts. The first pair emphasizes the text (most browsers will display it in italics),==Diese Tags erzeugen hervorgehobenen Text. Das erste Paar betont den Text (die meisten Browser zeigen die Texte kursiv), -the second one emphazises it more strongly (i.e. bold) and the last tags create a combination of both.==das Zweite betont den Text stärker (z.B. fett) und der letzte Tag erzeugt eine Mischung aus beidem. -Text will be displayed <span class="strike">stricken through</span>.==Text wird <span class="strike">durchgestrichen</span> angezeigt. +the second one emphasizes it more strongly (i.e. bold) and the last tags create a combination of both.==das Zweite betont den Text stärker (z.B. fett) und der letzte Tag erzeugt eine Mischung aus beidem. +Text will be displayed <span class="strike">struck through</span>.==Text wird <span class="strike">durchgestrichen</span> angezeigt. Lines will be indented. This tag is supposed to mark citations, but may as well be used for styling purposes.==Der Text erscheint eingerückt. Dieser Tag eignet sich, um Zitate zu markieren, wird aber auch zum Designen benutzt. point==Punkt These tags create a numbered list.==Diese Tags erstellen eine nummerierte Liste. @@ -3780,7 +3646,7 @@ Index Export/Import==Daten Export / Import Target Analysis==Ziel Analyse Process Scheduler==Prozess Planer ### ADMINISTRATION ### -System Admiistration==Systemverwaltung +System Administration==Systemverwaltung Index Administration==Indexverwaltung Filter & Blacklists==Filter & Sperrlisten Content Semantic==Inhalt Semantik @@ -3861,14 +3727,6 @@ Advanced Settings==Erweiterte Einstellungen Advanced Properties==Erweiterte Konfiguration #----------------------------- -#File: env/templates/submenuContentIntegration.template -#--------------------------- -External Content Integration==Integration von externen Inhalten -Import phpBB3 forum==Importiere phpBB3 Forum -Import Mediawiki dumps==Importiere Mediawiki Dumps -Import OAI-PMH Sources==Importiere OAI-PMH Quellen -#----------------------------- - #File: env/templates/submenuCrawlMonitor.template #--------------------------- Overview</a>==Überblick</a> @@ -3933,14 +3791,6 @@ Scraping Proxy==Scraping Proxy #Autocrawl==Autocrawler #----------------------------- -#File: env/templates/submenuPortalIntegration.template -#--------------------------- -Search Portal Integration==Suchportal Integration -Live Search Anywhere==Live Suche Überall -Generic Search Portal==Generisches Suchportal -Search Box Anywhere==Such-Box Überall -#----------------------------- - #File: env/templates/submenuPublication.template #--------------------------- Publication==Veröffentlichung @@ -3957,13 +3807,6 @@ RWI Ranking Config==RWI Ranking Konfiguration >Heuristics<==>Heuristiken< #--------------------------- -#File: env/templates/submenuSearchIntegration.template -#--------------------------- -Search Integration into External Sites==Integration der Suche in Externe Seiten -Live Search Anywhere==Live Suche Überall -Search Box Anywhere==Suchbox Überall -#----------------------------- - #File: env/templates/submenuSemantic.template #--------------------------- Content Semantic==Inhalt Semantik @@ -3989,12 +3832,6 @@ Basic Configuration==Grundkonfiguration Network Configuration==Netzwerk Einstellungen #----------------------------- -#File: env/templates/submenuViewLog.template -#--------------------------- -Server Log Menu==Server Log Menü -#Server Log==Server Log -#----------------------------- - #File: env/templates/submenuWebStructure.template #--------------------------- Web Visualization==Internet Visualisierung @@ -4035,16 +3872,6 @@ could not be found.==wurde nicht gefunden. Did you mean:==Meinten Sie vielleicht: #----------------------------- -#File: www/welcome.html -#--------------------------- -YaCy: Default Page for Individual Peer Content==YACY: Standardseite für eigene Peer-Inhalte -Individual Web Page==eigene Webseite -Welcome to your own web page<br />in the <strong>YaCy Network==Willkommen auf Ihrer eigenen Webseite<br />im <strong>YaCy-Netzwerk -THIS IS A DEMONSTRATION PAGE FOR YOUR OWN INDIVIDUAL WEB SERVER!==DIES IST EINE DEMONSTRATIONSSEITE FÜR IHREN EIGENEN WEB SERVER! -PLEASE REPLACE THIS PAGE BY PUTTING A FILE index.html INTO THE PATH==BITTE ERSETZEN SIE DIESE SEITE, INDEM SIE EINE DATEI MIT DEM NAMEN index.html IM VERZEICHNIS -<YaCy-application-home><strong>#[wwwpath]#</strong>==<YaCy-Programmpfad><strong>#[wwwpath]#</strong> ABLEGEN. -#----------------------------- - #File: js/Crawler.js #--------------------------- "Continue this queue"=="Diese Queue weiter abarbeiten" @@ -4060,21 +3887,710 @@ PLEASE REPLACE THIS PAGE BY PUTTING A FILE index.html INTO THE PATH==BITTE ERSET >Date==>Datum #----------------------------- -#File: js/jquery-flexigrid.js + +#File: env/templates/submenuAI.template +#--------------------------- +LLM Selection==LLM-Auswahl +Tools Config==Werkzeug-Konfiguration +Log Reports==Log-Berichte +RAG Config==RAG-Konfiguration +AI Shield==KI-Schutzschild +AI Lab==KI-Labor +Chat==Chat +#----------------------------- + +#File: env/templates/submenuIndexImport.template +#--------------------------- +Content Export / Import==Inhalt Export / Import +Solr Dump Export/Import==Solr-Dump Export/Import +Pack Downloader==Paket-Downloader +Database Reader==Datenbank-Leser +phpBB3 Database==phpBB3-Datenbank +Pack Generator==Paket-Generator +MediaWiki Dump==MediaWiki-Dump +Pack Manager==Paket-Manager +Index Export==Index-Export +YaCy Packs==YaCy-Pakete +Export==Export +Import==Import +#----------------------------- + +#File: env/templates/submenuMaintenance.template +#--------------------------- +RAM/Disk Usage & Updates==RAM-/Festplatten-Nutzung & Updates +Download System Update==System-Update herunterladen +Performance==Performance +Web Cache==Web-Cache +#----------------------------- + +#File: env/templates/submenuPortalConfiguration.template #--------------------------- -'Displaying {from} to {to} of {total} items'=='Zeige {from} bis {to} von {total} Elementen' -'Processing, please wait ...'=='In Bearbeitung. Bitte warten ...' -'No items'=='Keine Elemente' +Generic Search Portal==Generisches Suchportal +Portal Configuration==Portal-Konfiguration +Search Box Anywhere==Suchbox überall +Local robots.txt==Lokale robots.txt +User Profile==Benutzerprofil +#----------------------------- + +#File: Settings_Debug.inc +#--------------------------- +When checked, the remote <abbr title="Distributed Hash Table">DHT</abbr> peers selection is overridden and only the local peer is selected to provide remote DHT search results.==Wenn aktiviert, wird die Auswahl der entfernten <abbr title="Distributed Hash Table">DHT</abbr>-Peers überschrieben und nur der lokale Peer wird ausgewählt, um entfernte DHT-Suchergebnisse zu liefern. +When checked, statistics are collected on text snippets generation for search results. They are summarized in the <a href="ConfigPortal_p.html">Portal Configuration</a> page.==Wenn aktiviert, werden Statistiken über die Erzeugung von Text-Snippets für Suchergebnisse gesammelt. Sie werden auf der Seite <a href="ConfigPortal_p.html">Portal-Konfiguration</a> zusammengefasst. +Be careful with these advanced settings, they can deeply affect the search process! You probably don't need to modify them for normal use.==Seien Sie mit diesen erweiterten Einstellungen vorsichtig, sie können den Suchprozess stark beeinflussen! Für den normalen Gebrauch müssen Sie sie wahrscheinlich nicht ändern. +When checked, the remote Solr peers selection is overridden and only this peer is selected to provide remote Solr search results.==Wenn aktiviert, wird die Auswahl der entfernten Solr-Peers überschrieben und nur dieser Peer wird ausgewählt, um entfernte Solr-Suchergebnisse zu liefern. +When checked (default), responses from remote Solr index instances are transferred using an efficient binary data format.==Wenn aktiviert (Standard), werden Antworten von entfernten Solr-Index-Instanzen in einem effizienten Binärdatenformat übertragen. +When checked, the raw ranking score value is displayed for each text search result in the HTML results page.==Wenn aktiviert, wird der rohe Ranking-Bewertungswert für jedes Text-Suchergebnis auf der HTML-Ergebnisseite angezeigt. +Remote <abbr title="Distributed Hash Table">DHT</abbr>/<abbr title="Reverse Word Index">RWI</abbr>==Entfernt <abbr title="Distributed Hash Table">DHT</abbr>/<abbr title="Reverse Word Index">RWI</abbr> +When unchecked, responses are transferred as <abbr title="Extensible Markup Language">XML</abbr>,==Wenn deaktiviert, werden Antworten als <abbr title="Extensible Markup Language">XML</abbr> übertragen, +Local <abbr title="Distributed Hash Table">DHT</abbr>/<abbr title="Reverse Word Index">RWI</abbr>==Lokal <abbr title="Distributed Hash Table">DHT</abbr>/<abbr title="Reverse Word Index">RWI</abbr> +Override <abbr title="Distributed Hash Table">DHT</abbr> peers selection by local only==<abbr title="Distributed Hash Table">DHT</abbr>-Peer-Auswahl auf nur lokal überschreiben +which can be captured and parsed by any external XML aware tool for debug/analysis.==was von jedem externen XML-fähigen Werkzeug zur Fehlersuche/Analyse erfasst und verarbeitet werden kann. +but you can here disable one or more ones to check the behavior of the process.==aber Sie können hier eine oder mehrere deaktivieren, um das Verhalten des Prozesses zu überprüfen. +By default all data sources are enabled to obtain search results,==Standardmäßig sind alle Datenquellen aktiviert, um Suchergebnisse zu erhalten, +<em id="submitInfo">Changes will take effect immediately.</em>==<em id="submitInfo">Änderungen werden sofort wirksam.</em> +Override Solr peers selection by local only==Solr-Peer-Auswahl auf nur lokal überschreiben +Enable remote Solr binary responses==Binäre Antworten von entfernten Solr-Instanzen aktivieren +Enable text snippets statistics==Statistik der Text-Snippets aktivieren +Show search results scores==Bewertungspunkte der Suchergebnisse anzeigen +Text snippets statistics==Statistik der Text-Snippets +Debug/Analysis Settings==Debug-/Analyse-Einstellungen +Search testing tweaks==Such-Test-Feineinstellungen +Search data sources==Such-Datenquellen +Remote Solr indexes==Entfernte Solr-Indizes +Ranking information==Ranking-Informationen +Solr communication==Solr-Kommunikation +Local Solr index==Lokaler Solr-Index +#----------------------------- + +#File: Settings_HttpClient.inc +#--------------------------- +this extension to the <abbr title="Transport Layer Security">TLS</abbr> protocol must be enabled to load some https URLs (for websites deployed with different certificates and host names on the same shared IP address), otherwise loading fails with errors such as <samp>Received fatal alert: handshake_failure</samp>.==diese Erweiterung des <abbr title="Transport Layer Security">TLS</abbr>-Protokolls muss aktiviert sein, um manche https-URLs zu laden (für Websites, die mit unterschiedlichen Zertifikaten und Hostnamen auf derselben gemeinsam genutzten IP-Adresse betrieben werden), andernfalls schlägt das Laden mit Fehlern wie <samp>Received fatal alert: handshake_failure</samp> fehl. +Controlling <abbr title="Server Name Indication">SNI</abbr> extension activation can also be done with the JVM option <var>jsse.enableSNIExtension</var>, but in that case a server restart is required when you want to modify the setting and it is not customizable per http client (general or for remote Solr).==Die Aktivierung der <abbr title="Server Name Indication">SNI</abbr>-Erweiterung kann auch über die JVM-Option <var>jsse.enableSNIExtension</var> gesteuert werden, aber in diesem Fall ist ein Server-Neustart erforderlich, wenn Sie die Einstellung ändern möchten, und sie ist nicht pro HTTP-Client (allgemein oder für entfernte Solr) anpassbar. +But it can be necessary to disable it in order to load some https URLs served by old and misconfigured web servers, otherwise loading fails with the exception <samp>javax.net.ssl.SSLProtocolException: "handshake alert: unrecognized_name"</samp>.==Es kann jedoch nötig sein, sie zu deaktivieren, um manche https-URLs von alten und falsch konfigurierten Webservern zu laden, andernfalls schlägt das Laden mit der Ausnahme <samp>javax.net.ssl.SSLProtocolException: "handshake alert: unrecognized_name"</samp> fehl. +Configuration settings for the specific HTTP client dedicated to communications with remote Solr servers (located on other YaCy peers or eventually owned by this one when it is configured to use a remote Solr index).==Konfigurationseinstellungen für den speziellen HTTP-Client, der der Kommunikation mit entfernten Solr-Servern dient (die sich auf anderen YaCy-Peers befinden oder ggf. diesem Peer gehören, wenn er für die Nutzung eines entfernten Solr-Index konfiguriert ist). +SNI extension support can not be defined here as it is currently configured by the JVM option <code>-Djsse.enableSNIExtension===Die Unterstützung der SNI-Erweiterung kann hier nicht festgelegt werden, da sie derzeit über die JVM-Option konfiguriert wird: <code>-Djsse.enableSNIExtension= +Configuration settings for the main HTTP client, used notably to crawl websites and communicate with other YaCy peers.==Konfigurationseinstellungen für den Haupt-HTTP-Client, der insbesondere zum Crawlen von Websites und zur Kommunikation mit anderen YaCy-Peers verwendet wird. +Enable <abbr title="Server Name Indication">SNI</abbr> extension to <abbr title="Transport Layer Security">TLS</abbr>==<abbr title="Server Name Indication">SNI</abbr>-Erweiterung für <abbr title="Transport Layer Security">TLS</abbr> aktivieren +You can configure here some advanced settings of the clients used by YaCy to handle outgoing HTTP connections.==Hier können Sie einige erweiterte Einstellungen der Clients konfigurieren, die YaCy für ausgehende HTTP-Verbindungen verwendet. +<em id="submitInfo">Changes will take effect immediately.</em>==<em id="submitInfo">Änderungen werden sofort wirksam.</em> +About Server Name Indication (SNI):==Über Server Name Indication (SNI): +Remote Solr HTTP client==Entfernter Solr-HTTP-Client +HTTP client settings==HTTP-Client-Einstellungen +General HTTP client==Allgemeiner HTTP-Client +#----------------------------- + +#File: Settings_Referrer.inc +#--------------------------- +If you are really concerned about privacy, please check what is really sent by your browser by using its embedded developer tools network console, or with the network traffic analyzer of your choice.==Wenn Sie wirklich um Ihren Datenschutz besorgt sind, überprüfen Sie bitte mit der eingebauten Netzwerk-Konsole der Entwicklerwerkzeuge Ihres Browsers oder mit dem Netzwerk-Analysewerkzeug Ihrer Wahl, was tatsächlich gesendet wird. +Visited websites can process this information as they wish, so this can become a privacy concern, for example when coming from a page which contains searched terms in its URL.==Besuchte Websites können diese Informationen nach Belieben verarbeiten, was zu einem Datenschutzproblem werden kann, zum Beispiel wenn man von einer Seite kommt, deren URL die gesuchten Begriffe enthält. +<a href="https://www.w3.org/TR/html/links.html#allowed-keywords-and-their-meanings" title="Link types section at W3C HTML specification">link type</a> to search results links,==<a href="https://www.w3.org/TR/html/links.html#allowed-keywords-and-their-meanings" title="Link types section at W3C HTML specification">Link-Typ</a> zu Links in Suchergebnissen hinzu, +Restriction: when an external link downgrades from a TLS secured connection (https) on this peer to an unsecured target (http), no referrer information at all should be sent.==Einschränkung: wenn ein externer Link von einer TLS-gesicherten Verbindung (https) auf diesem Peer zu einem ungesicherten Ziel (http) herabgestuft wird, sollten überhaupt keine Referrer-Informationen gesendet werden. +by filling the <a href="https://tools.ietf.org/html/rfc7231#section-5.5.2" title="'Referer' section from the standard IETF specification">"Referer"</a> HTTP header.==indem er den <a href="https://tools.ietf.org/html/rfc7231#section-5.5.2" title="'Referer' section from the standard IETF specification">"Referer"</a>-HTTP-Header ausfüllt. +Restriction: when a link downgrades from a TLS secured connection (https) on this peer to an unsecured target (http), no referrer information at all should be sent.==Einschränkung: wenn ein Link von einer TLS-gesicherten Verbindung (https) auf diesem Peer zu einem ungesicherten Ziel (http) herabgestuft wird, sollten überhaupt keine Referrer-Informationen gesendet werden. +Referrer information should contain full URLs, except when a link downgrades from a TLS secured connection (https) on this peer to an unsecured target (http).==Referrer-Informationen sollten vollständige URLs enthalten, außer wenn ein Link von einer TLS-gesicherten Verbindung (https) auf diesem Peer zu einem ungesicherten Ziel (http) herabgestuft wird. +Note: this value is also compatible with legacy values from the older <a href="https://wiki.whatwg.org/wiki/Meta_referrer">specification draft</a>.==Hinweis: dieser Wert ist auch mit älteren Werten aus dem früheren <a href="https://wiki.whatwg.org/wiki/Meta_referrer">Spezifikationsentwurf</a> kompatibel. +See the related <a href="https://www.w3.org/TR/referrer-policy/#referrer-policies">W3C recommendation</a> for full details and available values.==Siehe die zugehörige <a href="https://www.w3.org/TR/referrer-policy/#referrer-policies">W3C-Empfehlung</a> für alle Details und verfügbaren Werte. +Peer internal and external links: referrer information should be stripped from any private data and contain only this peer host name.<br/>==Interne und externe Links des Peers: Referrer-Informationen sollten von allen privaten Daten befreit werden und nur den Hostnamen dieses Peers enthalten.<br/> +Beware that every browser behaves differently: some settings may be unsupported by your particular browser and therefore ignored.==Beachten Sie, dass sich jeder Browser anders verhält: einige Einstellungen werden von Ihrem speziellen Browser möglicherweise nicht unterstützt und daher ignoriert. +supported by many more browsers than the meta tag: if you want a higher level of privacy but use an old or incompatible browser,==der von viel mehr Browsern unterstützt wird als das meta-Tag: wenn Sie ein höheres Datenschutzniveau wünschen, aber einen alten oder inkompatiblen Browser verwenden, +Peer internal links: referrer information should be stripped from any private data and contain only this peer host name.<br/>==Interne Links des Peers: Referrer-Informationen sollten von allen privaten Daten befreit werden und nur den Hostnamen dieses Peers enthalten.<br/> +External links: referrer information should be stripped from any private data and contain only this peer host name.<br/>==Externe Links: Referrer-Informationen sollten von allen privaten Daten befreit werden und nur den Hostnamen dieses Peers enthalten.<br/> +When loading pages and navigating through links, a web browser sends some information about the origin of the request,==Beim Laden von Seiten und beim Navigieren über Links sendet ein Webbrowser einige Informationen über den Ursprung der Anfrage, +Highest privacy setting: referrer information should never be sent, even when navigating on this peer internal links.==Höchste Datenschutzeinstellung: Referrer-Informationen sollten niemals gesendet werden, auch nicht beim Navigieren über interne Links dieses Peers. +This page offers some configuration settings to instruct your browser how it should fill this referrer information.==Diese Seite bietet einige Konfigurationseinstellungen, um Ihrem Browser mitzuteilen, wie er diese Referrer-Informationen ausfüllen soll. +External links: referrer information should be stripped from any private data and contain only this peer host name.==Externe Links: Referrer-Informationen sollten von allen privaten Daten befreit werden und nur den Hostnamen dieses Peers enthalten. +thus instructing the browser that it should not send any referrer information at all when visiting them.==und weist so den Browser an, beim Besuch dieser Links überhaupt keine Referrer-Informationen zu senden. +This referrer policy applies for every page on this peer. It is set by the "meta" HTML tag.==Diese Referrer-Richtlinie gilt für jede Seite auf diesem Peer. Sie wird über das "meta"-HTML-Tag gesetzt. +When checked, this overrides the global referrer policy and adds the standard "noreferrer"==Wenn aktiviert, überschreibt dies die globale Referrer-Richtlinie und fügt den Standard-"noreferrer" +Custom setting: probably manually edited, be sure this value is the desired one.==Benutzerdefinierte Einstellung: wahrscheinlich manuell bearbeitet, stellen Sie sicher, dass dies der gewünschte Wert ist. +Default browser behavior: it should correspond to "no-referrer-when-downgrade".==Standard-Browserverhalten: sollte "no-referrer-when-downgrade" entsprechen. +Be careful with this: some websites might reject requests with no referrer.==Seien Sie damit vorsichtig: einige Websites weisen Anfragen ohne Referrer möglicherweise zurück. +Peer internal links: referrer information should contain full URLs.<br/>==Interne Links des Peers: Referrer-Informationen sollten vollständige URLs enthalten.<br/> +Unsafe setting: referrer information should always contain full URLs.==Unsichere Einstellung: Referrer-Informationen enthalten immer vollständige URLs. +<em id="submitInfo">Changes will take effect immediately.</em>==<em id="submitInfo">Änderungen werden sofort wirksam.</em> +External links: referrer information should never be sent.==Externe Links: Referrer-Informationen sollten niemals gesendet werden. +Add the "noreferrer" link type to search results links==Den Link-Typ "noreferrer" zu Links in Suchergebnissen hinzufügen +Values are sorted by decreasing privacy level.==Die Werte sind nach abnehmendem Datenschutzniveau sortiert. +It is a standard HTML5 attribute value,==Es ist ein Standard-HTML5-Attributwert, +this can be a valuable option.==kann dies eine wertvolle Option sein. +Referrer Policy Settings==Referrer-Richtlinien-Einstellungen +Search results links==Links in Suchergebnissen +Global policy==Globale Richtlinie +empty value==leerer Wert +#----------------------------- + +#File: AILab.html +#--------------------------- +Complete the quests below to unlock YaCy's AI sidekick: bind an inference engine, load production models, feed it with your index, then wire RAG and shields.==Erledigen Sie die folgenden Aufgaben, um YaCys KI-Helfer freizuschalten: eine Inferenz-Engine anbinden, Produktionsmodelle laden, ihn mit Ihrem Index füttern und dann RAG und Schutzschilde verdrahten. +<span class="quest-note">Store your shield directives (system prompts, stop words) as properties, then exercise them in chat.</span>==<span class="quest-note">Speichern Sie Ihre Schutzschild-Direktiven (System-Prompts, Stoppwörter) als Eigenschaften und erproben Sie sie dann im Chat.</span> +Add guardrails: access rates, grant or deny non-localhost access. Activate the front page link for chat to complete this quest.==Fügen Sie Schutzmaßnahmen hinzu: Zugriffsraten, Nicht-localhost-Zugriff erlauben oder verweigern. Aktivieren Sie den Startseiten-Link für den Chat, um diese Aufgabe abzuschließen. +<span class="quest-note">Report generation stays inactive until a production model is assigned to the log-report role.</span>==<span class="quest-note">Die Berichtserzeugung bleibt inaktiv, bis der Log-Report-Rolle ein Produktionsmodell zugewiesen ist.</span> +<span class="quest-note">Deploy at least one model, then assign capabilities (chat, search-query, tooling, vision).</span>==<span class="quest-note">Stellen Sie mindestens ein Modell bereit und weisen Sie dann Fähigkeiten zu (chat, search-query, tooling, vision).</span> +<a class="btn btn-info btn-sm" href="LLMSelection_p.html#availableModels">Go to Production Models Matrix</a><br />==<a class="btn btn-info btn-sm" href="LLMSelection_p.html#availableModels">Zur Produktionsmodell-Matrix</a><br /> +<span class="quest-note">Set the search-query and qapairs columns to connect retrieval to your chat flow.</span>==<span class="quest-note">Setzen Sie die Spalten search-query und qapairs, um das Retrieval mit Ihrem Chat-Ablauf zu verbinden.</span> +<a class="btn btn-info btn-sm" href="LLMSelection_p.html#availableModels">Assign log-report model</a><br />==<a class="btn btn-info btn-sm" href="LLMSelection_p.html#availableModels">Log-Report-Modell zuweisen</a><br /> +Map which production models answer search-query and Q/A pairs so the RAG proxy can mix search with chat.==Legen Sie fest, welche Produktionsmodelle search-query und Frage/Antwort-Paare beantworten, damit der RAG-Proxy Suche mit Chat verbinden kann. +<span class="quest-note">Tune descriptions and set maxCallsPerTurn per tool (0 disables a tool).</span>==<span class="quest-note">Passen Sie die Beschreibungen an und setzen Sie maxCallsPerTurn pro Werkzeug (0 deaktiviert ein Werkzeug).</span> +Create a local index for grounding: crawl a site or import a pack to give your AI facts to cite.==Erstellen Sie einen lokalen Index als Faktenbasis: crawlen Sie eine Website oder importieren Sie ein Paket, damit Ihre KI Fakten zitieren kann. +<a class="btn btn-info btn-sm" href="IndexPackDownloader_p.html">Import an index pack</a><br />==<a class="btn btn-info btn-sm" href="IndexPackDownloader_p.html">Ein Index-Paket importieren</a><br /> +Pick your host (Ollama, LM Studio, OpenAI-compatible) and give YaCy a place to send prompts.==Wählen Sie Ihren Host (Ollama, LM Studio, OpenAI-kompatibel) und geben Sie YaCy einen Ort, an den es Prompts senden kann. +<a class="btn btn-info btn-sm" href="ToolsConfig_p.html">Open tools configuration</a><br />==<a class="btn btn-info btn-sm" href="ToolsConfig_p.html">Werkzeug-Konfiguration öffnen</a><br /> +Assign a log-report model, then review generated hourly and daily self-enhancement reports.==Weisen Sie ein Log-Report-Modell zu und prüfen Sie dann die stündlich und täglich erzeugten Selbstverbesserungs-Berichte. +<span class="quest-note">Set hoststub, API keys, and defaults to unlock downloads.</span>==<span class="quest-note">Setzen Sie Hoststub, API-Schlüssel und Standardwerte, um Downloads freizuschalten.</span> +<a class="btn btn-info btn-sm" href="LLMSelection_p.html">Open engine setup</a><br />==<a class="btn btn-info btn-sm" href="LLMSelection_p.html">Engine-Einrichtung öffnen</a><br /> +<a class="btn btn-info btn-sm" href="AIShield_p.html">Open shield settings</a><br />==<a class="btn btn-info btn-sm" href="AIShield_p.html">Schutzschild-Einstellungen öffnen</a><br /> +Assign models for chat, search, translation, and more. This is your loadout bench.==Weisen Sie Modelle für Chat, Suche, Übersetzung und mehr zu. Das ist Ihre Ausrüstungsbank. +<a class="btn btn-info btn-sm" href="yacychat.html">Test in Chat</a><br />==<a class="btn btn-info btn-sm" href="yacychat.html">Im Chat testen</a><br /> +</span> required to unlock (need at least 1000 documents).==</span> zum Freischalten erforderlich (mindestens 1000 Dokumente nötig). +<span class="label label-warning">Mandatory</span>==<span class="label label-warning">Erforderlich</span> +<span class="label label-info">Optional</span>==<span class="label label-info">Optional</span> +<span class="status-pill">Needs setup</span>==<span class="status-pill">Einrichtung nötig</span> +Indexed documents: <span class="count">==Indexierte Dokumente: <span class="count"> +Populate the Production Models Matrix==Die Produktionsmodell-Matrix befüllen +Superpowers for the YaCy Chat==Superkräfte für den YaCy-Chat +Bind an inference engine==Eine Inferenz-Engine anbinden +Craft your AI toolkit==Bauen Sie Ihr KI-Werkzeugset +Enable/Disable Tools==Werkzeuge aktivieren/deaktivieren +AI Lab Build System==KI-Labor Baukasten +Grow a search index==Einen Suchindex aufbauen +Monitor log reports==Log-Berichte überwachen +Wire RAG retrieval==RAG-Retrieval verdrahten +Wire RAG prompts==RAG-Prompts verdrahten +Open log reports==Log-Berichte öffnen +Define a shield==Einen Schutzschild definieren +0 / 6 unlocked==0 / 6 freigeschaltet +Start a crawl==Einen Crawl starten +': AI Lab==': KI-Labor +#----------------------------- + +#File: AIShield_p.html +#--------------------------- +Control who can access the chat interface and rate-limit non-localhost clients to protect your peer and LLM backends from overload.==Steuern Sie, wer auf die Chat-Oberfläche zugreifen darf, und begrenzen Sie die Rate von Nicht-localhost-Clients, um Ihren Peer und die LLM-Backends vor Überlastung zu schützen. +Recent access volume across all clients (localhost included). You can enforce global limits here to protect the host.==Aktuelles Zugriffsvolumen über alle Clients (localhost eingeschlossen). Hier können Sie globale Grenzen durchsetzen, um den Host zu schützen. +By default only localhost may reach the chat UI. Enable non-localhost access and throttle requests to reduce abuse.==Standardmäßig darf nur localhost die Chat-Oberfläche erreichen. Aktivieren Sie den Nicht-localhost-Zugriff und drosseln Sie Anfragen, um Missbrauch zu verringern. +Expose a shortcut to the chat UI on the search front page if you want users to discover it.==Zeigen Sie eine Verknüpfung zur Chat-Oberfläche auf der Suchstartseite an, wenn Benutzer sie entdecken sollen. +Requests from non-localhost will be throttled using these caps:==Anfragen von Nicht-localhost werden mit diesen Obergrenzen gedrosselt: +Allow non-localhost clients to access the chat interface==Nicht-localhost-Clients den Zugriff auf die Chat-Oberfläche erlauben +Show a link to yacychat.html on the search front page==Einen Link zu yacychat.html auf der Suchstartseite anzeigen +Limit for all requests, including localhost==Grenze für alle Anfragen, einschließlich localhost +Guest Access Control & Rate Limits==Gastzugriffssteuerung & Ratenbegrenzung +Wire RAG Retrieval Shield==RAG-Retrieval-Schutzschild verdrahten +Overall Load Protection==Gesamter Überlastschutz +Save Shield Settings==Schutzschild-Einstellungen speichern +Requests / minute==Anfragen / Minute +Requests / hour==Anfragen / Stunde +Front Page Link==Startseiten-Link +Requests / day==Anfragen / Tag +': AI Shield==': KI-Schutzschild +Per minute:==Pro Minute: +Per hour:==Pro Stunde: +Per day:==Pro Tag: +#----------------------------- + +#File: ToolsConfig_p.html +#--------------------------- +Add superpowers to the YaCy Chat. Tools may be disabled by setting maxCallsPerTurn to 0.==Verleihen Sie dem YaCy-Chat Superkräfte. Werkzeuge können deaktiviert werden, indem maxCallsPerTurn auf 0 gesetzt wird. +invalid maxCallsPerTurn value(s) were reset to the previous values.==ungültige maxCallsPerTurn-Werte wurden auf die vorherigen Werte zurückgesetzt. +Save Tools Configuration==Werkzeug-Konfiguration speichern +Data Retrieval Tools==Datenabruf-Werkzeuge +Visualization Tools==Visualisierungs-Werkzeuge +': Tools Config==': Werkzeug-Konfiguration +Basic Tools==Basis-Werkzeuge +disable==deaktivieren +Tools==Werkzeuge +#----------------------------- + +#File: RAGConfig_p.html +#--------------------------- +Maximum character length of the virtual search document used as RAG attachment and as the `search` tool result. Content beyond this limit is cut off. Default: 30000.==Maximale Zeichenlänge des virtuellen Suchdokuments, das als RAG-Anhang und als Ergebnis des `search`-Werkzeugs verwendet wird. Inhalt über dieser Grenze wird abgeschnitten. Standard: 30000. +Tune how YaCy constructs prompts and search queries for Retrieval Augmented Generation.==Stellen Sie ein, wie YaCy Prompts und Suchanfragen für Retrieval Augmented Generation aufbaut. +Prepended before attached search snippets in RAG mode to tell the LLM how to use them.==Wird im RAG-Modus vor die angehängten Such-Snippets gesetzt, um dem LLM mitzuteilen, wie es sie verwenden soll. +This is sent as the system message for chats. Keep it concise and friendly.==Dies wird als Systemnachricht für Chats gesendet. Halten Sie es knapp und freundlich. +Prompt given to the model that generates search queries from user requests.==Prompt für das Modell, das aus Benutzeranfragen Suchanfragen erzeugt. +Search Document Max Length==Maximale Länge des Suchdokuments +Query Generator Prefix==Anfragegenerator-Präfix +': Wire RAG Retrieval==': RAG-Retrieval verdrahten +User Retrieval Prefix==Benutzer-Retrieval-Präfix +Wire RAG Retrieval==RAG-Retrieval verdrahten +Save RAG Settings==RAG-Einstellungen speichern +System Prompt==System-Prompt +#----------------------------- + +#File: LLMSelection_p.html +#--------------------------- +<b>Install your local LLM service!</b> You need either a local <a href="https://ollama.com/">ollama</a> or <a href="https://lmstudio.ai/">LM Studio</a> instance running on your local host or inside the intranet.==<b>Installieren Sie Ihren lokalen LLM-Dienst!</b> Sie benötigen entweder eine lokale <a href="https://ollama.com/">ollama</a>- oder <a href="https://lmstudio.ai/">LM Studio</a>-Instanz, die auf Ihrem lokalen Host oder im Intranet läuft. +qa-pairs<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>This model can be used to produce query-answer pairs which enhance search from chat prompts</span></span>==qa-pairs<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>Dieses Modell kann Frage-Antwort-Paare erzeugen, die die Suche aus Chat-Prompts verbessern</span></span> +thinking<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>we detect thinking only to be able to suppress thinking. thinking is not used in YaCy</span></span>==thinking<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>Wir erkennen Thinking nur, um Thinking unterdrücken zu können. Thinking wird in YaCy nicht verwendet</span></span> +search-query<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>This model produces search queries to YaCy search from prompts in RAG or chat</span></span>==search-query<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>Dieses Modell erzeugt aus Prompts in RAG oder Chat Suchanfragen an die YaCy-Suche</span></span> +log-report<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>This model evaluates YaCy runtime logs and creates self-enhancement reports</span></span>==log-report<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>Dieses Modell wertet YaCy-Laufzeitprotokolle aus und erstellt Selbstverbesserungs-Berichte</span></span> +classification<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>This model is used to classify prompts to find out what they demand</span></span>==classification<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>Dieses Modell wird verwendet, um Prompts zu klassifizieren und herauszufinden, was sie verlangen</span></span> +chat<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>This model is used in the chat interface and as default for the RAG proxy</span></span>==chat<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>Dieses Modell wird in der Chat-Oberfläche und als Standard für den RAG-Proxy verwendet</span></span> +translation<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>This model can be used to make translations of the web UI</span></span>==translation<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>Dieses Modell kann zum Übersetzen der Web-Oberfläche verwendet werden</span></span> +tldr-shortener<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>This model is used to make summaries from web content</span></span>==tldr-shortener<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>Dieses Modell wird verwendet, um Zusammenfassungen aus Webinhalten zu erstellen</span></span> +search-answers<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>This model creates answers for search requests</span></span>==search-answers<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>Dieses Modell erstellt Antworten für Suchanfragen</span></span> +tooling<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>tooling is required for agentic abilities.</span></span>==tooling<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>Tooling ist für agentische Fähigkeiten erforderlich.</span></span> +vision<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>this enables image recognition in the chat</span></span>==vision<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>Dies aktiviert die Bilderkennung im Chat</span></span> +format<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>this is required for classification</span></span>==format<br/><span class="info"><img src="env/grafics/i16.gif" width="16" height="16" alt="info"/><span>Dies ist für die Klassifizierung erforderlich</span></span> +<a href="#services">Services</a> table below. A model's generated-token cap (<code>max_tokens</code> ===<a href="#services">Dienste</a>-Tabelle unten. Die Obergrenze für erzeugte Tokens eines Modells (<code>max_tokens</code> = +In the "Production Models Matrix" you can then assign each selected model a function inside YaCy==In der "Produktionsmodell-Matrix" können Sie dann jedem ausgewählten Modell eine Funktion innerhalb von YaCy zuweisen +<b>num_ctx</b> is the context window (in tokens) of the inference service — a per-service==<b>num_ctx</b> ist das Kontextfenster (in Tokens) des Inferenzdienstes — ein dienstspezifischer +(Ollama: <code>OLLAMA_CONTEXT_LENGTH</code>, a Modelfile <code>PARAMETER num_ctx</code>, or the==(Ollama: <code>OLLAMA_CONTEXT_LENGTH</code>, ein Modelfile <code>PARAMETER num_ctx</code> oder die +generated output; YaCy uses it to size prompts so they leave room to generate. The row for the==erzeugte Ausgabe; YaCy nutzt es, um Prompts so zu dimensionieren, dass Platz zum Generieren bleibt. Die Zeile für den +value, shared by all models on that endpoint. It is the total budget for prompt <i>plus</i>==Wert, der von allen Modellen an diesem Endpunkt gemeinsam genutzt wird. Es ist das Gesamtbudget für Prompt <i>plus</i> +The selected service's context window (<code>num_ctx</code>) is shown and editable in the==Das Kontextfenster (<code>num_ctx</code>) des ausgewählten Dienstes wird angezeigt und ist editierbar in der +Here you can pick models from an LLM model service to select them as production model.==Hier können Sie Modelle aus einem LLM-Modelldienst auswählen, um sie als Produktionsmodell festzulegen. +service selected above appears here automatically with its stored (or default) window.==oben ausgewählten Dienst erscheint hier automatisch mit seinem gespeicherten (oder Standard-)Fenster. +This value is <b>advisory</b>: set it to match the window your backend actually serves==Dieser Wert ist <b>ein Richtwert</b>: setzen Sie ihn passend zum Fenster, das Ihr Backend tatsächlich bereitstellt +Ollama <code>num_predict</code>) is set per model in the Production Models Matrix.==Ollama <code>num_predict</code>) wird pro Modell in der Produktionsmodell-Matrix festgelegt. +Context Length setting). YaCy does not enforce it on the backend.==Context-Length-Einstellung). YaCy erzwingt ihn nicht im Backend. +<a name="productionModels"></a><legend>Production Models Matrix==<a name="productionModels"></a><legend>Produktionsmodell-Matrix + you can probably leave this to the default value== Sie können dies wahrscheinlich auf dem Standardwert belassen + This makes a preset to the Hoststub value== Dies erstellt eine Voreinstellung für den Hoststub-Wert + (not required for Ollama or LMStudio)== (für Ollama oder LMStudio nicht erforderlich) +<a name="services"></a><legend>Services==<a name="services"></a><legend>Dienste +Service Selection==Dienst-Auswahl +': LLM Selection==': LLM-Auswahl +Model Downloads==Modell-Downloads +LLM Selection==LLM-Auswahl +service==Dienst +Actions==Aktionen +model==Modell +#----------------------------- + +#File: LogReports_p.html +#--------------------------- +The report directory does not exist yet. Reports will appear here after the scheduler has generated the first completed hourly report.==Das Berichtsverzeichnis existiert noch nicht. Berichte erscheinen hier, nachdem der Scheduler den ersten vollständigen Stundenbericht erzeugt hat. +No production model is configured for the log-report role. Log report generation stays inactive until a model is assigned in the==Für die Log-Report-Rolle ist kein Produktionsmodell konfiguriert. Die Erzeugung von Log-Berichten bleibt inaktiv, bis ein Modell zugewiesen wird in der +Generating report from the current-hour log lines — the LLM call can take a while …==Bericht wird aus den Log-Zeilen der aktuellen Stunde erzeugt — der LLM-Aufruf kann eine Weile dauern … +No production model is configured for the log-report role. Assign one in the==Für die Log-Report-Rolle ist kein Produktionsmodell konfiguriert. Weisen Sie eines zu in der +<a href="LLMSelection_p.html#availableModels">Production Models Matrix</a>.==<a href="LLMSelection_p.html#availableModels">Produktionsmodell-Matrix</a>. +the report below is completed live while the model is writing==der Bericht unten wird live vervollständigt, während das Modell schreibt +No log lines were found for the current hour.==Für die aktuelle Stunde wurden keine Log-Zeilen gefunden. +Report generation in progress …==Berichtserzeugung läuft … +No generated log reports were found.==Es wurden keine erzeugten Log-Berichte gefunden. +Report generation failed after==Berichtserzeugung fehlgeschlagen nach +Current-hour report written:==Bericht der aktuellen Stunde geschrieben: +</span> seconds elapsed==</span> Sekunden vergangen +seconds elapsed==Sekunden vergangen +': Log Reports==': Log-Berichte +run report now==Bericht jetzt erstellen +Reports found:==Berichte gefunden: +Log Reports==Log-Berichte +Directory:==Verzeichnis: +characters==Zeichen +seconds)==Sekunden) +seconds:==Sekunden: +report -==Bericht - +report==Bericht +#----------------------------- + +#File: IndexFederated_p.html +#--------------------------- +Tick this when the remote Solr server is password protected and is requested over HTTPS but provides only a self-signed certificate (not a validated one by an official Certificate Authority). The Solr URL could be for example something like <i>https://user:password@localhost:8984/solr</i>.==Aktivieren Sie dies, wenn der entfernte Solr-Server passwortgeschützt ist und über HTTPS angesprochen wird, aber nur ein selbstsigniertes Zertifikat bereitstellt (kein von einer offiziellen Zertifizierungsstelle validiertes). Die Solr-URL könnte zum Beispiel etwa so aussehen: <i>https://user:password@localhost:8984/solr</i>. +Solr stores the main search index. It is the home of two cores, the default 'collection1' core for documents and the 'webgraph' core for a web structure graph. Detailed information about the used Solr fields can be edited in the <a href="IndexSchema_p.html">Schema Editor</a>.==Solr speichert den Hauptsuchindex. Es beherbergt zwei Cores, den Standard-Core 'collection1' für Dokumente und den 'webgraph'-Core für einen Web-Strukturgraphen. Detaillierte Informationen über die verwendeten Solr-Felder können im <a href="IndexSchema_p.html">Schema-Editor</a> bearbeitet werden. +The web structure index is used for host browsing (to discover the internal file/folder structure), ranking (counting the number of references) and file search (there are about forty times more links from loaded pages than in documents of the main search index).==Der Web-Struktur-Index wird für die Host-Navigation (zum Entdecken der internen Datei-/Ordnerstruktur), das Ranking (Zählen der Anzahl der Referenzen) und die Dateisuche verwendet (es gibt etwa vierzigmal mehr Links von geladenen Seiten als in Dokumenten des Hauptsuchindex). +The set of remote targets are used as shards of a complete index. The host part of the url is used as key for a hash function which selects one of the shards (one of your remote servers).==Die Menge der entfernten Ziele wird als Shards eines vollständigen Index verwendet. Der Host-Teil der URL dient als Schlüssel für eine Hash-Funktion, die einen der Shards (einen Ihrer entfernten Server) auswählt. +This external Solr can be used instead of the internal Solr. It can also be used additionally to the internal Solr, then both Solr indexes are mirrored.==Dieses externe Solr kann anstelle des internen Solr verwendet werden. Es kann auch zusätzlich zum internen Solr verwendet werden, dann werden beide Solr-Indizes gespiegelt. +<a href="solr/select?q=*:*&start=0&rows=3&core=webgraph">/solr/select?q=*:*&start=0&rows=3&core=webgraph</a> for the webgraph core.<br/>==<a href="solr/select?q=*:*&start=0&rows=3&core=webgraph">/solr/select?q=*:*&start=0&rows=3&core=webgraph</a> für den webgraph-Core.<br/> +The 'RWI' (Reverse Word Index) is necessary for index transmission in distributed mode. For portal or intranet mode this must be switched off.==Der 'RWI' (Reverse Word Index) ist für die Indexübertragung im verteilten Modus notwendig. Für den Portal- oder Intranet-Modus muss dies abgeschaltet werden. +You can set one or more Solr targets here which are accessed as a shard. For several targets, list them using a ',' (comma) as separator.==Sie können hier ein oder mehrere Solr-Ziele festlegen, die als Shard angesprochen werden. Listen Sie bei mehreren Zielen diese mit einem ',' (Komma) als Trennzeichen auf. +As an internal indexing database a deep-embedded multi-core Solr is used and it is possible to attach also a remote Solr.==Als interne Indexierungsdatenbank wird ein tief eingebettetes Multi-Core-Solr verwendet, und es ist möglich, zusätzlich ein entferntes Solr anzubinden. +It's easy to <a href="https://wiki.yacy.net/index.php/Dev:Solr" target="_blank">attach an external Solr to YaCy</a>.==Es ist einfach, <a href="https://wiki.yacy.net/index.php/Dev:Solr" target="_blank">ein externes Solr an YaCy anzubinden</a>. +This will write the YaCy-embedded Solr index which is stored within the YaCy DATA directory.<br/>==Dies schreibt den in YaCy eingebetteten Solr-Index, der im YaCy-DATA-Verzeichnis gespeichert wird.<br/> +When a search request is made, all servers are accessed synchronously and the result is combined.==Wenn eine Suchanfrage gestellt wird, werden alle Server synchron angesprochen und das Ergebnis zusammengeführt. +write-enabled (if unchecked, the remote server(s) will only be used as search peers)==schreibaktiviert (wenn deaktiviert, werden die entfernten Server nur als Such-Peers verwendet) +If checked, only non-zero values and non-empty strings are written to Solr fields.==Wenn aktiviert, werden nur Werte ungleich null und nicht-leere Zeichenketten in Solr-Felder geschrieben. +Reject URLs/RWIs with known errors from peers. Disable to opt out.==URLs/RWIs mit bekannten Fehlern von Peers ablehnen. Deaktivieren, um abzuschalten. +use webgraph search index (rich information in second Solr core)==Webgraph-Suchindex verwenden (reichhaltige Informationen im zweiten Solr-Core) +If you switch off this index, a remote Solr must be activated.==Wenn Sie diesen Index abschalten, muss ein entferntes Solr aktiviert werden. +for the default search index (core: collection1) and at<br/>==für den Standard-Suchindex (Core: collection1) und unter<br/> +comma-separated (default: 404,410,-1; -1=DNS/network errors)==kommagetrennt (Standard: 404,410,-1; -1=DNS-/Netzwerkfehler) +<strong>Solr Host Administration Interface</strong><br/>==<strong>Solr-Host-Verwaltungsschnittstelle</strong><br/> +support peer-to-peer index transmission (DHT RWI index)==Peer-to-Peer-Indexübertragung unterstützen (DHT-RWI-Index) +The Solr native search interface is accessible at<br/>==Die native Solr-Suchschnittstelle ist erreichbar unter<br/> +for temporary errors; permanent errors stay blocked.==für temporäre Fehler; permanente Fehler bleiben blockiert. +use citation reference index (lightweight and fast)==Zitations-Referenzindex verwenden (leichtgewichtig und schnell) +YaCy supports multiple index storage locations.==YaCy unterstützt mehrere Index-Speicherorte. +Block known error URLs in DHT ==Bekannte Fehler-URLs im DHT blockieren +Use deep-embedded local Solr ==Tief eingebettetes lokales Solr verwenden +Lazy Value Initialization ==Verzögerte Wert-Initialisierung +Use remote Solr server(s) ==Entfernte(n) Solr-Server verwenden +': Index Sources & Targets==': Index-Quellen & -Ziele +Allow self-signed certificates==Selbstsignierte Zertifikate erlauben +Index Sources & Targets==Index-Quellen & -Ziele +<strong>Index Size</strong>==<strong>Indexgröße</strong> +Permanent error statuses==Permanente Fehlerstatus +Peer-to-Peer Operation==Peer-to-Peer-Betrieb +Sharding Method<br/>==Sharding-Methode<br/> +Web Structure Index==Web-Struktur-Index +Retry after (days)==Erneut versuchen nach (Tage) +Solr Search Index==Solr-Suchindex +Solr URL(s)<br/>==Solr-URL(s)<br/> +Solr Hosts<br/>==Solr-Hosts<br/> +#----------------------------- + +#File: IndexSchema_p.html +#--------------------------- +<span>The solr schema can also be retrieved as xml here. Click the API icon to see the xml. Just copy this xml to solr/conf/schema.xml to configure solr.</span>==<span>Das Solr-Schema kann hier auch als XML abgerufen werden. Klicken Sie auf das API-Symbol, um das XML zu sehen. Kopieren Sie dieses XML einfach nach solr/conf/schema.xml, um Solr zu konfigurieren.</span> +If you use a custom Solr schema you may enter a different field name in the column 'Custom Solr Field Name' of the YaCy default attribute name==Wenn Sie ein eigenes Solr-Schema verwenden, können Sie in der Spalte 'Custom Solr Field Name' einen anderen Feldnamen für den YaCy-Standard-Attributnamen eingeben +You may monitor progress (or stop the job) under <a href="IndexReIndexMonitor_p.html">IndexReIndexMonitor_p.html</a>==Sie können den Fortschritt überwachen (oder den Job stoppen) unter <a href="IndexReIndexMonitor_p.html">IndexReIndexMonitor_p.html</a> +If you unselected some fields, old documents in the index still contain the unselected fields.==Wenn Sie einige Felder abgewählt haben, enthalten alte Dokumente im Index weiterhin die abgewählten Felder. +To physically remove them from the index you need to reindex the documents.==Um sie physisch aus dem Index zu entfernen, müssen Sie die Dokumente neu indexieren. +Here you can reindex all documents with inactive fields.==Hier können Sie alle Dokumente mit inaktiven Feldern neu indexieren. + ... the core can be searched at== ... der Core kann durchsucht werden unter +Custom Solr Field Name==Eigener Solr-Feldname +': Solr Schema Editor==': Solr-Schema-Editor +Solr Schema Editor==Solr-Schema-Editor +show all available==alle verfügbaren anzeigen +Reindex documents==Dokumente neu indexieren +Select a core:==Einen Core auswählen: +show disabled==deaktivierte anzeigen +show active==aktive anzeigen +Attribute==Attribut +Comment==Kommentar +Active==Aktiv +#----------------------------- + +#File: IndexShare_p.html +#--------------------------- +The local index currently consists of (at least)==Der lokale Index besteht derzeit aus (mindestens) + receive grant default: <br />== Empfangs-Erlaubnis Standard: <br /> + for each remote peer == für jeden entfernten Peer + links/minute <br />== Links/Minute <br /> +reverse word indexes and==Reverse-Word-Indizes und + words/minute == Wörter/Minute +distribute <br />==verteilen <br /> +': Index Sharing==': Index-Freigabe +URL references==URL-Referenzen +Index Sharing==Index-Freigabe +receive==empfangen +#----------------------------- + +#File: IndexPackDownloader_p.html +#--------------------------- +Source</th><th width="360">Repo ID</th><th width="720">File</th><th width="360">Process==Quelle</th><th width="360">Repo-ID</th><th width="720">Datei</th><th width="360">Prozess +': Index Pack Downloader==': Index-Paket-Downloader +YaCy Pack Downloader==YaCy-Paket-Downloader +Available Packs==Verfügbare Pakete +#----------------------------- + +#File: IndexPackManager_p.html +#--------------------------- +Packs: Loaded List</th><th width="180">Size (KB)</th><th>Process==Pakete: Geladen-Liste</th><th width="180">Größe (KB)</th><th>Prozess +Packs: Hold List</th><th width="180">Size (KB)</th><th>Process==Pakete: Halteliste</th><th width="180">Größe (KB)</th><th>Prozess +Packs: Load List</th><th width="180">Size (KB)</th><th>Process==Pakete: Ladeliste</th><th width="180">Größe (KB)</th><th>Prozess +': Index Pack Manager==': Index-Paket-Manager +YaCy Pack Manager==YaCy-Paket-Manager +Pack Folders==Paket-Ordner +#----------------------------- + +#File: IndexPackGenerator_p.html +#--------------------------- + the collection name is used as part of the filename to describe the content. Exception: if the collection is "user", then you can name the content with a slug.== der Collection-Name wird als Teil des Dateinamens verwendet, um den Inhalt zu beschreiben. Ausnahme: wenn die Collection "user" ist, können Sie den Inhalt mit einem Slug benennen. +echo – micro-content (tweets, toots, short headlines, SMS corpora), podcasts, radio archives, audio lectures, spoken-word datasets, logs, incidents, telemetry==echo – Mikro-Inhalte (Tweets, Toots, kurze Schlagzeilen, SMS-Korpora), Podcasts, Radioarchive, Audio-Vorträge, Spoken-Word-Datensätze, Logs, Vorfälle, Telemetrie +scroll - non-technical documents: knowledge, encyclopedia, linguistic corpora, dictionaries, translation memories, texts, non-fiction books, historical books==scroll - nicht-technische Dokumente: Wissen, Enzyklopädie, Sprachkorpora, Wörterbücher, Übersetzungsspeicher, Texte, Sachbücher, historische Bücher + This will become a part of the filename, spaces will be replaced by "-"; must not be empty; should end with a language description, e.g. "-en"== Dies wird Teil des Dateinamens, Leerzeichen werden durch "-" ersetzt; darf nicht leer sein; sollte mit einer Sprachangabe enden, z.B. "-en" +This JSON is an elasticsearch index dump format and can be bulk-imported to elasticsearch. Here is an example for opensearch, using docker:<br />==Dieses JSON ist ein Elasticsearch-Index-Dump-Format und kann per Bulk in Elasticsearch importiert werden. Hier ist ein Beispiel für OpenSearch mit Docker:<br /> +spirit – related to non-textual data (possibly only metadata): art, music, game assets, creative-commons media (non-text culture loot)==spirit – bezogen auf nicht-textuelle Daten (möglicherweise nur Metadaten): Kunst, Musik, Spiel-Assets, Creative-Commons-Medien (nicht-textuelle Kulturbeute) +core - technical documentation, operating systems, computer hardware, open source and free software, manuals, protocol standards==core - technische Dokumentation, Betriebssysteme, Computer-Hardware, Open Source und freie Software, Handbücher, Protokollstandards +Make a search, get 10 results, search in fields text_t, title, description with boosts:<br />==Eine Suche durchführen, 10 Ergebnisse erhalten, in den Feldern text_t, title, description mit Boosts suchen:<br /> +JSON (Rich and full-text Elasticsearch data, one document per line in one flat JSON file)==JSON (reichhaltige und Volltext-Elasticsearch-Daten, ein Dokument pro Zeile in einer flachen JSON-Datei) +fiction - fictional documents: movies, stories, series, books (fiction, science-fiction)==fiction - fiktionale Dokumente: Filme, Geschichten, Serien, Bücher (Belletristik, Science-Fiction) +vault - sensitive data: secrets, leaks, non-public documents, security advisories==vault - sensible Daten: Geheimnisse, Leaks, nicht-öffentliche Dokumente, Sicherheitshinweise +XML (Rich and full-text Solr data, one document per line in one large xml file,==XML (reichhaltige und Volltext-Solr-Daten, ein Dokument pro Zeile in einer großen XML-Datei, +regula - non-technical standards: industry standards, laws, rules, compliance==regula - nicht-technische Standards: Industriestandards, Gesetze, Regeln, Compliance +can be processed with shell tools, can be imported with DATA/PACKS/load/)==kann mit Shell-Werkzeugen verarbeitet und mit DATA/PACKS/load/ importiert werden) +exportable with status code 200 - the remaining are error documents.==exportierbar mit Statuscode 200 - die übrigen sind Fehlerdokumente. +map - geological data, geolocation-data, earth/world information==map - geologische Daten, Geolokalisierungsdaten, Erd-/Weltinformationen +mix - a mix of document types, for content from wide web crawls==mix - eine Mischung von Dokumenttypen, für Inhalte aus breiten Web-Crawls +Slug - describe the content<br>(only if collection is "user")==Slug - beschreiben Sie den Inhalt<br>(nur wenn die Collection "user" ist) + *:* (default) is a catch-all; format: <field-name>:== *:* (Standard) ist ein Auffangmuster; Format: <field-name>: +gem - research, papers, university publications, science==gem - Forschung, Fachartikel, Universitätspublikationen, Wissenschaft + .*.* (default) is a catch-all; format: java regex== .*.* (Standard) ist ein Auffangmuster; Format: Java-Regex +Set a Category (this goes into the filename)==Legen Sie eine Kategorie fest (diese wird Teil des Dateinamens) +Start docker container of opensearch:<br />==Docker-Container von OpenSearch starten:<br /> +Pack</td><td>Process</td><td>Size (KB)==Paket</td><td>Prozess</td><td>Größe (KB) +The local index currently contains==Der lokale Index enthält derzeit +Bulk-upload the index file:<br />==Die Index-Datei per Bulk hochladen:<br /> +Create the search index:<br />==Den Suchindex erstellen:<br /> +Unblock index creation:<br />==Index-Erstellung freigeben:<br /> +': Index Pack Generator==': Index-Paket-Generator +Index Pack Generator==Index-Paket-Generator +YaCy Pack Generator==YaCy-Paket-Generator +Finished export of==Export abgeschlossen von +Documents to file==Dokumenten in Datei +Index Collection==Index-Collection +documents, only==Dokumente, nur +Search Query -==Suchanfrage - +Export to file==In Datei exportieren +Export Format==Export-Format +is running ..==läuft .. +URL Filter==URL-Filter +XML (RSS)==XML (RSS) +Pack List==Paketliste +failed:==fehlgeschlagen: +#----------------------------- + +#File: IndexExportImportSolr_p.html +#--------------------------- +(This may take several minutes. Please be patient and wait until the page reloads.)==(Dies kann einige Minuten dauern. Bitte haben Sie Geduld und warten Sie, bis die Seite neu lädt.) +An error occurred while trying to restore the Solr dump.==Beim Wiederherstellen des Solr-Dumps ist ein Fehler aufgetreten. +An error occurred while trying to create the Solr dump.==Beim Erstellen des Solr-Dumps ist ein Fehler aufgetreten. +documents (including non-http-200 error pages).==Dokumente (einschließlich Fehlerseiten mit einem anderen Status als HTTP 200). +The local index currently contains==Der lokale Index enthält derzeit +': URL Database Administration==': URL-Datenbank-Verwaltung +Dump and Restore of Solr Index==Dump und Wiederherstellung des Solr-Index +Stored a solr dump to file==Ein Solr-Dump wurde in eine Datei gespeichert +Solr Index Export/Import==Solr-Index Export/Import +Dump File (full path)==Dump-Datei (vollständiger Pfad) +#----------------------------- + +#File: IndexImportJsonList_p.html +#--------------------------- +You can download jsonlist archives from the <a href="https://searchlab.eu" target="_blank">YaCy Searchlab</a> portal.==Sie können jsonlist-Archive vom <a href="https://searchlab.eu" target="_blank">YaCy Searchlab</a>-Portal herunterladen. +JsonList File Selection: select an jsonlist file (which may be gz compressed)==JsonList-Dateiauswahl: wählen Sie eine jsonlist-Datei (die gz-komprimiert sein kann) +No import thread is running, you can start a new thread here==Es läuft kein Import-Thread, Sie können hier einen neuen Thread starten +JSON List Index Dump File Import==Import einer JSON-List-Index-Dump-Datei +': JsonList Import==': JsonList-Import +pages per second==Seiten pro Sekunde +Remaining Time:==Verbleibende Zeit: +Import Process==Import-Vorgang +JsonList File:==JsonList-Datei: +Running Time:==Laufzeit: +Processed:==Verarbeitet: +Entries==Einträge +minutes==Minuten +Speed:==Geschwindigkeit: +hours,==Stunden, +File:==Datei: +Url:==URL: +or==oder +#----------------------------- + +#File: IndexImportWarc_p.html +#--------------------------- +Warc File Selection: select an warc file (which may be gz compressed)==Warc-Dateiauswahl: wählen Sie eine warc-Datei (die gz-komprimiert sein kann) +No import thread is running, you can start a new thread here==Es läuft kein Import-Thread, Sie können hier einen neuen Thread starten +You can download warc archives for example here==Warc-Archive können Sie zum Beispiel hier herunterladen +Web Archive File Import==Import einer Web-Archiv-Datei +pages per second==Seiten pro Sekunde +Remaining Time:==Verbleibende Zeit: +Import Process==Import-Vorgang +': Warc Import==': Warc-Import +Running Time:==Laufzeit: +Collection:==Sammlung: +Processed:==Verarbeitet: +Warc File:==Warc-Datei: +Entries==Einträge +minutes==Minuten +Speed:==Geschwindigkeit: +hours,==Stunden, +File:==Datei: +Url:==URL: +or==oder #----------------------------- -#File: js/jquery-ui-1.7.2.min.js +#File: IndexImportZim_p.html #--------------------------- -Loading…==Lade… +No import thread is running, you can start a new thread here==Es läuft kein Import-Thread, Sie können hier einen neuen Thread starten +You can download ZIM files for example here==ZIM-Dateien können Sie zum Beispiel hier herunterladen +Zim File Selection: select a '.zim' file==Zim-Dateiauswahl: wählen Sie eine '.zim'-Datei +': ZIM File Import==': ZIM-Datei-Import +pages per second==Seiten pro Sekunde +Remaining Time:==Verbleibende Zeit: +ZIM File Import==ZIM-Datei-Import +Import Process==Import-Vorgang +Running Time:==Laufzeit: +Collection:==Sammlung: +Processed:==Verarbeitet: +ZIM File:==ZIM-Datei: +Entries==Einträge +minutes==Minuten +Speed:==Geschwindigkeit: +hours,==Stunden, +File:==Datei: #----------------------------- -#File: js/jquery.ui.all.min.js +#File: ConfigAccountList_p.html #--------------------------- -Loading…==Lade… +User</th><th>First name</th><th>Last name</th><th>Address</th><th>Last Access</th><th>Rights</th><th>Time</th><th>Traffic==Benutzer</th><th>Vorname</th><th>Nachname</th><th>Adresse</th><th>Letzter Zugriff</th><th>Rechte</th><th>Zeit</th><th>Traffic +': User Accounts==': Benutzerkonten +User Accounts==Benutzerkonten +User List==Benutzerliste #----------------------------- -# EOF +#File: ConfigUser_p.html +#--------------------------- +Username too short. Username must be >= 4 Characters.==Benutzername zu kurz. Benutzername muss >= 4 Zeichen lang sein. +Username already used (not allowed).==Benutzername bereits vergeben (nicht erlaubt). +Repeat password</label>:==Passwort wiederholen</label>: +Passwords do not match.==Passwörter stimmen nicht überein. +User Account Editor==Benutzerkonten-Editor +First name</label>:==Vorname</label>: +right</label><br />==Recht</label><br /> +Edit current user:==Aktuellen Benutzer bearbeiten: +Last name</label>:==Nachname</label>: +Timelimit</label>:==Zeitlimit</label>: +Time used</label>:==Verbrauchte Zeit</label>: +Username</label>:==Benutzername</label>: +Password</label>:==Passwort</label>: +back to user list==zurück zur Benutzerliste +Address</label>:==Adresse</label>: +': User Editor==': Benutzer-Editor +Generic error.==Allgemeiner Fehler. +User created:==Benutzer erstellt: +User changed:==Benutzer geändert: +Rights:==Rechte: +#----------------------------- + +#File: ContentAnalysis_p.html +#--------------------------- +This field is set during parsing and is influenced by two attributes for the <a href="https://lucene.apache.org/solr/5_5_2/solr-core/org/apache/solr/update/processor/TextProfileSignature.html" target="_blank">TextProfileSignature</a> class.==Dieses Feld wird beim Parsen gesetzt und wird von zwei Attributen der Klasse <a href="https://lucene.apache.org/solr/5_5_2/solr-core/org/apache/solr/update/processor/TextProfileSignature.html" target="_blank">TextProfileSignature</a> beeinflusst. +Double Content Detection</legend><p>Double-Content detection is done using a ranking on a 'unique'-Field, named 'fuzzy_signature_unique_b'.==Doppelte-Inhalte-Erkennung</legend><p>Die Doppelte-Inhalte-Erkennung erfolgt über ein Ranking auf einem 'unique'-Feld namens 'fuzzy_signature_unique_b'. +The quantRate is a measurement for the number of words that take part in a signature computation. The higher the number, the less==Die quantRate ist ein Maß für die Anzahl der Wörter, die an einer Signaturberechnung teilnehmen. Je höher die Zahl, desto weniger +For minTokenLen = 2 the quantRate value should not be below 0.24; for minTokenLen = 3 the quantRate value must be not below 0.5.==Für minTokenLen = 2 sollte der quantRate-Wert nicht unter 0,24 liegen; für minTokenLen = 3 darf der quantRate-Wert nicht unter 0,5 liegen. +This is the minimum length of a word which shall be considered as element of the signature. Should be either 2 or 3.==Dies ist die minimale Länge eines Wortes, das als Element der Signatur betrachtet werden soll. Sollte entweder 2 oder 3 sein. +These are document analysis attributes.==Dies sind Attribute der Dokumentanalyse. +words are used for the signature.==Wörter werden für die Signatur verwendet. +': Content Analysis==': Inhaltsanalyse +Content Analysis==Inhaltsanalyse +#----------------------------- + +#File: CrawlMonitorRemoteStart.html +#--------------------------- +<strong>Remote crawl start points, crawl is ongoing</strong>==<strong>Entfernte Crawl-Startpunkte, Crawl läuft</strong> +<strong>Remote crawl start points, finished:</strong>==<strong>Entfernte Crawl-Startpunkte, abgeschlossen:</strong> +': Monitor for remotely started global crawls==': Monitor für entfernt gestartete globale Crawls +Recently started remote crawls in progress==Kürzlich gestartete entfernte Crawls in Bearbeitung +<strong>Intention/Description</strong>==<strong>Absicht/Beschreibung</strong> +<strong>Accept '?' URLs</strong>==<strong>'?'-URLs akzeptieren</strong> +<strong>Start Time</strong>==<strong>Startzeit</strong> +<strong>Peer Name</strong>==<strong>Peer-Name</strong> +<strong>Start URL</strong>==<strong>Start-URL</strong> +<strong>Depth</strong>==<strong>Tiefe</strong> +#----------------------------- + +#File: SearchAccessRate_p.html +#--------------------------- +When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, results resorting becomes only applicable on demand, server-side.==Wenn ein Benutzer mit eingeschränkten Rechten (nicht authentifiziert oder ohne erweitertes Suchrecht) ein Limit überschreitet, ist die Ergebnis-Neusortierung nur noch auf Anfrage, serverseitig verfügbar. +When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the search scope falls back to only this local peer index.==Wenn ein Benutzer mit eingeschränkten Rechten (nicht authentifiziert oder ohne erweitertes Suchrecht) ein Limit überschreitet, wird der Suchbereich auf nur diesen lokalen Peer-Index zurückgesetzt. +When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the snippets fetch strategy falls back to 'CACHEONLY'==Wenn ein Benutzer mit eingeschränkten Rechten (nicht authentifiziert oder ohne erweitertes Suchrecht) ein Limit überschreitet, wird die Snippet-Abrufstrategie auf 'CACHEONLY' zurückgesetzt +You can configure here limitations on access rate to this peer search interface by unauthenticated users and users without extended search right==Hier können Sie Beschränkungen der Zugriffsrate auf die Suchschnittstelle dieses Peers für nicht authentifizierte Benutzer und Benutzer ohne erweitertes Suchrecht konfigurieren +When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the search is blocked.==Wenn ein Benutzer mit eingeschränkten Rechten (nicht authentifiziert oder ohne erweitertes Suchrecht) ein Limit überschreitet, wird die Suche blockiert. +(check the 'Remote results resorting' section in the <a href="ConfigPortal_p.html">Search Portal</a> configuration page).==(siehe den Abschnitt 'Remote results resorting' auf der Konfigurationsseite <a href="ConfigPortal_p.html">Suchportal</a>.) +(check the default Snippet Fetch Strategy on the <a href="ConfigPortal_p.html">Search Portal</a> configuration page).==(siehe die Standard-Snippet-Abrufstrategie auf der Konfigurationsseite <a href="ConfigPortal_p.html">Suchportal</a>.) +Access rate limitations to the peer-to-peer search mode with browser-side JavaScript results resorting enabled==Zugriffsraten-Beschränkungen für den Peer-to-Peer-Suchmodus mit aktivierter browserseitiger JavaScript-Ergebnis-Neusortierung +(see the <a href="ConfigAccounts_p.html">Accounts</a> configuration page for details on users' rights).==(Details zu den Benutzerrechten finden Sie auf der Konfigurationsseite <a href="ConfigAccounts_p.html">Konten</a>.) +<em id="changeInfo">Changes will take effect immediately.</em>==<em id="changeInfo">Änderungen werden sofort wirksam.</em> +Access rate limitations to the peer-to-peer search mode.==Zugriffsraten-Beschränkungen für den Peer-to-Peer-Suchmodus. +Access rate limitations to this peer search interface.==Zugriffsraten-Beschränkungen für die Suchschnittstelle dieses Peers. +Peer-to-peer search with JavaScript results resorting==Peer-to-Peer-Suche mit JavaScript-Ergebnis-Neusortierung +Limitations on snippet loading from remote websites.==Beschränkungen beim Laden von Snippets von entfernten Websites. +Local Search access rate limitations==Beschränkungen der lokalen Suchzugriffsrate +': Local Search access rate==': Lokale Suchzugriffsrate +Max searches in 10mn==Max. Suchen in 10min +Max searches in 10mn==Max. Suchen in 10min +Max searches in 1mn==Max. Suchen in 1min +Peer-to-peer search==Peer-to-Peer-Suche +Remote snippet load==Entferntes Snippet-Laden +Max searches in 3s==Max. Suchen in 3s +Max searches in 3s==Max. Suchen in 3s +limitations==Beschränkungen +YaCy search==YaCy-Suche +#----------------------------- + +#File: Trails.html +#--------------------------- +CyTag Trails==CyTag-Spuren +#----------------------------- + +#File: TransNews_p.html +#--------------------------- + <small>Vote on this translation. If you vote positive the translation is added to your local translation list.</small>== <small>Stimmen Sie über diese Übersetzung ab. Wenn Sie positiv abstimmen, wird die Übersetzung Ihrer lokalen Übersetzungsliste hinzugefügt.</small> + <small>You can check your outgoing messages <a href="News.html?page=3">here</a>.</small>== <small>Ihre ausgehenden Nachrichten können Sie <a href="News.html?page=3">hier</a> prüfen.</small> +To edit or add local translations you can use <a href="Translator_p.html">Translator_p.html</a>.==Zum Bearbeiten oder Hinzufügen lokaler Übersetzungen können Sie <a href="Translator_p.html">Translator_p.html</a> verwenden. +The remote peer can vote on your translation and add it to its own local translation.<br>==Der entfernte Peer kann über Ihre Übersetzung abstimmen und sie zu seiner eigenen lokalen Übersetzung hinzufügen.<br> +You can share your local addition to translations and distribute it to other peers.==Sie können Ihre lokale Ergänzung zu Übersetzungen teilen und an andere Peers verteilen. +entries available) ==Einträge verfügbar) +Translation News for Language==Übersetzungs-News für Sprache +</a></th><th>Originator==</a></th><th>Urheber +': Translation News==': Übersetzungs-News +File:</th><th>==Datei:</th><th> +Translation:==Übersetzung: +English:==Englisch: +existing==vorhanden +score==Bewertung +#----------------------------- + +#File: VFS.html +#--------------------------- +User storage in the browser cache with file-system-like navigation.==Benutzerspeicher im Browser-Cache mit dateisystemartiger Navigation. +Select a <code>.txt</code> or <code>.md</code> file to preview.==Wählen Sie eine <code>.txt</code>- oder <code>.md</code>-Datei für die Vorschau. +No files yet. Upload a file or create a folder.==Noch keine Dateien. Laden Sie eine Datei hoch oder erstellen Sie einen Ordner. +': Virtual File System==': Virtuelles Dateisystem +Virtual File System==Virtuelles Dateisystem +Upload File==Datei hochladen +New Folder==Neuer Ordner +Edit file==Datei bearbeiten +Preview==Vorschau +Discard==Verwerfen +Save==Speichern +#----------------------------- + +#File: api/citation.html +#--------------------------- +Similar documents from different hosts:==Ähnliche Dokumente von verschiedenen Hosts: +List of other web pages with citations==Liste anderer Webseiten mit Zitaten +': Document Citations for url==': Dokument-Zitate für URL +Document Citations for<br>==Dokument-Zitate für<br> +Sentences in==Sätzen in +List of==Liste von +#----------------------------- + +#File: YaCySearchPluginFF.html +#--------------------------- +In Mozilla Firefox, you can the Search-Plugin via the search box on the toolbar.<br />In Mozilla (Seamonkey) you can access the Search-Plugin via the Sidebar or the Location Bar.==In Mozilla Firefox können Sie das Suchplugin über das Suchfeld in der Symbolleiste aufrufen.<br />In Mozilla (Seamonkey) können Sie das Suchplugin über die Seitenleiste oder die Adressleiste aufrufen. +Simply click on the link shown below to integrate the YaCy Firefox Search-Plugin into your browser.==Klicken Sie einfach auf den unten gezeigten Link, um das YaCy Firefox-Suchplugin in Ihren Browser zu integrieren. +<b>YaCy Firefox Search-Plugin Installation:</b>==<b>YaCy Firefox-Suchplugin-Installation:</b> +<b>Install the YaCy search plugin.</b>==<b>Installieren Sie das YaCy-Suchplugin.</b> +: Firefox Search Plugin==: Firefox-Suchplugin +': Quick Crawl Link==': Schnell-Crawl-Link +#----------------------------- + +#File: env/templates/simpleSearchHeader.template +#--------------------------- +<span class="hidden-sm">Search Interfaces<b class="caret"></b></span>==<span class="hidden-sm">Suchschnittstellen<b class="caret"></b></span> +<i>external</i> Community (Web Forums)==<i>extern</i> Community (Web-Foren) +<i>API</i> Solr Default Core / JSON==<i>API</i> Solr Standard-Core / JSON + <i>Example Calls to the Search API:</i>== <i>Beispielaufrufe der Such-API:</i> +<i>API</i> Solr Default Core / XML==<i>API</i> Solr Standard-Core / XML +<i>external</i> Git Repository==<i>extern</i> Git-Repository +<span class="sr-only">Toggle navigation</span>==<span class="sr-only">Navigation umschalten</span> +<i>external</i> Download YaCy==<i>extern</i> YaCy herunterladen +<i>external</i> Bugtracker==<i>extern</i> Bugtracker +JavaScript information==JavaScript-Informationen +<span>Log in</span>==<span>Anmelden</span> +About This Page==Über diese Seite +Compare Search==Vergleichssuche +YaCy Tutorials==YaCy-Tutorials +File Search==Datei-Suche +Web Search==Web-Suche +URL Viewer==URL-Betrachter +#----------------------------- + +#File: yacychat.html +#--------------------------- +This Chat is private. YaCy does not keep any history — only your browser remembers the current conversation.==Dieser Chat ist privat. YaCy speichert keinen Verlauf — nur Ihr Browser merkt sich die aktuelle Unterhaltung. +<span class="attachment-filename" id="attachmentFilename">Attach PNG/JPG or text (.txt/.md/.tex)</span>==<span class="attachment-filename" id="attachmentFilename">PNG/JPG oder Text anhängen (.txt/.md/.tex)</span> +<span class="search-hint" id="searchHint">Attach Search Results</span>==<span class="search-hint" id="searchHint">Suchergebnisse anhängen</span> +<span class="toggle-label">Show System</span>==<span class="toggle-label">System anzeigen</span> +<span>Default Dialog Augmentation:</span>==<span>Standard-Dialog-Augmentierung:</span> +no search, allow attachments==keine Suche, Anhänge erlauben +use global search==globale Suche verwenden +use local search==lokale Suche verwenden +Download Chat==Chat herunterladen +Upload Chat==Chat hochladen +Clear Chat==Chat leeren +YaCy Chat==YaCy-Chat +User==Benutzer +#----------------------------- diff --git a/locales/es.lng b/locales/es.lng index 19a8c521d..06a2b14bb 100644 --- a/locales/es.lng +++ b/locales/es.lng @@ -306,7 +306,7 @@ Set Configuration==Establecer configuración What you should do next:==Lo que debes hacer a continuación: Your basic configuration is complete! You can now (for example)==¡Su configuración básica está completa! Ahora puedes (por ejemplo) You did not open a port in your firewall or your router does not forward the server port to your peer==No abrió un puerto en su firewall o su enrutador no reenvía el puerto del servidor a su par -You can also use your peer without opening it, but this is not recomended==También puede usar su nodo sin abrirlo, pero no se recomienda +You can also use your peer without opening it, but this is not recommended==También puede usar su nodo sin abrirlo, pero no se recomienda just <==simplemente < start an uncensored search==iniciar una búsqueda sin censura monitor at the network page</a> what the other peers are doing==monitorear en la página de la red </a> lo que hacen los otros compañeros @@ -358,16 +358,6 @@ Simple Editor==Editor simple to add untranslated text==agregar texto sin traducir #----------------------------- -#File: ConfigLiveSearch.html -#--------------------------- -Advantages:==Ventajas: -Disadvantages:==Desventajas: -"Search"=="Buscar" -Defaults<==Valores predeterminados< -url<==url< ->Themes<==>Tema< -#----------------------------- - #File: ConfigNetwork_p.html #--------------------------- Network Configuration==Configuración de la Red @@ -1503,7 +1493,7 @@ Index Export/Import==Importar/Exportar Índice Target Analysis==Análisis target Process Scheduler==Procesador de Procesos ### ADMINISTRATION ### -System Admiistration==Administración del Sistema +System Administration==Administración del Sistema Index Administration==Administración del Índice Filter & Blacklists==Filtro & Blacklists Content Semantic==Contenido Semántico @@ -1558,12 +1548,6 @@ Advanced Settings==Configuración Avanzada Advanced Properties==Propiedades Avanzadas #----------------------------- -#File: env/templates/submenuContentIntegration.template -#--------------------------- -Import phpBB3 forum==Importar forum phpBB3 -Import Mediawiki dumps==Importar dump Mediawiki -#----------------------------- - #File: env/templates/submenuCrawlMonitor.template #--------------------------- Overview</a>==Resumen</a> @@ -1612,12 +1596,6 @@ Remote Crawling==Crawling Remoto >Autocrawl<==>Autocrawl< #----------------------------- -#File: env/templates/submenuPortalIntegration.template -#--------------------------- -Search Portal Integration==Integración del portal de búsqueda -Generic Search Portal==Portal de búsqueda genérico -#----------------------------- - #File: env/templates/submenuPublication.template #--------------------------- Wiki==Wiki @@ -1631,10 +1609,6 @@ Ranking and Heuristics==Ranking y Heurísticas >Heuristics<==>Heurísticas< #--------------------------- -#File: env/templates/submenuSearchIntegration.template -#--------------------------- -#----------------------------- - #File: env/templates/submenuSemantic.template #--------------------------- Content Semantic==Contenido Semántico @@ -1653,11 +1627,6 @@ Basic Configuration==Configuración Básica Network Configuration==Configuración de la Red #----------------------------- -#File: env/templates/submenuViewLog.template -#--------------------------- -Server Log==Log del server -#----------------------------- - #File: env/templates/submenuWebStructure.template #--------------------------- #----------------------------- @@ -1687,10 +1656,6 @@ could not be found.==no se ha podido encontrar. Did you mean:==Quizás quizo decir: #----------------------------- -#File: www/welcome.html -#--------------------------- -#----------------------------- - #File: js/Crawler.js #--------------------------- #----------------------------- @@ -1703,18 +1668,3 @@ Did you mean:==Quizás quizo decir: >Date==>Fecha #----------------------------- -#File: js/jquery-flexigrid.js -#--------------------------- -#----------------------------- - -#File: js/jquery-ui-1.7.2.min.js -#--------------------------- -Loading…==Cargando… -#----------------------------- - -#File: js/jquery.ui.all.min.js -#--------------------------- -Loading…==Cargando… -#----------------------------- - -# EOF diff --git a/locales/fr.lng b/locales/fr.lng index ba5cfcecf..32c7dcf71 100644 --- a/locales/fr.lng +++ b/locales/fr.lng @@ -424,7 +424,7 @@ You should set a password at the <a href="ConfigAccounts_p.html">Accounts Menu</ Your Peer name is a default name; please set an individual peer name.== Le nom de votre noeud est un nom par défaut. Veuillez lui donner un nom individuel. You did not open a port in your firewall or your router does not forward the server port to your peer.==Vous n'avez pas ouvert de port sur votre pare-feu ou votre routeur ne fournit pas le port serveur à votre pair. This is needed if you want to fully participate in the YaCy network.==Cela est nécessaire pour participer pleinement au réseau YaCy. -You can also use your peer without opening it, but this is not recomended.==Vous pouvez aussi utiliser votre pair sans l'ouvrir, mais cela n'est pas recommandé. +You can also use your peer without opening it, but this is not recommended.==Vous pouvez aussi utiliser votre pair sans l'ouvrir, mais cela n'est pas recommandé. Deutsch==Allemand #----------------------------- @@ -458,7 +458,7 @@ Default is to add the links to the local crawl queue (your peer crawls the linke add as global crawl job==Ajouter en tant que tâche d'indexation globale opensearch load external search result list from active systems below==Rechercher sur les hôtes OpenSearch actifs ci-dessous When using this heuristic, then every new search request line is used for a call to listed opensearch systems.==Lorsque vous utilisez cette heuristique, toute nouvelle requête de recherche est également transmise aux hôtes OpenSearch actifs. -20 results are taken from remote system and loaded simultanously, parsed and indexed immediately.==20 résultats sont récupérés depuis les machines distantes et simultanément chargés, analysés et immédiatement indexés. +20 results are taken from remote system and loaded simultaneously, parsed and indexed immediately.==20 résultats sont récupérés depuis les machines distantes et simultanément chargés, analysés et immédiatement indexés. To find out more about OpenSearch see==Pour en savoir plus sur OpenSearch, voir Available/Active Opensearch System==Systèmes OpenSearch disponibles/actifs >Active<==>Actif< @@ -599,27 +599,12 @@ Add Navigators==Ajout de groupes de navigation >append==>Ajouter #----------------------------- -#File: ConfigSkins_p.html -#--------------------------- -Skin Selection==Choix de thème -You can change the appearance of YaCy with skins. Select one of the default skins, download new skins, or create your own skin.==Vous pouvez changer l'apparence de YaCy avec des thèmes. Choisissez un des thèmes par défaut, téléchargez de nouveaux thème, ou créez votre propre thème. -Current skin:==thème actuel: -Available Skins:==Thème disponibles: -"Use"=="Utiliser" -"Delete"=="Supprimer" -Install new skin from URL:==Installer un nouveau thème depuis l'URL suivante: -Use this skin==Utiliser ce thème -"install"=="installer" -Unable to get URL:==Impossible d'obtenir l'url: -Error saving the skin.==Erreur en sauvegardant le thème. -#----------------------------- - #File: ConfigUpdate_p.html #--------------------------- : System Update==: Mise à jour du système >System Update<==>Mise à jour du système< Release will be installed. Please wait.==La version va être installée. Veuillez patienter. -This servlet can only be used on operation systems that are currently supported for deploy functions.==Cette servlet ne peut être utilisée que sur les systèmes d'exploitation actuellement supportés pour les fonctions de déploiement. +This servlet can only be used on operating systems that are currently supported for deploy functions.==Cette servlet ne peut être utilisée que sur les systèmes d'exploitation actuellement supportés pour les fonctions de déploiement. If you see this message this means that your operation system is not supported.==Si vous voyez ce message, ça signifie que votre système d'exploitation n'est pas supporté. Manual System Update==Mise à jour manuelle du système Current installed Release==Version actuellement installée @@ -737,7 +722,7 @@ only urls with the <phrase> in the url==uniquement les urls contenant la & only urls with the <phrase> within outbound links of the document==uniquement les urls dont le document a un lien contenant la <phrase> only urls with extension <ext>==uniquement les urls avec l'extension <ext> only urls from host <host>==uniquement les urls de l'hôte <host> -only pages with as-author-anotated <author>==uniquement les pages avec l'auteur <author> indiqué +only pages with as-author-annotated <author>==uniquement les pages avec l'auteur <author> indiqué only pages from top-level-domains <tld>==uniquement les pages des domaines de premier niveau <tld> only resources from http or https servers==uniquement les ressources de serveurs http ou https only resources from ftp servers==uniquement les ressources de serveurs ftp @@ -774,63 +759,6 @@ json search results==résultats de recherche json for ajax developers: get the search rss feed and replace the '.rss' extension in the search result url with '.json'==pour les développeurs ajax: rechercher comme flux RSS et dans l'URL de résultat remplacer l'extension '.rss' par '.json' #----------------------------- -#File: IndexCleaner_p.html -#--------------------------- -Index Cleaner==Nettoyeur d'index -#ThreadAlive: -#ThreadToString: -Total URLs searched:==URLs totales recherchées: -Blacklisted URLs found:==URLS en liste noire trouvées: -Percentage blacklisted:==Pourcentage en liste noire: -last searched URL:==dernière URL recherchée: -last blacklisted URL found:==dernière URL trouvée en liste noire: -RWIs at Start:==RWIs au départ: -RWIs now:==RWIs maintenant: -wordHash in Progress:==Mots-Hash en cours: -last wordHash with deleted URLs:==dernier mot-hash avec URLs supprimées: -Number of deleted URLs in on this Hash:==Nombre d'URLs supprimés sur ce hachage: -UrldbCleaner - Clean up the database by deletion of blacklisted urls:==UrlDBCleaner - Nettoie la base de données en supprimant les URLs en liste noire: -Start/Resume==Départ/Reprise -Stop==Arrêt -Pause==Pause -RWIDbCleaner - Clean up the database by deletion of words with reference to blacklisted urls:==RWIDBCleaner - Nettoie la base de données en supprimant les mots référençants les URLs en liste noire: -#----------------------------- - -#File: IndexControl_p.html -#--------------------------- -Index Control==Contrôle d'index -Index Administration==Administration d'index -The local index currently consists of (at least) #[wcount]# reverse word indexes and #[ucount]# URL references==Pour l'instant, l'index local consiste en #[wcount]# mots et ##[ucount]# URLs. -"Show URL Entries for Word"=="Montrer les entrées URL pour les mots" -"Generate List"=="Générer une liste" -"Show URL Entries for Word-Hash"=="Montrer les entrées URL pour les Word-Hash" -"Transfer to other peer"=="Transférer à un autre pair" -#URL:==URL: -"Show Details for URL"=="Montrer les détails pour l'URL" -#URL-Hash:==URL-Hash: -"Show Details for URL-Hash"=="Montrer les détails pour l'URL-hash" -DHT Transmission control:==Contrôle de transmission DHT: -The transmission is necessary for the functionality of global search on other peers.==Le partage est nécessaire, pour que la recherche globale fonctionne avec les autres noeuds. -If you switch off distribution or receipt of RWIs you will be banned from global search.==Si vous désactivez la transmission ou la reception des RWIs, vous serez bannis de la recherche globale. -Index Distribution:==Partage d'index: -This enables automated, DHT-ruled Index Transmission to other peers.==Cela permet le partage automatique des index à base de DHT avec les autres noeuds. -If checked, DHT-Transmission is enabled even during crawling.==Si activé, le partage des DHT est autorisé pendant les crawls. -Index Receive:==Réception d'index: -Accept remote Index Transmissions. This works only if you are a senior peer.==Accepte la transmission d'index distant. Cela ne fonctionne que si vous êtes un noeud senior. -The DHT-rules do not work without this function.==Les règles DHT ne fonctionnent pas sans l'activation de cette fonction. -If checked, your peer silently ignores transmitted URLs that match your blacklist==Si activé, votre noeud ignore silencieusement les URLs qui correspondent à votre blacklist. -#Noeud Tags:==Noeud Tags: -If your peer runs in 'Robinson Mode' (Distribution and Receive off), you probably run YaCy as a search engine==Si votre noeud fonctionne en 'Robinson Mode' (émission et reception désactivées), alors vous l'utilisez peut-être comme moteur de recherche -for your own search portal. Please describe your search portal with some keywords (comma-separated).==Pour votre propre portail de recherche. Prière de décrire votre portail par quelques mots-clés (séparés par des virgules). -This will help to use your peer as search target even if you do not distribute your web index by==Cela aidera à utiliser votre noeud comme cible de recherche même si vous ne partagez pas votre index web par -DHT distribution.==distribution DHT. -"set"=="Enregistrer" -Changes will take effect immediately==Les changements prendrons effet immédiatement -#Let this translation here to avoid errors. -Word:</td>==Mot:</td> -Word-Hash:</td>==Mot-Hash:</td> -#----------------------------- - #File: CrawlStartExpert.html #--------------------------- <html lang="en">==<html lang="fr"> @@ -1047,31 +975,6 @@ from index==de l'index "Delete Load Errors"=="Supprimer" #----------------------------- -#File: IndexCreateIndexingQueue_p.html -#--------------------------- -Index Creation/Indexing Queue==Création d'index/File d'indexation -Index Creation: Indexing Queue==Création d'index: File d'indexation -The indexing queue is empty==La file d'indexatoin est vide. -"clear indexing queue"=="Effacer la file d'indexation" -There are <strong>#[num]#</strong> entries in the indexing queue. Showing <strong>#[show]#</strong> entries with a total size of <strong>#[totalSize]#</strong>.==Il y a <strong>#[num]#</strong> entrées dans la file d'indexation. <strong>#[show]#</strong> entrées d'une taille totale de <strong>#[totalSize]#</strong>. -Show last==Montrer la dernière. -</a> entries.==</a> entrée. -Initiator==Initiateur -Depth==Profondeur -Modified Date==Date de modfication -Anchor Name==Nom de l'ancre -#URL==URL -Size</th>==Taille</th> -Delete==Supprimer -Rejected URL List:</strong> There are #[num]# entries in the rejected-urls list.==Liste des URLs rejetées:</strong> Il y a #[num]# entrées dans la liste des URLs rejetées. -Showing latest #[num]# entries.==Voir les #[num]# dernières entrées. -"show more"=="En voir plus" -"clear list"=="Effacer la liste" -There are #[num]# entries in the rejected-queue:==Il y a #[num]# entrées dans la file des URLs rejetées: -Executor==Exécuteur -Fail-Reason==Raison de l'échec -#----------------------------- - #File: IndexCreateLoaderQueue_p.html #--------------------------- Index Creation / Loader Queue==Création d'index / file de chargement @@ -1098,167 +1001,6 @@ Modified Date==Date de modification Anchor Name==Nom d'ancre #----------------------------- -#File: IndexCreateWWWGlobalQueue_p.html -#--------------------------- -Index Creation: WWW Global Crawl Queue==Création d'index: file de crawl WWW globale -This queue stores the urls that shall be sent to other peers to perform a remote crawl.==Cette file stocke les URLs qui doivent être envoyées aux autre noeuds pour être crawlées à distance. -If there is no peer for remote crawling available, the links are crawled locally.==Si aucun noeud distant n'est disponible pour crawler le lien, alors il est crawlé localement. -The global crawler queue is empty==La file de crawl globale est vide. -"clear global crawl queue"=="Effacer la file de crawl globale" -There are <strong>#[num]#</strong> entries in the global crawler queue. Showing <strong>#[show-num]#</strong> most recent entries.==Il y a <strong>#[num]#</strong> entrées dans la file de crawl globale. Voir les <strong>#[show-num]#</strong> nouvelles entrées. -Show last==Voir les dernières -</a> entries.==</a> entrées. -Initiator==Initiateur -Profile==Profil -Depth==Profondeur -Modified Date==Date de modification -Anchor Name==Nom d'ancre -#URL==URL -#----------------------------- - -#File: IndexCreateWWWLocalQueue_p.html -#--------------------------- -YaCy '#[clientname]#': Index Creation / WWW Local Crawl Queue==YaCy '#[clientname]#': Création d'index / file de crawl WWW local -Index Creation: WWW Local Crawl Queue==Création d'index: file de crawl WWW local -This queue stores the urls that shall be crawled localy by this peer.==Cette file stocke les URLs qui seront crawlées localement par ce noeud. -It may also contain urls that are computed by the proxy-prefetch.==Elle stocke aussi les URLs qui sont traitées par le proxy. -The local crawler queue is empty==La file de crawl local est vide. -There are <strong>#[num]#</strong> entries in the local crawler queue. Showing <strong>#[show-num]#</strong> most recent entries.==Il y a <strong>#[num]#</strong> entrées dans la file de crawl local. Voir les <strong>#[show-num]#</strong> nouvelles entrées. -Show last==Voir les dernières -</a> entries.==</a> Entrées. -Initiator==Initiateur -Profile==Profil -Depth==Profondeur -Modified Date==Date de modification -Anchor Name==Nom d'ancre -#URL==URL -[Delete]==[Supprimer] -Delete Entries:==Entrées supprimées: -"Delete"=="Supprimer" -This may take a quite long time.==Cela peut prendre un peu de temps. -#----------------------------- - -#File: IndexImport_p.html -#--------------------------- -YaCy '#[clientname]#': Index Import==YaCy '#[clientname]#': Importation d'index -Index DB Import==Importation base d'index -The local index currently consists of (at least) #[wcount]# reverse word indexes and #[ucount]# URL references.==L'index local est constitués (au moins) de #[wcount]# index de mots inversés et de #[ucount]# URLs. -Import Job with the same path already started.==Une importation avec le même chemin est déjà lancée. -Starting new Job==Démarrer une nouvelle importation -Import Type:==Type d'importation: -Cache Size==Taille du cache -Usage Examples==Exemples d'utilisation -"Path to the PLASMADB directory of the foreign peer"=="Chemin du dossier PLASMADB du Verzeichnis des fremden Noeud" -Import Path:==Import-Pfad: -"Start Import"=="Demarrer l'importation" -Attention:==Attention: -Always do a backup of your source and destination database before starting to use this import function.==Toujours faire une sauvegarde de vos bases source et destination avant de lancer cette fonction d'importation. -Currently running jobs==Tâches actuellement en cours -Job Type==Type de tâche ->Path==>Chemin -Status==Etat -Elapsed<br />Time==Temps<br />écoulé -Time<br />Left==Temps<br />restant -Abort Import==Importation intérompue -Pause Import==Importation suspendue -Finished::Running::Paused==Terminé::En cours::Suspendu -"Abort"=="Intérompre" -#"Pause"=="Pause" -"Continue"=="Reprendre" -Finished jobs==Importations terminées -"Clear List"=="Effacer la liste" -Last Refresh:==Dernière actualisation: -Example Path:==Exemple de chemin: -Requirements:==Prérequis: -You need to have at least the following directories and files in this path:==Vous devez avoir au moins les dossiers et fichiers suivants dans ce chemin: ->Type==>Type ->Writeable==>Inscriptible ->Description==>Decription ->File==>Fichier ->Directory==>Dossier ->Yes<==>Oui< ->No<==>Non< -The LoadedURL Database containing all loaded and indexed URLs==La base de données des URLs chargés contient toutes les URLs chargées et indexées. -The assortment directory containing parts of the word index.==Le dossier assortiment contient des parties de l'index de mots. -The words directory containing parts of the word index.==Le dossier mots contient des parties de l'index de mots. -The assortment file that should be imported.==Le fichier des assortiment qui doit être importé. -The assortment file must have the postfix==Le dossier assortiment doit avoir le suffixe -.db".==.db" -If you would like to import an assortment file from the <tt>PLASMADBACLUSTERABKP</tt>==Si vous voulez importer un fichier d'assortiment depuis <tt>PLASMADBACLUSTERABKP</tt> -you have to rename it first.==vous devez d'abord le renommer . ->Notes:==>Remarques: -Please note that the imported words are useless if the destination peer doesn't know==Notez que les mots importés sont inutiles si le noeud destination ne connait pas -the URLs the imported words belongs to.==à quelles URLs ils appartiennent. -Crawling Queue Import:==Importation de file de crawl: -Contains data about the crawljob an URL belongs to==Contient des données à propos des crawls auxquels une URL appartient -The crawling queue==La file de crawl -Various stack files that belong to the crawling queue==Divers fichiers de pile qui appartiennent à la file de crawl -#----------------------------- - -#File: IndexMonitor.html -#--------------------------- -#YaCy '#[clientname]#': Index Monitor -Index Monitor Menu==Menu moniteur d'index; -Index Monitor Overview==Aperçu moniteur d'index -Receipts</a>==Réception</a> -Queries</a>==Requête</a> -DHT Transfer==partage de DHT -Proxy Use==Utilisaton du Proxy -Local Crawling==Crawl local -Global Crawling==Crawl global -Indexing Queues Monitor Overview==Aperçu du moniteur des files d'indexation -These are monitoring pages for the different indexing queues.==Ce sont les pages de monitoring des différentes files d'indexation. -YaCy knows 5 different ways to acquire web indexes. The details of these processes (1-5) are described within the submenu's listed==YaCy connait cinq différentes manières pour acquérir des index web. Les détails de ces processus (1-5) sont déscrits dans le sous-menu -above which also will show you a table with indexing results so far. The information in these tables is considered as private,==ci-dessus qui vous montreront aussi une table des résultats d'indxation. Les informations de ces tables sont considérées comme privées, -so you need to log-in with your administration password.==vous devez donc vous authentifier avec votre mot de passe. -Case (6) is a monitor of the local receipt-generator, the opposed case of (1). It contains also an indexing result monitor but is not considered private==Le cas (6) est un moniteur du générateur des réceptions locales, le cas opposé du (1). Il contient aussi un moniteur des résultats d'indexation mais n'est pas considéré comme privé -since it shows crawl requests from other peers.==puisqu'il montre les requêtes de crawl des autres noeuds. -The image above illustrates the data flow initiated by web index acquisition.==L'image ci-dessus illustre le flux de données initié par l'acquisition des index web. -Some processes occur double to document the complex index migration structure.==Certains processus apparaissent en double, pour expliquer la complexité de la structure des index partagés. -(1) Index Monitor of Remote Crawl Receipts==(1) Moniteur d'index pour les retours de crawl distants -This is the list of web pages that this peer initiated to crawl,==C'est une liste de pages internet dont le crawl a été initié par votre noeud, -but had been crawled by <em>other</em> peers.==mais a été crawlé par d'<em>autre</em> noeuds. -This is the 'mirror'-case of process (6).==C'est le processus opposé du (6) -<em>Use Case:</em> You get entries here, if you start a local crawl on the 'Index Creation'-Page and check the==<em>Cas d'utilisation:</em> Vous obtenez des entrées ici, si vous démarrez un crawl local sur la page 'Création d'index' et activez -'Do Remote Indexing'-flag. Every page that a remote peer indexes upon this peer's request==l'indexation à distance. Chaque page, qui sera indexée par un noeud distant à votre demande, -is reported back and can be monitored here.==sera rapportée et peut être monitorée ici. -(2) Index Monitor for Result of Search Queries==(2) Moniteur d'index des résultats de requêtes de recherche. -This index transfer was initiated by your peer by doing a search query.==Ce transfert d'index a été initié par votre noeud en lançant une requête de recherche. -The index was crawled and contributed by other peers.==Cet index a été crawlé par d'autres noeud qui y ont contribué. -<em>Use Case:</em> This list fills up if you do a search query on the 'Search Page'==<em>Cas d'utilisation:</em> Cette liste se remplit si vous lancez une requête sur la 'page de recherche' -(3) Index Monitor for Index Transfer.==(3) Moniteur d'index pour le partage de DHT. -The url fetch was initiated and executed by other peers.==L'indexation d'URL a été initiée et effectuée par d'autres noeuds. -These links here have been transmitted to you because your peer is the most appropriate for storage according to==Ces liens vous ont été transmis car votre noeud est le plus approprié pour le stockage selon -the logic of the Global Distributed Hash Table.==la logique de la table de hachage distribuée globale -<em>Use Case:</em> This list may fill if you check the 'Index Receive'-flag on the 'Index Control' page==<em>Cas d'utilisation:</em> Cette liste se remplira si l'option 'Reception d'index' de la page 'Contrôle d'index' -(4) Index Monitor for Proxy Indexing==(4) Moniteur d'index pour le proxy d'indexation -These web pages had been indexed as result of your proxy usage.==Ces pages web ont été indexées lors de l'utilisation de votre proxy d'indexation. -No personal or protected page is indexed==Aucune page personelle ou protégée n'est indexée -such pages are detected by Cookie-Use or POST-Parameters (either in URL or as HTTP protocol)==De telles pages sont détectées par l'usage des cookies ou des paramètres POST (dans l'URL ou le protocole HTTP) -and automatically excluded from indexing.==et exclus automatiquement de l'indexation. -<em>Use Case:</em> You must use YaCy as proxy to fill up this table.==<em>Cas d'utilisation:</em> Vous devez utiliser YaCy comme proxy pour remplir cette table. -Set the proxy settings of your browser to the same port as given==Configurez les paramètres de proxy de votre brower avec le même port que celui -on the 'Settings'-page in the 'Proxy and Administration Port' field.==du champ 'Port de proxy et d'administration' de la page de 'Configuration'. -(5) Index Monitor for Local Crawling.==(5) Moniteur d'index pour le crawl local -These web pages had been crawled by your own crawl task.==Cette page web a été crawlée par votre propre tâche de crawl. -<em>Use Case:</em> start a crawl by setting a crawl start point on the 'Index Create' page.==<em>Cas d'utilisation:</em> Lancer un crawl en paramètrant un point de départ sur la page 'Création d'index'. -(6) Index Monitor for Global Crawling==(6) Moniteur d'index pour le crawl global -These pages had been indexed by your peer, but the crawl was initiated by a remote peer.==Ces pages ont été indexées par votre noeud, mais le crawl était initié par un noeud distant. -This is the 'mirror'-case of process (1).==C'est le processus opposé du cas (1). -<em>Use Case:</em> This list may fill if you check the 'Accept remote crawling requests'-flag on the 'Index Crate' page==<em>Cas d'application:</em> Cette liste se remplira si vous cochez l'option 'Accepter les requêtes de crawl distantes' sur la page 'créarion d'index' -The stack is empty.==La liste est vide. -Showing all #[all]# entries in this stack.==Voir les #[all]# entrées de cette pile. -Showing latest #[count]# lines from a stack of #[all]# entries.==Voir les #[count]# dernières lignes d'une pile de #[all]# entrées. -"clear list"=="Vider la liste" -Initiator==Initiateur -Executor==Executeur -Modified Date==Date de modification -Words==Mots -Title==Titre -#URL==URL -"delete"=="Supprimer" -#----------------------------- - #File: IndexReIndexMonitor_p.html #--------------------------- Field Re-Indexing<==Ré-indexation de champ< @@ -1316,35 +1058,6 @@ URLs rejected for some reason by the crawl stacker or the crawler queue. Please > Refresh<==> Rafraîchir< #----------------------------- -#File: IndexTransfer_p.html -#--------------------------- -The local index currently consists of (at least) #[wcount]# reverse word indexes and #[ucount]# URL references.==L'index local consiste actuellement en (au moins) #[wcount]# mots et #[ucount]# URLs. -Chunk Size<br />(Word Entries)==Taille de chunk<br />(Entrées de mots) -Words Range==plage de mots -Transfered Words==Mots transférés -Delete<br />Index==Supprimer<br /> Index -true==oui -false==non -Selection==Choix -words<==Mots< -Last Refresh:==Dernier rafraîchissement: -Overwrite IP==Ecraser l'IP -blank for defaultip==vide pour l'IP standart. -Start/Stop Transfer==Démarrer/Arreter le transfert -"Start Index Transfer"=="Démarrer le transfert d'index" -"Stop Index Transfer"=="Arreter le transfert d'index" -"Start New Index Transfer"=="Démarrer un nouveau transfert d'index" -#----------------------------- - -#File: Lab.html -#--------------------------- - -The YaCy Lab==Le labo YaCy -This is the place where we try new functions of the YaCy search engine.==C'est l'endroit ou nous testons les nouvelles fonctions du moteur de recherche YaCy. -All these things here are to be considered as probably unstable, and/or experimental.==Toutes ces nouvelles fonctions sont encore instables et sont en phase d'expérimentation. -You may try out these things but please do not care about bugs.==Vous pouvez essayer ces nouvelles fonctions, mais ne prettez pas attention aux erreurs. -#----------------------------- - #File: Messages_p.html #--------------------------- >Messages==>Message @@ -1500,7 +1213,7 @@ A table with recently started crawls is presented on the Index Create - page==Un A change in the personal profile will create a news entry. You can see recently made changes of==Une modification du profil personnel créra une nouvelle. Vous pouvez les changements récent des profile entries on the Network page, where that profile change is visualized with a '*' beside the 'P' (profile) - selector.==Entrées du profil sur la page réseau, ou la modification du profil est indiquée avec un '*' contre le selecteur 'P'. More news services will follow.==D'autres nouvelles vont suivre. -Above you can see four menues:==Vous pouvez voir ces quatre menus: +Above you can see four menus:==Vous pouvez voir ces quatre menus: <strong>Incoming News (#[insize]#)</strong>: latest news that arrived your peer.==<strong>Nouvelles entrantes(#[insize]#)</strong>:Les dernières nouvelles qui ont atteint votre noeud. Only these news will be used to display specific news services as explained above.==Seules ces nouvelles seront utilisées pour afficher des services de nouvelles spécifiques. You can process these news with a button on the page to remove their appearance from the IndexCreate and Network page==Vous pouvez traiter ces nouvelles avec un bouton sur la page pour éviter leurs apparitions sur les pages Réseau et IndexCreate. @@ -1586,7 +1299,7 @@ This shall improve performance of the affected process (proxy or search).==Cela (current delta is==Les temps actuels sont respectivement de seconds since last proxy/local-search/remote-search access.)==secondes depuis le dernier accès au proxy, à la recherche locale et à la recherche distante. Online Caution Case==Fonctionnalité -indexer delay (milliseconds) after case occurency==Temps de pause de l'indexeur (en ms) +indexer delay (milliseconds) after case occurrence==Temps de pause de l'indexeur (en ms) Local Search:==Recherche locale : Remote Search:==Recherche distante : "Enter New Parameters"=="Appliquer" @@ -1912,27 +1625,6 @@ Message Forwarding (optional)==Redirection de messages (optionel) #Changes will take effect immediately.==Änderungen sind sofort wirksam. #----------------------------- -#File: Settings_PortForwarding.inc -#--------------------------- -# check for logical mistakes, unsure about some translations -#Port Forwarding==Port Weiterleitung -#You can use a remote server running a ssh demon to forward your server/proxy port.==Sie können einen Remote Server mit einem ssh demon nutzen, um Ihrem Server/Proxy Port weiterzuleiten. -#This is useful if you want to tunnel throug a NAT/router.==Dies ist nützlich, wenn Sie durch einen NAT/Router tunneln wollen. -#Alternatively, you can simply set a virtual server port on your NAT/Server to enable connections from outside.==Alternativ können Sie einfach einen virtuellen Server in Ihrem NAT/Router einstellen, um Verbindungen von Außerhalb zu ermöglichen. -#Enable port forwarding:==Aktiviere Port Weiterleitung: -#Enabling disabling port forwarding via secure channel.==Aktivieren/Deaktivieren von Port Weiterleitung über sicheren Kanal. -#Forwarding via proxy:==Weiterleitung über Proxy: -#Function not available at the moment.==Funktion im Moment nicht verfügbar. -#You need to install libx to use this feature==Sie müssen die libx installieren, um diese Funktionen benutzen zu können -#Forwarding port:==Weiterleitender Port -#The port on the remote server that should be forwarded via the secure channel to the local host.==Der Port des Remote Servers der mittels sicherem Kanal auf den lokalen Host weitergeleitet werden soll. -#Forwarding host:==Weiterleitender Host -#Forwarding host port:==Weiterleitender Host Port -#Forwarding host user:==Weiterleitender Host Nutzer -Forwarding host password:==Weiterleitender Host mot de passe -#Changes will take effect immediately.==Änderungen sind sofort wirksam. -#----------------------------- - #File: Settings_ServerAccess.inc #--------------------------- #Server Access Settings==Serverzugangs Einstellungen @@ -1975,30 +1667,6 @@ Forwarding host password:==Weiterleitender Host mot de passe #Select 'none' to deactivate uploading.==Verwenden Sie 'none' um den Upload zu deaktivieren. #The URL that can be used to retrieve the uploaded seed file, like==Die URL die genutzt werden kann um die hochgeladene Seed-Liste zu erhalten, wie #----------------------------- -#File: yacy/seedUpload/yacySeedUploadFtp.html -#--------------------------- -#Uploading via FTP:==Upload per FTP: -#This is the account for a FTP server where you can host a seed-list file.==Dies ist der Account für einen FTP-Server, auf dem Sie eine Seed-Liste bereitstellen können. -#If you set this, you will become a principal peer.==Wenn Sie das tun, werden Sie zum Principal-Noeud. -#Your peer will then upload the seed-bootstrap information periodically,==Ihr Noeud wird dann die Seed-Bootstrap Informationen periodisch hochladen, -#but only if there had been changes to the seed-list.==jedoch nur wenn Änderungen an der Seed-Liste existieren. -#The host where you have a FTP account, like==Der Host zu Ihrem FTP-Account, wie -#Path:==Pfad: -#The remote path on the FTP server, like==Der Remote-Pfad auf dem FTP-Server, wie -#Missing sub-directories are NOT created automatically.==Fehlende Unterverzeichnisse werden NICHT automatisch erstellt. -#Your log-in at the FTP server==Ihr Log-in auf dem FTP-Server -Password:==mot de passe: -The password==Das mot de passe -#----------------------------- - -#File: yacy/seedUpload/yacySeedUploadFile.html -#--------------------------- -#Store into filesystem:==Ablegen im Fichiersystem: -#You must configure this if you want to store the seed-list file onto the file system.==Sie müssen diese Einstellungen vornehmen, wenn Sie die Seed-Liste im Fichiersystem ablegen wollen. -#File Location:==Speicherort: -#Here you can specify the path within the filesystem where the seed-list file should be stored.==Hier können Sie den Pfad im Fichiersystem festlegen, in dem die Seed-Liste abgelegt werden soll. -#----------------------------- - #File: Settings_MessageForwarding.inc #--------------------------- #Message Forwarding==Nachrichten Weiterleitung @@ -2012,15 +1680,6 @@ The password==Das mot de passe #Changes will take effect immediately.==Änderungen sind sofort wirksam. #----------------------------- -#File: Settings_Parser.inc -#--------------------------- -#Content Parser Settings==Inhalt Parser Einstellungen -#With this settings you can activate or deactivate parsing of additional content-types based on their MIME-types.==Mit diesen Einstellungen können Sie das Parsen zusätzlicher Fichiertypen basierend auf ihren MIME-Typen ermöglichen. -#For a detailed description of the various MIME-types take a look at==Für eine detailierte Beschreibung der verschiedenen MIME-Typen können Sie einen Blick auf -#http://www.iana.org/assignments/media-types/</a>==http://www.iana.org/assignments/media-types/</a> werfen. -#Changes take effect immediately==Änderungen sind sofort wirksam -#----------------------------- - #File: Settings_Crawler.inc #--------------------------- #Generic Crawler Settings==Allgemeine Crawler Einstellungen @@ -2107,16 +1766,6 @@ The password==Das mot de passe #You can reach your YaCy server under the new location==Dieser YaCy-Noeud kann nun unter seiner neuen Adresse erreicht werden: #----------------------------- -#File: Settings_Admin.inc -#--------------------------- -#Administration Account Settings==Administrator Konto Einstellungen -#This is the account that restricts access to this 'Settings' page. If you have not customized it yet, you should do so now:==Dies ist das Konto, das Zugriff auf diese sonst geschützte "Einstellungen" Seite hat. Wenn Sie es noch nicht eingerichtet haben, sollten Sie es nun tun: -#Account Name:==Konto Name: -Password:==mot de passe: -Password (repeat same as above):==mot de passe (bitte zur Sicherheit erneut eingeben): -#value="submit">==value="Speichern"> -#----------------------------- - #File: Status.html #--------------------------- Console Status==État de la console @@ -2353,28 +2002,6 @@ Hide surftips==Surftipps cachés #>URL<==>URL< #----------------------------- -#File: User_p.html -#--------------------------- -new User==nouvel utilisateur -Edit User==Modifier l'utilisateur -Delete User==Supprimer l'utilisateur -Current User:==Utilisateur courrant: -Password:==mot de passe: -Password(repeat):==mot de passe(confirmer): -First Name:==Prénom: -Last Name:==Nom: -Address:==Adresse: -Rights==Droits -Timelimit:==Limite de temps: -Time used:==Temps utilisé: -Save User==Enregistrer l'utilisateur -User created:==Utilisateur créé: -User changed:==Utilisateur modifié: -Passwords do not match.==Le mot de passe est incorrect. -If you want to manage more Users, return to the==Si vous voulez gérer d'autres utilisateurs, retournez à la page -user</a> page.==Utilisateur</a>. -#----------------------------- - #File: ViewFile.html #--------------------------- YaCy '#[clientname]#': View URL Content==YaCy '#[clientname]#': Voir le contenu de l'URL @@ -2782,14 +2409,6 @@ Crawl Start==Démarrer le crawl >Music==>Musique #----------------------------- -#File: env/templates/submenuPerformance.template -#--------------------------- -Performance Menu==Menu Performance -Queues Performance Settings==Paramètres de performance des files d'attente -Memory Settings for Database Caches==Paramètres de la mémoire cache de la base de données -Timing Settings for Search Sequence==Paramètres temporels la recherche -#----------------------------- - #File: env/templates/submenuRanking.template #--------------------------- Ranking and Heuristics==Classement et heuristique @@ -2811,22 +2430,3 @@ Network Configuration==Configuration réseau Index Browser==Explorateur d'index #----------------------------- -#File: htdocsdefault/dir.html -#--------------------------- -YaCy: Public Files==YaCy: Fichiers publics -Public File Directory==Dossier des fichiers publics -value="#[peername]#'s Console"==value="Console de #[peername]#" -Welcome! You are identified and authorized as==Bienvenue! Vous êtes identifié et autorisé comme -#----------------------------- - -#File: www/welcome.html -#--------------------------- -YACY: Default Page for Individual Noeud Content==YACY: Page standard pour contenue du noeud individuel -Individual Web Page==Page web individuelle -Welcome to your own web page<br />in the <strong>YaCy Network==Bienvenue sur votre page personnelle<br />sur le <strong>Réseau YaCy -THIS IS A DEMONSTRATION PAGE FOR YOUR OWN INDIVIDUAL WEB SERVER!==CECI EST UNE PAGE DE DEMONSTRATION POUR VOTRE PROPRE SERVEUR WEB PERSONNEL! -PLEASE REPLACE THIS PAGE BY PUTTING A FILE index.html INTO THE PATH==REMPLACEZ CETTE PAGE EN AJOUTANT UN FICHIER index.html DANS LE DOSSIER -<YaCy-application-home><strong>#[wwwpath]#</strong>==<YaCy-Application-Home><strong>#[wwwpath]#</strong> ABLEGEN. -#----------------------------- - -# EOF diff --git a/locales/hi.lng b/locales/hi.lng index ce52843ea..cd96d9987 100644 --- a/locales/hi.lng +++ b/locales/hi.lng @@ -402,7 +402,7 @@ Some pages are protected by passwords.==कुछ पेजेज पासव You should set a password at the <a href="ConfigAccounts_p.html">Accounts Menu</a> to secure your YaCy peer.</p>::==अपने याची पीर की सुरक्षा के लिए आपको इस मार्ग पर अपना पासवर्ड सेट करना चाइये <a href="ConfigAccounts_p.html">Accounts Menu</a> You did not open a port in your firewall or your router does not forward the server port to your peer.==आपने अपने फ़ायरवॉल में पोर्ट नहीं खोला हे या फिर आपके राऊटर ने सर्वर पोर्ट को याची पीर की तरफ नहीं बढाया हे This is needed if you want to fully participate in the YaCy network.==अगर आप पूरी तरह से याची नेटवर्क में भाग लेना चाहते हे तो यह जुरुरी होगा -You can also use your peer without opening it, but this is not recomended.==आप बिना खोले पीर का इस्तमाल कर सकते हे पर इस बात की सलाह उचित नहीं हे +You can also use your peer without opening it, but this is not recommended.==आप बिना खोले पीर का इस्तमाल कर सकते हे पर इस बात की सलाह उचित नहीं हे #----------------------------- #File: ConfigHeuristics_p.html @@ -431,7 +431,7 @@ Default is to add the links to the local crawl queue (your peer crawls the linke add as global crawl job==ग्लोबल क्रॉल जॉब के हिसाब से जोडीये blekko: load external search result list from==blekko: एक्सटर्नल खोज के नतीजे की लिस्ट यहा से लीजिये When using this heuristic, then every search request line is used for a call to blekko.==इस स्वनुभाविक को इस्तमाल करते समय खोज की विनती की सारी लाइन ब्लेक्को को कॉल के लिए इस्तमाल की जाएगी -20 results are taken from blekko and loaded simultanously, parsed and indexed immediately.==करीबन २० नतीजे ब्लेक्को से लिए जाते हे और साथ ही साथ उनकी चटाई की जाती हे +20 results are taken from blekko and loaded simultaneously, parsed and indexed immediately.==करीबन २० नतीजे ब्लेक्को से लिए जाते हे और साथ ही साथ उनकी चटाई की जाती हे #----------------------------- #File: ConfigHTCache_p.html #--------------------------- @@ -470,40 +470,6 @@ Make sure that you only download data from trustworthy sources. The new language might overwrite existing data if a file of the same name exists already.==एक ही नाम की एक फ़ाइल पहले से मौजूद है तो मौजूदा डेटा अधिलेखित हो सकता है. #----------------------------- -#File: ConfigLiveSearch.html -#--------------------------- -Integration of a Search Field for Live Search==लाइव खोज के लिए एक खोज क्षेत्र की एकता -A 'Live-Search' input field that reacts as search-as-you-type in a pop-up window can easily be integrated in any web page==एक पॉप अप विंडो में खोज के रूप में तुम प्रकार के रूप में प्रतिक्रिया करता है कि एक 'लाइव खोज ' इनपुट क्षेत्र आसानी से किसी भी वेब पेज में एकीकृत किया जा सकता है -This is the same function as can be seen on all pages of the YaCy online-interface (look at the window in the upper right corner)==यह (ऊपरी दायें कोने में खिड़की पर नज़र ) याची ऑनलाइन इंटरफ़ेस के सभी पृष्ठों पर देखा जा सकता है के रूप में एक ही समारोह है -Just use the code snippet below to integrate that in your own web pages==बस अपने खुद के वेब पन्नों में है कि एकीकृत करने के लिए नीचे दिए गए कोड स्निपेट का उपयोग -Please check if the address, as given in the example '#[ip]#:#[port]#' here is correct and replace it with more appropriate values if necessary==पता अगर उदाहरण के रूप में दिया, जाँच ' # [आईपी ] # # [पोर्ट ] # ' कृपया यहां सही है और अधिक उचित मूल्यों के साथ की जगह यदि आवश्यक -Code Snippet:==कोड स्निपेट -YaCy Portal Search==YaCy पोर्टल खोज -"Search"=="खोज" -Configuration options and defaults for 'yconf':== 'Yconf ' के लिए विन्यास विकल्प और चूक -Defaults<==चूक< -url<==URL< -is a mandatory property - no default<==कोई डिफ़ॉल्ट - एक अनिवार्य संपत्ति है< -YaCy P2P Web Search== पी 2 पी वेब खोज -Size and position (width | height | position)==आकार और स्थिति (चौड़ाई | ऊंचाई | स्थिति ) -Specifies where the dialog should be displayed. Possible values for position: 'center', 'left', 'right', 'top', 'bottom', or an array containing a coordinate pair (in pixel offset from top left of viewport) or the possible string values (e.g. ['right','top'] for top right corner)==निर्दिष्ट करता है जहाँ संवाद प्रदर्शित किया जाना चाहिए. पद के लिए संभावित मान: 'केंद्र ' 'बाएँ ', 'ठीक ' 'शीर्ष ' 'नीचे ', या एक समन्वय जोड़ी (पिक्सेल में शीर्ष बाएँ से ऑफसेट युक्त सरणी के व्यूपोर्ट ) या संभव स्ट्रिंग मूल्यों (जैसे [ 'ठीक ' 'शीर्ष ' ] ऊपरी दाएँ कोने के लिए ) -Animation effects (show | hide)==एनिमेशन प्रभाव (शो | छिपाने ) -The effect to be used. Possible values: 'blind', 'clip', 'drop', 'explode', 'fold', 'puff', 'slide', 'scale', 'size', 'pulsate'.==रभाव इस्तेमाल किया जाएगा. संभावित मान: 'अंधा ' 'क्लिप ' 'ड्रॉप ' 'विस्फोट ' 'गुना ' 'कश ' 'स्लाइड ' 'पैमाने ' , 'आकार ' 'धड़कना ' -Interaction (modal | resizable)==इंटरेक्शन (मोडल | बदलने योग्य ) -If modal is set to true, the dialog will have modal behavior; other items on the page will be disabled (i.e. cannot be interacted with).==मोडल सही पर सेट किया जाता है, तो संवाद मोडल व्यवहार होगा; पेज पर अन्य मदों (यानी के साथ बातचीत नहीं कर सकते हैं) निष्क्रिय किया जाएगा -Modal dialogs create an overlay below the dialog but above other page elements.==मोडल संवाद संवाद नीचे लेकिन अन्य पृष्ठ तत्वों ऊपर ओवरले बना -If resizable is set to true, the dialog will be resizeable.==बदलने योग्य सत्य पर नियत किया जाता है, तो संवाद resizeable होगा -Load JavaScript load_js==जावास्क्रिप्ट load_js लोड -If load_js is set to false, you have to manually load the needed JavaScript on your portal page.==लोड गलत पर सेट कर दिया जाता है, तो आप मैन्युअल रूप से अपने पोर्टल पेज पर जरूरत जावास्क्रिप्ट लोड है -This can help to avoid timing problems or double loading.==यह समय की समस्याओं या डबल लोड से बचने में मदद कर सकते हैं -Load Stylesheets load_css==Stylesheets load_css लोड -If load_css is set to false, you have to manually load the needed CSS on your portal page.==लोड सीएसएस गलत पर सेट है, तो आप स्वयं अपने पोर्टल पेज पर जरूरत सीएसएस लोड करने के लिए है -#Themes==विषयों -You can <==आप कर सकते हैं < -download</a> ready made themes or <a href="http://jqueryui.com/themeroller/" target="_blank">create</a>==डाउनलोड </ a> के लिए तैयार किए गए विषयों या <a href="http://jqueryui.com/themeroller/" target="_blank"> बनाएँ </ a> -your own custom theme. <br/>Themes are installed into: DATA/HTDOCS/yacy/ui/css/themes/==अपने स्वयं के कस्टम विषय. <br/> विषयों में स्थापित कर रहे हैं: आंकड़े / htdocs / yacy / यूआई / सीएसएस / विषयों / -#----------------------------- - #File: ConfigNetwork_p.html #--------------------------- <html lang="en">==<html lang="hi"> @@ -1052,24 +1018,6 @@ check this box.== इस बॉक्स को चेक करो. #----------------------------- -#File: CrawlStartIntranet_p.html -#--------------------------- -#Intranet Crawl Start==इंट्रानेट क्रॉल प्रारंभ -When an index domain is configured to contain intranet links,==एक सूचकांक डोमेन इंट्रानेट लिंक शामिल करने के लिए कॉन्फ़िगर किया गया है, -the intranet may be scanned for available servers.==इंट्रानेट उपलब्ध सर्वरों के लिए स्कैन किया जा सकता है. -Please select below the servers in your intranet that you want to fetch into the search index.==आप खोज सूचकांक में लाने के लिए चाहते हैं कि आपके इंट्रानेट में सर्वर नीचे का चयन करें. -This network definition does not allow intranet links.==इस नेटवर्क परिभाषा इंट्रानेट लिंक की अनुमति नहीं है. -A list of intranet servers is only available if you confiugure YaCy to index intranet targets.==आप सूचकांक इंट्रानेट लक्ष्य को YaCy confiugure अगर इंट्रानेट सर्वर की एक सूची ही उपलब्ध है. -To do so, open the <a href="ConfigBasic.html">Basic Configuration</a> servlet and select the 'Intranet Indexing' use case.==ऐसा करने के लिए, <a href="ConfigBasic.html"> मूल विन्यास </ a> सर्वलेट खुला और 'इंट्रानेट इंडेक्सिंग ' उपयोग के मामले का चयन करें. -Available Intranet Server==उपलब्ध इंट्रानेट सर्वर -#>IP<==>आईपी< -#>URL<==>यूआरएल< ->Process<==>प्रक्रिया< ->not in index<==>नहीं सूचकांक में< ->indexed<==>अनुक्रमित< -"Add Selected Servers to Crawler"=="ट्रेक के लिए चयनित सर्वर जोड़ें" -#----------------------------- - #File: CrawlStartScanner_p.html #--------------------------- Network Scanner==नेटवर्क स्कैनर diff --git a/locales/it.lng b/locales/it.lng index 96b4cee23..9da20cdd9 100644 --- a/locales/it.lng +++ b/locales/it.lng @@ -338,16 +338,6 @@ Simple Editor==Editor di base to add untranslated text==per aggiungere testo non tradotto
#-----------------------------
-#File: ConfigLiveSearch.html
-#---------------------------
-Advantages:==Vantaggi:
-Disadvantages:==Svantaggi:
-"Search"=="Cerca"
-Defaults<==Default<
-url<==url<
->Themes<==>Temi<
-#-----------------------------
-
#File: ConfigNetwork_p.html
#---------------------------
Network Configuration==Impostazioni di rete
@@ -378,7 +368,7 @@ Greeting Line<==Messaggio di benvenuto< URL of Home Page<==URL della homepage<
Enable Search for Everyone?==Ricerca permessa a tutti?
Search is available for everyone==Ricerca permessa a tutti
-Only the administator is allowed to search==Ricerca permessa solo all'admin
+Only the administrator is allowed to search==Ricerca permessa solo all'admin
Pattern:<==Pattern:<
>Exclude Hosts<==>Escludi host<
#-----------------------------
@@ -1482,7 +1472,7 @@ Index Export/Import==Import/export indice Target Analysis==Analisi target
Process Scheduler==Scheduler processi
### ADMINISTRATION ###
-System Admiistration==Amministrazione sistema
+System Administration==Amministrazione sistema
Index Administration==Amministrazione indice
Filter & Blacklists==Filtro & Blacklist
Content Semantic==Semantica contenuti
@@ -1537,12 +1527,6 @@ Advanced Settings==Impostazioni avanzate Advanced Properties==Proprietà avanzate
#-----------------------------
-#File: env/templates/submenuContentIntegration.template
-#---------------------------
-Import phpBB3 forum==Importa forum phpBB3
-Import Mediawiki dumps==Importa dump Mediawiki
-#-----------------------------
-
#File: env/templates/submenuCrawlMonitor.template
#---------------------------
Overview</a>==Panoramica</a>
@@ -1591,12 +1575,6 @@ Remote Crawling==Crawling remoto >Autocrawl<==>Autocrawler<
#-----------------------------
-#File: env/templates/submenuPortalIntegration.template
-#---------------------------
-Search Portal Integration==Integrazione Portale ricerca
-Generic Search Portal==Portale di ricerca generico
-#-----------------------------
-
#File: env/templates/submenuPublication.template
#---------------------------
Wiki==Wiki
@@ -1610,10 +1588,6 @@ Ranking and Heuristics==Ranking ed euristiche >Heuristics<==>Euristiche<
#---------------------------
-#File: env/templates/submenuSearchIntegration.template
-#---------------------------
-#-----------------------------
-
#File: env/templates/submenuSemantic.template
#---------------------------
Content Semantic==Semantica contenuti
@@ -1632,11 +1606,6 @@ Basic Configuration==Configurazione minima Network Configuration==Configurazione rete
#-----------------------------
-#File: env/templates/submenuViewLog.template
-#---------------------------
-Server Log==Log del server
-#-----------------------------
-
#File: env/templates/submenuWebStructure.template
#---------------------------
#-----------------------------
@@ -1666,10 +1635,6 @@ could not be found.==non può essere trovato. Did you mean:==Forse intendevi cercare:
#-----------------------------
-#File: www/welcome.html
-#---------------------------
-#-----------------------------
-
#File: js/Crawler.js
#---------------------------
#-----------------------------
@@ -1682,18 +1647,3 @@ Did you mean:==Forse intendevi cercare: >Date==>Data
#-----------------------------
-#File: js/jquery-flexigrid.js
-#---------------------------
-#-----------------------------
-
-#File: js/jquery-ui-1.7.2.min.js
-#---------------------------
-Loading…==Caricamento in corso…
-#-----------------------------
-
-#File: js/jquery.ui.all.min.js
-#---------------------------
-Loading…==Caricamento in corso…
-#-----------------------------
-
-# EOF
diff --git a/locales/ja.lng b/locales/ja.lng index 47eaec4bf..d007f28e3 100644 --- a/locales/ja.lng +++ b/locales/ja.lng @@ -91,37 +91,6 @@ Enables or disables augmented browsing. If enabled, all websites will be modifie #"Submit"=="確定する" #----------------------------- -#File: AugmentedBrowsingFilters_p.html -#--------------------------- -Augmented Browsing - Filters and Modules==増強されたブラウジング - フィルターとモジュール -Augmented Browsing Filters<==増強されたブラウジングのフィルター< -Select the desired functionality.==所望の機能を選択する. -External REFLECT:<==外部REFLECT:< ->Enabled<==>有効< -Send webpages to REFLECT (==ウェブページをREFLECTへ送信する ( -Select the desired inbuilt functionality==所望の備え付けの機能を選択する -Add DOCTYPE:==DOCTYPEを追加する: -Add DOCTYPE information if not given. This is required for IE to render position:absolute correctly.==DOCTYPE情報が与えられていないならば追加する. これはIEが絶対正確に位置をレンダーする為に要求されます. -Reparse webpage:==ウェブページを再解析する: -Put webpage back into schema (htmlparser document) to allow node by node manipulation.==ノード操作によりノードを許可する為にスキーマ(htmlparser ドキュメント)をウェブページに戻す. -Show overlay interaction buttons:==オーヴァーレイ インタラクション ボタンを表示する: -Show overlay interaction buttons.==オーヴァーレイ インタラクション ボタンを表示する. -"Submit"=="確定する" -#----------------------------- - -#File: AugmentedParsing_p.html -#--------------------------- -Augmented Parsing<==増強された構文解析< -Global Status==グローバル ステータス -With this settings you can activate or deactivate augmented parsing which combines the documents with information from external sources (tags etc.).==この設定であなたは外部ソースからの情報(タグ等)とドキュメントを組み合わせた増強された構文解析を有効化または無効化できます. -Augmented Parser:==増強された構文解析器: ->Enabled<==>有効< -Globally enables or disables the augmented parser. This setting requires a restart.==増強された構文解析をグローバルに有効化または無効化する. この設定は再起動を要求します. -Augmented Parser - RDFa:==増強された構文解析 - RDFa: -Globally enables or disables the RDFa parser. This setting requires a restart.==RDFa構文解析器をグローバルに有効化または無効化する. -"Submit"=="確定する" -#----------------------------- - #File: Blacklist_p.html #--------------------------- Blacklist Administration==ブラックリスト管理 @@ -481,7 +450,7 @@ Some pages are protected by passwords.==幾つかのページはパスワード You should set a password at the <a href="ConfigAccounts_p.html">Accounts Menu</a> to secure your YaCy peer.</p>::==あなたはあなたのYaCy ピアの安全の為に<a href="ConfigAccounts_p.html">アカウント メニュー</a>でパスワードを設定するべきです.</p>:: You did not open a port in your firewall or your router does not forward the server port to your peer.==あなたはあなたのファイアーウォールのポートを開いていないか、またはあなたのルーターがあなたのピアへサーヴァーのポートを転送しません. This is needed if you want to fully participate in the YaCy network.==あなたがYaCyのネットワークに完全に参加したい場合はこれが必要とされます. -You can also use your peer without opening it, but this is not recomended.==あなたはあなたのピアをポートの開放をせずに使用する事もできます, ですがこれは推奨されません. +You can also use your peer without opening it, but this is not recommended.==あなたはあなたのピアをポートの開放をせずに使用する事もできます, ですがこれは推奨されません. #----------------------------- #File: ConfigHeuristics_p.html @@ -521,14 +490,6 @@ Make sure that you only download data from trustworthy sources. The new language might overwrite existing data if a file of the same name exists already.== 新しい言語ファイルは既に同名のファイルが存在する場合には既存のデータを上書きするかもしれません. #----------------------------- -#File: ConfigLiveSearch.html -#--------------------------- -Integration of a Search Field for Live Search==ライヴ検索の為の検索フィールドの統合 -Integration of Live Search with YaCy Search Widget==YaCyの検索ウィジェットによるライヴ検索の統合 -Advantages:==利点: -#Advantages:==利点: -#----------------------------- - #File: ConfigNetwork_p.html #--------------------------- <html lang="en">==<html lang="ja"> @@ -783,11 +744,6 @@ Maximum Pages per Domain==ドメイン毎の最大のページ数 "Start New Crawl Job"=="新たなクロールのジョブを開始する" #----------------------------- -#File: CrawlStartIntranet_p.html -#--------------------------- -#Intranet Crawl Start==イントラネット クロールの開始 -#----------------------------- - #File: CrawlStartScanner_p.html #--------------------------- Network Scanner==ネットワーク スキャナー @@ -852,11 +808,6 @@ global==グローバル #>local==>ローカル #----------------------------- -#File: IndexCleaner_p.html -#--------------------------- -Index Cleaner==索引クリーナー -#----------------------------- - #File: IndexControlRWIs_p.html #--------------------------- Reverse Word Index Administration==逆引き単語索引の管理 @@ -902,33 +853,11 @@ Content Integration: Retrieval from phpBB3 Databases==コンテントの統合: Knowledge Loader==ナレッジ ローダー #----------------------------- -#File: IndexCreateWWWGlobalQueue_p.html -#--------------------------- -Global Crawl Queue==グローバル クロールのキュー -#----------------------------- - -#File: IndexCreateWWWLocalQueue_p.html -#--------------------------- -Local Crawl Queue==ローカル クロールのキュー -#----------------------------- - -#File: IndexCreateWWWRemoteQueue_p.html -#--------------------------- -Remote Crawl Queue==リモート クロールのキュー -#----------------------------- - #File: IndexDeletion_p.html #--------------------------- Index Deletion<==索引の削除< #----------------------------- -#File: IndexImport_p.html -#--------------------------- -YaCy '#[clientname]#': Index Import==YaCy '#[clientname]#': 索引の取り込み -#Crawling Queue Import==クローリング キューの取り込み -Index DB Import==索引データベースの取り込み -#----------------------------- - #File: IndexImportMediawiki_p.html #--------------------------- #MediaWiki Dump Import==MediaWiki ダンプの取り込み @@ -1041,11 +970,6 @@ Indexing with Proxy==プロキシでの索引付け Quick Crawl Link==簡便なクロールのリンク #----------------------------- -#File: Ranking_p.html -#--------------------------- -Ranking Configuration==順位付けの構成 -#----------------------------- - #File: RankingRWI_p.html #--------------------------- RWI Ranking Configuration<==RWIの順位付けの構成< @@ -1084,11 +1008,6 @@ Advanced Settings==高度な設定 Generic Crawler Settings==一般的なクローラーの設定 #----------------------------- -#File: Settings_Http.inc -#--------------------------- -HTTP Networking==HTTPのネットワーキング -#----------------------------- - #File: Settings_Proxy.inc #--------------------------- YaCy can use another proxy to connect to the internet. You can enter the address for the remote proxy here:==YaCyはインターネットへの接続の為に別のプロキシを使用できます. ここであなたはリモート プロキシの為のアドレスを入力できます. @@ -1622,11 +1541,6 @@ Advanced Properties==高度な属性 #>Thread Dump<==>スレッドのダンプ< #----------------------------- -#File: env/templates/submenuContentIntegration.template -#--------------------------- -External Content Integration==外部コンテントの統合 -#----------------------------- - #File: env/templates/submenuCrawler.template #--------------------------- Load Web Pages==ウェブページを読み込む @@ -1705,16 +1619,6 @@ Dump Reader for==次のもののダンプ リーダー #MediaWiki dumps==メディアウィキ ダンプ #----------------------------- -#File: env/templates/submenuPerformance.template -#--------------------------- -Performance Menu==パフォーマンスのメニュー -#----------------------------- - -#File: env/templates/submenuPortalIntegration.template -#--------------------------- -Search Portal Integration==検索ポータルの統合 -#----------------------------- - #File: env/templates/submenuPublication.template #--------------------------- Publication==公開 @@ -1723,26 +1627,6 @@ Publication==公開 File Hosting==ファイルのホスティング #----------------------------- -#File: env/templates/submenuSearchConfiguration.template -#--------------------------- -Integrated Search Configuration==統合された検索の構成 -Generic Search Portal==ジェネリック検索ポータル -Search Page Layout==検索ページのレイアウト ->Appearance<==>外観< ->Language<==>言語< -User Profile==ユーザーのプロファイル ->Heuristics<==>ヒューリスティクス< -Solr Ranking Config==Solrの順位付けの構成 -RWI Ranking Config==RWIの順位付けの構成 -#----------------------------- - -#File: env/templates/submenuSearchIntegration.template -#--------------------------- -Search Integration into External Sites==外部のサイトへの検索の統合 -Live Search Anywhere==どこでもライヴ検索 -Search Box Anywhere==どこでも検索ボックス -#----------------------------- - #File: env/templates/submenuSemantic.template #--------------------------- Content Semantic==コンテント セマンティック @@ -1773,12 +1657,6 @@ Basic Configuration==基本的な構成 Network Configuration==ネットワークの構成 #----------------------------- -#File: env/templates/submenuViewLog.template -#--------------------------- -Server Log Menu==サーヴァーのログのメニュー -#Server Log==サーヴァーのログ -#----------------------------- - #File: env/templates/submenuWebStructure.template #--------------------------- Web Visualization==ウェブの視覚化 @@ -1786,14 +1664,6 @@ Web Structure==ウェブの構造 Image Collage==画像のコラージュ #----------------------------- -#File: htdocsdefault/dir.html -#--------------------------- -YaCy: Public Files==YaCy: パブリック ファイル -Public File Directory==パブリック ファイルのディレクトリー -value="#[peername]#'s Console"==value="#[peername]#のコンソール" -Welcome! You are identified and authorized as==ようこそ! あなたは次のものとして識別と認定をされました -#----------------------------- - #File: proxymsg/authfail.inc #--------------------------- Your Username/Password is wrong.==あなたの ユーザー名/パスワード は間違っています. @@ -1827,11 +1697,6 @@ could not be found.==見つかりませんでした. Did you mean:==もしかして: #----------------------------- -#File: www/welcome.html -#--------------------------- -YaCy: Default Page for Individual Peer Content==YaCy: 個別のピアのコンテントの為の既定のページ -#----------------------------- - #File: js/Crawler.js #--------------------------- "Continue this queue"=="このキューを続ける" @@ -1847,21 +1712,3 @@ YaCy: Default Page for Individual Peer Content==YaCy: 個別のピアのコン >Date==>日時 #----------------------------- -#File: js/jquery-flexigrid.js -#--------------------------- -'Displaying {from} to {to} of {total} items'=='{total} の内の {from} から {to} までの項目を表示しています' -'Processing, please wait ...'=='処理しています, どうぞお待ち下さい...' -'No items'=='項目がありません' -#----------------------------- - -#File: js/jquery-ui-1.7.2.min.js -#--------------------------- -Loading…==読み込み… -#----------------------------- - -#File: js/jquery.ui.all.min.js -#--------------------------- -Loading…==読み込み… -#----------------------------- - -# EOF diff --git a/locales/master.lng.xlf b/locales/master.lng.xlf index 9d4d6220c..14043cd6e 100644 --- a/locales/master.lng.xlf +++ b/locales/master.lng.xlf @@ -2654,47 +2654,6 @@ </body> </file> -<file original="CookieTest_p.html" source-language="en" datatype="html"> - <body> - <trans-unit id="Line0004" xml:space="preserve" approved="no" translate="yes"> - <source>Cookie - Test Page</source> - </trans-unit> - <trans-unit id="Line0009" xml:space="preserve" approved="no" translate="yes"> - <source>Here is a cookie test page.</source> - </trans-unit> - <trans-unit id="Line0014" xml:space="preserve" approved="no" translate="yes"> - <source>Just clean it</source> - </trans-unit> - <trans-unit id="Line0022" xml:space="preserve" approved="no" translate="yes"> - <source>Name:</source> - </trans-unit> - <trans-unit id="Line0024" xml:space="preserve" approved="no" translate="yes"> - <source>Value:</source> - </trans-unit> - <trans-unit id="Line0027" xml:space="preserve" approved="no" translate="yes"> - <source>Dear server, set this cookie for me!</source> - </trans-unit> - <trans-unit id="Line0031" xml:space="preserve" approved="no" translate="yes"> - <source>Cookies at this browser:</source> - </trans-unit> - <trans-unit id="Line0042" xml:space="preserve" approved="no" translate="yes"> - <source>Cookies coming to server:</source> - </trans-unit> - <trans-unit id="Line0051" xml:space="preserve" approved="no" translate="yes"> - <source>Cookies server sent:</source> - </trans-unit> - <trans-unit id="Line0057" xml:space="preserve" approved="no" translate="yes"> - <source>YaCy is a GPL'ed project</source> - </trans-unit> - <trans-unit id="Line0058" xml:space="preserve" approved="no" translate="yes"> - <source>with the target of implementing a P2P-based global search engine.</source> - </trans-unit> - <trans-unit id="Line0059" xml:space="preserve" approved="no" translate="yes"> - <source>Architecture (C) by</source> - </trans-unit> - </body> -</file> - <file original="CrawlCheck_p.html" source-language="en" datatype="html"> <body> <trans-unit id="c3c61b8f" xml:space="preserve" approved="no" translate="yes"> diff --git a/locales/ru.lng b/locales/ru.lng index 182c163b2..2e6e703a0 100644 --- a/locales/ru.lng +++ b/locales/ru.lng @@ -108,37 +108,6 @@ Enables or disables augmented browsing. If enabled, all websites will be modifie #"Submit"=="Сохранить" #----------------------------- -#File: AugmentedBrowsingFilters_p.html -#--------------------------- -Augmented Browsing - Filters and Modules==Расширенный просмотр - ссылки и модули -Augmented Browsing Filters<==Фильтры расширенного просмотра< -Select the desired functionality.==Выберите нужный функционал. -External REFLECT:<==Внешний REFLECT:< ->Enabled<==>Включить< -Send webpages to REFLECT (==Отправлять вэб-страницы на REFLECT ( -Select the desired inbuilt functionality==Выберите нужный встроенный функционал. -Add DOCTYPE:==Добавить DOCTYPE: -Add DOCTYPE information if not given. This is required for IE to render position:absolute correctly.==Добавить информацию DOCTYPE, если не задано. Это может потребоваться для просмотра позиции через Internet Explorer. -Reparse webpage:==Повторная обработка вэб-страницы: -#Put webpage back into schema (htmlparser document) to allow node by node manipulation.==Setze Webseite zurück ins Schema (htmlpaser Dokuement), um Knoten bei Knoten Manipulation zu ermöglichen. -#Show overlay interaction buttons:==Zeige Overlay Schaltflächen zur Interaktion: -#Show overlay interaction buttons.==Zeige Overlay Schaltflächen zur Interaktion. -"Submit"=="Сохранить" -#----------------------------- - -#File: AugmentedParsing_p.html -#--------------------------- -Augmented Parsing<==Расширенный анализ< -Global Status==Глобальный статус -With this settings you can activate or deactivate augmented parsing which combines the documents with information from external sources (tags etc.).==Эти настройки позволяют включить или отключить расширенный анализ, который совмещает документы с информацией из внешних источников (например, тэги, и т.п.). -Augmented Parser:==Расширенный анализ: ->Enabled<==>Включить< -Globally enables or disables the augmented parser. This setting requires a restart.==Глобальное включение или отключение расширенного анализа. Изменение этой настройки потребует перезапуск программы. -Augmented Parser - RDFa:==Расширенный анализ RDFa: -Globally enables or disables the RDFa parser. This setting requires a restart.==Глобальное включение или отключение анализа RDFa. Изменение этой настройки потребует перезапуск программы. -"Submit"=="Сохранить" -#----------------------------- - #File: Blacklist_p.html #--------------------------- Blacklist Administration==Управление черными списками @@ -501,7 +470,7 @@ Some pages are protected by passwords.==Некоторые страницы за You should set a password at the <a href="ConfigAccounts_p.html">Accounts Menu</a> to secure your YaCy peer.</p>::==Вы должны установить пароль в меню <a href="ConfigAccounts_p.html">Учётные записи</a>, чтобы защитить узел YaCy.</p>:: You did not open a port in your firewall or your router does not forward the server port to your peer.==Вы не открыли порт на фаерволе или ваш роутер не перенаправляет запросы на порт сервера. This is needed if you want to fully participate in the YaCy network.==Это необходимо, если вы хотите полноценно участвовать в сети. -You can also use your peer without opening it, but this is not recomended.==YaCy может работать и без открытия порта, но это нежелательно. +You can also use your peer without opening it, but this is not recommended.==YaCy может работать и без открытия порта, но это нежелательно. #----------------------------- #File: ConfigHeuristics_p.html @@ -531,7 +500,7 @@ add as global crawl job==Добавить как задачу глобально opensearch load external search result list from active systems below==Загрузка результатов внешнего поиска из списка активных систем ниже When using this heuristic, then every new search request line is used for a call to listed opensearch systems.==При использовании эвристики, каждый поисковый запрос используется для вызова доступных opensearch-систем. -20 results are taken from remote system and loaded simultanously, parsed and indexed immediately.==20 результатов берутся из удалённой системы, загружаются одновременно, анализируются и индексируются сразу. +20 results are taken from remote system and loaded simultaneously, parsed and indexed immediately.==20 результатов берутся из удалённой системы, загружаются одновременно, анализируются и индексируются сразу. To find out more about OpenSearch see==Для поиска информации об OpenSearch смотрите #>OpenSearch.org<==>OpenSearch.org< Available/Active Opensearch System==Доступная/Активная OpenSearch-система @@ -567,7 +536,7 @@ Solr stores the main search index. It is the home of two cores, the default 'col Lazy Value Initialization =="Ленивые" значения инициализации If checked, only non-zero values and non-empty strings are written to Solr fields.==Если отмечено, то только не нулевые значения и не пустые строки, будут записаны в поля Solr. Use deep-embedded local Solr ==Использовать встроенную локальную базу Solr -This will write the YaCy-embedded Solr index which stored within the YaCy DATA directory.==Для записи данных будет использоваться встроенная база Solr, которая хранится в папке DATA. +This will write the YaCy-embedded Solr index which is stored within the YaCy DATA directory.==Для записи данных будет использоваться встроенная база Solr, которая хранится в папке DATA. The Solr native search interface is accessible at<br/>==Интерфейс поиска Solr доступен по ссылке #<a href="solr/select?q=*:*&start=0&rows=3&core=collection1">/solr/select?q=*:*&start=0&rows=3&core=collection1</a>==<a href="solr/select?q=*:*&start=0&rows=3&core=collection1">/solr/select?q=*:*&start=0&rows=3&core=collection1</a> for the default search index (core: collection1) and at<br/>==для поискового индекса по-умолчанию (ядро: collection1) и <br/> @@ -579,15 +548,15 @@ Solr Hosts==Хосты Solr Solr Host Administration Interface==Интерфейс управления Solr Index Size==Документов в индексе It's easy to <a href="https://wiki.yacy.net/index.php/Dev:Solr" target="_blank">attach an external Solr to YaCy</a>.==Присоединить внешнюю базу Solr <a href="https://wiki.yacy.net/index.php/Dev:Solr" target="_blank">просто</a>. -This external Solr can be used instead the internal Solr. It can also be used additionally to the internal Solr, then both Solr indexes are mirrored.==Внешняя база данных Solr будет использоваться вместо встроенной. Вы также можете использовать дополнительно встроенную базу, но тогда индексы будут сохраняться в обе базы. +This external Solr can be used instead of the internal Solr. It can also be used additionally to the internal Solr, then both Solr indexes are mirrored.==Внешняя база данных Solr будет использоваться вместо встроенной. Вы также можете использовать дополнительно встроенную базу, но тогда индексы будут сохраняться в обе базы. Solr URL(s)==Ссылки на базу Solr You can set one or more Solr targets here which are accessed as a shard. For several targets, list them using a ',' (comma) as separator.==Вы можете установить одну или более баз Solr, которые будут доступны распределённо. Адреса нескольких баз указывайте через запятую. -The set of remote targets are used as shard of a complete index. The host part of the url is used as key for a hash function which selects one of the shards (one of your remote servers).==Установленные удалённые цели используются как единое целое. Часть ссылок на хосте используется как ключ для хэш-функции, который выбирается одним из сегментов (один из ваших удалённых серверов). +The set of remote targets are used as shards of a complete index. The host part of the url is used as key for a hash function which selects one of the shards (one of your remote servers).==Установленные удалённые цели используются как единое целое. Часть ссылок на хосте используется как ключ для хэш-функции, который выбирается одним из сегментов (один из ваших удалённых серверов). When a search request is made, all servers are accessed synchronously and the result is combined.==Когда выполнятся поисковый запрос, результат суммируется, так как все серверы доступны синхронно. Sharding Method<br/>==Метод сегментирования<br/> write-enabled (if unchecked, the remote server(s) will only be used as search peers)==Запись разрешена. Если не отмечено, то удалённый сервер будет использоваться только для поиска узлов. Web Structure Index==Индекс вэб-контента -The web structure index is used for host browsing (to discover the internal file/folder structure), ranking (counting the number of references) and file search (there are about fourty times more links from loaded pages as in documents of the main search index).==Индекс вэб-контента используется для просмотра хостов (поиск локальных файлов и папок), ранжирования (подсчет числа ссылок) и поиска файлов (примерно в 40 раз больше ссылок из загруженных страниц в документах главного поискового индекса). +The web structure index is used for host browsing (to discover the internal file/folder structure), ranking (counting the number of references) and file search (there are about forty times more links from loaded pages than in documents of the main search index).==Индекс вэб-контента используется для просмотра хостов (поиск локальных файлов и папок), ранжирования (подсчет числа ссылок) и поиска файлов (примерно в 40 раз больше ссылок из загруженных страниц в документах главного поискового индекса). use citation reference index (lightweight and fast)==Использовать ссылки индекса цитирования (легкий и быстрый) use webgraph search index (rich information in second Solr core)==Использовать поисковый индекс вэб-графики (больше информации во втором ядре Solr) "Set"=="Сохранить" @@ -660,60 +629,6 @@ Make sure that you only download data from trustworthy sources. The new language might overwrite existing data if a file of the same name exists already.==Возможна перезапись существующих данных, если файл с таким именем уже существует. #----------------------------- -#File: ConfigLiveSearch.html -#--------------------------- -Integration of a Search Field for Live Search==Интеграция поискового модуля для живого поиска -Integration of Live Search with YaCy Search Widget==Интеграция поиска с виджетом YaCy -There are basically two methods for integrating the YaCy Search Widget with your web site.==Существуют два основных метода для интеграции виджета YaCy на вашем сайте. -Static hosting of widget on own HTTP server==Размещение виджета на собственном HTTP-сервере -Remote access through selected YaCy Peer==Удалённый доступ через выбранный узел YaCy -Advantages:==Преимущества: -faster connection speed==Быстрая скорость соединения -possibility for local adaptions==Возможность локальных адаптаций -Disadvantages:==Недостатки: -No automatic update to future releases of YaCy Search Widget==Отсутствие обновления будущих релизов виджета -Ajax/JSONP cross domain requests needed to query remote YaCy Peer==AJAX/JSON кросс-доменные запросы, необходимые для удалённого запроса узла -Installing:==Установка: -download yacy-portalsearch.tar.gz from==Необходимо загрузить файл yacy-portalsearch.tar.gz из -unpack within your HTTP servers path==Распаковать на ваш HTTP-сервер -use ./yacy/portalsearch/yacy-portalsearch.html as reference for integration with your own portal page==Использовать ./yacy/portalsearch/yacy-portalsearch.html как ссылку для интеграции на вашей странице поиска -#Remote access through selected YaCy Peer==Удалённый доступ через выбранный узел YaCy -#Advantages:==Преимущества: -Always latest version of YaCy Search Widget==Всегда последняя версия виджета YaCy -No Ajax/JSONP cross domain requests, as Search Widget and YaCy Peer are hosted on the same domain.==Нет AJAX/JSON кросс-доменных запросов, так как виджет поиска и узел YaCy размещены на нескольких доменах. -Under certain cirumstances slower than static hosting==В определённых случаях работает медленнее, чем при размещении на постоянном хостинге. -Just use the code snippet below and paste it any place in your own portal page==Вставьте приведённый ниже фрагмент кода в любое место на вашей странице поиска -Please check if '#[ip]#:#[port]#' is appropriate or replace it with address of the YaCy Peer holding your index==Пожалуйста, проверьте правильность адреса '#[ip]#:#[port]#'. Если необходимо, то вы можете заменить его адресом вашего узла. -A 'Live-Search' input field that reacts as search-as-you-type in a pop-up window can easily be integrated in any web page==Поле "живого" поиска реагирует сразу на вводимый запрос и может просто интегрироваться в вашу вэб-страницу. -This is the same function as can be seen on all pages of the YaCy online-interface (look at the window in the upper right corner)==Эту функцию можно увидеть на всех страницах интерфейса YaCy (например, окно в верхнем правом углу) -#Just use the code snippet below to integrate that in your own web pages==Используйте указанный ниже фрагмент кода, для интеграции на свою вэб-страницу -Just use the code snippet below and paste it any place in your own portal page==Вставьте указанный ниже фрагмент кода в любое место на своей странице поиска -#Please check if the address, as given in the example '#[ip]#:#[port]#' here is correct and replace it with more appropriate values if necessary==Пожалуйста, проверьте правильность адреса указанного в примере '#[ip]#:#[port]#' и, если необходимо, измените на верный. -#Code Snippet:==Фрагмент кода: -#YaCy Portal Search==Поисковый портал YaCy -"Search"=="Поиск" -Configuration options and defaults for 'yconf':==Опции конфигурации и параметры по-умолчанию для 'yconf': -Defaults<==По-умолчанию< -url<==URL< -#is a mandatory property - no default<==является обязательным свойством< -#YaCy P2P Web Search==YaCy P2P Вэб-поиск -Size and position (width | height | position)==Размер и положение (ширина | высота | положение ) -Specifies where the dialog should be displayed. Possible values for position: 'center', 'left', 'right', 'top', 'bottom', or an array containing a coordinate pair (in pixel offset from top left of viewport) or the possible string values (e.g. ['right','top'] for top right corner)==Указывает место отображения диалогового окна. Возможные значения для позиционирования: 'center', 'left', 'right', 'top', 'bottom', или массив содержащий необходимую пару координат (в пикселях от верхнего левого угла области просмотра) или возможные строковые значения (напр. ['right','top'] для верхнего правого просмотра) -Animation effects (show | hide)==Анимационные эффекты (показать | скрыть) -The effect to be used. Possible values: 'blind', 'clip', 'drop', 'explode', 'fold', 'puff', 'slide', 'scale', 'size', 'pulsate'.==Эффект будет использован. Возможные значения: 'blind', 'clip', 'drop', 'explode', 'fold', 'puff', 'slide', 'scale', 'size', 'pulsate'. -Interaction (modal | resizable)==Взаимодействие (модальное | изменяемый размер) -If modal is set to true, the dialog will have modal behavior; other items on the page will be disabled (i.e. cannot be interacted with).==Если модальное значение установлено как "true", то окно будет иметь модальное поведение; другие элементы на странице будут отключены. -Modal dialogs create an overlay below the dialog but above other page elements.==Модальные окна создают наложение под диалоговом окном, но над другими элементами страницы. -If resizable is set to true, the dialog will be resizeable.==Если значение изменяемости окна установлено как "true", то диалоговое окно будет изменяться. -Load JavaScript load_js==Загружать JavaScript load_js -Load Stylesheets load_css==Загружать таблицы стилей load_css -This parameter is used for static hosting only.==Этот параметр используется только при постоянном хостинге. ->Themes<==>Темы< -You can download standard jquery-ui themes or create your own custom themes on==Вы можете загрузить стандартные jQuery UI темы или создать собственные на -Themes are installed in ./yacy/jquery/themes/ (static hosting) or in DATA/HTDOCS/jquery/themes/ on remote YaCy Peer.==Темы установлены в ./yacy/jquery/themes/ (постоянный хостинг) или в DATA/HTDOCS/jquery/themes/ на удалённом узле. -YaCy ships with 'start' and 'smoothness' themes pre-installed.==В YaCy уже установлены некоторые темы. -#----------------------------- - #File: ConfigNetwork_p.html #--------------------------- <html lang="en">==<html lang="ru"> @@ -818,7 +733,7 @@ URL of a Small Corporate Image<==Адрес маленького логотип URL of a Large Corporate Image<==Адрес крупного логотипа< Enable Search for Everyone?==Разрешить поиск каждому? Search is available for everyone==Поиск разрешён каждому -Only the administator is allowed to search==Поиск разрешён только администратору +Only the administrator is allowed to search==Поиск разрешён только администратору Show additional interaction features in footer==Показать дополнительные данные в нижнем колонтитуле User-Logon==Вход пользователя Snippet Fetch Strategy & Link Verification==Принцип получения фрагментов и проверка ссылок @@ -1370,7 +1285,7 @@ Never load any page that is already known. Only the start-url may be loaded agai Robot Behaviour==Поведение робота Use Special User Agent and robot identification==Использовать специальный User Agent и идентификацию робота You are running YaCy in non-p2p mode and because YaCy can be used as replacement for commercial search appliances==Вы запустили YaCy в не-p2p режиме, поэтому YaCy может использован в качестве замены коммерческим поисковым системам -(like the GSA) the user must be able to crawl all web pages that are granted to such commercial plattforms.==(например, GSA). Пользователь должен иметь возможность индексировать все вэб-страницы, представленные коммерческими платформами. +(like the Google Search Appliance aka GSA) the user must be able to crawl all web pages that are granted to such commercial platforms.==(например, GSA). Пользователь должен иметь возможность индексировать все вэб-страницы, представленные коммерческими платформами. Not having this option would be a strong handicap for professional usage of this software. Therefore you are able to select==Отсутствие этой опции может сильно припятствовать профессиональному использованию этой программы. Поэтому вы можете выбрать alternative user agents here which have different crawl timings and also identify itself with another user agent and obey the corresponding robots rule.==альтернативные User-Agent'ты здесь. Они будут иметь различные задержки индексирования и также идентифицировать себя с другим User-Agent'ом и соблюдать соответствующие правила роботов. Index Administration==Управление индексом @@ -1401,24 +1316,6 @@ Solr Schema==Схема Solr "Start New Crawl Job"=="Начать новое индексирование" #----------------------------- -#File: CrawlStartIntranet_p.html -#--------------------------- -#Intranet Crawl Start==Запустить индексирование интранета -#When an index domain is configured to contain intranet links,==Wenn eine Index Domain konfiguriert wurde die Intranet Links enthält, -#the intranet may be scanned for available servers.==kann dieses Intranet auf verfügbare Server gescannt werden. -#Please select below the servers in your intranet that you want to fetch into the search index.==Bitte in der folgenden Server Liste aus Ihrem Intranet auswählen, welche Sie in den Suchindex aufnehmen wollen. -#This network definition does not allow intranet links.==Diese Netzwerk Konfiguration erlaubt keine Intranet Links. -#A list of intranet servers is only available if you confiugure YaCy to index intranet targets.==Eine Liste mit Servern aus dem Intranet ist nur verfügbar, wenn Sie YaCy auch konfiguriert haben Intranetseiten zu indexieren. -#To do so, open the <a href="ConfigBasic.html">Basic Configuration</a> servlet and select the 'Intranet Indexing' use case.==Um diese Einstellung vorzunehmen, bitte im Servlet <a href="ConfigBasic.html">Basis Konfiguration</a> den Anwendungsfall 'Intranet Indexierung' auswählen. -Available Intranet Server==Доступный интранет-сервер -#>IP<==>IP-адрес< -#>URL<==>URL-адрес< ->Process<==>Состояние< ->not in index<==>нет в индексе< ->indexed<==>проиндексировано< -"Add Selected Servers to Crawler"=="Добавить выбранные серверы в индексатор" -#----------------------------- - #File: CrawlStartScanner_p.html #--------------------------- Network Scanner==Сканер сети @@ -1605,7 +1502,7 @@ only urls with the <phrase> in the url==только ссылка c <ph only urls with the <phrase> within outbound links of the document==только ссылки с <phrase> без внешних ссылок на документ only urls with extension==только ссылка с расширением only urls from host==только ссылка из хоста -only pages with as-author-anotated==только страницы с аннотацией +only pages with as-author-annotated==только страницы с аннотацией only pages from top-level-domains==только страницы с TLD only resources from http or https servers==только ресурсы с HTTP или HTTPS-серверов only resources from ftp servers==только ресурсы с FTP серверов @@ -1640,30 +1537,6 @@ json search results==Результаты поиска в формате JSON for ajax developers: get the search rss feed and replace the '.rss' extension in the search result url with '.json'==для AJAX-разработчиков: замените расширение rss-ленты с .rss на .json #----------------------------- -#File: IndexCleaner_p.html -#--------------------------- -Index Cleaner==Очистка индекса ->URL-DB-Cleaner==>Очистка базы данных URL-адресов -#ThreadAlive: -#ThreadToString: -Total URLs searched:==Всего найдено URL-адресов: -Blacklisted URLs found:==URL-адреса, найденные в черном списке: -Percentage blacklisted:==Процент находящихся в черном списке: -last searched URL:==последняя найденная URL-ссылка: -last blacklisted URL found:==последняя найденная URL-ссылка из черного списка: ->RWI-DB-Cleaner==>Очистка базы данных URL-адресов -RWIs at Start:==RWIs beim Start: -RWIs now:==RWIs jetzt: -wordHash in Progress:==Wort-Hash in Benutzung: -last wordHash with deleted URLs:==letzter Wort-Hash mit gelöschten URLs: -Number of deleted URLs in on this Hash:==Anzahl an gelöschten URLs in diesem Hash: -URL-DB-Cleaner - Clean up the database by deletion of blacklisted urls:==URL-DB-Aufräumer - Räumen Sie Ihre Datenbank auf, indem Sie URLs, die auf Ihrer Blacklist stehen, löschen: -Start/Resume==Начать/Продолжить -Stop==Остановить -Pause==Пауза -RWI-DB-Cleaner - Clean up the database by deletion of words with reference to blacklisted urls:==RWI-DB-Aufräumer - Räumen Sie Ihre Datenbank auf, indem Sie Wörter, die mit Ihrer Blacklist verbunden sind, löschen: -#----------------------------- - #File: IndexControlRWIs_p.html #--------------------------- Reverse Word Index Administration==Управление обратным индексом слов @@ -2014,64 +1887,6 @@ This is the most generic option: select a set of documents using a solr query.== #----------------------------- -#File: IndexImport_p.html -#--------------------------- -#YaCy '#[clientname]#': Index Import==YaCy '#[clientname]#': Index Import -#Crawling Queue Import==Crawling Puffer Import -#Index DB Import==Index Datenbank Import -#The local index currently consists of (at least) #[wcount]# reverse word indexes and #[ucount]# URL references.==Der lokale Index besteht zur Zeit aus (mindestens) #[wcount]# Wörtern und #[ucount]# URLs. -#Import Job with the same path already started.==Ein Import mit dem selben Pfad ist bereits gestartet. -Starting new Job==Начать новое задание -Import Type:==Импорт типа: -Cache Size==Размер кэша -#Usage Examples==Benutzungs-<br />beispiele -#"Path to the PLASMADB directory of the foreign peer"=="Pfad zum PLASMADB Verzeichnis des fremden Peer" -Import Path:==Путь импорта: -"Start Import"=="Импорт начат" -Attention:==Внимание: -#Always do a backup of your source and destination database before starting to use this import function.==Machen Sie immer ein Backup von Ihrer Quell- und Zieldatenbank, bevor Sie die Import-Funktion nutzen. -Currently running jobs==Выполняющиеся задания -Job Type==Тип задания ->Path==>Путь -Status==Состояние -#Elapsed<br />Time==Verstrichene<br />Zeit -#Time<br />Left==verbl.<br />Zeit -Abort Import==Прервать импорт -Pause Import==Приостановить импорт -Finished::Running::Paused==Завершено::Запущено::Приостановлено -"Abort"=="Прервать" -#"Pause"=="Пауза" -"Continue"=="Продолжить" -Finished jobs==Завершенные задания -"Clear List"=="Очистить список" -Last Refresh:==Последнее обновление: -Example Path:==Пример пути: -Requirements:==Требования: -You need to have at least the following directories and files in this path:==Вам необходимо указать путь к файлам и папкам:: ->Type==>Тип ->Writeable==>Запись возможна ->Description==>Описание ->File==>Файл ->Directory==>Директория ->Yes<==>Да< ->No<==>Нет< -#The LoadedURL Database containing all loaded and indexed URLs==Die 'geladene URLs'-Datenbank, enthält alle geladenen und indexierten URLs -#The assortment directory containing parts of the word index.==Das Assortment-Verzeichnis, enthält Teile des Wort-Index. -#The words directory containing parts of the word index.==Das Wort-Verzeichnis, enthält Teile des Wort-Index. -#The assortment file that should be imported.==Die Assortment-Datei die importiert werden soll. -#The assortment file must have the postfix==Die Assortment-Datei muss den Suffix -#.db".==.db" haben. -#If you would like to import an assortment file from the <tt>PLASMADBACLUSTERABKP</tt>== Wenn Sie eine Assortment-Datei aus <tt>PLASMADBACLUSTERABKP</tt> importieren wollen, -#you have to rename it first.==müssen Sie sie zuerst umbenennen. -#>Notes:==>Anmerkung: -#Please note that the imported words are useless if the destination peer doesn't know==Bitte bedenken Sie, dass die importierten Wörter nutzlos sind, wenn der Ziel-Peer nicht weiß, -#the URLs the imported words belongs to.==zu welchen URLs sie gehören. -#Crawling Queue Import:==Crawler-Puffer-Import: -#Contains data about the crawljob an URL belongs to==Enthält Daten über den Crawljob, zu dem eine URL gehört -#The crawling queue==Der Crawler-Puffer -#Various stack files that belong to the crawling queue==Verschiedene Stack-Dateien, die zum Crawler-Puffer gehören -#----------------------------- - #File: IndexImportMediawiki_p.html #--------------------------- MediaWiki Dump Import==Импорт дампа MediaWiki @@ -2232,7 +2047,7 @@ To integrate a search window into phpBB3, you must insert some code into a forum There are several templates that can be used for phpBB3, but in this guide we consider that==Здесь представлены некоторые шаблоны, которые вы можете использовать для phpBB3, но это руководство мы рассмотрим you are using the default template, 'prosilver'==на примере использования шаблона по-умолчанию, 'prosilver'. open styles/prosilver/template/overall_header.html==откройте styles/prosilver/template/overall_header.html -find the line where the default search window is displayed, thats right behind the <pre><div id="search-box"></pre> statement==найдите строку, где показано окно поиска по-умолчанию. Будет указан следующий текст: <pre><div id="search-box"></pre> +find the line where the default search window is displayed, that's right behind the <pre><div id="search-box"></pre> statement==найдите строку, где показано окно поиска по-умолчанию. Будет указан следующий текст: <pre><div id="search-box"></pre> Insert the following code right behind the div tag==Вставьте следующий код за тэгом "div" YaCy Forum Search==Поиск по форуму ;YaCy Search==;Поиск YaCy @@ -2476,7 +2291,7 @@ A table with recently started crawls is presented on the Index Create - page==Т A change in the personal profile will create a news entry. You can see recently made changes of==Изменение персонального профиля также создаёт сообщение. Вы можете увидеть недавно сделанные изменения в profile entries on the Network page, where that profile change is visualized with a '*' beside the 'P' (profile) - selector.==профиле на странице сети. Изменение профиля отмечено звёздочкой '*' рядом с 'P' (профиль) выбор. #More news services will follow.== -Above you can see four menues:==Вы увидете четыре меню: +Above you can see four menus:==Вы увидете четыре меню: <strong>Incoming News (#[insize]#)</strong>: latest news that arrived your peer.==<strong>Входящие сообщения(#[insize]#)</strong>: Последние сообщения, полученные вашим узлом. Only these news will be used to display specific news services as explained above.==Только эти сообщения будут использоваться для отображения определённых служб сообщений. You can process these news with a button on the page to remove their appearance from the IndexCreate and Network page==Вы можете управлять этими сообщениями через кнопку на странице, для удаления их из Монитора индексирования и страницы сети. @@ -2529,7 +2344,7 @@ This shall improve performance of the affected process (proxy or search).==Эт (current delta is==(Текущая разница seconds since last proxy/local-search/remote-search access.)==секунд после последнего доступа к прокси/локальному поиску/удалённому поиску.) Online Caution Case==Индексатор -indexer delay (milliseconds) after case occurency==Задержка индексатора (мс) +indexer delay (milliseconds) after case occurrence==Задержка индексатора (мс) Proxy:==Прокси: Local Search:==Локальный поиск: Remote Search:==Удалённый поиск: @@ -2672,7 +2487,7 @@ Queue Size<br />Maximum==Макс.<br />размер очереди Executors:<br />Current Number of Threads==Исполнители:<br />Текущее число потоков Concurrency:<br />Maximum Number of Threads==Параллельность:<br />Макс. число потоков Concurrency:<br />Number of Threads==Параллельность:<br />Число потоков -Childs==Потомки +Children==Потомки Average<br />Block Time<br />Reading==Среднее<br />время блокировки<br />чтения Average<br />Exec Time==Среднее время выполнения Average<br />Block Time<br />Writing==Среднее<br />время блокировки<br />записи @@ -2944,7 +2759,7 @@ Remote proxy port==Порт удалённого прокси #the port of the remote proxy== Remote proxy user==Пользователь удалённого прокси Remote proxy password==Пароль удалённого прокси -No-proxy adresses==Не использовать для прокси адреса +No-proxy addresses==Не использовать для прокси адреса IP addresses for which the remote proxy should not be used==IP-адреса, для которых удалённый прокси не используется "Submit"=="Сохранить" Changes will take effect immediately.==Изменения будут применены немедленно. @@ -2973,7 +2788,7 @@ HTTPS Server Port==Порт HTTPS Version==версии Proxy Access Settings==Настройки доступа к прокси These settings configure the access method to your own http proxy and server.==Здесь вы можете настроить доступ к вашему http-прокси и серверу. -All traffic is routed throug one single port, for both proxy and server.==Весь трафик направляется на один порт для прокси и сервера. +All traffic is routed through one single port, for both proxy and server.==Весь трафик направляется на один порт для прокси и сервера. Server/Proxy Port Configuration==Настройка порта сервера/прокси The socket addresses where YaCy should listen for incoming connections from other YaCy peers or http clients.==Адреса сокетов, которые прослушиваются на входящие соединения от других узлов или http-клиентов. You have four possibilities to specify the address:==Вы можете указать четыре адреса: @@ -3105,7 +2920,7 @@ Error with submitted information.==Ошибка при сохранении из Nothing changed.</p>==Изменения не производились.</p> The user name must be given.==Укажите имя пользователя Your request cannot be processed.==Ваш запрос не может быть выполнен. -The password redundancy check failed. You have probably misstyped your password.==Пароль указан неверно. Введите пароль еще раз. +The password redundancy check failed. You have probably mistyped your password.==Пароль указан неверно. Введите пароль еще раз. Shutting down.</strong><br />Application will terminate after working off all crawling tasks.==Выключение.</strong><br />Приложение будет закрыто после завершения индексирования. Your administration account setting has been made.==Ваша учётная запись настроена вручную. Your new administration account name is #[user]#. The password has been accepted.<br />If you go back to the Settings page, you must log-in again.==Ваше новое имя пользователя #[user]#. Пароль принят.<br />Для возврата на страницу настроек, введите имя пользователя и пароль снова. @@ -3385,7 +3200,7 @@ YaCy Supporters<==Спонсоры YaCy< provided by YaCy peers using public bookmarks, link votes and crawl start points==automatisch erzeugt durch öffentliche Lesezeichen, Link-Bewertungen und Crawl-Startpunkte anderer YaCy-Peers "Please enter a comment to your link recommendation. (Your Vote is also considered without a comment.)"=="Bitte geben Sie zu Ihrer Linkempfehlung einen Kommentar ein. (Ihre Stimme wird auch ohne Kommentar angenommen.)" #"authentication required"=="Запрос авторизации" -Hide surftips for users without autorization==Скрыть подсказки для неавторизованных пользователей +Hide surftips for users without authorization==Скрыть подсказки для неавторизованных пользователей Show surftips to everyone==Разрешить подсказки всем #----------------------------- @@ -3670,7 +3485,7 @@ Discover Terms:==Параметры открытия: no auto-discovery (empty vocabulary)==ручное открытие (словарь пуст) from file name==из названия файла from page title ==из заголовка страницы -from page title (splitted)==из заголовка страницы (разделённой) +from page title (split)==из заголовка страницы (разделённой) from page author==из страницы автора "Create"=="Создать" Vocabulary Editor==Редактор словаря @@ -3834,8 +3649,8 @@ These tags create headlines. If a page has three or more headlines, a table of c Headlines of level 1 will be ignored in the table of content.==Заголовки первого уровня пропускаются в оглавлении. #text==Text These tags create stressed texts. The first pair emphasizes the text (most browsers will display it in italics),==Эти тэги создают подчёркнутый текст. Первая пара делает текст подчёркнутым (большинство браузеров отображают это курсивом), -the second one emphazises it more strongly (i.e. bold) and the last tags create a combination of both.==второе подчёркивание более выраженно (выделяется жирным) и последний тэг объединяет два предыдущих. -Text will be displayed <span class="strike">stricken through</span>.==Текст будет отображаться <span class="strike">перечёркнутым</span>. +the second one emphasizes it more strongly (i.e. bold) and the last tags create a combination of both.==второе подчёркивание более выраженно (выделяется жирным) и последний тэг объединяет два предыдущих. +Text will be displayed <span class="strike">struck through</span>.==Текст будет отображаться <span class="strike">перечёркнутым</span>. Text will be displayed <span class="underline">underlined</span>.==Текст будет отображаться <span class="underline">подчёркнутым</span>. Lines will be indented. This tag is supposed to mark citations, but may as well be used for styling purposes.==Линии будут с отступом. Этот тэг служит для выделения цитат, но может быть использован для создания стиля страницы. #point==точка @@ -4113,13 +3928,6 @@ Database Reader for phpBB3 Forums==Обозреватель баз данных Dump Reader for MediaWiki dumps==Обозреватель дампов MediaWiki #----------------------------- -#File: env/templates/submenuSearchIntegration.template -#--------------------------- -Search Integration into External Sites==Интеграция поиска во внешние сайты -Live Search Anywhere=="Живой" поиск везде -Search Box Anywhere==Поиск везде -#----------------------------- - #File: env/templates/submenuMaintenance.template #--------------------------- RAM/Disk Usage & Updates==Использование памяти и обновление системы @@ -4221,16 +4029,6 @@ Ranking and Heuristics==Ранжирование и эвристика #----------------------------- -#File: env/templates/submenuContentIntegration.template -#--------------------------- -External Content Integration==Интеграция внешнего контента -Import phpBB3 forum==Импорт форума phpBB3 -Import Mediawiki dumps==Импорт дампов Mediawiki -Import OAI-PMH Sources==Импорт OAI-PMH источников -#----------------------------- - -#----------------------------- - #File: env/templates/submenuCrawlMonitor.template #--------------------------- Overview</a>==Обзор</a> @@ -4341,17 +4139,6 @@ Publication==Публикации File Hosting==Хостинг файлов #----------------------------- -#File: env/templates/submenuSearchConfiguration.template -#--------------------------- -Integrated Search Configuration==Конфигурация интегрированного поиска -#----------------------------- - -#File: env/templates/submenuViewLog.template -#--------------------------- -Server Log Menu==Меню лога сервера -Server Log==Лог сервера -#----------------------------- - #File: env/templates/submenuWebStructure.template #--------------------------- Web Visualization==Просмотр индекса @@ -4393,16 +4180,6 @@ could not be found.==не найден. Did you mean:==Вы имели ввиду: #----------------------------- -#File: www/welcome.html -#--------------------------- -YaCy: Default Page for Individual Peer Content==YaCy: Страница по-умолчанию для контента узла -Individual Web Page==Личная вэб-страница -Welcome to your own web page<br />in the <strong>YaCy Network==Добро пожаловать на вашу вэб-страницу<br />im <strong>в сети YaCy -THIS IS A DEMONSTRATION PAGE FOR YOUR OWN INDIVIDUAL WEB SERVER!==Это демонстрационная страница для вашего личного вэб-сервера! -#PLEASE REPLACE THIS PAGE BY PUTTING A FILE index.html INTO THE PATH==BITTE ERSETZEN SIE DIESE SEITE, INDEM SIE EINE DATEI MIT DEM NAMEN index.html IM VERZEICHNIS -<YaCy-application-home><strong>#[wwwpath]#</strong>==<YaCy-Programmpfad><strong>#[wwwpath]#</strong> ABLEGEN. -#----------------------------- - #File: js/Crawler.js #--------------------------- "Continue this queue"=="Запустить эту очередь" @@ -4418,23 +4195,6 @@ THIS IS A DEMONSTRATION PAGE FOR YOUR OWN INDIVIDUAL WEB SERVER!==Это дем >Date==>Дата #----------------------------- -#File: js/jquery-flexigrid.js -#--------------------------- -'Displaying {from} to {to} of {total} items'=='Показываю {from} от {to} из {total} элементов' -'Processing, please wait ...'=='Обработка, пожалуйста, подождите ...' -'No items'=='Нет обьектов' -#----------------------------- - -#File: js/jquery-ui-1.7.2.min.js -#--------------------------- -Loading…==Загрузка… -#----------------------------- - -#File: js/jquery.ui.all.min.js -#--------------------------- -Loading…==Загрузка… -#----------------------------- - #File: api/citation.html #--------------------------- Document Citations for==Цитаты документа для diff --git a/locales/sk.lng b/locales/sk.lng index 941d778d9..572dc8b21 100644 --- a/locales/sk.lng +++ b/locales/sk.lng @@ -174,7 +174,7 @@ Some pages are protected by passwords.==Niektore stranky su chranene heslom. You should set a password here to secure your YaCy peer.==Mali by ste si zvolit heslo na ochranu Vaseho YaCy peera
You did not open a port in your firewall or your router does not forward the server port to your peer.==Neotvorili ste ziaden port vo Vasom firewalle, alebo Vas router nepreposiela (neforwarduje) port servera Vasemu peeru.
This is needed if you want to fully participate in the YaCy network.==Toto je nutne ak sa chcete plne ucastnit a podielat na praci siete YaCy.
-You can also use your peer without opening it, but this is not recomended.==Taktisto mozete pouzivat Vaseho peera bez jeho otvorenia, avsak toto sa nedoporucuje.
+You can also use your peer without opening it, but this is not recommended.==Taktisto mozete pouzivat Vaseho peera bez jeho otvorenia, avsak toto sa nedoporucuje.
The peer port was changed successfully. Your browser will be redirected to the new==Port peera bol uspesne zmeneny. Vas browser bude presmerovany na novu
location</a> in 10 seconds.==adresu</a> za 10 sekund.
#-----------------------------
@@ -223,21 +223,6 @@ For explanation please look into defaults/yacy.init==Vysvetlenie najdete v subor "Save"=="Uloz"
#-----------------------------
-#File: ConfigSkins_p.html
-#---------------------------
-Skin Selection==Vyber skinov
-You can change the appearance of YaCy with skins. Select one of the default skins, download new skins, or create your own skin.==Vzhlad YaCy mozete zmenit pomocou skinov. Zvolte jeden z predvytvorenych skinov, stiahnite si nove, alebo vytvorte vlastne skiny.
-Current skin:==Pouzity skin:
-Available Skins:==Dostupne skiny:
-"Use"=="Pouzi"
-"Delete"=="Zmaz"
-Install new skin from URL:==Nainstaluj novy skin z URL adresy:
-Use this skin==Pouzi tento skin
-"install"=="Nainstaluj"
-Unable to get URL:==Nie je mozne nainstalovat pozadovany subor z URL adresy:
-Error saving the skin.==Chyba pri stahovani skinu.
-#-----------------------------
-
#File: Connections_p.html
#---------------------------
Connection Tracking==Stav spojenia
@@ -392,64 +377,6 @@ show all==zobrazit vsetko #Architecture (C) by Michael Peter Christen==Architektur (c) vytvoril Michael Peter Christen
#-----------------------------
-#File: IndexCleaner_p.html
-#---------------------------
-# NOT USED
-#Index Control==Kontrola indexu
-Index Cleaner==Cistic indexu
-ThreadAlive:==Zive vlakno:
-ThreadToString:==Vlakno k retazcu:
-Total URLs searched:==Celkovo prezrete URL adresy:
-Blacklisted URLs found:==Z blacklistu najdene URL adresy:
-Percentage blacklisted:==Percentualne z blacklistu:
-last searched URL:==osledna prehladana URL adresa:
-last blacklisted URL found:==posledna najdena URL adresa z blacklistu:
-RWIs at Start:==RWIs pri starte:
-RWIs now:==sucasne RWIs:
-wordHash in Progress:==Hash-slovo v pouziti:
-last wordHash with deleted URLs:==posledne hash-slovo so zmazanymi URL adresami:
-Number of deleted URLs in on this Hash:==Pocet zmazanych URL adries v tomto hashi:
-UrldbCleaner - Clean up the database by deletion of blacklisted urls:==UrlDBCleaner - Vycistite databazu tym ze zmazete URL adresy ktore sa nachadzaju vo vasom blackliste:
-Start/Resume==Start/Pokracuj
-Stop==Stop
-Pause==Pauza
-RWIDbCleaner - Clean up the database by deletion of words with reference to blacklisted urls:==UrlDBCleaner - Vycistite databazu tym ze zmazete slova ktore su v spojeni s vasim blacklistom:
-#-----------------------------
-
-#File: IndexControl_p.html
-#---------------------------
-Index Control==Kontrola indexu
-Index Administration==Administrácia indexu
-The local index currently consists of (at least) #[wcount]# reverse word indexes and #[ucount]# URL references==Lokálny index pozostáva momentálne z #[wcount]# slov a #[ucount]# URL odkazov.
-# NOT USED
-#To transfer the whole index to an other peer, click==Na prenos kompletného indexu inému peerov kliknite na
-# NOT USED
-#To import an index from a file or a foreign peer click==Na import zo súboru iného peera kliknite na
-"Show URL Entries for Word"=="Zobraz URL záznamy k tomuto slovu"
-"Generate List"=="Vytvor zoznam"
-"Show URL Entries for Word-Hash"=="Zobraz URL záznamy k tomuto hash-slovu"
-"Transfer to other peer"=="Prenes inému peerovy"
-URL:==URL adresa:
-"Show Details for URL"=="Zobraz detaily k URL adrese"
-URL-Hash:==Hash-URL adresa:
-"Show Details for URL-Hash"=="Zobraz detaily k hash-URL adrese"
-DHT Transmission control:==DHT-kontrola prenosu:
-The transmission is necessary for the functionality of global search on other peers.==Na to aby fungovalo vyhladávanie u iných peerov je potrebný prenos.
-If you switch off distribution or receipt of RWIs you will be banned from global search.==Z globálneho vyhladávania budete vylúcený ak vypnete distribúciu alebo obsah RWIsov.
-Index Distribution:==Distribúcia indexu:
-This enables automated, DHT-ruled Index Transmission to other peers.==AK aktivované, tak bude vykonávaný automatický, DHT pravidlami kontrolovaný prenos iným peerom.
-If checked, DHT-Transmission is enabled even during crawling.==AK aktivované, tak DHT prenos je povolený aj pocas crawlovania.
-Index Receive:==Prijímanie indexu:
-Accept remote Index Transmissions. This works only if you are a senior peer.==Akceptuj vzdialený prenos indexu, funguje len ak ste senior peer.
-The DHT-rules do not work without this function.==DHT pravidlá nefungujú bez aktivácie tejto funkcie.
-If checked, your peer silently ignores transmitted URLs that match your blacklist==Ak aktivované, tak Váš peer bude potichu ignorovat URL adresy z Vašeho blacklistu.
-"set"=="Uloz"
-Changes will take effect immediately==Zmenu su okamzite ucinne
-#Let this translation here to avoid errors.-
-Word:</td>==Slovo:</td>
-Word-Hash:</td>==Hash-slovo:</td>
-#-----------------------------
-
#File: CrawlStartExpert.html
#---------------------------
<html lang="en">==<html lang="sk">
@@ -609,33 +536,6 @@ Busy Peers==Vytazeni peeri #{busy}##[name]# (#[due]# seconds due) #{/busy}#==#{busy}##[name]# (#[due]# sekund) #{/busy}#
#-----------------------------
-#File: IndexCreateIndexingQueue_p.html
-#---------------------------
-Index Creation/Indexing Queue==Vytvorenie indexu/Cakacia listina indexu
-Index Creation: Indexing Queue==Vytvorenie indexu: Cakacia listina indexu
-The indexing queue is empty==Cakacia listina indexu je prazdna.
-"clear indexing queue"=="Zmaz cakaciu listinu indexu"
-# NOT USED
-#There are <b>#[num]#</b> entries in the indexing queue. Showing <b>#[show]#</b> entries with a total size of <b>#[totalSize]#</b>.==V cakacej listine indexu sa nachadza <b>#[num]#</b> zaznamov. Zobrazuje sa <b>#[show]#</b> zaznamov s celkovou velkostou <b>#[totalSize]#</b>.
-Show last==Zobraz posledne
-</a> entries.==</a> zaznami
-Initiator==Iniciator
-Depth==Hlbka
-Modified Date==Posledna zmena
-Anchor Name==Nazov kotvy
-URL==URL adresa
-Size</th>==Velkost</th>
-Delete==Zmazat
-# NOT USED
-#Rejected URL List:</b> There are #[num]# entries in the rejected-urls list.==Zoznam odmietnutych URL adries:</b> V zozname odmietnutych URL adries sa nachadza #[num]# zaznamov.
-Showing latest #[num]# entries.==Zobrazuju sa #[num]# posledne zaznami.
-"show more"=="zobraz ostatne"
-"clear list"=="vymaz zoznam"
-There are #[num]# entries in the rejected-queue:==V cakacej listine odmietnutych sa nachadza #[num]# zaznamov:
-Executor==Vykonavatel
-Fail-Reason==Dovod zlyhania
-#-----------------------------
-
#File: IndexCreateLoaderQueue_p.html
#---------------------------
Index Creation / Loader Queue==Vytvorenie indexu / Cakacia listina nahravaca
@@ -662,233 +562,6 @@ Modified Date==Datum poslednej zmeny Anchor Name==Meno kotvy
#-----------------------------
-#File: IndexCreateWWWGlobalQueue_p.html
-#---------------------------
-# NOT USED
-#YaCy '#[clientname]#': Index Creation / WWW Global Crawl Crawl Queue==YaCy '#[clientname]#': Vytvorenie indexu / Globalna WWW cakacia listina
-Index Creation: WWW Global Crawl Queue==Vytvorenie indexu: Globalna WWW cakacia listina
-This queue stores the urls that shall be sent to other peers to perform a remote crawl.==Tato cakacia listi naobsahuje URL adresy ktore by sa mali poslat inym peerom na vykonanie vzdialeneho crawlu.
-If there is no peer for remote crawling available, the links are crawled locally.==Ak nie je dostupny ziaden peer na vzdialeny crawl, tak budu tieto linky crawlovane lokalne.
-The global crawler queue is empty==Globalna cakacia listina crawleru je prazdna.
-"clear global crawl queue"=="Zmaz globalnu cakaciu listinu crawleru"
-# NOT USED
-#There are <b>#[num]#</b> entries in the global crawler queue. Showing <b>#[show-num]#</b> most recent entries.==V globalnej cakacej listine crawleru sa nachadza <b>#[num]#</b> zaznamov. Zobrazuje sa <b>#[show-num]#</b> poslednych zaznamov.
-Show last==Zobraz posledne
-</a> entries.==</a> zaznamy.
-Initiator==Iniciator
-Profile==Profil
-Depth==Hlbka
-Modified Date==Datum poslednej zmeny
-Anchor Name==Meno kotvy
-#URL==URL
-#-----------------------------
-
-#File: IndexCreateWWWLocalQueue_p.html
-#---------------------------
-YaCy '#[clientname]#': Index Creation / WWW Local Crawl Queue==YaCy '#[clientname]#': Vytvorenie indexu / Lokalna WWW cakacia listina
-Index Creation: WWW Local Crawl Queue==Vytvorenie indexu: Lokalna WWW cakacia listina
-This queue stores the urls that shall be crawled localy by this peer.==Tato cakacia listi naobsahuje URL adresy ktore by sa mali byt crawlovane lokalne Vasom peeri.
-It may also contain urls that are computed by the proxy-prefetch.==Obsahuje tiez URL adresy vytvorene pomocou proxy predvyberu.
-The local crawler queue is empty==Lokalna cakacia listina crawleru je prazdna.
-# NOT USED
-#"clear local crawl queue"=="Zmaz lokalnu cakaciu listinu crawleru"
-# NOT USED
-#There are <b>#[num]#</b> entries in the local crawler queue. Showing <b>#[show-num]#</b> most recent entries.==V lokalnej cakacej listine crawleru sa nachadza <b>#[num]#</b> zaznamov. Zobrazuje sa <b>#[show-num]#</b> poslednych zaznamov.
-Show last==Zobraz posledne
-</a> entries.==</a> zaznamy.
-Initiator==Iniciator
-Profile==Profil
-Depth==Hlbka
-Modified Date==Datum poslednej zmeny
-Anchor Name==Meno kotvy
-URL==URL adresa
-#### Delete Entries:==Zmaz zaznami: # translation doesnt work :(
-# NOT USED
-#"Delete"=="Zmaz"
-Delete==Zmaz
-# NOT USED
-#[Delete]==[Zmaz]
-This may take a quite long time.==Toto moze chvilku trvat.
-#-----------------------------
-
-#File: IndexImport_p.html
-#---------------------------
-YaCy '#[clientname]#': Index Import==YaCy '#[clientname]#': Import indexu
-Index DB Import==Import databazoveho indexu
-The local index currently consists of (at least) #[wcount]# reverse word indexes and #[ucount]# URL references.== Lokalny index pozostava aktualne z (najmenej) #[wcount]# slov a #[ucount]# URL adries.
-Import Job with the same path already started.==Import s rovnakou cestou uz bol odstartovany.
-Starting new Job==Odstartuj novy import
-Import Type:==Typ importu:
-Cache Size==Velkost cache:
-Usage Examples==Priklady pouzitia
-"Path to the PLASMADB directory of the foreign peer"=="Cesta k PLASMADB adresaru cudzieho peera"
-Import Path:==Cesta importu:
-"Start Import"=="Odstartuj import"
-Attention:==Pozor:
-Always do a backup of your source and destination database before starting to use this import function.==Urobte si vzdy zalohu Vasej zdrojovej a cielovej databazy predtym ako spustite import-funkciu.
-Currently running jobs==Prave vykonavane ulohy
-Job Type==Typ ulohy
->Path==>Cesta
-###Status==Stav # couldnt get the proper translation
-# NOT USED
-#Elapsed<br>Time==Uplynuly<br>cas
-# NOT USED
-#Time<br>Left==Zostavajuci<br>cas
-Import Status==Stav importu
-# NOT USED
-#Import<br>Status==Stav<br>importu
-Abort Import==Prerus import
-Pause Import==Pozastav import
-Finished::Running::Paused==Ukoncene::Beziace::Pozastavene
-# NOT USED
-#Continue Import==Pokracuj v importe
-Finished jobs==Ukoncene importy
-"Clear List"=="Zmaz zoznam"
-Last Refresh:==Posledna aktualizacia:
-Example Path:==Priklad cesty:
-Requirements:==Poziadavky:
-You need to have at least the following directories and files in this path:==V tejto ceste musite mat aspon nasledovne subory a cesty:
->Type==>Typ
->Writeable==>Zapisovatelne
->Description==>Popis
->File==>Subor
->Directory==>Adresar
->Yes<==>Ano<
->No<==>Nie<
-The LoadedURL Database containing all loaded and indexed URLs==Databaza 'nahratych URL adries' obsahuje vsetky nahrate a zaindexovane URL adresy
-The assortment directory containing parts of the word index.==Adresar Assortment, obsahuje casti indexu slov.
-The words directory containing parts of the word index.==Adresar slov, obsahuje casti indexu slov.
-The assortment file that should be imported.==Assortment subor na import.
-The assortment file must have the postfix==Assortment subor musi mat priponu
-.db".==.db".
-If you would like to import an assortment file from the <tt>PLASMADBACLUSTERABKP</tt>==Ak chcete importovat Assortment subor z <tt>PLASMADBACLUSTERABKP</tt>,
-you have to rename it first.==tak ho musite najprv premenovat.
->Notes:==>Poznamky:
-Please note that the imported words are useless if the destination peer doesn't know==Nezabudnite prosim, ze importovane slova su nepouzitelne ak cielovy peer nevie
-the URLs the imported words belongs to.==ku ktorym URL adresam tieto slova patria.
-Crawling Queue Import:==Import cakacej listiny crawleru:
-Contains data about the crawljob an URL belongs to==Obsahuje data o crawl-ulohe ku ktorej prislucha URL adresa
-The crawling queue==Cakacia listina crawleru
-Various stack files that belong to the crawling queue==Rozdielne stack subory patriace cakacej listine crawlingu
-Abort==Zrus
-Pause==Pauza
-Continue==Pokracuj
-#-----------------------------
-
-#File: IndexMonitor.html
-#---------------------------
-#YaCy '#[clientname]#': Index Monitor
-Index Monitor Menu==Menu monitoringu indexu
-# NOT USED
-#Index Monitor Overview==Monitoring indexu - prehlad
-Receipts</a>==Odpovede</a>
-Queries</a>==Vyhladávacie dotazy</a>
-# NOT USED
-#DHT Transfer==DHT prenos
-# NOT USED
-#Proxy Use==Vyuzitie proxy
-# NOT USED
-#Local Crawling==Lokálny crawling
-# NOT USED
-#Global Crawling==Globálny crawling
-Indexing Queues Monitor Overview==Prehlad monitoringu indexovacích variant
-These are monitoring pages for the different indexing queues.==Toto sú monitorovacie stránky pre rozdielne indexovacie varianty.
-YaCy knows 5 different ways to acquire web indexes. The details of these processes (1-5) are described within the submenu's listed==YaCy rozpoznáva 5 rozdielnych spôsobov indexácie webu. Detaily k tymto procesom (1-5) sú popísané v submenu vyzšie.
-above which also will show you a table with indexing results so far. The information in these tables is considered as private,==Tu sa dá takisto vidiet tabulka výsledkov indexovania. Informácie v týchto tabulkách sa hodnotia ako súkromné.
-so you need to log-in with your administration password.==Na ich zobrazenie sa musíte prihlásit heslom administrátora.
-Case (6) is a monitor of the local receipt-generator, the opposed case of (1). It contains also an indexing result monitor but is not considered private==Prípad (6) je monitor lokálneho prijímacieho generátora, v protiklade k (1). Obsahuje okrem iného monitor výsledku indexovania avšak nie je povazovaný za súkromný,
-since it shows crawl requests from other peers.==pretoze zobrazuje crawl dotazy iných peerov.
-The image above illustrates the data flow initiated by web index acquisition.==Obrázok hore zobrazuje dátový tok pozostávajúci z prírastku web indexu.
-Some processes occur double to document the complex index migration structure.==Niektoré procesy sa kvôli redukcii komplexnej štruktúry indexu vyskytujú viacnásobne.
-(1) Index Monitor of Remote Crawl Receipts==(1) Monitorovanie indexu pre hlásenia zo vzdialeného crawlingu
-This is the list of web pages that this peer initiated to crawl,==Toto je zoznam web stránok ktoré zacal crawlovat Váš peer,
-# NOT USED
-#but had been crawled by <i>other</i> peers.==avšak ktoré boli precrawlované iným peerom.
-This is the 'mirror'-case of process (6).==Toto je opacný príklad k procesu (6).
-# NOT USED
-#<i>Use Case:</i> You get entries here, if you start a local crawl on the 'Index Creation'-Page and check the==<i>Prípadová štúdia:</i> Tu obdrzíte záznami, ak zacnete lokálny crawling na stránke 'Vytvorenie indexu' a aktivujete
-'Do Remote Indexing'-flag. Every page that a remote peer indexes upon this peer's request=='Vzdialené indexovanie'. Kazdá stránka ktorú vzdialený peer pomocou tohoto dotazu zaindexuje
-is reported back and can be monitored here.==bude spätne hlásená a na tomto mieste zobrazená.
-(2) Index Monitor for Result of Search Queries==(2) Monitoring indexu pre výsledky dotazov vyhladávania
-This index transfer was initiated by your peer by doing a search query.==Tento index transfer bol iniciovaný odštartovaním vyhladávacieho dotazu.
-The index was crawled and contributed by other peers.==Index bol crawlovaný inými peermi a dodaný k Vašej dispozícii.
-# NOT USED
-#<i>Use Case:</i> This list fills up if you do a search query on the 'Search Page'==<i>Prípadová štúdia:</i> Tento zoznam sa vyplní ked odštartujete vyhladávanie na 'Vyhladávacej stránke'
-(3) Index Monitor for Index Transfer.==(3) Monitoring indexu pre DHT prenos.
-The url fetch was initiated and executed by other peers.==Indexácia URL bola odštartovaná a vykonaná inými peermi.
-These links here have been transmitted to you because your peer is the most appropriate for storage according to==Tieto odkazy boli k Vám prenesené, pretoze Váš peer je podla
-the logic of the Global Distributed Hash Table.==logiky globálne distribuovanej hash tabulky najvhodnejší na ich ulozenie.
-# NOT USED
-#<i>Use Case:</i> This list may fill if you check the 'Index Receive'-flag on the 'Index Control' page==<i>Pouzitie:</i> Tento zoznam sa vyplní ak ste aktivovali 'Index Receive' volbu na stráne 'Kontrola indexu'
-(4) Index Monitor for Proxy Indexing==(4) Monitorovanie indexu pre indexáciu proxy
-These web pages had been indexed as result of your proxy usage.==Tieto web stránky boli indexované za pouzitia Vašeho proxy.
-No personal or protected page is indexed==Ziadne osobné ani chránené stránky nie sú indexované
-such pages are detected by Cookie-Use or POST-Parameters (either in URL or as HTTP protocol)==Takéto stránky sú detekované za pouzitia cookies alebo POST parametrov (v URL adrese alebo v HTTP protokole)
-and automatically excluded from indexing.==a sú z indexovania automaticky vylúcené.
-# NOT USED
-#<i>Use Case:</i> You must use YaCy as proxy to fill up this table.==<i>Pouzitie:</i> Musite pouzit YaCy ako proxy na vyplnenie tejto tabulky.
-Set the proxy settings of your browser to the same port as given==V proxy nastaveniach Vaseho browsera nastavte rovnaky port ako je port uvedeny
-on the 'Settings'-page in the 'Proxy and Administration Port' field.==na stranke 'Nastavenia' v polozke 'Proxy a port administracie'.
-(5) Index Monitor for Local Crawling.==(5) Monitor indexu pre lokalny crawling.
-These web pages had been crawled by your own crawl task.==Tieto web stranky boli precrawlovane Vasim vlastnym lokalnym crawlom odstartovanym na stranke 'Vytvorenie indexu'.
-# NOT USED
-#<i>Use Case:</i> start a crawl by setting a crawl start point on the 'Index Create' page.==<i>Pouzitie:</i> Odstartujte crawl tym ze nastavite startovaci bod na stranke 'Vytvorenie indexu'.
-(6) Index Monitor for Global Crawling==(6) Monitor indexu pre globalny crawling
-These pages had been indexed by your peer, but the crawl was initiated by a remote peer.==Tieto stranky boli zaindexovane Vasim vlastnym peerom, avsak crawl bol vytvoreny inym peerom (vzdialeny crawl).
-This is the 'mirror'-case of process (1).==Toto je opak procesu (1).
-# NOT USED
-#<i>Use Case:</i> This list may fill if you check the 'Accept remote crawling requests'-flag on the 'Index Crate' page==<i>Pouzitie:</i> Tento zoznam sa vyplni ak aktivujete 'Akceptuj dotazy vzdialeneho crawlingu' na stranke 'Vytvorenie indexu'.
-The stack is empty.==Zoznam je prazdny.
-Showing all #[all]# entries in this stack.==Zobrazuju sa vsetkych #[all]# zaznamov tohoto zoznamu.
-Showing latest #[count]# lines from a stack of #[all]# entries.==Zobrazuju sa posledne #[count]# z celkovo #[all]# zaznamov tohoto zoznamu.
-"clear list"=="Vymaz zoznam"
-#Initiator==Iniciator
-Executor==Vykonavatel
-Modified Date==Datum poslednej zmeny
-Words==Slov
-Title==Nazov
-URL==URL adresa
-"delete"=="zmaz"
-#-----------------------------
-
-#File: IndexTransfer_p.html
-#---------------------------
-The local index currently consists of (at least) #[wcount]# reverse word indexes and #[ucount]# URL references.== Lokalny index momentalne pozostava z (priblizne) #[wcount]# slov a #[ucount]# URL adries.
-# NOT USED
-#Chunk Size<br>(Word Entries)==Velkost chunku<br>(zaznamov slov)
-Words Range==Rozsah slov
-Transfered Words==Prenesene slova
-# NOT USED
-#Delete<br>Index==Zmaz<br>index
-true==ano
-false==nie
-Selection==Vyber
-words<==slov<
-Last Refresh:==Posledna aktualizacia
-Overwrite IP==prepis IP adresu
-blank for defaultip==prazdne pre standardnu IP adresu
-Start/Stop Transfer==Start/Stop prenosu
-"Start Index Transfer"=="Odstartuj prenos indexu"
-"Stop Index Transfer"=="Zastav prenos indexu"
-"Start New Index Transfer"=="Odstartuj novy prenos indexu"
-# NOT USED
-#Remote<br>Peer==Vzdialeny<br>peer
-#-----------------------------
-
-#File: Lab.html
-#---------------------------
-# NOT USED
-#YaCy '#[clientname]#': Lab==YaCy '#[clientname]#': Laboratorium
-# NOT USED
-#The YACY Lab==YaCy Laboratorium
-This is the place where we try new functions of the YaCy search engine.==Na tomto mieste testujeme nove funkcie YaCy vyhladavaca.
-All these things here are to be considered as probably unstable, and/or experimental.==Vsetky tieto nove funkcie su v experimentalnej faze a preto mozu byt nestabilne.
-You may try out these things but please do not care about bugs.==Vsetky nove funkcie mozete samozrejme vyskusat. Pripadnymi chybami sa vsak nemusite zapodievat.
-The <a==<a
-Advanced <a==Pokrocile <a
-Configuration</a>==Nastavenia</a>
-#-----------------------------
-
#File: Messages_p.html
#---------------------------
>Messages==>Spravy
@@ -1062,7 +735,7 @@ A change in the personal profile will create a news entry. You can see recently profile entries on the Network page, where that profile change is visualized with a '*' beside the 'P' (profile) - selector.==v profiloch mozete vidiet na stranke "Siet" kde su tieto profily oznacene hviezdickou '*' vedla 'P' (profil).
More news services will follow.==Dalsie sluzby pre spravy budu nasledovat.
-Above you can see four menues:==V menu mozete vidiet tieto styri zaznami:
+Above you can see four menus:==V menu mozete vidiet tieto styri zaznami:
# NOT USED
#<b>Incoming News (#[insize]#)</b>: latest news that arrived your peer.==<b>Prichadzajuce spravy (#[insize]#)</b>: posledne spravy, ktore obdrzal Vas peer.
Only these news will be used to display specific news services as explained above.==Ako bolo vysvetlene vyzsie na zobrazenie specifickych sluzieb sprav budu pouzite len tieto spravy.
@@ -1387,16 +1060,6 @@ Content Parser Settings==Nastavenia parsera obsahu Port Forwarding (optional)==Port Forwarding (nepovinne)
#-----------------------------
-#File: Settings_General.inc
-#---------------------------
-General Settings==Vseobecne nastavenia
-<b>Your peer name defines also a new '.yacy' - domain, which can be accessed from every peer running this proxy.</b>==<b>Nazov Vaseho peera vytvara '.yacy' domenu ktora je dosiahnutelna kazdemu uzivatelovi tychto proxy.</b>
-Using your 'Home Page' and 'File Share' - zones you also have a platform to provide content to your new domain.==Prostrednictvom Vasich zon: 'Domovska stranka' a 'Zdielaj subor' mate tiez platformu na poskytovanie obsahu Vasej novej domeny.
-staticIP ==statika IP adresa
-<b>The staticIP can help that your peer can be reached by other peers in case that your==<b>Staticka IP adresa moze pomoct Vasemu peeru pri dosiahnutelnosti z inych peerov v pripade, ze
-peer is behind a firewall or proxy.</b>==Vas peer je za firewallom alebo inym proxy..</b>
-#-----------------------------
-
#File: Settings_ProxyAccess.inc
#---------------------------
# NOT USED
@@ -1450,34 +1113,11 @@ Use remote proxy for https==Pouzi vzdialeny proxy server pre HTTPS Specifies if YaCy should forward ssl connections to the remote proxy.==Udava ci ma YaCy preposielat ssl spojenia vzdialenemu proxy serveru.
The ip address or domain name of the remote proxy==IP adresa alebo nazov domeny vzdialeneho proxy servera
the port of the remote proxy==Port vzdialeneho proxy servera
-no-proxy adresses:==Adresy bez proxy:
+no-proxy addresses:==Adresy bez proxy:
IP addresses for which the remote proxy should not be used==IP adresy pre ktore nema byt vzdialeny proxy server pouzity
Changes will take effect immediately.==Zmeny su okamzite ucinne.
#-----------------------------
-#File: Settings_PortForwarding.inc
-#---------------------------
-#check for logical mistakes, unsure about some translations
-Port Forwarding==Port forwarding
-You can use a remote server running a ssh demon to forward your server/proxy port.==Mozete pouzit vzdialeny server na ktorom bezi ssh demon na preposielanie Vaseho server/proxy portu.
-This is useful if you want to tunnel throug a NAT/router.==Toto je uzitocne ak chcete "tunelovat" cez NAT/router.
-Alternatively, you can simply set a virtual server port on your NAT/Server to enable connections from outside.==Alternativne mozete jednoducho vytvorit virtualny port serveru na ktorom Vas NAT/servery na umoznenie spojeni z vonku.
-Enable port forwarding:==Aktivuj port forwarding:
-# NOT USED
-#Enabling disabling port forwarding via secure channel.==Aktivacia/Deaktivacia port forwardingu cez zapezpeceny kanal.
-Forwarding via proxy:==Forwarding cez proxy:
-Function not available at the moment.==Funkcia je momentalne nedostupna.
-You need to install libx to use this feature==Musite si nainstalovat libx, ak chcete pouzivat tuto funkciu
-Forwarding port:==Forwardujuci port
-# NOT USED
-#The port on the remote server that should be forwarded via the secure channel to the local host.==Port vzdialeneho servera ktory ma byt cez forwardovany na lokalny host cez zabezpeceny kanal.
-Forwarding host:==Forwardujuci host
-Forwarding host port:==Forwardujuci host port
-Forwarding host user:==Forwardujuci host uzivatel
-Forwarding host password:==Forwardujuce host heslo
-Changes will take effect immediately.==Zmeny su okamzite ucinne.
-#-----------------------------
-
#File: Settings_ServerAccess.inc
#---------------------------
Server Access Settings==Nastavenia pristupu k serveru
@@ -1512,30 +1152,6 @@ Select 'none' to deactivate uploading.==Zvojte 'none' na deaktivovanie nahravani The URL that can be used to retrieve the uploaded seed file, like==URL adresa ktora moze byt pouzita na ziskanie nahravacieho seedu ako
#-----------------------------
-#File: yacy/seedUpload/yacySeedUploadFtp.html
-#---------------------------
-Uploading via FTP:==Nahravanie cez FTP:
-This is the account for a FTP server where you can host a seed-list file.==Toto je ucet pre FTP server kde mozete dat k dispozicii seed-list subor.
-If you set this, you will become a principal peer.==AK tak urobite stanete sa Principal peerom.
-Your peer will then upload the seed-bootstrap information periodically,==Vas peer bude potom periodicky nahravat seed-bootstrap informacie,
-but only if there had been changes to the seed-list.==avsak len ak sa v seed-liste vyskytli zmeny.
-The host where you have a FTP account, like==Host na ktorom mate FTP ucet ako
-Path:==Cesta:
-The remote path on the FTP server, like==Vzdialena cesta na FTP serveri, ako
-Missing sub-directories are NOT created automatically.==Chybajuce podadresare NEBUDU automaticky vytvorene.
-Your log-in at the FTP server==Vas log-in na FTP serveri
-Password:==Heslo:
-The password==Heslo
-#-----------------------------
-
-#File: yacy/seedUpload/yacySeedUploadFile.html
-#---------------------------
-Store into filesystem:==Uloz na suborovy system:
-You must configure this if you want to store the seed-list file onto the file system.==Ak chcete ulozit seed-list subor na suborovy system musite nastavit nasledovne parametre.
-File Location:==Miesto ulozenia:
-Here you can specify the path within the filesystem where the seed-list file should be stored.==Tu mozete zadat cestu v suborovom systeme kde ma byt seed-list subor ulozeny.
-#-----------------------------
-
#File: Settings_MessageForwarding.inc
#---------------------------
Message Forwarding==Presmerovanie sprav
@@ -1549,14 +1165,6 @@ The recipient email-address.<br> e.g.:==Email adresa prijimatela.<br>napr.: Changes will take effect immediately.==Zmeny su okamzite ucinne.
#-----------------------------
-#File: Settings_Parser.inc
-#---------------------------
-Content Parser Settings==Nastavenia parsera obsahu
-With this settings you can activate or deactivate parsing of additional content-types based on their MIME-types.==S tymito nastavenia mozete zapnut alebo vypnut parsovanie dodatocnych suborov na zaklade ich mime-typov.
-For a detailed description of the various MIME-types take a look at==Detailny popis rozlicnych mime-typov najdete na
-Changes take effect immediately==Zmeny su okamzite ucinne
-#-----------------------------
-
#File: SettingsAck_p.html
#---------------------------
YaCy '#[clientname]#': Settings Acknowledge==YaCy '#[clientname]#': Spracovanie nastaveni
@@ -1569,7 +1177,7 @@ Nothing changed.==Nic nebolo zmenene. The user name must be given.==Meno uzivatela musi byt zadane
# NOT USED
#Your request cannot be processed.<br>Nothing changed.==Vasa poziadavka nemoze byt vykonanana.<br>Nic nebolo zmenene.
-The password redundancy check failed. You have probably misstyped your password.==Chyba pri kontrole hesla. Pravdepodobne preklep.
+The password redundancy check failed. You have probably mistyped your password.==Chyba pri kontrole hesla. Pravdepodobne preklep.
# NOT USED
#Shutting down.</b><br>Application will terminate after working off all crawling tasks.==Vypnut</b><br>Aplikacia bude ukoncena po ukonceni vsetkych crawlov.
Your administration account setting has been made.==Nastavenia k uctu administratora boli ulozene.
@@ -1645,48 +1253,6 @@ Port rebinding will be done in a few seconds==Novy port bude aktivovany za nieko You can reach your YaCy server under the new location==Vas YaCy server je pristupny pod novou adresou:
#-----------------------------
-#File: Settings_Admin.inc
-#---------------------------
-Administration Account Settings==Nastavenia konta administratora
-This is the account that restricts access to this 'Settings' page. If you have not customized it yet, you should do so now:==Toto je konto ktore obmedzuje pristum na tuto stranku 'Nastaveni'. Ak ste toto konte este nevytvorili, mali by ste teraz tak urobit.
-Account Name:==Nazov konta:
-Password:==Heslo:
-Password (repeat same as above):==Heslo (zopakujte prosim):
-value="submit">==value="Uloz">
-#-----------------------------
-
-#File: simple_search.html
-#---------------------------
-YaCy '#[clientname]#': Search Page==YaCy '#[clientname]#': Vyhladavacia stranka
-"Search for #[former]#"=="Hladaj #[former]#"
- P2P WEB SEARCH==P2P Internetové Vyhladávanie
-"Search"=="Hladaj"
-Max. number of results:==Max. pocet vysledkov:
-No Results.==Ziadne vysledky.
-length of search words must be at least 3 characters==Vyhladavane slova musia mat najmenej 3 znaky
-If you think this is unsatisfactory then you may consider to support==Ak to povazujete za nedostatocne, zvazte podporu
-the global index by running your own proxy/peer.==globalneho indexu pomocou vytvorenia vlastnych proxy a/alebo peerov.
-If everybody contributes, the results will get better.==Vysledky vyhladavania sa zlepsia ak bude kazdy prispievat.
-Other possible reasons for no result:==Dalsie mozne dovody preco ste neobdrzali ziadne vysledku su:
-The search time was too short. Search again with same query to catch up 'late peers'==Cas vyhladavania bol prilis kratky. Zopakujte vyhladavanie so zvysenym max. casom vyhladavania na ziskanie vysledkov od pomalsich peerov.
-There is currently no support for german umlaute. Please use ae/oe/ue instead==Diakritika nie je v sucasnosti podporovana. Nahradte prosim znaky s diakritikou zodpovedajucimi znakmi bez diakritiky.
-# NOT USED
-#Words of length < 3 are not indexed. Please omit such words==Slova s menej ako 3 pismenami nie su indexovane. Prosim vypustite taketo slova.
-YaCy tries to index singular instead of plural words. Please use the singular form==YaCy indexuje len jednotne cisla slov v indexe. Zadavajte preto prosim slova len v jednotnom cisle.
-Only complete words are indexed, not parts of words==Len kompletne slova su indexovane, nie casti slov.
-Don't use stopwords as search words==Prosim nepouzivajte stop-slova vo vyhladavani.
-During this test phase the reaction time of remote peers is unknown.==Pocas tejto testovacej fazy je reakcny cas vzdialenych peerov neznami.
-Please repeat your search to see if there are late-responses from remote peers==Prosim opakujte vyhladavanie na ziskanie pripadnej odpovede od pomalych peerov.
-If you think the information you searched should exist in the global index,==Ak si myslite ze informacie, ktore hladate by sa mali nachadzat v globalnom indexe,
-then please run your own peer and start a crawl of your wanted information to make it==tak prosim spustite proces preliezania (crawl) zo svojho vlastneho peera, za ucelom spristupnenia
-available for everyone. Then stay online to support crawls from other peers. Thank you!==tejto informacie aj ostatnym peerom. Zostante prosim online kvoli podpore procesu preliezania (crawls) z ostatnych peerov. Dakujeme!
-results from a total number of==Vysledkov z celkoveho poctu
-known links.==znamych odkazov.
-You can try to==Mozete skusit
-catch up more links==Zhromazdit viacej odkazov
-from 'late' peers to enrich this search result.==z pomalych peerov na zlepsenie vysledkov vyhladavania.
-#-----------------------------
-
#File: Status.html
#---------------------------
System-, Index- and Peer-Status==Stav systemu, indexu a peera
@@ -1823,28 +1389,6 @@ Then YaCy will restart.==Potom sa YaCy restartuje. You can now go back to the <a href="Settings_p.html">Settings</a> page if you want to make more changes.==Mozete sa vratit na stranku <a href="Settings_p.html">nastavenia</a> ak chcete vykonat viacero zmien.
#-----------------------------
-#File: User_p.html
-#---------------------------
-new User==Novy uzivatel
-Edit User==Edituj uzivatela
-Delete User==Zmaz uzivatela
-Current User:==Aktualny uzivatel:
-Password:==Heslo:
-Password(repeat):==Heslo(zopakujte):
-First Name:==Meno:
-Last Name:==Priezvysko:
-Address:==Adresa:
-Rights==Prava
-Timelimit:==Casovy limit:
-Time used:==Spotrebovany cas:
-Save User==Uloz uzivatela
-User created:==Vytvoreny uzivatel:
-User changed:==Zmeneny uzivatel:
-Passwords do not match.==Zadane hesla nie su rovnake.
-If you want to manage more Users, return to the==Ak chcete spravovat viacerych pouzivatelov, vratte sa spat do
-user</a> page.==stranky pouzivatelov</a>.
-#-----------------------------
-
#File: ViewFile.html
#---------------------------
View URL Content==Zobraz obsah URL adresy
@@ -2054,14 +1598,6 @@ Media Crawl Queues==Cakacia listina Media crawlu >Music==>Hudba
#-----------------------------
-#File: env/templates/submenuPerformance.template
-#---------------------------
-Performance Menu==Menu vykonu
-Queues Performance Settings==Cakacia listina nastaveny vykonu
-Memory Settings for Database Caches==Nastavenia pamate databazovej cache
-Timing Settings for Search Sequence==Nastavenia casu pre vyhladavaciu sekvenciu
-#-----------------------------
-
#File: env/templates/submenuUseCaseAccount.template
#---------------------------
#Use Case & Accounts==Use Case & Accounts
@@ -2070,22 +1606,3 @@ Basic Configuration==Základné nastavenia #Network Configuration==Network Configuration
#-----------------------------
-#File: htdocsdefault/dir.html
-#---------------------------
-YaCy: Public Files==YaCy: Verejne subory
-Public File Directory==Adresar verejneho suboru
-value="#[peername]#'s Console"==value="#[peername]#s konzola"
-Welcome! You are identified and authorized as==Vytajte! Ste identifikovany a autorizovany ako
-#-----------------------------
-
-#File: htdocsdefault/welcome.html
-#---------------------------
-YACY: Default Page for Individual Peer Content==YACY: Standartna stranaka pre individualny obsah peera
-Individual Web Page==Vlastna web stranka
-Welcome to your own web page<br>in the <b>YaCy Network==Vytajte na Vasej vlastnej web stranke v<br> sieti YaCy
-THIS IS A DEMONSTRATION PAGE FOR YOUR OWN INDIVIDUAL WEB SERVER!==TOTO JE PRIKLAD WEB STRANKY PRE VAS VLASTNY WEB SERVER!
-PLEASE REPLACE THIS PAGE BY PUTTING A FILE index.html INTO THE PATH==PROSIM NAHRADTE TUTO STRANKU TYM ZE UMIESTNITE VLASTNY index.html SUBOR DO ADRESARA
-<YaCy-application-home><b>#[wwwpath]#</b>==<YaCy-adresar><b>#[wwwpath]#</b>
-#-----------------------------
-
-# EOF
\ No newline at end of file diff --git a/locales/tr.lng b/locales/tr.lng index bc2e26ab7..db9f621e2 100644 --- a/locales/tr.lng +++ b/locales/tr.lng @@ -570,58 +570,6 @@ Simple Editor==Basit Düzenleyici to add untranslated text==çevrilmemiş metin eklemek için #----------------------------- -#File: ConfigLiveSearch.html -#--------------------------- -Integration of a Search Field for Live Search==Canlı Arama için Arama Alanının Entegrasyonu -Integration of Live Search with YaCy Search Widget==YaCy Arama Widget'ı ile Canlı Arama Entegrasyonu -There are basically two methods for integrating the YaCy Search Widget with your web site.==YaCy Arama Widget'ını web sitenizle entegre etmek için temelde iki yöntem bulunmaktadır. -Static hosting of widget on own HTTP server==Widget'ın kendi HTTP sunucunuzda statik olarak barındırılması -Remote access through selected YaCy Peer==Seçili YaCy Peer üzerinden uzaktan erişim -Advantages:==Avantajlar: -faster connection speed==daha hızlı bağlantı hızı -possibility for local adaptations==yerel adaptasyon olanakları -Disadvantages:==Dezavantajlar: -No automatic update to future releases of YaCy Search Widget==YaCy Arama Widget'ının gelecekteki sürümlerine otomatik güncelleme yok -Ajax/JSONP cross domain requests needed to query remote YaCy Peer==Uzak YaCy Peer sorgulamak için Ajax/JSONP çapraz etki alanı istekleri gerekiyor -Installing:==Kurulum: -download yacy-portalsearch.tar.gz from==yacy-portalsearch.tar.gz dosyasını şuradan indirin: -unpack within your HTTP servers path==HTTP sunucunuzun dizini içinde açın -use ./yacy/portalsearch/yacy-portalsearch.html as reference for integration with your own portal page==Kendi portal sayfanızla entegrasyon için referans olarak ./yacy/portalsearch/yacy-portalsearch.html'i kullanın -Always latest version of YaCy Search Widget==Her zaman en son YaCy Arama Widget'ı sürümü -No Ajax/JSONP cross domain requests, as Search Widget and YaCy Peer are hosted on the same domain.==Arama Widget'ı ve YaCy Peer aynı alan üzerinde barındırıldığından Ajax/JSONP çapraz etki alanı istekleri gerekmez. -Under certain circumstances slower than static hosting==Bazı durumlarda statik barındırmadan daha yavaş olabilir -Just use the code snippet below and paste it any place in your own portal page==Aşağıdaki kod parçasını kullanın ve kendi portal sayfanızın herhangi bir yerine yapıştırın -Please check if '#[ip]#:#[port]#' is appropriate or replace it with the address of the YaCy Peer holding your index==Lütfen '#[ip]#:#[port]#' adresinin uygun olup olmadığını kontrol edin veya gerekiyorsa dizininizi tutan YaCy Peer'ın adresi ile değiştirin. -A 'Live-Search' input field that reacts as search-as-you-type in a pop-up window can easily be integrated into any web page==Pop-up pencerede yazarken arama yapan bir 'Canlı Arama' giriş alanı kolayca herhangi bir web sayfasına entegre edilebilir -This is the same function as can be seen on all pages of the YaCy online-interface (look at the window in the upper right corner)==Bu, YaCy çevrimiçi arayüzünün tüm sayfalarında görülebilen aynı işlevdir (sağ üst köşedeki pencereye bakın) -#Just use the code snippet below to integrate that into your own web pages==Bu kod parçasını kullanarak bunu kendi web sayfalarınıza entegre edin -Just use the code snippet below and paste it any place in your own portal page==Aşağıdaki kod parçasını kullanın ve kendi portal sayfanızın herhangi bir yerine yapıştırın -#Please check if the address, as given in the example '#[ip]#:#[port]#' here is correct and replace it with more appropriate values if necessary==Lütfen örnekte verilen '#[ip]#:#[port]#' adresinin doğru olup olmadığını kontrol edin ve gerekiyorsa daha uygun değerlerle değiştirin -#Code Snippet:==Kod Parçası: -#YaCy Portal Search==YaCy Portal Arama -"Search"=="Ara" -Configuration options and defaults for 'yconf':=='Yconf' için Yapılandırma seçenekleri ve varsayılanlar: -Defaults<==Varsayılanlar< -url<==URL< -#is a mandatory property - no default<==zorunlu bir özelliktir - varsayılan yok< -#YaCy P2P Web Search==YaCy P2P Web Araması -Size and position (width | height | position)==Boyut ve konum (genişlik | yükseklik | konum) -Specifies where the dialog should be displayed. Possible values for position: 'center', 'left', 'right', 'top', 'bottom', or an array containing a coordinate pair (in pixel offset from top left of viewport) or the possible string values (e.g. ['right','top'] for top right corner)==Diyalogun nerede görüntüleneceğini belirtir. Konum için olası değerler: 'center', 'left', 'right', 'top', 'bottom', veya bir koordinat çifti içeren bir dizi (viewport'ın sol üstünden piksel ofset) veya olası string değerler (örneğin sağ üst köşe için ['right','top']) -Animation effects (show | hide)==Animasyon efektleri (göster | gizle) -Kullanılacak efekt. Olası değerler: 'blind', 'clip', 'drop', 'explode', 'fold', 'puff', 'slide', 'scale', 'size', 'pulsate'.==Kullanılacak efekt. Olası değerler: 'blind', 'clip', 'drop', 'explode', 'fold', 'puff', 'slide', 'scale', 'size', 'pulsate'. -Interaction (modal | resizable)==Etkileşim (modal | resizable) -Eğer modal true olarak ayarlanırsa, diyalogun modal davranışa sahip olacaktır; sayfadaki diğer öğeler devre dışı bırakılacaktır (yani etkileşime girilemez).==Eğer modal true olarak ayarlanırsa, diyalogun modal davranışa sahip olacaktır; sayfadaki diğer öğeler devre dışı bırakılacaktır (yani etkileşime girilemez). -Modal dialogs create an overlay below the dialog but above other page elements.==Modal diyaloglar, diyalogun altında ancak diğer sayfa öğelerinin üzerinde bir örtü oluşturur. -If resizable is set to true, the dialog will be resizeable.==Eğer resizable true olarak ayarlanırsa, diyalog boyutlandırılabilir olacaktır. -Load JavaScript load_js==JavaScript yükle load_js -Load Stylesheets load_css==Stil sayfalarını yükle load_css -This parameter is used for static hosting only.==Bu parametre sadece statik barındırma için kullanılır. ->Themes<==>Temalar< -You can download standard jquery-ui themes or create your own custom themes on==Standart jquery-ui temalarını indirebilir veya kendi özel temalarınızı oluşturabilirsiniz: -Themes are installed in ./yacy/jquery/themes/ (static hosting) or in DATA/HTDOCS/jquery/themes/ on remote YaCy Peer.==Temalar, ./yacy/jquery/themes/ (statik barındırma) veya uzaktaki YaCy Peer üzerindeki DATA/HTDOCS/jquery/themes/ dizininde kurulur. -YaCy ships with 'start' and 'smoothness' themes pre-installed.==YaCy, 'start' ve 'smoothness' temaları önceden yüklenmiş olarak gelir. -#----------------------------- - #File: ConfigNetwork_p.html #--------------------------- <html lang="en">==<html lang="tr"> @@ -726,7 +674,7 @@ URL of a Small Corporate Image<==Küçük bir Kurumsal Resmin URL'si< URL of a Large Corporate Image<==Büyük bir Kurumsal Resmin URL'si< Enable Search for Everyone?==Herkes İçin Aramayı Etkinleştir? Search is available for everyone==Arama herkes için kullanılabilir -Only the administator is allowed to search==Sadece yönetici arama yapabilir +Only the administrator is allowed to search==Sadece yönetici arama yapabilir Show additional interaction features in footer==Altbilgide ek etkileşim özelliklerini göster Snippet Fetch Strategy & Link Verification==Snippet Alma Stratejisi & Bağlantı Doğrulama Speed up search results with this option! (use CACHEONLY or FALSE to switch off verification)==Bu seçenekle arama sonuçlarını hızlandırın! (Doğrulamayı kapatmak için CACHEONLY veya FALSE kullanın) @@ -759,26 +707,6 @@ Target for Click on Search Results==Arama Sonuçlarına Tıklama Hedefi "_top" (top of all frames)=="_top" (tüm çerçevelerin üstü) "searchresult" (a default custom page name for search results)=="searchresult" (arama sonuçları için varsayılan özel sayfa adı) -#Dosya: ConfigTargeting_p.html -#--------------------------- -Special Target as Exception for an URL-Pattern==URL-Paterni İstisna Olarak Belirleme -Pattern:<==Desen:< ->Exclude Hosts<==>Hostları Hariç Tut< -List of hosts that shall be excluded from search results by default but can be included using the site:<host> operator:==Varsayılan olarak arama sonuçlarından hariç tutulacak hostların listesi, ancak site:<host> operatörünü kullanarak dahil edilebilir: -'About' Column<br/>(shown in a column alongside<br/>with the search result page)=='Hakkında' Sütunu<br/>(arama sonuç sayfasının yanında bir sütunda gösterilir) -(Başlık)==(Başlık) -(İçerik)==(İçerik) -"Change Search Page"=="Arama Sayfasını Değiştir" -"Set to Default Values"=="Varsayılan Değerlere Ayarla" -You have ==Şu ayarları değiştirmek için -set a remote user/password==uzak bir kullanıcı/şifre belirlemelisiniz -to change this options.==. -The search page can be integrated in your own web pages with an iframe. Simply use the following code:==Arama sayfasını kendi web sayfalarınıza bir iframe ile entegre edebilirsiniz. Sadece şu kodu kullanın: -This would look like:==Şuna benzer görünecek: -For a search page with a small header, use this code:==Küçük bir başlıkla bir arama sayfası için bu kodu kullanın: -A third option is the interactive search. Use this code:==Üçüncü bir seçenek etkileşimli aramadır. Bu kodu kullanın: -#----------------------------- - #Dosya: ConfigProfile_p.html #--------------------------- Your Personal Profile==Kişisel Profiliniz @@ -1290,7 +1218,7 @@ Never load any page that is already known. Only the start-url may be loaded agai Robot Behaviour==Robot Davranışı Use Special User Agent and robot identification==Özel Kullanıcı Aracı ve robot kimliğini kullan You are running YaCy in non-p2p mode and because YaCy can be used as a replacement for commercial search appliances==YaCy'yi p2p modunda çalıştırmıyorsunuz ve çünkü YaCy, ticari arama cihazları için bir alternatif olarak kullanılabilir, -(like the GSA) the user must be able to crawl all web pages that are granted to such commercial platforms.==(örneğin GSA gibi) kullanıcı, bu tür ticari platformlara verilen tüm web sayfalarını tarama yeteneğine sahip olmalıdır. +(like the Google Search Appliance aka GSA) the user must be able to crawl all web pages that are granted to such commercial platforms.==(örneğin GSA gibi) kullanıcı, bu tür ticari platformlara verilen tüm web sayfalarını tarama yeteneğine sahip olmalıdır. Not having this option would be a strong handicap for professional usage of this software. Therefore you are able to select==Bu seçeneğin olmaması, bu yazılımın profesyonel kullanımı için güçlü bir engel olurdu. Bu nedenle seçebilirsiniz alternative user agents here which have different crawl timings and also identify itself with another user agent and obey the corresponding robots rule.==farklı tarama sürelerine sahip olan ve aynı zamanda başka bir kullanıcı aracıyla kendini tanıyan ve ilgili robot kuralına uyan alternatif kullanıcı araçları. @@ -1501,7 +1429,7 @@ only urls with the <phrase> in the url==URL'de <phrase> bulunanları only urls with the <phrase> within outbound links of the document==Belgenin çıkış bağlantılarında <phrase> bulunanları göster only urls with extension==Uzantıya sahip URL'leri göster only urls from host==Sunucudan gelen URL'leri göster -only pages with as-author-anotated==Yazar tarafından belirlenen sayfaları göster +only pages with as-author-annotated==Yazar tarafından belirlenen sayfaları göster only pages from top-level-domains==Üst düzey alan adlarından gelen sayfaları göster only resources from http or https servers==Sadece HTTP veya HTTPS sunuculardan kaynakları göster only resources from ftp servers==Sadece FTP sunuculardan kaynakları göster @@ -1534,30 +1462,6 @@ json search results==JSON arama sonuçları for ajax developers: get the search rss feed and replace the '.rss' extension in the search result url with '.json'==Ajax geliştiricileri için: arama RSS beslemesini alın ve arama sonucu URL'sindeki '.rss' uzantısını '.json' ile değiştirin #----------------------------- -#File: IndexCleaner_p.html -#--------------------------- -Index Cleaner==İndeks Temizleyici ->URL-DB-Cleaner==>URL-DB-Temizleyici -#ThreadAlive: -#ThreadToString: -Total URLs searched:==Toplam aranan URL'ler: -Blacklisted URLs found:==Kara listeye alınan URL'ler bulundu: -Percentage blacklisted:==Yüzde kara listeli: -last searched URL:==Son aranan URL: -last blacklisted URL found:==Son kara listeye alınan URL bulundu: ->RWI-DB-Cleaner==>RWI-DB-Temizleyici -RWIs at Start:==Başlangıçta RWI'lar: -RWIs now:==Şu anki RWI'lar: -wordHash in Progress:==Devam eden kelime hash'i: -last wordHash with deleted URLs:==Silinen URL'lerle son kelime hash'i: -Number of deleted URLs in on this Hash:==Bu hash'teki silinen URL'lerin sayısı: -URL-DB-Cleaner - Clean up the database by deletion of blacklisted urls:==URL-DB-Temizleyici - Kara listeye alınan URL'leri silerek veritabanını temizleyin: -Start/Resume==Başlat/Devam et -Stop==Durdur -Pause==Duraklat -RWI-DB-Cleaner - Clean up the database by deletion of words with reference to blacklisted urls:==RWI-DB-Temizleyici - Kara listeye alınan URL'lere referans içeren kelimeleri silerek veritabanını temizleyin: -#----------------------------- - #File: IndexControlRWIs_p.html #--------------------------- Reverse Word Index Administration==Ters Kelime Dizin Yönetimi @@ -1925,64 +1829,6 @@ Delete by Solr Query<==Solr Sorgusu ile Sil< This is the most generic option: select a set of documents using a solr query.==Bu en genel seçenektir: Bir Solr sorgusu kullanarak bir belge kümesini seçin. #----------------------------- -#File: IndexImport_p.html -#--------------------------- -YaCy '#[clientname]#': Index Import==YaCy '#[clientname]#': İndeks İçe Aktarma -#Crawling Queue Import==Tarama Kuyruğu İçe Aktarma -Index DB Import==İndeks Veritabanı İçe Aktarma -The local index currently consists of (at least) #[wcount]# reverse word indexes and #[ucount]# URL references.==Yerel indeks şu anda en azından #[wcount]# ters kelime indeksi ve #[ucount]# URL başvurusundan oluşmaktadır. -Import Job with the same path already started.==Aynı yolda başlatılmış olan bir İçe Aktarma Görevi zaten var. -Starting new Job==Yeni Görevi Başlatma -Import Type:==İçe Aktarma Türü: -Cache Size==Önbellek Boyutu -Usage Examples==Kullanım Örnekleri -"Path to the PLASMADB directory of the foreign peer"=="Yabancı eşin PLASMADB dizini yolunu" -Import Path:==İçe Aktarma Yolu: -"Start Import"=="İçe Aktarmayı Başlat" -Attention:==Dikkat: -Always do a backup of your source and destination database before starting to use this import function.==Bu içe aktarma işlevini kullanmaya başlamadan önce kaynak ve hedef veritabanınızın her zaman yedeğini alın. -Currently running jobs==Şu anda çalışan görevler -Job Type==Görev Türü ->Path==>Yol -Status==Durum -Elapsed<br />Time==Geçen<br />Zaman -Time<br />Left==Kalan<br />Zaman -Abort Import==İçe Aktarmayı İptal Et -Pause Import==İçe Aktarmayı Durdur -Finished::Running::Paused==Tamamlandı::Çalışıyor::Duraklatıldı -"Abort"=="İptal" -#"Pause"=="Durdur" -"Continue"=="Devam Et" -Finished jobs==Tamamlanan İçe Aktarmalar -"Clear List"=="Listeyi Temizle" -Last Refresh:==Son Yenileme: -Example Path:==Örnek Yol: -Requirements:==Gereksinimler: -You need to have at least the following directories and files in this path:==Bu yol üzerinde en az aşağıdaki dizinlere ve dosyalara ihtiyacınız var: ->Type==>Tür ->Writeable==>Yazılabilir ->Description==>Açıklama ->File==>Dosya ->Directory==>Dizin ->Yes<==>Evet< ->No<==>Hayır< -The LoadedURL Database containing all loaded and indexed URLs==Tüm yüklenen ve dizine eklenen URL'leri içeren LoadedURL Veritabanı -The assortment directory containing parts of the word index.==Kelime indeksinin parçalarını içeren assortment dizini. -The words directory containing parts of the word index.==Kelime indeksinin parçalarını içeren words dizini. -The assortment file that should be imported.==İçe aktarılması gereken assortment dosyası. -The assortment file must have the postfix==Assortment dosyasının postfix'e sahip olması gerekir. -.db".==.db". -If you would like to import an assortment file from the <tt>PLASMADBACLUSTERABKP</tt>==Eğer bir assortment dosyasını <tt>PLASMADBACLUSTERABKP</tt>'den içe aktarmak istiyorsanız, -you have to rename it first.==Önce onu yeniden adlandırmalısınız. ->Notes:==>Notlar: -Please note that the imported words are useless if the destination peer doesn't know==Lütfen dikkat edin ki içe aktarılan kelimeler, hedef eş bilmiyorsa kullanışsızdır. -the URLs the imported words belongs to.==İçe aktarılan kelimelerin hangi URL'lere ait olduğunu. -Crawling Queue Import:==Tarama Kuyruğu İçe Aktarma: -Contains data about the crawljob an URL belongs to==Bir URL'nin hangi tarama görevine ait olduğu hakkında veri içerir -The crawling queue==Tarama kuyruğu -Various stack files that belong to the crawling queue==Tarama kuyruğuna ait çeşitli yığın dosyaları -#-----------------------------``` - #File: IndexImportMediawiki_p.html #--------------------------- #MediaWiki Dump Import==MediaWiki Döküm İçe Aktarma @@ -2137,7 +1983,7 @@ To integrate a search window into phpBB3, you must insert some code into a forum There are several templates that can be used for phpBB3, but in this guide we consider that==phpBB3 için kullanılabilecek birkaç şablon bulunmaktadır, ancak bu kılavuzda varsayılan şablon 'prosilver' kullanıldığı kabul edilir you are using the default template, 'prosilver'==varsayılan şablon 'prosilver' kullanıldığı kabul edilir open styles/prosilver/template/overall_header.html==styles/prosilver/template/overall_header.html dosyasını açın -find the line where the default search window is displayed, thats right behind the <pre><div id="search-box"></pre> statement==varsayılan arama penceresinin görüntülendiği satırı bulun, bu <pre><div id="search-box"></pre> ifadesinin hemen arkasındadır +find the line where the default search window is displayed, that's right behind the <pre><div id="search-box"></pre> statement==varsayılan arama penceresinin görüntülendiği satırı bulun, bu <pre><div id="search-box"></pre> ifadesinin hemen arkasındadır Insert the following code right behind the div tag==Aşağıdaki kodu div etiketinin hemen arkasına ekleyin YaCy Forum Search==YaCy Forum Araması ;YaCy Search==;YaCy Arama @@ -2387,7 +2233,7 @@ A change in the personal profile will create a news entry. You can see recently profile entries on the Network page, where that profile change is visualized with a '*' beside the 'P' (profile) - selector.==Profil değişikliği 'P' (profil) - seçici yanındaki '*' ile görselleştirilen Ağ sayfasındaki profil girişlerinde görselleştirilir. More news services will follow.==Daha fazla haber servisi izleyecek. -Above you can see four menues:==Yukarıda dört menüyü görebilirsiniz: +Above you can see four menus:==Yukarıda dört menüyü görebilirsiniz: <strong>Incoming News (#[insize]#)</strong>: latest news that arrived your peer.==<strong>Gelen Haberler(#[insize]#)</strong>: Eşinize ulaşan en son haberler. Only these news will be used to display specific news services as explained above.==Yalnızca bu haberler, yukarıda açıklandığı gibi belirli haber servislerini görüntülemek için kullanılacaktır. You can process these news with a button on the page to remove their appearance from the IndexCreate and Network page==Bu haberleri sayfadaki bir düğme ile işleyebilir ve görünümlerini IndexCreate ve Network sayfalarından kaldırabilirsiniz. @@ -2440,7 +2286,7 @@ This shall improve performance of the affected process (proxy or search).==Bu, e (current delta is==(Son proxy/yerel arama/uzak arama erişiminden bu yana geçen süre.) seconds since last proxy/local-search/remote-search access.)==saniye) Online Caution Case==Çevrimiçi Dikkat Durumu -indexer delay (milliseconds) after case occurency==Olay oluşumundan sonra indexleme gecikmesi (milisaniye) +indexer delay (milliseconds) after case occurrence==Olay oluşumundan sonra indexleme gecikmesi (milisaniye) #Proxy:==Proxy: Local Search:==Yerel Arama: Remote Search:==Uzak Arama: @@ -2858,7 +2704,7 @@ Remote proxy port==Uzak Proxy Port the port of the remote proxy==Uzak proxy'nin portu Remote proxy user==Uzak Proxy Kullanıcı Remote proxy password==Uzak Proxy Şifre -No-proxy adresses==Proxy Olmayan Adresler +No-proxy addresses==Proxy Olmayan Adresler IP addresses for which the remote proxy should not be used==Uzak proxy'nin kullanılmaması gereken IP adresleri "Submit"=="Gönder" Changes will take effect immediately.==Değişiklikler hemen yürürlüğe girecek. @@ -2869,7 +2715,7 @@ Changes will take effect immediately.==Değişiklikler hemen yürürlüğe girec #--------------------------- Proxy Access Settings==Proxy Erişim Ayarları These settings configure the access method to your own http proxy and server.==Bu ayarlar, kendi HTTP proxy'nize ve sunucunuza erişim yöntemini yapılandırır. -All traffic is routed throug one single port, for both proxy and server.==Tüm trafiğin, hem proxy hem de sunucu için tek bir port üzerinden yönlendirildiği. +All traffic is routed through one single port, for both proxy and server.==Tüm trafiğin, hem proxy hem de sunucu için tek bir port üzerinden yönlendirildiği. Server/Proxy Port Configuration==Sunucu/Proxy Port Yapılandırması The socket addresses where YaCy should listen for incoming connections from other YaCy peers or http clients.==YaCy'nin diğer YaCy eşlerinden veya HTTP istemcilerinden gelen giriş bağlantıları için dinlemesi gereken soket adresleri. You have four possibilities to specify the address:==Adresi belirtmek için dört seçeneğiniz var: @@ -2996,7 +2842,7 @@ Error with submitted information.==Gönderilen bilgide hata. Nothing changed.</p>==Hiçbir şey değişmedi.</p> The user name must be given.==Kullanıcı adı verilmelidir. Your request cannot be processed.==İsteğiniz işlenemiyor. -The password redundancy check failed. You have probably misstyped your password.==Şifre tekrar kontrolü başarısız oldu. Muhtemelen şifrenizi yanlış yazdınız. +The password redundancy check failed. You have probably mistyped your password.==Şifre tekrar kontrolü başarısız oldu. Muhtemelen şifrenizi yanlış yazdınız. Shutting down.</strong><br />Application will terminate after working off all crawling tasks.==Kapatılıyor.</strong><br />Uygulama, tüm tarama görevlerini çalıştırdıktan sonra sona erecek. Your administration account setting has been made.==Yönetici hesap ayarınız yapıldı. Your new administration account name is #[user]#. The password has been accepted.<br />If you go back to the Settings page, you must log-in again.==Yeni yönetici hesap adınız #[user]#. Şifre kabul edildi.<br />Ayarlar sayfasına geri dönerseniz, yeniden giriş yapmalısınız. @@ -3254,7 +3100,7 @@ YaCy Supporters<==YaCy Destekçileri< provided by YaCy peers using public bookmarks, link votes and crawl start points==YaCy eşleri tarafından kullanılan genel yer işaretleri, bağlantı oyları ve tarama başlangıç noktaları kullanılarak oluşturulan "Please enter a comment to your link recommendation. (Your Vote is also considered without a comment.)"=="Lütfen link öneriniz için bir yorum girin. (Oy vermeseniz bile düşünülür.)" #"authentication required"=="Kimlik doğrulama gerekli" -Hide surftips for users without autorization==Yetkisi olmayan kullanıcılar için surf ipuçlarını gizle +Hide surftips for users without authorization==Yetkisi olmayan kullanıcılar için surf ipuçlarını gizle Show surftips to everyone==Herkese surf ipuçları göster #-----------------------------``` @@ -3527,7 +3373,7 @@ Discover Terms:==Bulunan Terimler: no auto-discovery (empty vocabulary)==Otomatik bulma yok (boş kelime dağarcığı) from file name==Dosya adından from page title ==Sayfa başlığından -from page title (splitted)==Sayfa başlığından (bölünmüş) +from page title (split)==Sayfa başlığından (bölünmüş) from page author==Sayfa yazarından "Create"=="Oluştur" Vocabulary Editor==Kelime Dağarcığı Düzenleyici @@ -3626,7 +3472,7 @@ Headlines of level 1 will be ignored in the table of content.==1. düzey başlı #text==Metin These tags create stressed texts. The first pair emphasizes the text (most browsers will display it in italics),==Bu etiketler vurgulu metinler oluşturur. İlk çift metni vurgular (çoğu tarayıcı bunu italik olarak gösterir), the second one emphasizes it more strongly (i.e. bold) and the last tags create a combination of both.==ikincisi daha güçlü bir vurgu yapar (yani kalın) ve son etiketler her ikisinin bir kombinasyonunu oluşturur. -Text will be displayed <span class="strike">stricken through</span>.==Metin <span class="strike">üzerinden çizilmiş</span> olarak görüntülenecektir. +Text will be displayed <span class="strike">struck through</span>.==Metin <span class="strike">üzerinden çizilmiş</span> olarak görüntülenecektir. Lines will be indented. This tag is supposed to mark citations, but may as well be used for styling purposes.==Satırlar içeri alınır. Bu etiket, alıntıları işaretlemek için kullanılır, ancak aynı zamanda stil amaçları için de kullanılabilir. point==Nokta These tags create a numbered list.==Bu etiketler numaralı bir liste oluşturur. @@ -3791,7 +3637,7 @@ Index Export/Import==İndeks Dışa/İçe Aktar Target Analysis==Hedef Analizi Process Scheduler==İşlem Zamanlayıcı ### YÖNETİM ### -System Admiistration==Sistem Yönetimi +System Administration==Sistem Yönetimi Index Administration==İndeks Yönetimi Filter & Blacklists==Filtre & Kara Listeler Content Semantic==İçerik Semantiği @@ -3873,14 +3719,6 @@ Advanced Settings==Gelişmiş Ayarlar Advanced Properties==Gelişmiş Özellikler #----------------------------- -#Dosya: env/templates/submenuContentIntegration.template -#--------------------------- -External Content Integration==Dış İçerik Entegrasyonu -Import phpBB3 forum==phpBB3 Forum İçe Aktar -Import Mediawiki dumps==Mediawiki Dumps İçe Aktar -Import OAI-PMH Sources==OAI-PMH Kaynaklarını İçe Aktar -#----------------------------- - #Dosya: env/templates/submenuCrawlMonitor.template #--------------------------- Overview</a>==Genel Bakış</a> @@ -3945,14 +3783,6 @@ Scraping Proxy==Scraping Proxy #Autocrawl==Otomatik Tarama #----------------------------- -#Dosya: env/templates/submenuPortalIntegration.template -#--------------------------- -Search Portal Integration==Arama Portalı Entegrasyonu -Live Search Anywhere==Her Yerde Canlı Arama -Generic Search Portal==Genel Arama Portalı -Search Box Anywhere==Her Yerde Arama Kutusu -#----------------------------- - #Dosya: env/templates/submenuPublication.template #--------------------------- Publication==Yayın @@ -3970,13 +3800,6 @@ RWI Ranking Config==RWI Sıralama Konfigürasyonu >Heuristics<==>Heuristikler< #--------------------------- -#Dosya: env/templates/submenuSearchIntegration.template -#--------------------------- -Search Integration into External Sites==Dış Sitelere Arama Entegrasyonu -Live Search Anywhere==Her Yerde Canlı Arama -Search Box Anywhere==Her Yerde Arama Kutusu -#----------------------------- - #Dosya: env/templates/submenuSemantic.template #--------------------------- Content Semantic==İçerik Semantiği @@ -4002,12 +3825,6 @@ Temel Konfigürasyon==Temel Konfigürasyon Ağ Konfigürasyonu==Ağ Konfigürasyonu #----------------------------- -#Dosya: env/templates/submenuViewLog.template -#--------------------------- -Sunucu Günlüğü Menüsü==Sunucu Günlüğü Menüsü -#Server Log==Sunucu Günlüğü -#----------------------------- - #Dosya: env/templates/submenuWebStructure.template #--------------------------- Web Görselleştirme==Web Görselleştirme @@ -4048,16 +3865,6 @@ could not be found.==bulunamadı. Did you mean:==Şunu mu demek istediniz: #----------------------------- -#Dosya: www/welcome.html -#--------------------------- -YaCy: Default Page for Individual Peer Content==YaCy: Bireysel Peer İçeriği için Varsayılan Sayfa -Individual Web Page==Bireysel Web Sayfası -Welcome to your own web page<br />in the <strong>YaCy Network==Kendi web sayfanıza hoş geldiniz<br />şu <strong>YaCy-Ağı'nda -THIS IS A DEMONSTRATION PAGE FOR YOUR OWN INDIVIDUAL WEB SERVER!==BU, KENDİ BİREYSEL WEB SUNUCUNUZ İÇİN BİR DEMONSTRASYON SAYFASIDIR! -PLEASE REPLACE THIS PAGE BY PUTTING A FILE index.html INTO THE PATH==LÜTFEN BU SAYFAYI, index.html ADLI BİR DOSYAYI -<YaCy-application-home><strong>#[wwwpath]#</strong>==<YaCy-uygulama-yolu><strong>#[wwwpath]#</strong> YOLUNA KOYARAK DEĞİŞTİRİN. -#----------------------------- - #Dosya: js/Crawler.js #--------------------------- "Continue this queue"=="Bu sırayı devam ettir" @@ -4073,21 +3880,3 @@ PLEASE REPLACE THIS PAGE BY PUTTING A FILE index.html INTO THE PATH==LÜTFEN BU >Date==>Tarih #----------------------------- -#Dosya: js/jquery-flexigrid.js -#--------------------------- -'Displaying {from} to {to} of {total} items'=='{total} öğeden {from} ile {to} arasını göster' -'Processing, please wait ...'=='İşleniyor, lütfen bekleyin ...' -'No items'=='Öğe bulunamadı' -#----------------------------- - -#Dosya: js/jquery-ui-1.7.2.min.js -#--------------------------- -Loading…==Yükleniyor… -#----------------------------- - -#Dosya: js/jquery.ui.all.min.js -#--------------------------- -Loading…==Yükleniyor… -#----------------------------- - -# EOF diff --git a/locales/uk.lng b/locales/uk.lng index 55a4aa7bc..3d059b532 100644 --- a/locales/uk.lng +++ b/locales/uk.lng @@ -418,7 +418,7 @@ Some pages are protected by passwords.==Деякі сторінки захище You should set a password at the <a href="ConfigAccounts_p.html">Accounts Menu</a> to secure your YaCy peer.</p>::==Ви повинні вказати пароль в <a href="ConfigAccounts_p.html">меню облікових записів</a> для захисту вашого вузла YaCy.</p>:: You did not open a port in your firewall or your router does not forward the server port to your peer.==Ви не відкрили порт у фаєрволі, або ж маршрутизатор не прокидає серверний порт до вашого вузла. This is needed if you want to fully participate in the YaCy network.==Тим не менш, це необхідно, якщо ви хочете в повній мірі брати участь у мережі YaCy. -You can also use your peer without opening it, but this is not recomended.==Ви також можете використовувати ваш вузол, не відкриваючи його, але це не рекомендується. +You can also use your peer without opening it, but this is not recommended.==Ви також можете використовувати ваш вузол, не відкриваючи його, але це не рекомендується. #----------------------------- #File: ConfigHeuristics_p.html @@ -441,7 +441,7 @@ That means: right after the search request the portal page of the host is loaded Because this 'instant crawl' must obey the robots.txt and a minimum access time for two consecutive pages, this heuristic is rather slow, but may discover all wanted search results using a second search (after a small pause of some seconds).==Під час цього "миттєвого сканування" сканується також robots.txt і мінімальний час доступу до цих сторінок робить евристичний пошук надто повільним - але можна знайти всі бажані результати під час другого пошуку (після паузи в декілька секунд). load external search result list from==завантажити зовнішній список пошукових результатів з When using this heuristic, then every search request line is used for a call to blekko.==Ця евристика використовує кожен рядок пошуку для виклику Blekko. -20 results are taken from blekko and loaded simultanously, parsed and indexed immediately.==20 результатів витягуються з Blekko, одночасно завантажуються, аналізуються і негайно індексуються. +20 results are taken from blekko and loaded simultaneously, parsed and indexed immediately.==20 результатів витягуються з Blekko, одночасно завантажуються, аналізуються і негайно індексуються. #----------------------------- #File: ConfigHTCache_p.html @@ -482,66 +482,6 @@ Make sure that you only download data from trustworthy sources. The new language might overwrite existing data if a file of the same name exists already.==Увага, якщо файл з таким ім'ям вже існує, він буде замінений ! #----------------------------- -#File: ConfigLiveSearch.html -#--------------------------- -Integration of a Search Field for Live Search==Інтегрування пошукового поля для Живого Пошуку -Integration of Live Search with YaCy Search Widget==Вбудовування Живого Пошуку -A 'Live-Search' input field that reacts as search-as-you-type in a pop-up window can easily be integrated in any web page==Поле "Живого пошуку" показує рухливі результати при введенні тексту в спливаючому вікні і може легко бути включене в будь-який існуючий веб-сайт -This is the same function as can be seen on all pages of the YaCy online-interface (look at the window in the upper right corner)==Це та ж сама функція, яку можна побачити на всіх сторінках веб-оболонки YaCy (наприклад, у правому верхньому куті вікна) -Just use the code snippet below to integrate that in your own web pages==Просто використовуйте поданий нижче фрагмент коду, щоб встановити вікно пошуку на ваш сайт. -Please check if the address, as given in the example '#[ip]#:#[port]#' here is correct and replace it with more appropriate values if necessary==Будь ласка, переконайтеся, що адреса правильна, як в прикладі '#[ip]#:#[порт]#', і при необхідності замініть адресу на правильну -Code Snippet:==Уривок коду: -YaCy Portal Search==Пошуковий портал YaCy -"Search"=="Пошук" -Configuration options and defaults for 'yconf':==Параметри і налаштування для "yconf": -Defaults<==За замовчуванням< -url<==URL< -is a mandatory property - no default<==повинен бути зазначений< -YaCy P2P Web Search==YaCy P2P Веб-пошук -Size and position (width | height | position)==Розмір і положення (width | height | position) -Specifies where the dialog should be displayed. Possible values for position: 'center', 'left', 'right', 'top', 'bottom', or an array containing a coordinate pair (in pixel offset from top left of viewport) or the possible string values (e.g. ['right','top'] for top right corner)==Вказує, де повинен бути відображений діалог. Можливі значення для позиції: 'center', 'left', 'right', 'top', 'bottom', або масив що містить пари координат (у пікселях як зсув від лівого верхнього кута перегляду) або можливий рядокова змінна (наприклад, ['right','top'] для правого верхнього кута) -Animation effects (show | hide)==Анімаційні ефекти (show | hide) -The effect to be used. Possible values: 'blind', 'clip', 'drop', 'explode', 'fold', 'puff', 'slide', 'scale', 'size', 'pulsate'.==Ефект, який повинен бути застосований. Можливі значення: 'blind', 'clip', 'drop', 'explode', 'fold', 'puff', 'slide', 'scale', 'size', 'pulsate'. -Interaction (modal | resizable)==Взаємодія (modal | resizable) -If modal is set to true, the dialog will have modal behavior; other items on the page will be disabled (i.e. cannot be interacted with).==Якщо модальність виставлена в істину, діалог матиме модальну поведінку, а інші елементи на сторінці будуть відключені. (тобто з ними не можна взаємодіяти) -Modal dialogs create an overlay below the dialog but above other page elements.==Модальні діалоги створюють накладення діалогу і знаходяться приблизно над половиною інших елементів сторінки. -If resizable is set to true, the dialog will be resizeable.==Якщо зміна розміру має значення істина, ви можете змінити розмір діалогового вікна. -Load JavaScript load_js==Завантаження JavaScript load_js -If load_js is set to false, you have to manually load the needed JavaScript on your portal page.==Якщо load_js встановлений в брехню, ви повинні вручну завантажити JavaScript на вашій сторінці порталу. -This can help to avoid timing problems or double loading.==Це може допомогти запобігти проблемам з синхронізацією чи подвійному завантаженню. -Load Stylesheets load_css==Завантаження таблиці стилів load_css -If load_css is set to false, you have to manually load the needed CSS on your portal page.==Якщо load_css встановлена в брехню, ви повинні вручну завантажити необхідні CSS до вашої сторінки порталу. -Themes<==Теми< -You can <==Ви можете < -download</a> ready made themes or <a href="http://jqueryui.com/themeroller/" target="_blank">create</a>==завантажити готові теми</a> чи <a href="http://jqueryui.com/themeroller/" target="_blank">виставити</a> -your own custom theme. <br/>Themes are installed into: DATA/HTDOCS/yacy/ui/css/themes/==власну тему. <br/>Теми встановлені в каталог: DATA/HTDOCS/yacy/ui/css/themes/ - -There are basically two methods for integrating the YaCy Search Widget with your web site==Вцілому існує 2 способи вкладення Пошукової штучки YaCy на ваш веб-сайт -Static hosting of widget on own HTTP server==Постійне розміщення штучки на вашому власному HTTP-сервері -Remote access through selected YaCy Peer==Віддалений доступ до вибраного вузла YaCy -Advantages:==Переваги: -Disadvantages:==Недоліки: -Installing:==Установка: -faster connection speed==краща швидкість з’єднання -possibility for local adaptions==можливість пристосування до місця -No automatic update to future releases of YaCy Search Widget==Немає самооновлення до наступних випусків Пошукової штучки YaCy -Ajax/JSONP cross domain requests needed to query remote YaCy Peer==Для звернення до віддаленого вузла YaCy необхідні міждоменні запити Ajax/JSONP -download yacy-portalsearch.tar.gz from==завантажте yacy-portalsearch.tar.gz з -unpack within your HTTP servers path==розпакуйте в шлях вашого HTTP-сервера -use ./yacy/portalsearch/yacy-portalsearch.html as reference for integration with your own portal page==використовуйте ./yacy/portalsearch/yacy-portalsearch.html в якості посилання для вбудовування у вашу власну сторінку порталу -Always latest version of YaCy Search Widget==Завжди остання версія Пошукової штучки YaCy -No Ajax/JSONP cross domain requests, as Search Widget and YaCy Peer are hosted on the same domain.==Без міждоменних запитів Ajax/JSONP, так-як Пошукова штучка та вузол YaCy розміщені на одному й тому ж домені -Under certain cirumstances slower than static hosting==При певних обставинах повільніше, ніж постійний хостинг -Just use the code snippet below and paste it any place in your own portal page==Просто використовуйте фрагмент коду і вставте його в будь-якому місці у вашу власну сторінку порталу -Please check if '#[ip]#:#[port]#' is appropriate or replace it with address of the YaCy Peer holding your index==Будь-ласка, перевірте чи "#[ip]#:#[port]#" підходить або замініть його на адресу вузла YaCy, що містить ваш індекс -'YaCy Search Widget'=='Пошукова штучка YaCy' -Live Search <==Живий Пошук < -This parameter is used for static hosting only.==Ця властивість використовується тільки для постійного хостингу. -You can download standard jquery-ui themes or create your own custom themes on==Ви можете завантажити стандартні теми jquery-ui або створити свої власні теми на -Themes are installed in ./yacy/jquery/themes/ (static hosting) or in DATA/HTDOCS/jquery/themes/ on remote YaCy Peer.==Теми встановлені в ./yacy/jquery/themes/ (постійний хостінг) або в DATA/HTDOCS/jquery/themes/ на віддаленому вузлі YaCy. -YaCy ships with 'start' and 'smoothness' themes pre-installed.==YaCy поставляється з передвстановленими темами "початок" і "гладкість". -#----------------------------- - #File: ConfigNetwork_p.html #--------------------------- <html lang="en">==<html lang="uk"> @@ -699,7 +639,7 @@ For a search page with a small header, use this code:==Для сторінки A third option is the interactive search. Use this code:==Як третій варіант, живий пошук. Використовуйте наступний код: Enable Search for Everyone==Дозволити пошук для всіх Search is available for everyone==пошук доступний для кожного -Only the administator is allowed to search==тільки адміністратор може шукати +Only the administrator is allowed to search==тільки адміністратор може шукати Show Media Search Options==Показувати варіанти пошуку Text==Текст Images==Зображення @@ -1146,24 +1086,6 @@ no country code restriction==Без обмеження по коду країн Must-Match List for Country Codes==Список повинно-співпадати для кодів країн #----------------------------- -#File: CrawlStartIntranet_p.html -#--------------------------- -Intranet Crawl Start==Запуск сканування внутрішньої мережі -When an index domain is configured to contain intranet links,==Якщо індексний домен настроєний містити посилання з внутрішньої мережі, -the intranet may be scanned for available servers.==ця внутрішня мережа може бути перевірена на наявність доступних серверів. -Please select below the servers in your intranet that you want to fetch into the search index.==Будь ласка, виберіть з наведеного нижче списку сервер з вашої мережі, який ви хочете долучити в пошуковий індекс. -This network definition does not allow intranet links.==Налаштування цієї мережі не дозволяють посилань з внутрішньої мережі. -A list of intranet servers is only available if you confiugure YaCy to index intranet targets.==Список серверів з внутрішньої мережі доступний, тільки якщо ви налаштували YaCy індексувати внутрішню мережу. -To do so, open the <a href="ConfigBasic.html">Basic Configuration</a> servlet and select the 'Intranet Indexing' use case.==Щоб змінити цю настройку, виберіть на сторінці <a href="ConfigBasic.html">початкового налаштування</a> використання "індексування внутрішньої мережі". -Available Intranet Server==Доступний сервер внутрішньої мережі -#>IP<==>IP< -#>URL<==>URL< ->Process<==>Стан< ->not in index<==>Не в індексі< ->indexed<==>Проіндексовано< -"Add Selected Servers to Crawler"=="Додати виділені сервери до сканувача" -#----------------------------- - #File: CrawlStartScanner_p.html #--------------------------- Network Scanner==Сканувач внутрішньої мережі @@ -1317,7 +1239,7 @@ restrictions==обмеження only urls with the <phrase> in the url==тільки URL, які містять <phrase> only urls with extension==тільки URL з розширенням only urls from host==тільки URL із сервера -only pages with as-author-anotated==тільки сторінки з вказаним автором +only pages with as-author-annotated==тільки сторінки з вказаним автором only pages from top-level-domains==тільки сторінки з домену верхнього рівня only resources from http or https servers==тільки ресурси з HTTP- чи HTTPS-серверів only resources from ftp servers==тільки ресурси з FTP-серверів @@ -1349,30 +1271,6 @@ json search results==результати json for ajax developers: get the search rss feed and replace the '.rss' extension in the search result url with '.json'==Для розробників ajax: викличте rss і замініть ".rss" на ".json" #----------------------------- -#File: IndexCleaner_p.html -#--------------------------- -Index Cleaner==Очисник індексу ->URL-DB-Cleaner==>URL-БД-Очищувач -#ThreadAlive: -#ThreadToString: -Total URLs searched:==Всього шуканих URL: -Blacklisted URLs found:==Виявлено URL з чорного списку: -Percentage blacklisted:==Відсоток з ЧС: -last searched URL:==останні шукані URL: -last blacklisted URL found:==останні виявлені URL з ЧС: ->RWI-DB-Cleaner==>RWI-БД-Очисник -RWIs at Start:==RWI на початку: -RWIs now:==RWI зараз: -wordHash in Progress:==контр.сума слів у використанні: -last wordHash with deleted URLs:==остання к.сума слів з видаленими URL: -Number of deleted URLs in on this Hash:==кількість видалених URL в цій контр.сумі: -URL-DB-Cleaner - Clean up the database by deletion of blacklisted urls:==URL-БД-Очисник - Очистіть свою БД, шляхом видалення URL-адрес, які знаходяться у вашому чорному списку: -Start/Resume==Розпочати/Продовжити -Stop==Зупинити -Pause==Призупинити -RWI-DB-Cleaner - Clean up the database by deletion of words with reference to blacklisted urls:==RWI-БД-Очисник - Очистіть свою БД, видаливши слова, пов’язані з вашим чорним списком: -#----------------------------- - #File: IndexControlRWIs_p.html #--------------------------- Reverse Word Index Administration==Керування Зворотним Індексом Слів @@ -1641,122 +1539,6 @@ Modified Date==Дата зміни Anchor Name==Ім’я якоря #----------------------------- -#File: IndexCreateWWWGlobalQueue_p.html -#--------------------------- -Global Crawl Queue==Загальна черга сканування -This queue stores the urls that shall be sent to other peers to perform a remote crawl.==Ця черга містить URL, що повинні бути надіслані на інші вузли для здійснення віддаленого сканування. -If there is no peer for remote crawling available, the links are crawled locally.==Якщо вузлів, доступних для віддаленого сканування, немає, посилання будуть проскановані на місці. -The global crawler queue is empty==Загальна черга сканування порожня. -"clear global crawl queue"=="Очистити загальну чергу сканування" -There are <strong>#[num]#</strong> entries in the global crawler queue. Showing <strong>#[show-num]#</strong> most recent entries.==В загальній черзі сканування <strong>#[num]#</strong> записів. Показано <strong>#[show-num]#</strong> найновіших записів. -Show last==Показати останні -</a> entries.==</a> записів. -Initiator==Зачинщик -Profile==Профіль -Depth==Глибина -Modified Date==Дата зміни -Anchor Name==Ім’я якоря -#URL==URL -#----------------------------- - -#File: IndexCreateWWWLocalQueue_p.html -#--------------------------- -Local Crawl Queue==Місцева черга сканування -This queue stores the urls that shall be crawled localy by this peer.==Ця черга містить URL, що повинні бути проскановані на цьому вузлі. -It may also contain urls that are computed by the proxy-prefetch.==Вона також містить URL, надані проксі з використанням глибини індексування. -The local crawler queue is empty==Місцева черга сканування порожня. -There are <strong>#[num]#</strong> entries in the local crawler queue. Showing <strong>#[show-num]#</strong> most recent entries.==В місцевій черзі сканування <strong>#[num]#</strong> записів. Показано <strong>#[show-num]#</strong> найновіших записів. -Show last==Показати останні -</a> entries.==</a> записів. -Initiator==Зачинщик -Profile==Профіль -Depth==Глибина -Modified Date==Дата зміни -Anchor Name==Ім’я якоря -#URL==URL -[Delete]==[Видалити] -Delete Entries:==Видалити записи: -"Delete"=="Видалити" -This may take a quite long time.==Це може зайняти деякий час. -#----------------------------- - -#File: IndexCreateWWWRemoteQueue_p.html -#--------------------------- -Remote Crawl Queue==Віддалена черга сканування -This queue stores the urls that other peers sent to you in order to perform a remote crawl for them.==Ця черга містить URL, надіслані вашому вузлу іншими вузлами для проведення віддаленого сканування. -The remote crawler queue is empty==Віддалена черга сканування порожня. -"clear remote crawl queue"=="Очистити віддалену чергу сканування" -There are <strong>#[num]#</strong> entries in the remote crawler queue.==У віддаленій черзі сканування <strong>#[num]#</strong> записів. -Showing <strong>#[show-num]#</strong> most recent entries.==Показано <strong>#[show-num]#</strong> найновіших записів. -Show last==Показати останні -</a> entries.==</a> записів. -Initiator==Зачинщик -Profile==Профіль -Depth==Глибина -Modified Date==Дата зміни -Anchor Name==Ім’я якоря -#URL==URL -Delete==Видалити -#----------------------------- - -#File: IndexImport_p.html -#--------------------------- -YaCy '#[clientname]#': Index Import==YaCy '#[clientname]#': Імпорт індексу -#Crawling Queue Import==Імпорт черги сканування -Index DB Import==Імпорт бази даних індексу -The local index currently consists of (at least) #[wcount]# reverse word indexes and #[ucount]# URL references.==Місцевий індекс складається на даний момент з (щонайменше) #[wcount]# слів та #[ucount]# URL. -Import Job with the same path already started.==Імпортування з тим же шляхом вже запущене. -Starting new Job==Запустити нове імпортування -Import Type:==Тип імпорту: -Cache Size==Розмір кешу -Usage Examples==Приклади<br />використання -"Path to the PLASMADB directory of the foreign peer"=="Шлях до каталогу PLASMADB чужого вузла" -Import Path:==Шлях імпорту: -"Start Import"=="Запустити імпортування" -Attention:==Увага: -Always do a backup of your source and destination database before starting to use this import function.==Завжди використовуйте резервну копію вихідної і цільової баз даних перед імпортуванням. -Currently running jobs==Працюючі завдання -Job Type==Тип завдання ->Path==>Шлях -Status==Стан -Elapsed<br />Time==Часу<br />пройшло -Time<br />Left==Часу<br />залишилось -Abort Import==Скасувати імпортування -Pause Import==Призупинити імпортування -Finished::Running::Paused==Готово::Працює::Призупинено -"Abort"=="Перервати" -"Pause"=="Призупинити" -"Continue"=="Продовжити" -Finished jobs==Завершені завдання -"Clear List"=="Очистити список" -Last Refresh:==Останнє оновлення: -Example Path:==Приклад шляху: -Requirements:==Вимоги: -You need to have at least the following directories and files in this path:==Ви повинні мати, принаймні, такі файли і папки в цьому шляху: ->Type==>Тип ->Writeable==>Записувані ->Description==>Опис ->File==>Файл ->Directory==>Каталог ->Yes<==>Так< ->No<==>Ні< -The LoadedURL Database containing all loaded and indexed URLs==База даних "завантажених URL" містить всі завантажені і проіндексовані URL -The assortment directory containing parts of the word index.==Каталог наборів містить частини індексу слів. -The words directory containing parts of the word index.==Каталог слів містить частини індексу слів. -The assortment file that should be imported.==Файл набору, що повинен бути імпортований. -The assortment file must have the postfix==Файл набору повинен мати закінчення -#.db".==.db". -If you would like to import an assortment file from the <tt>PLASMADBACLUSTERABKP</tt>==Якщо ви хочете імпортувати файл набору з <tt>PLASMADBACLUSTERABKP</tt>, -you have to rename it first.==ви повинні спочатку його перейменувати. ->Notes:==>Примітки: -Please note that the imported words are useless if the destination peer doesn't know==Зверніть увагу, що імпортовані слова марні, якщо цільовий вузол не знає, -the URLs the imported words belongs to.==до яких URL-адрес вони належать. -Crawling Queue Import:==Імпорт черги сканувача: -Contains data about the crawljob an URL belongs to==Містить дані про завдання сканування, що належить до URL -The crawling queue==Черга сканування -Various stack files that belong to the crawling queue==Різноманітні файли-купи, що належать до черги сканування -#----------------------------- - #File: IndexImportMediawiki_p.html #--------------------------- MediaWiki Dump Import==Імпорт Dump'у MediaWiki @@ -1879,7 +1661,7 @@ To integrate a search window into phpBB3, you must insert some code into a forum There are several templates that can be used for phpBB3, but in this guide we consider that==Є кілька шаблонів, які можуть бути використані для форуму phpBB3. Але в цьому посібнику, ми припускаємо, що you are using the default template, 'prosilver'==ви використовуєте стандартний шаблон, "prosilver". open styles/prosilver/template/overall_header.html==Відкрийте файл styles/prosilver/template/overall_header.html -find the line where the default search window is displayed, thats right behind the <pre><div id="search-box"></pre> statement==Знайдіть рядок, що використовується для показу пошукового вікна за замовчуванням, яке йде відразу за <pre><div id="search-box"></pre> +find the line where the default search window is displayed, that's right behind the <pre><div id="search-box"></pre> statement==Знайдіть рядок, що використовується для показу пошукового вікна за замовчуванням, яке йде відразу за <pre><div id="search-box"></pre> Insert the following code right behind the div tag==Вставте наступний код зразу за тегом div YaCy Forum Search==Пошук YaCy по форуму ;YaCy Search==;Пошук YaCy @@ -2145,7 +1927,7 @@ A change in the personal profile will create a news entry. You can see recently profile entries on the Network page, where that profile change is visualized with a '*' beside the 'P' (profile) - selector.==Зміни профілю на мережній сторінці відзначаються з "*" поруч з "P" (профілем). More news services will follow.==Пізніше буде більше служб новин. -Above you can see four menues:==Ви можете бачити ці чотири вкладки: +Above you can see four menus:==Ви можете бачити ці чотири вкладки: <strong>Incoming News (#[insize]#)</strong>: latest news that arrived your peer.==<strong>Вхідні новини (#[insize]#)</strong>: Останні новини, що досягли вашого вузла. Only these news will be used to display specific news services as explained above.==Тільки ці новини будуть використовуватися для відображення конкретної служби новин. You can process these news with a button on the page to remove their appearance from the IndexCreate and Network page==Ви можете обробити їх натисненням кнопки на сторінці (відмітити як "прочитані"). Потім ці повідомлення більше не будуть з’являтися на сторінках мережі та створення індексу. @@ -2199,7 +1981,7 @@ This shall improve performance of the affected process (proxy or search).==Це (current delta is==(З останнього доступу до проксі/місцевого пошуку/глобального пошуку пройшло seconds since last proxy/local-search/remote-search access.)==секунд.) Online Caution Case==Мережний тип доступу -indexer delay (milliseconds) after case occurency==затримка індексатора (в мілісекундах) для мережного доступу +indexer delay (milliseconds) after case occurrence==затримка індексатора (в мілісекундах) для мережного доступу Proxy:==Проксі: Local Search:==Місцевий пошук: Remote Search:==Віддалений пошук: @@ -2353,7 +2135,7 @@ Thread==Потік Queue Size<br />Current==Поточний<br />розмір черги Queue Size<br />Maximum==Найбільший<br />розмір черги Concurrency:<br />Number of Threads==Одночасність:<br />Кількість потоків -Childs==Дочірні процеси +Children==Дочірні процеси Average<br />Block Time<br />Reading==Середнє<br />читання Average<br />Exec Time==Середнє виконання Average<br />Block Time<br />Writing==Середній<br />запис @@ -2453,32 +2235,6 @@ Quick Crawl Link==Швидке сканування посилання #Unable to add URL to crawler queue:==Es ist nicht möglich die URL zum Crawler-Puffer hinzuzufügen: #----------------------------- -#File: Ranking_p.html -#--------------------------- -Ranking Configuration==Настройка ранжування -The document ranking influences the order of the search result entities.==Ранжування документів впливає на порядок відображення результатів пошуку. -A ranking is computed using a number of attributes from the documents that match with the search word.==Ранг розраховується за низкою ознак документів, що містять дане слово. -The attributes are first normalized over all search results and then the normalized attribut is multiplied with the ranking coefficient computed from this list.==Ознаки спочатку вирівнюються по всіх результатах пошуку, а потім перемножуються на множники, розраховані з цього списку. -The ranking coefficient grows exponentially with the ranking levels given in the following table.==Множник ранжування зростає експоненціально зі зростанням значень рангу, які наведені в наступній таблиці. -If you increase a single value by one, then the strength of the parameter doubles.==Якщо ви збільшуєте одиночне значення на одиницю, сила властивості збільшується в два рази. -Pre-Ranking==Передранжування - -There are two ranking stages:==Є дві фази ранжування. -first all results are ranked using the pre-ranking and from the resulting list the documents are ranked again with a post-ranking.==Спочатку всі результати ранжуються з передранжуванням, а з отриманого списку документи сортуються знову з післяранжуванням. -The two stages are separated because they need statistical information from the result of the pre-ranking.==Поділ на дві частини через необхідність отримання статистичної інформації з результатів попереднього ранжування. - -Post-Ranking==Післяранжування - -"Set as Default Ranking"=="Зберегти як ранжування за замовчуванням" -"Re-Set to Built-In Ranking"=="Повернення до початкових значень" - -<span>==<span class="info_extra"> -<dd style="width:3ddpx"==<dd style="width:400px" - -</body>==<script>window.onload = function () {$("label:contains('Prefer Pattern')").text('Застосування кращого зразка'); $("span.info_extra:contains('pattern given in a search request')").text('вищий рівень надає перевагу документам, у яких URL краще відповідає шаблону пошукового запиту.'); $("label:contains('Date')").text('Дата'); $("span.info_extra:contains('The age of a document')").text('вищий рівень надає перевагу молодшим документам. Вік документа вимірюється за допомогою дати, наданої віддаленим сервером в якості дати документу'); $("label:contains('Appearance In Emphasized Text')").text('Поява у виділеному тексті'); $("span.info_extra:contains('search word is emphasized')").text('вищий рівень надає перевагу документам, в яких шукане слово підкреслюється'); $("label:contains('Appearance In URL')").text('Поява в URL'); $("span.info_extra:contains('urls that match')").text('вищий рівень надає перевагу документам з URL-адресами, які відповідають шуканому слову'); $("label:contains('Appearance In Author')").text('Поява в авторстві'); $("span.info_extra:contains('documents with authors')").text('вищий рівень надає перевагу документам з авторами, які відповідають шуканому слову'); $("label:contains('Appearance In Reference/Anchor Name')").text('Поява в примітці/імені якоря'); $("span.info_extra:contains('in the description text')").text('вищий рівень надає перевагу документам, в яких шукане слово міститься в тексті опису'); $("label:contains('Appearance In Tags')").text('Поява в тега'); $("span.info_extra:contains('subject tags')").text('вищий рівень надає перевагу документам, де шукане слово є частиною значення тега'); $("label:contains('Appearance In Title')").text('Поява в заголовку'); $("span.info_extra:contains('documents with titles')").text('вищий рівень надає перевагу документам з заголовками, які відповідають шуканому слову'); $("label:contains('Authority of Domain')").text('Наповнення домену'); $("span.info_extra:contains('of matching documents')").text('вищий рівень надає перевагу документам з доменів з більшою кількістю співпадаючих документів'); $("label:contains('App, Appearance')").text('Поява в додатках'); $("span.info_extra:contains('to applications')").text('вищий рівень надає перевагу документам з вбудованими посиланнями на додатки'); $("label:contains('Audio Appearance')").text('Поява в звуках'); $("span.info_extra:contains('to audio content')").text('вищий рівень надає перевагу документам з вбудованими посиланнями на звуковий вміст'); $("label:contains('Image Appearance')").text('Поява в зображеннях'); $("span.info_extra:contains('with embedded images')").text('вищий рівень надає перевагу документам з вбудованими зображеннями'); $("label:contains('Video Appearance')").text('Поява в відео'); $("span.info_extra:contains('links to video files')").text('вищий рівень надає перевагу документам з вбудованими посиланнями на відео-файли'); $("label:contains('Category Index Page')").text('Індексні сторінки'); $("span.info_extra:contains('directory listings')").text('вищий рівень віддає перевагу сторінкам "index of" (спискам каталогів)'); $("label:contains('Domain Length')").text('Довжина домену'); $("span.info_extra:contains('short domain name')").text('вищий рівень надає перевагу документам з короткими іменами доменів'); $("label:contains('Hit Count')").text('Кількість входжень'); $("span.info_extra:contains('matchings for the search word')").text('вищий рівень надає перевагу документам з більшим числом співпадінь для шуканих слів'); $("label:contains('Preferred Language')").text('Бажана мова'); $("span.info_extra:contains('matches the browser language')").text('вищий рівень надає перевагу документам мовою, що співпадає з мовою переглядача тенет'); $("label:contains('Links To Local Domain')").text('Посилання на місцевий домен'); $("span.info_extra:contains('hyperlinks to the same domain')").text('вищий рівень надає перевагу документам з великою кількістю гіперпосилань на домен розміщення документу.'); $("label:contains('Links To Other Domain')").text('Посилання на інші домени'); $("span.info_extra:contains('hyperlinks to domains')").text('вищий рівень надає перевагу документам з великою кількістю гіперпосилань на домени, відмінні від домену документа'); $("label:contains('Phrases In Text')").text('Вирази в документі'); $("span.info_extra:contains('large number of phrases')").text('вищий рівень надає перевагу документам з великою кількістю виразів (пропозицій) у знайденому документі.'); $("label:contains('Position In Phrase')").text('Місце у виразі'); $("span.info_extra:contains('word match position high in the matching phrase')").text('вищий рівень надає перевагу документам з місцем збігу слів високо у відповідному виразі. Співпадаваний вираз це фраза (пропозиція), де відповідне слово з’являється в першим.'); $("label:contains('Position In Text')").text('Місце в тексті'); $("span.info_extra:contains('word match position high in the document')").text('вищий рівень надає перевагу документам з місцем збігу слів високо в документі. Це надає перевагу документам, в яких шукане слово на початку тексту.'); $("label:contains('Position Of Phrase')").text('Місце виразу'); $("span.info_extra:contains('phrase match position')").text('вищий рівень надає перевагу документам з місцем співпадання виразу високо в документі. Співпадаваний вираз це фраза (пропозиція), де відповідне слово з’являється в першим. Це надає перевагу документам, в яких шукане слово на початку тексту.'); $("label:contains('Term Frequency')").text('Частота терміну'); $("span.info_extra:contains('in lucene')").text('вищий рівень надає перевагу документам з високим відношенням (число співпадаючих слів)/(кількість слів у документі). Це те ж ранжування, що використовується в Lucene і старих пошукових системах, які були до 2000 року.'); $("label:contains('URL Components')").text('Складові URL'); $("span.info_extra:contains('short number of url components')").text('вищий рівень надає перевагу документам з малим числом складових URL. Число складових URL це кількість (під-)доменів + кількість (під-)шляхів складових в шляху до файлу.'); $("label:contains('URL Length')").text('Довжина URL'); $("span.info_extra:contains('with a short url')").text('вищий рівень надає перевагу документам з коротким url (домен + шлях)'); $("label:contains('Word Distance')").text('Відстань між словами'); $("span.info_extra:contains('words appear close together')").text('вищий рівень надає перевагу документам, в яких шукані слова з’являються близько один до одного. Ця властивість ранжування працює як оператор NEAR при пошуку більш, ніж одного слова.'); $("label:contains('Words In Text')").text('Слів у тексті'); $("span.info_extra:contains('large number of words. Be')").text('вищий рівень надає перевагу документам з великою кількістю слів. Майте на увазі, що це зрівноваження властивості частоти виразу.'); $("label:contains('Words In Title')").text('Слів у заголовкові'); $("span.info_extra:contains('in the document title')").text('вищий рівень надає перевагу документам з великою кількістю слів у назві документу.'); $("label:contains('Block Rank')").text('Ранг блоку YaCy'); $("span.info_extra:contains('ranking value on domains')").text('вищий рівень надає перевагу документам з більш високим, постійно призначеним значенням рейтингу на домени. Це як "кероване ранжування". Рейтинг по доменах(блоках) обчислений за допомогою аналізу посилань на великих графах посилань.'); $("label:contains('URL Component Appears')").text('Поширена складова URL'); $("span.info_extra:contains('url path that')").text('вищий рівень надає перевагу документам зі словами в шляху URL, які відповідають словам зі списку найпоширеніших. Цей список створюється з результатів пошуку за допомогою статистики з найбільш часто використовуваних слів. Це список верхніх-10 найбільш використовуваних слів в URL-адресах та назвах документів.'); $("label:contains('Description Comp')").text('Поширений опис'); $("span.info_extra:contains('description that')").text('вищий рівень надає перевагу документам зі словами в описі документа, які відповідають словам зі списку найпоширеніших. Цей список створюється з результатів пошуку за допомогою статистики з найбільш часто використовуваних слів. Це список верхніх-10 найбільш використовуваних слів в URL-адресах та назвах документів.');}</script></body> -#----------------------------- - - #File: RemoteCrawl_p.html #--------------------------- Remote Crawl Configuration==Налаштування віддаленого сканування @@ -2589,7 +2345,7 @@ Remote proxy port==Порт віддаленого проксі the port of the remote proxy==Порт віддаленого проксі Remote proxy user==Користувач віддаленого проксі Remote proxy password==Пароль віддаленого проксі -No-proxy adresses==Адреси повз проксі +No-proxy addresses==Адреси повз проксі IP addresses for which the remote proxy should not be used==IP-адреси, що не повинні використовуватись через віддалений проксі "Submit"=="Зберегти" Changes will take effect immediately.==Зміни набирають чинності негайно. @@ -2599,7 +2355,7 @@ Changes will take effect immediately.==Зміни набирають чинно #--------------------------- Proxy Access Settings==Установки доступу до проксі These settings configure the access method to your own http proxy and server.==Ці параметри впливають на доступ до вашого HTTP-проксі і -сервера. -All traffic is routed throug one single port, for both proxy and server.==Всі з’єднання здійснюються через один порт для обох (проксі і сервера). +All traffic is routed through one single port, for both proxy and server.==Всі з’єднання здійснюються через один порт для обох (проксі і сервера). Server/Proxy Port Configuration==Налаштування порту сервера/проксі The socket addresses where YaCy should listen for incoming connections from other YaCy peers or http clients.==Адреси сокетів, де YaCy чекає на вхідні з’єднання від інших вузлів YaCy або HTTP-клієнтів. You have four possibilities to specify the address:==У вас є чотири способи вказати адресу: @@ -2727,7 +2483,7 @@ Error with submitted information.==Виникла помилка у переда Nothing changed.</p>==Нічого не змінилося.</p> The user name must be given.==Ім’я користувача повинно бути вказано. Your request cannot be processed.==Ваш запит не може бути оброблений. -The password redundancy check failed. You have probably misstyped your password.==Перевірка пароля не вдалася. Ви, напевно, помилилися. +The password redundancy check failed. You have probably mistyped your password.==Перевірка пароля не вдалася. Ви, напевно, помилилися. Shutting down.</strong><br />Application will terminate after working off all crawling tasks.==Завершення роботи.</strong><br />Додаток буде закрито після обробки всіх сканувань. Your administration account setting has been made.==Ваші налаштування облікового запису адміністратора були збережені. Your new administration account name is #[user]#. The password has been accepted.<br />If you go back to the Settings page, you must log-in again.==Ваше нове ім’я облікового запису адміністратора #[user]#. Пароль був прийнятий.<br />Якщо ви хочете повернутися до налаштувань, необхідно увійти заново. @@ -2973,7 +2729,7 @@ YaCy Supporters<==Постачальники YaCy< provided by YaCy peers using public bookmarks, link votes and crawl start points==автоматично надається через загальнодоступні закладки, голоси і початкові точки сканування вузлів YaCy "Please enter a comment to your link recommendation. (Your Vote is also considered without a comment.)"=="Будь ласка, введіть коментар для вашої рекомендації посилання. (Ваш голос може бути прийнято без коментарів.)" "authentication required"=="необхідний вхід" -Hide surftips for users without autorization==Приховати поради для користувачів без дозволу +Hide surftips for users without authorization==Приховати поради для користувачів без дозволу Show surftips to everyone==Показувати поради для всіх #----------------------------- @@ -3310,8 +3066,8 @@ These tags create headlines. If a page has three or more headlines, a table of c Headlines of level 1 will be ignored in the table of content.==Заголовки в першому рівні ігноруються в каталозі вмісту. text==текст These tags create stressed texts. The first pair emphasizes the text (most browsers will display it in italics),==Ці коди генерують виділений текст. Перша пара підкреслює текст (більшість переглядачів відображають текст курсивом), -the second one emphazises it more strongly (i.e. bold) and the last tags create a combination of both.==друга підкреслює текст сильніше (наприклад, виділення жирним шрифтом), а остання є сумішшю того й іншого. -Text will be displayed <span class="strike">stricken through</span>.==Текст буде відображатись <span class="strike">перекресленим</span>. +the second one emphasizes it more strongly (i.e. bold) and the last tags create a combination of both.==друга підкреслює текст сильніше (наприклад, виділення жирним шрифтом), а остання є сумішшю того й іншого. +Text will be displayed <span class="strike">struck through</span>.==Текст буде відображатись <span class="strike">перекресленим</span>. Lines will be indented. This tag is supposed to mark citations, but may as well be used for styling purposes.==Відображає відступ тексту. Ця команда служить для виділення цитат, але також використовується для проектування. point==Punkt These tags create a numbered list.==Ці коданди створюють номерований список. @@ -3567,14 +3323,6 @@ Advanced Properties==Розширені властивості Thread Dump==Dump потоку #----------------------------- -#File: env/templates/submenuContentIntegration.template -#--------------------------- -External Content Integration==Включення зовнішнього вмісту -Import phpBB3 forum==Імпорт форуму phpBB3 -Import Mediawiki dumps==Імпорт Mediawiki Dumps -Import OAI-PMH Sources==Імпорт джерел OAI-PMH -#----------------------------- - #File: env/templates/submenuCrawlMonitor.template #--------------------------- Web Crawler==Сканер мережі @@ -3656,18 +3404,6 @@ RSS Feed<br/>Importer==Імпорт<br/>RSS Feed OAI-PMH<br/>Importer==Імпорт<br/>OAI-PMH #----------------------------- -#File: env/templates/submenuPortalIntegration.template -#--------------------------- ->Search Portal Integration==>Вбудовування пошукового порталу ->Live Search Anywhere==>Живий пошук всюди ->Generic Search Portal==>Загальний пошуковий портал ->Search Box Anywhere==>Поле пошуку всюди ->Appearance==>Зовнішній вигляд ->User Profile==>Профіль користувача ->Language==>Мова ->Ranking Config==>Настройка ранжування -#----------------------------- - #File: env/templates/submenuPublication.template #--------------------------- Publication==Публікація @@ -3684,12 +3420,6 @@ Basic Configuration==Початкове налаштування Network Configuration==Настройка мережі #----------------------------- -#File: env/templates/submenuViewLog.template -#--------------------------- -Server Log Menu==Меню журналу сервера -#Server Log==Журнал сервера -#----------------------------- - #File: env/templates/submenuWebStructure.template #--------------------------- Web Visualization==Зображення веб @@ -3732,33 +3462,6 @@ could not be found.==не знайдений. Did you mean:==Ви мали на увазі: #----------------------------- -#File: www/welcome.html -#--------------------------- -YaCy: Default Page for Individual Peer Content==YACY: Сторінка за замовчуванням для вмісту власного вузла -Individual Web Page==Власна веб-сторінка -Welcome to your own web page<br />in the <strong>YaCy Network==Вітаємо на вашій власній веб-сторінці <br /> в <strong> мережі YaCy -THIS IS A DEMONSTRATION PAGE FOR YOUR OWN INDIVIDUAL WEB SERVER!==<h4>Це показова сторінка вашого власного веб-сервера! -PLEASE REPLACE THIS PAGE BY PUTTING A FILE index.html INTO THE PATH==Будь-ласка, замініть цю сторінку шляхом розміщення файлу index.html в каталозі -<YaCy-application-home><strong>#[wwwpath]#</strong>==<YaCy><strong>#[wwwpath]#</strong>.</h4> -"/env/grafics/yacy.gif"=="/env/grafics/yacy.png" -<b>==<b> -</b>==</b> -This is peer '<strong>#[peername]#</strong>', running on host <strong>#[hostname]#</strong>==Це вузол "<strong>#[peername]#</strong>", запущений на <strong>#[hostname]#</strong> -Your are accessing this page from the host '#[clientip]#'==Ви звертаєтеся до цієї сторінки з вузла "#[clientip]#" -Every user of YaCy #[couldcan]# access this page==Кожен користувач YaCy #[couldcan]# досягти цю сторінку -using the URL==використовуючи URL -or <a==або <a -from within the YaCy network==з мережі YaCy -We integrated an easy mechanism for web page authoring==Ми вбудували простий механізм для засвідчення творця веб-сторінки -which can also be used for simple file-sharing==який може також бути використаний для простого файлообміну -Please open the sample page==Будь-ласка, відкрийте зразок сторінки -and set upload/download accounts to author and access content on this peer==та виставте відвантажувальні/завантажувальні облікові записи для творця, і вміст цього вузла буде доступним -"#[peername]#'s Console"=="Консоль #[peername]#" - -#Nobody can access your peer from the outside of your intranet==Ніхто не має доступу до вашого вузла ззовні вашої внутрішньої мережі -#You must open your firewall and/or set a 'virtual server' in the settings of your router to enable access to the addresses as shown below==Вам потрібно відкрити фаєрвол і/або виставити "віртуальний сервер" в настройках вашого маршрутизатора для ввімкнення доступу до адрес, які показані нижче -#----------------------------- - #File: js/Crawler.js #--------------------------- "Continue this queue"=="Відновити обробку цієї черги" @@ -3780,24 +3483,6 @@ and set upload/download accounts to author and access content on this peer==та loading from local index==Завантаження з місцевого індексу #----------------------------- -#File: js/jquery-flexigrid.js -#--------------------------- -'Displaying {from} to {to} of {total} items'=='Показано {from} до {to} з {total} записів' -'Processing, please wait ...'=='В обробці. Будь-ласка, зачекайте ...' -'No items'=='Результати відсутні' -#----------------------------- - -#File: js/jquery-ui-1.7.2.min.js -#--------------------------- -Loading…==Завантаження… -#----------------------------- - -#File: js/jquery.ui.all.min.js -#--------------------------- -Loading…==Завантаження… -#----------------------------- - - #File: AccessGrid_p.html #--------------------------- YaCy Network Access==Мережний доступ YaCy diff --git a/locales/zh.lng b/locales/zh.lng index 00f3de048..cce1eb96d 100644 --- a/locales/zh.lng +++ b/locales/zh.lng @@ -495,7 +495,7 @@ Some pages are protected by passwords.==一些页面受密码保护。 You should set a password at the <a href="ConfigAccounts_p.html">Accounts Menu</a> to secure your YaCy peer.</p>::==你可以在 <a href="ConfigAccounts_p.html">账户菜单</a> 设置密码, 从而加强你的YaCy节点安全性。</p>:: You did not open a port in your firewall or your router does not forward the server port to your peer.==你未在防火墙中打开端口,或者你的路由器不能与服务器端口建立有效链接。 This is needed if you want to fully participate in the YaCy network.==如果你想完全加入YaCy网络, 此项是必须的。 -You can also use your peer without opening it, but this is not recomended.==不开放端口你也能使用你的节点, 但是不推荐。 +You can also use your peer without opening it, but this is not recommended.==不开放端口你也能使用你的节点, 但是不推荐。 #----------------------------- #File: ConfigHeuristics_p.html @@ -514,7 +514,7 @@ When a search is made then all displayed result links are crawled with a depth-1 >copy & paste a example config file<==>复制& 粘贴一个示例配置文件< Alternatively you may==或者你可以 To find out more about OpenSearch see==要了解关于OpenSearch的更多信息,请参阅 -20 results are taken from remote system and loaded simultanously, parsed and indexed immediately.==20个结果从远端系统中获取并同时加载,立即解析并创建索引. +20 results are taken from remote system and loaded simultaneously, parsed and indexed immediately.==20个结果从远端系统中获取并同时加载,立即解析并创建索引. When using this heuristic, then every new search request line is used for a call to listed opensearch systems.==使用这种启发式时,每个新的搜索请求行都用于调用列出的opensearch系统。 This means: right after the search request every page is loaded and every page that is linked on this page.==这意味着:在搜索请求之后,就开始加载结果的每个页面及每个页面上的链接。 If you check 'add as global crawl job' the pages to be crawled are added to the global crawl queue (remote peers can pickup pages to be crawled).==如果选中'添加为全球爬取作业',则要爬取的页面将被添加到全球爬取队列中(其他远端YaCy节点可能会帮助爬取这些页面)。 @@ -533,7 +533,7 @@ The task is started in the background. It may take some minutes before new entri ('modify Solr Schema')==('修改Solr模式') located in <i>defaults/heuristicopensearch.conf</i> to the DATA/SETTINGS directory.==位于DATA / SETTINGS目录的<i> defaults / heuristicopensearch.conf </i>中。 For the discover function the <i>web graph</i> option of the web structure index and the fields <i>target_rel_s, target_protocol_s, target_urlstub_s</i> have to be switched on in the <a href="IndexSchema_p.html?core=webgraph">webgraph Solr schema</a>.==对于发现功能,Web结构索引的<i> web图表</i>选项和字段<i> target_rel_s,target_protocol_s,target_urlstub_s </i>必须在<a href="IndexSchema_p.html?core=webgraph">webgraph Solr模式</a>。 -20 results are taken from remote system and loaded simultanously==20个结果从远端系统中获取,并同时加载,立即解析并索引 +20 results are taken from remote system and loaded simultaneously==20个结果从远端系统中获取,并同时加载,立即解析并索引 >copy ==>复制&amp; 粘贴一个示例配置文件< When using this heuristic==使用这种启发式时,每个新的搜索请求行都用于调用列出的opensearch系统。 For the discover function the <i>web graph</i> option of the web structure index and the fields <i>target_rel_s==对于发现功能,Web结构索引的<i> web图表</ i>选项和字段<i> target_rel_s,target_protocol_s,target_urlstub_s </ i>必须在<a href =“IndexSchema_p.html ?core = webgraph“> webgraph Solr模式</a>。 @@ -711,7 +711,7 @@ URL of a Large Corporate Image<==企业形象大图地址< Alternative text for Corporate Images<==企业形象代替文字< Enable Search for Everyone==对任何人开启搜索 Search is available for everyone==任何人可用搜索 -Only the administator is allowed to search==只有管理员可以搜索 +Only the administrator is allowed to search==只有管理员可以搜索 Show Navigation Bar on Search Page==显示导航栏和搜索页 Show Navigation Top-Menu==显示顶级导航菜单 no link to YaCy Menu (admin must navigate to /Status.html manually)==没有到YaCy菜单的链接(管理页面必须手动指向 /Status.html) @@ -1106,22 +1106,6 @@ Sending Client==发送中的客户端 "Disable Cookie Monitoring"=="关闭Cookie监控" #----------------------------- -#File: CookieTest_p.html -#--------------------------- -Cookie - Test Page==缓存 - 测试页 -Here is a cookie test page.==这是一个缓存测试页. -Just clean it==Just clean it -Name:==Name: -Value:==Value: -Dear server, set this cookie for me!==Dear server, set this cookie for me! -Cookies at this browser:==Cookies at this browser: -Cookies coming to server:==Cookies coming to server: -Cookies server sent:==Cookies server sent: -YaCy is a GPL'ed project==YaCy is a GPL'ed project -with the target of implementing a P2P-based global search engine.==with the target of implementing a P2P-based global search engine. -Architecture (C) by==Architecture (C) by -#----------------------------- - #File: CrawlCheck_p.html #--------------------------- Crawl Check==爬取检查 @@ -1645,7 +1629,7 @@ only urls with the <phrase> in the url==仅包含词组<phrase>的 only urls with the <phrase> within outbound links of the document==仅在文档的出站链接中包含带有词组<phrase>的网址 only urls with extension <ext>==仅包含拓展名为<ext>的网址 only urls from host <host>==仅服务器为<host>的网址 -only pages with as-author-anotated <author>==仅包含作者为<author>的页面 +only pages with as-author-annotated <author>==仅包含作者为<author>的页面 only pages from top-level-domains <tld>==仅来自顶级域<tld>的页面 only pages with <date> in content==仅内容包含<date>的页面 only pages with a date between <date1> and <date2> in content==内容中只有日期介于<date1>和<date2>之间的页面 @@ -1892,30 +1876,6 @@ There are #[num]# entries in the loader set:==加载器中有 #[num]# 个词条: >URL<==>地址< #----------------------------- -#File: IndexCleaner_p.html -#--------------------------- -Index Cleaner==索引整理 ->URL-DB-Cleaner==>URL-DB-清理 -#ThreadAlive: -#ThreadToString: -Total URLs searched:==搜索到的全部地址: -Blacklisted URLs found:==搜索到的黑名单地址: -Percentage blacklisted:==黑名单占百分比: -last searched URL:==最近搜索到的地址: -last blacklisted URL found:==最近搜索到的黑名单地址: ->RWI-DB-Cleaner==>RWI-DB-清理 -RWIs at Start:==启动时RWIs: -RWIs now:==当前反向词索引: -wordHash in Progress:==处理中的Hash值: -last wordHash with deleted URLs:==已删除网址的Hash值: -Number of deleted URLs in on this Hash:==此Hash中已删除的地址数: -URL-DB-Cleaner - Clean up the database by deletion of blacklisted urls:==URL-DB-清理 - 清理数据库, 会删除黑名单地址: -Start/Resume==开始/继续 -Stop==停止 -Pause==暂停 -RWI-DB-Cleaner - Clean up the database by deletion of words with reference to blacklisted urls:==RWI-数据库-清理 - 清理数据库, 会删除与黑名单URL相关的信息: -#----------------------------- - #File: IndexCreateParserErrors_p.html #--------------------------- >Rejected URLs<==>被拒绝地址< @@ -2027,13 +1987,13 @@ Solr stores the main search index. It is the home of two cores, the default 'col >Lazy Value Initialization <==>惰性值初始化 < If checked, only non-zero values and non-empty strings are written to Solr fields.==如果选中,则仅将非零值和非空字符串写入 Solr 字段。 >Use deep-embedded local Solr <==>使用深度嵌入的本地Solr < -This will write the YaCy-embedded Solr index which stored within the YaCy DATA directory.==这将写入存储在YaCy的DATA目录下的 YaCy嵌入式Solr索引。 +This will write the YaCy-embedded Solr index which is stored within the YaCy DATA directory.==这将写入存储在YaCy的DATA目录下的 YaCy嵌入式Solr索引。 >Use remote Solr server(s) <==>使用远程Solr服务器 < >Allow self-signed certificates <==>允许自签名证书 < write-enabled (if unchecked, the remote server(s) will only be used as search peers)==启用写入(如果未选中,远程服务器将仅用作搜索节点) value="Set"==value="设置" Web Structure Index==网络结构图索引 -The web structure index is used for host browsing (to discover the internal file/folder structure), ranking (counting the number of references) and file search (there are about fourty times more links from loaded pages as in documents of the main search index). ==网页结构索引用于服务器浏览(发现内部文件/文件夹结构)、排名(计算引用次数)和文件搜索(加载页面的链接大约是主搜索索引的文档中的40倍)。 +The web structure index is used for host browsing (to discover the internal file/folder structure), ranking (counting the number of references) and file search (there are about forty times more links from loaded pages than in documents of the main search index). ==网页结构索引用于服务器浏览(发现内部文件/文件夹结构)、排名(计算引用次数)和文件搜索(加载页面的链接大约是主搜索索引的文档中的40倍)。 use citation reference index (lightweight and fast)==使用引文参考索引(轻量且快速) use webgraph search index (rich information in second Solr core)==使用网图搜索索引(第二个Solr核心中的丰富信息) Peer-to-Peer Operation==P2P运行 @@ -2275,7 +2235,7 @@ To integrate a search window into phpBB3, you must insert some code into a forum There are several templates that can be used for phpBB3, but in this guide we consider that==phpBB3中有多种模板, you are using the default template, 'prosilver'==在此我们使用默认模板 'prosilver'. open styles/prosilver/template/overall_header.html==打开 styles/prosilver/template/overall_header.html -find the line where the default search window is displayed, thats right behind the <pre><div id="search-box"></pre> statement==找到搜索框显示代码部分, 它们在 <pre><div id="search-box"></pre> 下面 +find the line where the default search window is displayed, that's right behind the <pre><div id="search-box"></pre> statement==找到搜索框显示代码部分, 它们在 <pre><div id="search-box"></pre> 下面 Insert the following code right behind the div tag==在div标签后插入以下代码 YaCy Forum Search==YaCy论坛搜索 ;YaCy Search==;YaCy搜索 @@ -2523,7 +2483,7 @@ To publish a translation, use the integrated==要发布新的翻译,请用 translation editor==翻译编辑器 to add a translation and publish it afterwards.==来添加翻译并发布。 More news services will follow.==接下来会有更多的新闻服务. -Above you can see four menues:==上面四个菜单选项分别为: +Above you can see four menus:==上面四个菜单选项分别为: <strong>Incoming News (#[insize]#)</strong>: latest news that arrived your peer.==<strong>传入的新闻(#[insize]#)</strong>: 发送至你节点的新闻. Only these news will be used to display specific news services as explained above.==这些消息含有上述的特定新闻服务. You can process these news with a button on the page to remove their appearance from the IndexCreate and Network page==你可以使用'创建首页'和'网络'页面的设置隐藏它们. @@ -2614,7 +2574,7 @@ This shall improve performance of the affected process (proxy or search).==从 (current delta is==(当前设置为 seconds since last proxy/local-search/remote-search access.)==秒.) Online Caution Case==触发事件 -indexer delay (milliseconds) after case occurency==事件触发后的索引延时(毫秒) +indexer delay (milliseconds) after case occurrence==事件触发后的索引延时(毫秒) Proxy:==代理: Local Search:==本地搜索: Remote Search:==远端搜索: @@ -2940,7 +2900,7 @@ URLs for<br/>Remote<br/>Crawl==来自远端爬取的地址 #------------------------------ Local Search access rate limitations==本地搜索访问率限制 You can configure here limitations on access rate to this peer search interface by unauthenticated users and users without extended search right==你可以在此处配置未经验证的用户和没有扩展搜索权限的用户对该节点搜索界面的访问速率限制 -(see the <a href="ConfigAccounts_p.html">Accounts</a> configuration page for details on users rights).==(有关用户权限详情请参见<a href="ConfigAccounts_p.html">账户</a>配置页面)。 +(see the <a href="ConfigAccounts_p.html">Accounts</a> configuration page for details on users' rights).==(有关用户权限详情请参见<a href="ConfigAccounts_p.html">账户</a>配置页面)。 YaCy search==YaCy搜索 Access rate limitations to this peer search interface.==本节点搜索界面访问率限制。 When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the search is blocked.==当具有有限权限的用户(未经验证或没有扩展搜索权限)超过限制时,搜索阻塞。 @@ -3066,7 +3026,7 @@ Remote proxy port==远端代理端口 the port of the remote proxy==远端代理使用的端口 Remote proxy user==远端代理用户 Remote proxy password==远端代理用户密码 -No-proxy adresses==无代理地址 +No-proxy addresses==无代理地址 IP addresses for which the remote proxy should not be used==指定不使用代理的IP地址 "Submit"=="提交" Changes will take effect immediately.==改变立即生效. @@ -3076,7 +3036,7 @@ Changes will take effect immediately.==改变立即生效. #--------------------------- Proxy Access Settings==代理访问设置 These settings configure the access method to your own http proxy and server.==设定http代理和服务器的访问方式. -All traffic is routed throug one single port, for both proxy and server.==代理和服务器流量均从同一端口流过. +All traffic is routed through one single port, for both proxy and server.==代理和服务器流量均从同一端口流过. Server/Proxy Port Configuration==服务器/代理 端口设置 The socket addresses where YaCy should listen for incoming connections from other YaCy peers or http clients.==指定YaCy需要监听的socket地址. You have four possibilities to specify the address:==可以设置以下四个地址: @@ -3247,7 +3207,7 @@ Error with submitted information.==提交信息发生错误. Nothing changed.</p>==无任何改变.</p> The user name must be given.==必须给出用户名. Your request cannot be processed.==不能响应请求. -The password redundancy check failed. You have probably misstyped your password.==密码冗余检查错误. +The password redundancy check failed. You have probably mistyped your password.==密码冗余检查错误. Shutting down.</strong><br />Application will terminate after working off all crawling tasks.==正在关闭</strong><br />所有crawl任务完成后程序会关闭. Your administration account setting has been made.==已创建管理账户设置. Your new administration account name is #[user]#. The password has been accepted.<br />If you go back to the Settings page, you must log-in again.==新帐户名是 #[user]#. 密码输入正确.<br />如果返回设置页面, 需要再次输入密码. @@ -3494,7 +3454,7 @@ YaCy Supporters<==YaCy参与者< provided by YaCy peers using public bookmarks, link votes and crawl start points==由使用公共书签, 网址评价和爬取起始点的节点提供 "Please enter a comment to your link recommendation. (Your Vote is also considered without a comment.)"=="输入推荐链接备注. (可留空.)" "authentication required"=="需要认证" -Hide surftips for users without autorization==隐藏非认证用户的建议功能 +Hide surftips for users without authorization==隐藏非认证用户的建议功能 Show surftips to everyone==所有人均可使用建议 #----------------------------- @@ -3560,40 +3520,6 @@ To see a list of all APIs, please visit the==要查看所有API的列表,请 >robots.txt table<==>robots.txt列表< #----------------------------- -#File: Table_YMark_p.html -#--------------------------- -Table Viewer==表格查看 -YMark Table Administration==YMark表格管理 -Table Editor: showing table==表格编辑器: 显示表格 -"Edit Selected Row"=="编辑选中行" -"Add a new Row"=="添加新行" -"Delete Selected Rows"=="删除选中行" -"Delete Table"=="删除表格" -"Rebuild Index"=="重建索引" -Primary Key==主键 ->Row Editor<==>行编辑器< -"Commit"=="备注" -Table Selection==选择表格 -Select Table:==选择表格: -show max. entries==显示最多词条 ->all<==>所有< -Display columns:==显示列: -"load"=="载入" -Search/Filter Table==搜索/过滤表格 -search rows for==搜索 -"Search"=="搜索" -#>Tags<==>Tags< ->select a tag<==>选择标签< ->Folders<==>目录< ->select a folder<==>选择目录< ->Import Bookmarks<==>导入书签< -#Importer:==Importer: -#>XBEL Importer<==>XBEL Importer< -#>Netscape HTML Importer<==>Netscape HTML Importer< -"import"=="导入" -#----------------------------- - -### This Tables section is removed in current SVN Versions #File: Tables_p.html #--------------------------- Table Viewer==表查看器 @@ -3652,7 +3578,7 @@ Threaddump<==线程Dump< Translation News for Language==语言翻译新闻 Translation News==翻译新闻 You can share your local addition to translations and distribute it to other peers.==你可以分享你的本地翻译,并分发给其他节点。 -The remote peer can vote on your translation and add it to the own local translation.==远端节点可以对你的翻译进行投票并将其添加到他们的本地翻译中。 +The remote peer can vote on your translation and add it to its own local translation.==远端节点可以对你的翻译进行投票并将其添加到他们的本地翻译中。 entries available==可用的词条 "Publish"=="发布" You can check your outgoing messages==你可以检查你的传出消息 @@ -3794,7 +3720,7 @@ The object can be denoted by a url stub that, combined with the term, becomes th Empty Vocabulary== 空词汇 >Auto-Discover<==>自动发现< > from file name==> 来自文件名 -> from page title (splitted)==> 来自页面标题(拆分) +> from page title (split)==> 来自页面标题(拆分) > from page title==> 来自页面标题 > from page author==> 来自页面作者 >Objectspace<==>对象空间< @@ -3903,8 +3829,8 @@ These tags create headlines. If a page has three or more headlines, a table of c Headlines of level 1 will be ignored in the table of content.==一级标题. #text==Text These tags create stressed texts. The first pair emphasizes the text (most browsers will display it in italics),==这些标记标识文本内容. 第一对中为强调内容(多数浏览器用斜体表示), -the second one emphazises it more strongly (i.e. bold) and the last tags create a combination of both.==第二对用粗体表示, 第三对为两者的联合. -Text will be displayed <span class="strike">stricken through</span>.==文本内容以<span class="strike">删除线</span>表示. +the second one emphasizes it more strongly (i.e. bold) and the last tags create a combination of both.==第二对用粗体表示, 第三对为两者的联合. +Text will be displayed <span class="strike">struck through</span>.==文本内容以<span class="strike">删除线</span>表示. Lines will be indented. This tag is supposed to mark citations, but may as well be used for styling purposes.==缩进内容, 此标记主要用于引用, 也能用于标识样式. #point==point These tags create a numbered list.==此标记用于有序列表. @@ -4023,24 +3949,6 @@ Images==图片 >Images==>图片 #----------------------------- -#File: YMarks.html -#--------------------------- -"Import"=="导入" -documents=="文件" -days==天 -hours==小时 -minutes==分钟 -for new documents automatically==自动地对新文件 -run this crawl once==爬取一次 ->Query<==>查询< -Query Type==查询类型 ->Import<==>导入< -Tag Manager==标签管理器 -Bookmarks (user: #[user]# size: #[size]#)==书签(用户: #[user]# 大小: #[size]#) -"Replace"=="替换" -#----------------------------- - -### Subdirectory api ### #File: api/citation.html #--------------------------- Document Citations for==文档引用 @@ -4479,21 +4387,3 @@ could not be found.==未找到. Did you mean:==是不是: #----------------------------- -#File: js/jquery-flexigrid.js -#--------------------------- -'Displaying {from} to {to} of {total} items'=='显示 {from} 到 {to}, 总共 {total} 个词条' -'Processing, please wait ...'=='正在处理, 请稍候...' -'No items'=='无词条' -#----------------------------- - -#File: js/jquery-ui-1.7.2.min.js -#--------------------------- -Loading…==正在加载… -#----------------------------- - -#File: js/jquery.ui.all.min.js -#--------------------------- -Loading…==正在加载… -#----------------------------- - -# EOF |
