From 57d188e69a17788ff78fd1b9ad1afa2b232f6536 Mon Sep 17 00:00:00 2001
From: Michael Peter Christen
Date: Tue, 7 Jul 2026 21:36:59 +0200
Subject: Major fix for localization: finalizing German, French, Spanish,
Italian, Greek, Slovak, Ukrainian, Turkish and Russian. Also added full
support for Polish language. All servlets are now fully supported by those
languages.
---
locales/README-locales.md | 103 +-
locales/de.lng | 4250 +++++++------
locales/el.lng | 4944 ++++++++++++++-
locales/es.lng | 4472 ++++++++++++--
locales/fr.lng | 5157 +++++++++++-----
locales/hi.lng | 894 ++-
locales/it.lng | 6427 ++++++++++++++-----
locales/ja.lng | 1084 +---
locales/master.lng.xlf | 12337 +++++++++++++++++++++----------------
locales/pl.lng | 4777 ++++++++++++++
locales/ru.lng | 4504 ++++++++------
locales/sk.lng | 6379 ++++++++++++++-----
locales/tr.lng | 6285 +++++++++++--------
locales/uk.lng | 4859 +++++++++------
locales/validate-locale-links.py | 163 +
locales/zh.lng | 2228 +------
16 files changed, 46345 insertions(+), 22518 deletions(-)
create mode 100644 locales/pl.lng
create mode 100755 locales/validate-locale-links.py
(limited to 'locales')
diff --git a/locales/README-locales.md b/locales/README-locales.md
index 687c51ec2..c6a51936d 100644
--- a/locales/README-locales.md
+++ b/locales/README-locales.md
@@ -70,12 +70,18 @@ Wichtig:
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.
+### Abschnitts-Header: nur `#File:`
+Der Runtime-Loader (`Translator.loadTranslationsLists`) erkennt derzeit **nur**
+`#File:` als Abschnitts-Header. Zeilen mit anderen Präfixen, z. B. `#Dosya:`,
+werden wie normale Kommentarzeilen behandelt; die folgenden Einträge landen dann
+nicht im beabsichtigten Dateiabschnitt und greifen zur Laufzeit nicht korrekt.
+
+Hinweis: Ältere oder importierte Dateien können lokalisierte Header wie
+`#Dosya:` enthalten. Solche Header müssen vor einem Runtime-Test nach `#File:`
+normalisiert werden (oder der Java-Loader muss explizit erweitert werden).
+Andere `#Xxx:`-Präfixe (`#YaCy:`, `#Subject:`, `#URL:` …) sind ebenfalls keine
+Header. Da alle Zeilen mit `#` ignoriert werden, sind auch `#key==wert`-Zeilen
+auskommentierte Einträge und keine aktiven Übersetzungen.
---
@@ -137,6 +143,17 @@ Ablauf (`Translator.translate` / `translateFilesRecursive`):
Es gibt **keinen** automatischen Extraktor, der „übersetzbare Strings“
erkennt — die Schlüssel werden von Hand gepflegt.
+Wichtig: Beim Erzeugen der lokalisierten Dateien werden nur Quelldateien
+geschrieben, für die in der Sprachdatei ein passender `#File:`-Abschnitt
+existiert. Fehlt der Abschnitt, wird diese Datei nicht als lokalisierte Kopie
+erzeugt.
+
+Die erzeugten Seiten liegen zur Laufzeit unter `DATA/LOCALE/htroot/`.
+Beim Umschalten oder automatischen Refresh einer Sprache muss dieser Ordner
+vorher gelöscht werden; sonst können nicht mehr erzeugte Altdateien weiterhin
+ausgeliefert werden. Aktuelle YaCy-Versionen erledigen das beim Sprachwechsel
+und beim versionsbedingten Startup-Refresh automatisch.
+
---
## 5. Template-Markup in den Quelldateien
@@ -206,21 +223,70 @@ Leerzeichen, bis zum `#[path]#`), **nicht** die ganze Zeile inkl. `#[path]#`.
JSON-Snippets) — nur die umgebende Prosa übersetzen.
- **Test-/Demo-Dateien** und rein technische Bezeichner (Feldnamen wie
`num_ctx`, `max_tokens`, Rollennamen wie `search-query`).
+- **Technische Link-Ziele, Pfade, Servlets und URLs** bleiben literal. Nicht
+ übersetzen oder durch Leerzeichen beschädigen: `Network.html` bleibt
+ `Network.html`, `sharedBlacklist.html` bleibt `sharedBlacklist.html`,
+ `share.json` bleibt `share.json`, `styles/prosilver/template/overall_header.html`
+ bleibt unverändert und URLs wie `http://localhost:8090/proxy.html?...`
+ dürfen nicht lokalisiert werden.
+
+Prüfung aus dem Repository-Root:
+
+```bash
+python3 locales/validate-locale-links.py --exclude pl.lng
+```
+
+`--exclude` ist nützlich, wenn eine Sprache parallel in einem anderen Arbeitszweig
+bearbeitet wird. Für einzelne Sprachen kann `--include de.lng --include fr.lng`
+verwendet werden. Ein sauberer Lauf endet mit `OK: ... no link target issues found.`
---
## 8. `master.lng.xlf`
-`master.lng.xlf` ist eine XLIFF-Datei, die den **Gesamtbestand** aller
-übersetzbaren Strings pro Datei als ``-Elemente führt.
+`master.lng.xlf` ist die source-basierte XLIFF-Referenz der übersetzbaren
+Strings pro Datei. Die Wahrheit für diesen Master liegt in den Quellen unter
+`htroot`, nicht in bereits vorhandenen `.lng`-Dateien.
-- 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`).
+- Sie wird mit `GenerateSourceMasterXliff` aus sichtbaren Textknoten und
+ ausgewählten UI-Attributen (`alt`, `title`, `placeholder`, `aria-label`,
+ Button-`value`) erzeugt.
+- Jeder Kandidat wird gegen den Roh-Quelltext und die Runtime-Wortgrenzen der
+ Übersetzung geprüft. Nicht darstellbare `.lng`-Keys, z. B. Keys mit `==` oder
+ einem abschließenden `=`, werden verworfen.
- **Nicht** von Hand mit Hash-/Zeilen-IDs pflegen — nach Änderungen an Quellen
- oder `.lng`-Dateien besser über das YaCy-Tooling neu erzeugen. Ein kompletter
- `…`-Block darf jedoch sauber entfernt werden (z. B. wenn die
- zugehörige Seite gelöscht wurde).
+ über das YaCy-Tooling neu erzeugen und das Delta prüfen.
+- Beim Refresh wird die Zieldatei ersetzt. Stale Master-Einträge fallen dadurch
+ weg, auch wenn sie noch in alten `.lng`-Dateien stehen.
+
+Refresh aus dem Repository-Root:
+
+```bash
+java -cp 'build/classes/java/main:lib/*' \
+ net.yacy.utils.translation.GenerateSourceMasterXliff \
+ htroot locales/master.lng.xlf
+```
+
+Falls die Klassen noch nicht kompiliert sind, vorher `ant compile` ausführen.
+Das zweite Argument ist wichtig: ohne `locales/master.lng.xlf` schreibt das Tool
+standardmäßig nach `./source-master.lng.xlf` im Repository-Root. Existiert die
+Zieldatei bereits, wird sie ersetzt.
+
+### Legacy: bestandbasierter Master
+
+`GenerateMasterXliff` erzeugt nur einen bestandbasierten Master aus vorhandenen
+`.lng`-Schlüsseln, gefiltert danach, ob sie noch als Teilstring in der
+jeweiligen Quelldatei vorkommen (`content.indexOf >= 0`):
+
+```bash
+java -cp 'build/classes/java/main:lib/*' \
+ net.yacy.utils.translation.GenerateMasterXliff \
+ locales /tmp/master-from-lng.lng.xlf
+```
+
+Dieses Tool ist nützlich zur Diagnose von Altbestand, aber nicht als
+Vollständigkeitsreferenz: englische UI-Texte, die noch in keiner `.lng`-Datei als
+Schlüssel vorkommen, erscheinen dort nicht.
---
@@ -240,7 +306,14 @@ Leerzeichen, bis zum `#[path]#`), **nicht** die ganze Zeile inkl. `#[path]#`.
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).
+6. **Vollständigkeit beidseitig prüfen:**
+ - `master.lng.xlf -> .lng`: fehlende Source-Schlüssel ergänzen.
+ - `.lng -> master.lng.xlf`: Extras prüfen und in der Regel entfernen;
+ sie sind stale oder stammen aus einem nicht frisch generierten Master.
+ - Für jeden aktiven Sprach-Key prüfen: `key in htroot/<#File>`.
+ - Doppelte Schlüssel und auskommentierte `#...==...`-Einträge entfernen oder
+ bewusst reaktivieren.
+7. **Zeilenenden beachten** (Abschnitt 10).
---
diff --git a/locales/de.lng b/locales/de.lng
index 9c68bdfb5..bda8e7e22 100644
--- a/locales/de.lng
+++ b/locales/de.lng
@@ -13,7 +13,7 @@
# $Date:: $
# $Tag:: $
# $Author:: $
-#
+#
# This file is maintained by Oliver Wunder
# This file is written by (chronological order) Roland Ramthun , Oliver Wunder , Jan Sandbrink,
# Thomas Süß
@@ -25,45 +25,37 @@
# Only part 1.
# Contributors are in chronological order, not how much they did absolutely.
# Thank you for your help!
-default(english)==Deutsch
-==Roland Ramthun, Oliver Wunder, Jan Sandbrink, Thomas Süß
-==<webmaster@daburna.de>
+Author(s) (chronological)==Autor(en) (chronologisch)
+Available Languages==Verfügbare Sprachen
+Current language==Aktuelle Sprache
+Send additions to maintainer==Ergänzungen an Maintainer senden
+default(english)==Standard (Englisch)
#-----------------------------
#File: AccessGrid_p.html
#---------------------------
-YaCy Network Access==YaCy Netzwerk Zugriff
Server Access Grid==Server Zugriffsnetz
This images shows incoming connections to your YaCy peer and outgoing connections from your peer to other peers and web servers==Diese Bilder zeigen eingehende Verbindungen zu Ihrem YaCy Peer und ausgehende Verbindungen von Ihrem Peer zu anderen Peers und Webservern.
+"YaCy Access Grid"=="YaCy Access Grid"
#-----------------------------
#File: AccessTracker_p.html
#---------------------------
-Access Tracker==Zugriffe
Server Access Overview==Server Zugriff Überblick
-This is a list of #[num]# requests to the local http server within the last hour.==Dies ist eine Liste von #[num]# Anfragen, die an den lokalen HTTP Server innerhalb der letzten Stunde gestellt wurden.
This is a list of requests (max. 1000) to the local http server within the last hour.==Dies ist eine Liste von Anfragen (max. 1000), die innerhalb der letzten Stunde an den lokalen HTTP Server gestellt wurden.
-Showing #[num]# requests.==Gezeigt werden #[num]# Anfragen.
-#>Host<==>Host<
->Path<==>Pfad<
-Date<==Datum<
Access Count During==Erfasster Zugriff während der
last Second==letzte Sekunde
last Minute==letzte Minute
last 10 Minutes==letzten 10 Minuten
last Hour==letzte Stunde
The following hosts are registered as source for brute-force requests to protected pages==Die folgenden Hosts wurden als Quelle von Brute-Force Attacken auf geschützte Seiten erkannt
-#>Host==>Host
Access Times==Zugriffszeiten
Server Access Details==Server Zugriffs Details
Local Search Log==Lokale Suche Log
Local Search Host Tracker==Lokale Suche Host Tracker
Remote Search Log==Remote Suche Log
-#Total:==Total:
-Success:==Erfolgreich:
Remote Search Host Tracker==Remote Suche Host Tracker
This is a list of searches that had been requested from this' peer search interface==Dies ist eine Liste aller Suchanfragen, die von diesem Peer ausgeführt wurden.
-Showing #[num]# entries from a total of #[total]# requests.==Es werden #[num]# Einträge von insgesamt #[total]# Anfragen angezeigt.
Requesting Host==Anfragender Host
Offset==Versatz
Expected Results==Erwartete Ergebnisse
@@ -72,42 +64,63 @@ Used Time (ms)==Gebrauchte Zeit (in ms)
URL fetch (ms)==URL Abruf (in ms)
Snippet comp (ms)==Vorschau Erzeugung (in ms)
Query==Suchwort
-#>User Agent<==>User Agent<
Search Word Hashes==Suchwort Hash
-Count==Anzahl
Queries Per Last Hour==Suchanfragen pro letzter Stunde
Access Dates==Zugriffszeiten
-This is a list of searches that had been requested from remote peer search interface==Dies ist eine Liste aller Suchanfragen, die von einem anderen Peer gestellt wurden.
+This is a list of searches that had been requested from remote peer search interface==Dies ist eine Liste aller Suchanfragen, die von einem anderen Peer gestellt wurden.
+Count==Anzahl
+Date==Datum
+Path==Verzeichnis
+Host==Host
+User Agent==User-Agent
#-----------------------------
+Known Results==Bekannte Ergebnisse
+Peer Name==Peer-Name
+Top Search Words (last 7 Days)==Top-Suchwörter (letzte 7 Tage)
#File: Settings_UrlProxyAccess.inc
#---------------------------
-URL Proxy Settings<==URL Proxy Einstellungen<
With this settings you can activate or deactivate URL proxy.==Mit diesen Einstellungen können Sie den URL Proxy an- oder abschalten.
-Service call: ==Serviceaufruf:
-, where parameter is the url of an external web page.==, wobei der parameter für die URL der externen Webseite steht.
-#URL proxy:==URL Proxy:
->Enabled<==>Aktiviert<
-Globally enables or disables URL proxy via ==Schaltet den URL Proxy global an oder ab der verfügbar ist über
+URL proxy:==URL Proxy:
Show search results via URL proxy:==Zeige Suchergebnisse mit dem URL Proxy an:
Enables or disables URL proxy for all search results. If enabled, all search results will be tunneled through URL proxy.==Schaltet den URL Proxy für alle Suchergebnisse an oder ab. Wenn aktiviert werden alle Suchergebnisse durch den URL Proxy getunnelt.
Restrict URL proxy use:==Schränke die URL Proxy Verwendung ein:
-Define client filter. Default: ==Definiere den Client Filter. Standardeinstellung:
URL substitution:==Ersetzen von URLs:
Define URL substitution rules which allow navigating in proxy environment. Possible values: all, domainlist. Default: domainlist.==Definiere die Regeln zum Ersetzen von URLs die Navigation in der Proxy Umgebung erlauben. Mögliche Werte: all, domainlist. Standardeinstellung: domainlist.
"Submit"=="Absenden"
-#>Enabled<==>Aktiviert<
+Enabled==Aktiviert
+Define client filter. Default: 127.0.0.1,0:0:0:0:0:0:0:1.==Client-Filter definieren. Standard: 127.0.0.1,0:0:0:0:0:0:0:1.
+Globally enables or disables URL proxy via http://yourpeer:yourport/proxy.html?url=http://externalurl/==Aktiviert oder deaktiviert den URL-Proxy global über http://yourpeer:yourport/proxy.html?url=http://externalurl/
+Service call: http://localhost:8090/proxy.html?url=parameter, where parameter is the url of an external web page.==Service-Aufruf: http://localhost:8090/proxy.html?url=parameter, wobei parameter die URL einer externen Webseite ist.
+URL Proxy Settings==URL-Proxy-Einstellungen
#-----------------------------
+Alternatively you may add this javascript to your browser favorites/short-cuts, which will reload the current browser address==Alternativ können Sie dieses JavaScript zu den Favoriten/Shortcuts Ihres Browsers hinzufügen; es lädt die aktuelle Browseradresse neu
+or right-click this link and add to favorites:==oder klicken Sie mit der rechten Maustaste auf diesen Link und fügen Sie ihn den Favoriten hinzu:
+via the YaCy proxy servlet.==über das YaCy-Proxy-Servlet.
#File: Autocrawl_p.html
#---------------------------
+Autocralwer Configuration==Autocrawler-Konfiguration
+You need to restart for some settings to be applied==Für einige Einstellungen ist ein Neustart erforderlich
+Enable Autocrawler:==Autocrawler aktivieren:
+Deep crawl every Nth document:==Tiefen-Crawl für jedes n-te Dokument:
+Warning: if this is bigger than "Rows to fetch" only shallow crawls will run.==Warnung: Wenn dieser Wert größer als "Rows to fetch" ist, werden nur flache Crawls ausgeführt.
+Rows to fetch at once:==Auf einmal abzurufende Zeilen:
+Recrawl only older than # days:==Nur erneut crawlen, wenn älter als # Tage:
+Get hosts by query:==Hosts per Abfrage ermitteln:
+Can be any valid Solr query.==Kann jede gültige Solr-Abfrage sein.
+Shallow crawl depth (0 to 2):==Flache Crawl-Tiefe (0 bis 2):
+Deep crawl depth (1 to 5):==Tiefe Crawl-Tiefe (1 bis 5):
+Index text:==Text indexieren:
+Index media:==Medien indexieren:
"Save"=="Speichern"
+Autocrawler==Autocrawler
+Autocrawler automatically selects and adds tasks to the local crawl queue. This will work best when there are already quite a few domains in the index.==Der Autocrawler wählt automatisch Aufgaben aus und fügt sie der lokalen Crawl-Warteschlange hinzu. Das funktioniert am besten, wenn bereits einige Domains im Index vorhanden sind.
#-----------------------------
#File: Blacklist_p.html
#---------------------------
Blacklist Administration==Blacklist Verwaltung
-#Used Blacklist engine:==Benutzte Blacklist Verwaltung:
This function provides an URL filter to the proxy; any blacklisted URL is blocked==Diese Funktion stellt einen URL-Filter vor den Proxy. Das Laden einer URL aus der Blacklist wird geblockt.
from being loaded. You can define several blacklists and activate them separately.==Sie können mehrere Blacklists anlegen und getrennt aktivieren.
You may also provide your blacklist to other peers by sharing them; in return you may==Sie können ebenfalls Ihre Blacklist einem anderen Peer zum Download anbieten.
@@ -115,42 +128,35 @@ collect blacklist entries from other peers.==Im Gegenzug können Sie sich selber
Active list:==Aktive Liste(n):
No blacklist selected==Keine Blacklist gewählt
Select list to edit:==Liste auswählen:
-not shared::shared==nicht freigegeben::freigegeben
-"select"=="Wählen"
Create new list:==Neue Liste anlegen:
"create"=="Anlegen"
-Settings for this list==Einstellungen dieser Liste
"Save"=="Speichern"
-Share/don't share this list==Liste freigeben/nicht freigeben
-Delete this list==Liste löschen
-Edit list==Bearbeite Liste
-These are the domain name/path patterns in==Dies sind die Domainnamen/-pfade in
Blacklist Pattern==Blacklisteintrag
Edit selected pattern(s)==Bearbeite gewählten Eintrag
Delete selected pattern(s)==Lösche gewählten Eintrag
Move selected pattern(s) to==Verschiebe gewählten Eintrag zu
-#You can select them here for deletion==Sie können sie einzeln zum Löschen wählen
Add new pattern:==Neuen Eintrag hinzufügen:
-Add URL pattern==URL hinzufügen
-The right '*', after the '/', can be replaced by a==Der rechte Asterisk '*', nach dem '/', kann ersetzt werden durch einen
->regular expression<==>regulären Ausdruck<
-domain.net/fullpath<==domain.de/vollerpfad<
->domain.net/*<==>domain.de/*<
-*.domain.net/*<==*.domain.de/*<
-*.sub.domain.net/*<==*.sub.domain.de/*<
-#sub.domain.*/*<==sub.domain.*/*<
-#domain.*/*<==domain.*/*<
-(slow)==(langsam)
-#was removed from blacklist==wurde aus Blacklist entfernt
-#was added to the blacklist==wurde zur Blacklist hinzugefügt
-Activate this list for==Diese Liste ist gültig für
Show entries:==Zeige Einträge:
Entries per page:==Einträge pro Seite:
"set"=="Setzen"
Edit existing pattern(s):==Bearbeite existierende Einträge:
"Save URL pattern(s)"=="URL Einträge speichern"
-#-----------------------------
-
+"Delete this list"=="Diese Liste löschen"
+"Share/don't share this list"=="Diese Liste teilen/nicht teilen"
+A legal name is made up from a letter, digit, minus, plus or underscore as the first character==Ein gültiger Name besteht aus einem Buchstaben, einer Ziffer, einem Minus, Plus oder Unterstrich als erstem Zeichen
+Activate this list for ...==Diese Liste aktivieren für ...
+An error occurred while editing the following entries. Please check syntax.==Beim Bearbeiten der folgenden Einträge ist ein Fehler aufgetreten. Bitte prüfen Sie die Syntax.
+An error occurred while moving entries to the target list.==Beim Verschieben von Einträgen in die Zielliste ist ein Fehler aufgetreten.
+domain.*/*==domain.*/*
+domain.net/*==domain.net/*
+domain.net/fullpath==domain.net/fullpath
+followed by letters, digits, minus, plus, underscores or dots.==gefolgt von Buchstaben, Ziffern, Minus, Plus, Unterstrichen oder Punkten.
+not shared==nicht geteilt
+shared==geteilt
+sub.domain.*/*==sub.domain.*/*
+#-----------------------------
+
+"Add URL pattern"=="URL-Muster hinzufügen"
#File: BlacklistCleaner_p.html
#---------------------------
Blacklist Cleaner==Blacklist aufräumen
@@ -159,11 +165,7 @@ Check list==Liste testen
"Check"=="Testen"
Allow regular expressions in host part of blacklist entries.==Erlaube reguläre Ausdrücke im Hostnamen Teil der Blacklist Einträge.
The blacklist-cleaner only works for the following blacklist-engines up to now:==Der Blacklist-Cleaner arbeitet zur Zeit nur mit den folgenden Blacklist-Engines:
-Illegal Entries in #[blList]# for==Ungültige Einträge in #[blList]# für
-Deleted #[delCount]# entries==#[delCount]# Einträge gelöscht
-Altered #[alterCount]# entries!==#[alterCount]# Einträge geändert
Two wildcards in host-part==Zwei Wildcards im Host-Teil
-Either subdomain or wildcard==Entweder Subdomain oder Wildcard
Path is invalid Regex==Pfad ist ungültige Regex
Wildcard not on begin or end==Wildcard nicht am Beginn oder Ende
Host contains illegal chars==Host enthält ungültige Zeichen
@@ -171,114 +173,104 @@ Double==Doppelt
"Change Selected"=="Markierte bearbeiten"
"Delete Selected"=="Markierte löschen"
No Blacklist selected==Es wurde keine Blacklist ausgewählt
+or==oder
+Either subdomain==Entweder Subdomain
+Host is invalid Regex==Host ist ungültige Regex
+wildcard==Wildcard
#-----------------------------
#File: BlacklistImpExp_p.html
#---------------------------
-#Blacklist Import==Blacklist Import
Used Blacklist engine:==Benutzte Blacklist Verwaltung:
Import blacklist items from...==Importiere Blacklist von...
other YaCy peers:==anderen YaCy Peers:
"Load new blacklist items"=="Lade neue Blacklist"
-#URL:==URL:
-plain text file:<==Einfache Textdatei:<
XML file:==XML Datei:
-Upload a regular text file which contains one blacklist entry per line.==Upload einer reguläre Testdatei mit jeweils einem Blacklisten Eintrag pro Zeile.
+Upload a regular text file which contains one blacklist entry per line.==Upload einer regulären Textdatei mit jeweils einem Blacklist-Eintrag pro Zeile.
Upload an XML file which contains one or more blacklists.==Upload einer XML Datei die eine oder mehrere Blacklisten enthält.
Export blacklist items to...==Exportiere Blacklist nach...
Here you can export a blacklist as an XML file. This file will contain additional==Hier können Sie eine (oder alle) Blacklist(en) in eine XML Datei exportieren. Diese Datei enthält dann zusätzliche
information about which cases a blacklist is activated for.==Informationen in welchen Fällen die Blacklist angewendet wird.
"Export list as XML"=="Exportiere Liste(n) als XML Datei"
Here you can export a blacklist as a regular text file with one blacklist entry per line.==Hier können Sie eine (oder alle) Blacklist(en) in eine reguläre Textdatei exportieren die jeweils einen Eintrag pro Zeile enthält.
-This file will not contain any additional information==Diese Datei enthält sonst keine zusätzlichen Informationen
"Export list as text"=="Exportiere Liste(n) als Textdatei"
+This file will not contain any additional information.==Diese Datei enthält keine zusätzlichen Informationen.
+all==alle
+plain text file:==Klartextdatei:
#-----------------------------
+Blacklist Import==Blacklist-Import
+URL:==URL:
#File: BlacklistTest_p.html
#---------------------------
Blacklist Test==Blacklist testen
Used Blacklist engine:==Benutzte Blacklist Verwaltung:
Test list:==Teste Liste:
"Test"=="Testen"
-The tested URL was==Die getestete URL war
It is blocked for the following cases:==Sie wird in den folgenden Fällen geblockt:
-#Crawling==Crawling
-#DHT==DHT
-#News==News
-#Proxy==Proxy
Search==Suche
Surftips==Surftipps
+The tested URL was not valid.==Die getestete URL war nicht gültig.
+is not blocked==ist nicht blockiert
#-----------------------------
+Crawling==Crawling
+DHT==DHT
+News==News
+Proxy==Proxy
#File: Blog.html
#---------------------------
-by==von
-Comments==Kommentare
->edit==>bearbeiten
->delete==>löschen
-Edit<==Bearbeiten<
-previous entries==vorherige Einträge
-next entries==nächste Einträge
-new entry==Neuer Eintrag
-import XML-File==XML-Datei importieren
-export as XML==als XML exportieren
Blog-Home==Blog-Startseite
Author:==Autor:
Subject:==Titel:
-#Text:==Text:
-You can use==Sie können hier
-Yacy-Wiki Code==YaCy-Wiki Befehle
-here.==benutzen.
Comments:==Kommentare:
deactivated==deaktiviert
->activated==>aktiviert
moderated==moderiert
"Submit"=="Absenden"
"Preview"=="Vorschau"
"Discard"=="Verwerfen"
->Preview==>Vorschau
No changes have been submitted so far!==Es wurden noch keine Änderungen übertragen!
Access denied==Zugriff verweigert
To edit or create blog-entries you need to be logged in as Admin or User who has Blog rights.==Um Blogeinträge zu verändern oder zu erstellen müssen Sie als Admin oder User mit Blog-Rechten eingeloggt sein.
-Are you sure==Sind Sie sicher
-that you want to delete==dass Sie folgendes löschen wollen:
Confirm deletion==Bestätige Löschung
-Yes, delete it.==Ja, löschen.
-No, leave it.==Nein, belassen.
Import was successful!==Import war erfolgreich!
Import failed, maybe the supplied file was no valid blog-backup?==Import fehlgeschlagen, unter Umständen war die angegebene Datei keine gültige Blog-Sicherung?
Please select the XML-file you want to import:==Bitte wählen Sie die XML-Datei die Sie importieren wollen:
-#-----------------------------
-
+Edit==Bearbeiten
+Preview==Vorschau
+"RSS"=="RSS"
+"No, leave it."=="Nein, behalten."
+"Yes, delete it."=="Ja, löschen."
+<< previous entries==<< vorherige Einträge
+Are you sure...==Sind Sie sicher...
+XML-Import==XML-Import
+activated==aktiviert
+next entries >>==nächste Einträge >>
+#-----------------------------
+
+Text:==Text:
+"Import"=="Importieren"
#File: BlogComments.html
#---------------------------
-by==von
-Comments==Kommentare
-Login==Einloggen
Blog-Home==Blog-Startseite
-delete==löschen
-allow==erlauben
Author:==Autor:
Subject:==Titel:
-#Text:==Text:
-You can use==Sie können hier
-Yacy-Wiki Code==YaCy-Wiki Befehle
-here.==benutzen.
"Submit"=="Absenden"
"Preview"=="Vorschau"
"Discard"=="Verwerfen"
+Comments:==Kommentare:
+<< previous entries==<< vorherige Einträge
+next entries >>==nächste Einträge >>
+Comment on this Blog==Kommentar zu diesem Blog
+Comments are not allowed for this posting!==Kommentare sind für diesen Beitrag nicht erlaubt!
#-----------------------------
+Text:==Text:
#File: Bookmarks.html
#---------------------------
-YaCy '#[clientname]#': Bookmarks==YaCy '#[clientname]#': Lesezeichen
The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.==Die Liste der Lesezeichen kann auch als RSS Feed abgerufen werden. Dies ist auch beim Auswählen eines bestimmten Tags möglich.
Click the API icon to load the RSS from the current selection.==Klicken Sie auf die API Sprechblase, um einen RSS Feed der aktuellen Auswahl zu laden.
-To see a list of all APIs, please visit the API wiki page.==Um eine Liste aller APIs zu sehen, besuchen Sie die API Seite im Wiki.
-
Bookmarks==
Lesezeichen
-Bookmarks (==Lesezeichen (
-#Login==Login
List Bookmarks==Lesezeichen Liste
Add Bookmark==Lesezeichen hinzufügen
Import Bookmarks==Lesezeichen importieren
@@ -286,43 +278,55 @@ Import XML Bookmarks==Importiere XML-Lesezeichen
Import HTML Bookmarks==Importiere HTML-Lesezeichen
"import"=="Importieren"
Default Tags:==Standard Tag
-imported==importiert
-#Edit Bookmark==Lesezeichen bearbeiten
-#URL:==URL:
+Edit Bookmark==Lesezeichen bearbeiten
Title:==Titel:
Description:==Beschreibung:
Folder (/folder/subfolder):==Ordner (/Ordner/Unterordner):
Tags (comma separated):==Tags (durch Komma trennen):
->Public:==>Öffentlich:
yes==ja
no==nein
Bookmark is a newsfeed==Lesezeichen ist ein Newsfeed
"create"=="Erzeugen"
-"edit"=="Bearbeiten"
File:==Datei:
-import as Public==als öffentlich importieren
"private bookmark"=="Privates Lesezeichen"
"public bookmark"=="Öffentliches Lesezeichen"
-Tagged with==Stichworte:
-'Confirm deletion'=='Löschen bestätigen'
Edit==Bearbeiten
Delete==Löschen
Folders==Ordner
Bookmark Folder==Lesezeichen Ordner
-#Tags==Tags
Bookmark List==Liste der Lesezeichen
previous page==vorherige Seite
next page==nächste Seite
-All==Alle
Show==Zeige
Bookmarks per page.==Lesezeichen pro Seite.
-#unsorted==unsortiert
start autosearch of new bookmarks==Starte Autosearch für neue Lesezeichen
This starts a search of new or modified bookmarks since startup==Startet eine Suche mit neuen oder geänderten Lesezeichen seit Programmstart
in folder "search" with "query=<original_search_term>"==in Ordner "search" mit "query=<original_search_term>"
Every peer online will be ask for results.==Jeder Peer online wird nach Suchergebnissen gefragt.
-#-----------------------------
-
+"API"=="API"
+"Save"=="Speichern"
+Info==Info
+search==suchen
+"RSS"=="RSS"
+"start it"=="starten"
+"stop it"=="stoppen"
+Auto Search==Automatische Suche
+Bookmarks==Lesezeichen
+Bookmarks (RSS)==Lesezeichen (RSS)
+Bookmarks (XBEL)==Lesezeichen (XBEL)
+Bookmarks (XML)==Lesezeichen (XML)
+Query:==Abfrage:
+Tagged with |==Getaggt mit |
+autosearch queue:==Auto-Suche-Warteschlange:
+current query:==aktuelle Abfrage:
+import as Public:==als öffentlich importieren:
+received results:==empfangene Ergebnisse:
+#-----------------------------
+
+Login==Anmeldung
+Public:==Öffentlich:
+Tags==Tags
+URL:==URL:
#File: Collage.html
#---------------------------
Image Collage==Bilder Collage
@@ -338,19 +342,16 @@ Left Search Engine==linke Suchmaschine
Right Search Engine==rechte Suchmaschine
"Compare"=="Vergleiche"
Search Result==Suchergebnis
+loading....==lade....
#-----------------------------
#File: ConfigAccounts_p.html
#---------------------------
User Accounts==Benutzerkonten
User Administration==Benutzerverwaltung
-User created:==Benutzer erstellt:
-User changed:==Benutzer geändert:
Generic error.==Genereller Fehler.
Passwords do not match.==Passwörter stimmen nicht überein.
Username too short. Username must be >= 4 Characters.==Benutzername zu kurz. Benutzername muss länger als vier Zeichen sein.
-No password is set for the administration account.==Für den Administrator Zugang ist kein Passwort gesetzt.
-Please define a password for the admin account.==Bitte setzen Sie ein Passwort für das admin Konto.
Admin Account==Admin Konto
Access from localhost without account==Zugriff von localhost ohne Konto
Access to your peer from your own computer (localhost access) is granted with administrator rights. No need to configure an administration account.==Der Zugriff von Ihrem Computer (localhost Zugang) ist garantiert mit Administratorrechten gewährt. Sie brauchen kein Administratorkonto erstellen.
@@ -362,136 +363,125 @@ Repeat Peer Password:==Wiederhole Peer Passwort:
"Define Administrator"=="Administrator festlegen"
Select user==Benutzer wählen
New user==Neuer Benutzer
-Edit User==Benutzer bearbeiten
-Delete User==Benutzer löschen
-Edit current user:==Aktuellen Benutzer bearbeiten:
-Username==Benutzername
-Password==Passwort
Repeat password==Passwort wiederholen
First name==Vorname
Last name==Nachname
Address==Adresse
-Rights==Rechte
Timelimit==Zeitlimit
Time used==Verbrauchte Zeit
-Save User==Benutzer speichern
-#-----------------------------
-
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==WARNUNG Diese YaCy-Instanz kann mit dem Konto "admin" und dem Standardpasswort "yacy" administriert werden.
+Password==Passwort
+Rights:==Rechte:
+Username==Benutzername
+"Delete User"=="Benutzer löschen"
+"Edit User"=="Benutzer bearbeiten"
+"Save User"=="Benutzer speichern"
+"Set Access Rules"=="Zugriffsregeln setzen"
+Access Rules==Zugriffsregeln
+Change the password as soon as possible!==Ändern Sie das Passwort so bald wie möglich!
+#-----------------------------
+
+Please use with care, notably when you browse untrusted and potentially malicious websites while running your YaCy peer on the same computer.==Bitte mit Vorsicht verwenden, besonders wenn Sie nicht vertrauenswürdige und potenziell bösartige Webseiten besuchen, während Ihr YaCy-Peer auf demselben Computer läuft.
+Protection of all pages: if set to on, access to all pages need authorization; if off, only pages with "_p" extension are protected.==Schutz aller Seiten: Wenn eingeschaltet, erfordert der Zugriff auf alle Seiten eine Autorisierung; wenn ausgeschaltet, sind nur Seiten mit der Erweiterung "_p" geschützt.
+This setting is convenient but less secure than using a qualified admin account.==Diese Einstellung ist bequem, aber weniger sicher als die Verwendung eines qualifizierten Administratorkontos.
+Username already used (not allowed).==Benutzername bereits verwendet (nicht erlaubt).
#File: ConfigAppearance_p.html
#---------------------------
Appearance and Integration==Erscheinungsbild und Integration
You can change the appearance of the YaCy interface with skins.==Sie können hier das Aussehen der YaCy Oberfläche mit Skins verändern,
The selected skin and language also affects the appearance of the search page.==das ausgewählte Design und die gewählte Sprache wirken sich auch auf das Erscheinungsbild der Suchseite aus.
-If you create a search portal with YaCy then you can==Wenn Sie ein Such-Portal mit Yacy erstellen möchten können Sie
-change the appearance of the search page here.==das Erscheinungsbild der Suchseite hier weitgehend ändern und die standard Grafiken und Links auf der Suchseite durch Ihre eigenen ersetzen.
-#and the default icons and links on the search page can be replaced with you own.==und die standard Grafiken und Links auf der Suchseite durch Ihre eigenen ersetzen.
+change the appearance of the search page here.==das Erscheinungsbild der Suchseite hier ändern.
Skin Selection==Skinauswahl
-Select one of the default skins, download new skins, or create your own skin.==Wählen Sie einen der mitgelieferten Skins, laden Sie einen neuen herunter oder erstellen Sie selbst einen neuen Skin.
Current skin==Aktueller Skin
Available Skins==Verfügbare Skins
"Use"=="Benutzen"
"Delete"=="Löschen"
->Skin Color Definition<==>Definition der Skin Farben<
The generic skin 'generic_pd' can be configured here with custom colors:==Der allgemeine Skin 'generic_pd' kann hier mit eigenen Farben angepasst werden:
->Background<==>Hintergrund<
-#>Text<==>Text<
->Legend<==>Legende<
->Table Header<==>Tabellen Kopf<
->Table Item<==>Tabellen Zelle 1<
->Table Item 2<==>Tabellen Zelle 2<
->Table Bottom<==>Tabellen Unterseite<
->Border Line<==>Rand Linie<
->Sign 'bad'<==>Zeichen 'schlecht'<
->Sign 'good'<==>Zeichen 'gut'<
->Sign 'other'<==>Zeichen 'andere'<
->Search Headline<==>Suche Kopfzeile<
->Search URL==>Suche URL
"Set Colors"=="Farben Anwenden"
-#>Skin Download<==>Skin Download<
-Skins can be installed from download locations==Skins können direkt von einer Download Quelle installiert werden
Install new skin from URL==Installiere einen neuen Skin von folgender URL
Use this skin==Benutze diesen Skin
"Install"=="Installieren"
Make sure that you only download data from trustworthy sources. The new Skin file==Stellen Sie sicher, dass Sie nur Dateien aus vertrauenswürdigen Quellen herunterladen.
might overwrite existing data if a file of the same name exists already.==Achtung, existiert bereits eine Datei mit gleichem Namen, wird diese überschrieben !
->Unable to get URL:==>Die URL konnte nicht geladen werden:
Error saving the skin.==Fehler beim Speichern des Skins.
-#-----------------------------
-
+Text==Text
+Background==Hintergrund
+Border Line==Rahmen Linie
+Legend==Legende
+Search Headline==Such Überschrift
+Search URL==Such URL
+Search URL + hover==Such URL + Hover
+Sign 'bad'==Zeichen 'schlecht'
+Sign 'good'==Zeichen 'gut'
+Sign 'other'==Zeichen 'andere'
+Skin Color Definition==Skin-Farbdefinition
+Skin Download==Skin-Download
+Skins can be installed from download locations:==Skins können von Download-Orten installiert werden:
+Table Bottom==Tabellen Fuß
+Table Header==Tabellen Kopf
+Table Item==Tabellen Eintrag
+Table Item 2==Tabellen Eintrag 2
+#-----------------------------
+
+Select one of the default skins. After selection it might be required to reload the web page while holding the shift key to refresh cached style files.==Wählen Sie einen der Standard-Skins. Nach der Auswahl kann es erforderlich sein, die Webseite bei gedrückter Umschalttaste neu zu laden, um zwischengespeicherte Style-Dateien zu aktualisieren.
#File: ConfigBasic.html
#---------------------------
-Access Configuration==Zugangseinstellungen
+Your port has changed. Please wait 10 seconds.==Ihr Port wurde geändert. Bitte warten Sie 10 Sekunden.
+Deutsch==Deutsch
+Browser==Browser
Basic Configuration==Grundkonfiguration
Your YaCy Peer needs some basic information to operate properly==Ihr YaCy-Peer benötigt einige Grundinformationen, um korrekt zu funktionieren
-Select a language for the interface==Wählen Sie eine Sprache für das Interface
English==Englisch
Français==Französisch
-汉语/漢語==Chinesisch
-Русский==Russisch
-Українська==Ukrainisch
-हिन्दी==Hindi
-日本語==Japanisch
Use Case: what do you want to do with YaCy:==Anwendungsfall: Was Sie mit YaCy tun wollen:
Community-based web search==Gemeinschafts-basierte Web Suche
Join and support the global network 'freeworld', search the web with an uncensored user-owned search network==Treten Sie dem globalen Netzwerk 'freeworld' bei und unterstützen Sie es, durchsuchen Sie das Internet mit einem unzensierten, von den Benutzern gestalteten Suchnetzwerk
Search portal for your own web pages==Suchportal für Ihre eigene Internetseiten
Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.==Ihre YaCy Installation verhält sich unabhängig von den anderen Peers und Sie können Ihren eigenen Index bestimmen, indem Sie einen eigenen Web-Crawl starten. Dies kann benutzt werden, um Ihre eigenen Internetseiten zu durchsuchen oder ein Themen-basiertes Portal aufzubauen.
-Files may also be shared with the YaCy server, assign a path here:==Dateien können auch mit dem YaCy Server unter folgendem Pfad zugänglich gemacht werden:
-This path can be accessed at ==Der Pfad ist erreichbar unter
-Use that path as crawl start point.==Verwenden Sie diesen Pfad als den Startpunkt für den Crawl.
Intranet Indexing==Intranet Indexierung
-Create a search portal for your intranet or web pages or your (shared) file system.==Ein Suchportal für Ihre Intranet oder öffentlichen Webseiten oder ihr (verteiltes) Dateisystem.
-URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form==URLs mit folgenden Protokollen (HTTP/HTTPS/FTP) und einem lokalen Domainnamen oder einer IP oder folgende URLs können verwendet werden
-or smb:==oder smb:
Your peer name has not been customized; please set your own peer name==Ihr Peername wurde noch nicht angepasst; bitte setzen Sie einen eigenen Peernamen ein
You may change your peer name==Sie können Ihren Peernamen ändern
Peer Name:==Peername:
-Your peer cannot be reached from outside==Ihr Peer kann nicht von außen erreicht werden
-which is not fatal, but would be good for the YaCy network==was nicht schlimm ist, aber anders wäre für das YaCy-Netzwerk noch besser
-please open your firewall for this port and/or set a virtual server option in your router to allow connections on this port==Bitte öffnen Sie Ihre Firewall auf diesem Port und/oder stellen Sie einen virtuellen Server in Ihrem Router ein um Verbindungen auf diesem Port zu erlauben
Your peer can be reached by other peers==Ihr Peer kann von anderen Peers erreicht werden
Peer Port:==Peer-Port:
-with SSL== mit SSL
-https enabled==https aktiviert
-on port==auf Port
Configure your router for YaCy using UPnP:==Ihren Router für YaCy konfigurieren, via UPnP:
Configuration was not successful. This may take a moment.==Die Konfiguration war nicht erfolgreich. Dies kann einen Moment dauern.
-Set Configuration==Konfiguration speichern
What you should do next:==Was Sie als Nächstes tun können:
-Your basic configuration is complete! You can now (for example)==Ihre Grundeinstellungen sind vollständig! Sie können jetzt (beispielsweise)
-just <==Einfach <
-start an uncensored search==eine unzensierte Suche beginnen
-start your own crawl and contribute to the global index, or create your own private web index==einen eigenen Crawl starten und zum globalen Index beitragen, oder einen eigenen privaten Webindex aufbauen
-set a personal peer profile (optional settings)==ein eigenes Peer-Profil angeben (freiwillige Angabe)
-monitor at the network page what the other peers are doing==auf der Netzwerkseite beobachten, was andere Peers gerade machen
Your Peer name is a default name; please set an individual peer name.==Ihr Peer-Name ist ein Standardname; bitte stellen Sie einen individuellen Namen ein.
-You did not set a user name and/or a password.==Sie haben keinen Nutzernamen und/oder kein Passwort gesetzt.
-Some pages are protected by passwords.==Einige Seiten sind passwortgeschützt.
-You should set a password at the Accounts Menu to secure your YaCy peer.
::==Sie sollten ein Password in der Benutzerverwaltung setzen, um Ihren YaCy Peer abzusichern.::
-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 recommended.==Sie können Ihren Peer auch nutzen ohne ihn zu öffnen, dies wird jedoch nicht empfohlen.
+"Active : translated pages are available"=="Aktiv: übersetzte Seiten sind verfügbar"
+"Click to generate translated pages"=="Klicken, um übersetzte Seiten zu generieren"
+"Set Configuration"=="Konfiguration setzen"
+"Use the browser preferred language if available"=="Wenn verfügbar, die bevorzugte Sprache des Browsers verwenden"
+"Usecase Freeworld"=="Anwendungsfall Freeworld"
+"Usecase Intranet"=="Anwendungsfall Intranet"
+"Usecase Portal"=="Anwendungsfall Portal"
+"ok"=="ok"
+"warning"=="Warnung"
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==WARNUNG Diese YaCy-Instanz kann mit dem Konto "admin" und dem Standardpasswort "yacy" administriert werden.
+Can not leave from Intranet Indexing : one or more remote Solr instances are attached and may contain private documents indexed.==Intranet-Indexierung kann nicht verlassen werden: Eine oder mehrere Remote-Solr-Instanzen sind angebunden und können indexierte private Dokumente enthalten.
+Create a search portal for your intranet or web pages or your (shared) file system. URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form file:///<path> or smb://<server>/<path>==Erstellen Sie ein Suchportal für Ihr Intranet, Ihre Webseiten oder Ihr (freigegebenes) Dateisystem. URLs können mit http/https/ftp und einem lokalen Domainnamen oder einer IP verwendet werden, oder mit einer URL der Form file:///<Pfad> oder smb://<Server>/<Pfad>
+Español==Español
+Greek==Griechisch
+Italiano==Italiano
+One or more remote Solr instances are attached and may contain indexed public documents irrelevant to your local domain.==Eine oder mehrere Remote-Solr-Instanzen sind angebunden und können indexierte öffentliche Dokumente enthalten, die für Ihre lokale Domain irrelevant sind.
+One or more remote Solr instances are attached.==Eine oder mehrere Remote-Solr-Instanzen sind angebunden.
+Select a language for the interface:==Wählen Sie eine Sprache für die Oberfläche:
+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 recommended.==Sie haben keinen Port in Ihrer Firewall geöffnet oder Ihr Router leitet den Server-Port nicht an Ihren Peer weiter. Das ist erforderlich, wenn Sie vollständig am YaCy-Netzwerk teilnehmen möchten. Sie können Ihren Peer auch ohne geöffneten Port verwenden, dies wird aber nicht empfohlen.
+Your Browser will reload the YaCy UI with the new port in 5 seconds...==Ihr Browser lädt die YaCy-Oberfläche mit dem neuen Port in 5 Sekunden neu...
+Your basic configuration is complete! You can now (for example):==Ihre Basiskonfiguration ist abgeschlossen! Sie können jetzt zum Beispiel:
+with SSL (https enabled==mit SSL (HTTPS aktiviert
#-----------------------------
#File: ConfigHeuristics_p.html
#---------------------------
Heuristics Configuration==Heuristik Konfiguration
-A heuristic is an 'experience-based technique that help in problem solving, learning and discovery' (wikipedia).==Heuristik 'bezeichnet die Kunst, mit begrenztem Wissen und wenig Zeit zu guten Lösungen zu kommen.' (Wikipedia).
-The search heuristics that can be switched on here are techniques that help the discovery of possible search results based on link guessing, in-search crawling and requests to other search engines.==Die Heuristik zur Suche die hier angeschalten werden können sind Techniken die helfen mögliche Suchergebnisse zu entdecken mit Hilfe von erratenen Links, Crawls während der Suche und Anfragen an andere Suchmaschinen.
-When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content.==Wenn eine Such Heuristik verwendet wird, werden die gefunden Links nicht direkt als Suchergebnisse angezeigt aber dafür die geladenen Seiten indexiert und mit dem anderen Inhalt abgespeichert.
-This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==Damit wird sichergestellt dass die Sperrlisten verwendet werden können und dass die Suchbegriffe auch wirklich auf den Seiten auftauchen, die mithilfe der Heuristik gefunden wurden.
-The success of heuristics are marked with an image==Der Erfolg der Heuristik wird mit einem Bild markiert
-heuristic:<name>==Heuristik:<Name>
-#(redundant)==(redundant)
-(new link)==(neuer Link)
-below the favicon left from the search result entry:==unter dem Favicon links vom Eintrag des Suchergebnisses:
The search result was discovered by a heuristic, but the link was already known by YaCy==Das Suchergebnis wurde durch eine Heuristik gefunden, aber der Link war YaCy schon bekannt
The search result was discovered by a heuristic, not previously known by YaCy==Das Suchergebnis wurde durch eine Heuristik gefunden, aber YaCy vorher noch nicht bekannt.
'site'-operator: instant shallow crawl=='site'-Operator: Sofortiger oberflächlicher Crawl
When a search is made using a 'site'-operator (like: 'download site:yacy.net') then the host of the site-operator is instantly crawled with a host-restricted depth-1 crawl.==Wenn eine Suche mit dem 'site'-Operator gestartet wird (z.B.: 'download site:yacy.net') dann wird der Host des 'site'-Operator sofort gecrawlt mit einer auf den Host beschränkten Suchtiefe von 1.
That means: right after the search request the portal page of the host is loaded and every page that is linked on this page that points to a page on the same host.==Das bedeutet: Gleich nach der Suchanfrage wird die Portalseite des Hosts geladen und jede verlinkte Seite die auf eine Seite auf demselben Host verweist.
-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).==Weil dieser 'Sofort Crawl' auch die robots.txt und eine minimale Zugriffszeit für folgende Seiten berücksichtigen muss, ist diese Heuristik sehr langsam - aber kann alle gewünschten Suchergebniss finden indem eine zweite Suche (nach einigen Sekunden Pause) gestartet wird.
-search-result: shallow crawl on all displayed search results==Suchergebnis: crawl Links aller angezeigten Suchergebnisse
+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).==Weil dieser 'Sofort-Crawl' auch die robots.txt und eine minimale Zugriffszeit für aufeinanderfolgende Seiten berücksichtigen muss, ist diese Heuristik recht langsam, kann aber alle gewünschten Suchergebnisse finden, wenn nach einer kurzen Pause von einigen Sekunden eine zweite Suche gestartet wird.
+search-result: shallow crawl on all displayed search results==Suchergebnis: flacher Crawl aller angezeigten Suchergebnisse
When a search is made then all displayed result links are crawled with a depth-1 crawl.==Nach einer Suche werden alle angezeigten Ergebnislinks der Crawler Liste (mit einer Suchtiefe von 1) hinzugefügt.
This means: right after the search request every page is loaded and every page that is linked on this page.==Das bedeutet: direkt nach der Suche wird jeder Link auf den Ergebnisseiten der Suche indexiert.
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).==Wenn 'als globaler Crawl hinzufügen' gewählt ist werden die zu indexierenden Seiten dem globalen Crawler hinzugefügt (entfernte Peers können beim Crawlen unterstützen).
@@ -501,30 +491,27 @@ 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 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<
->Title<==>Titel<
->Comment<==>Kommentar<
-Url (format opensearch==URL (format OpenSearch
-Url template syntax==URL Template Syntax
->delete<==>Lösche<
->new<==>neu<
"add"=="Hinzufügen"
"Save"=="Speichern"
"reset to default list"=="Reset zur Standardliste"
-"discover from index" class=="Discover vom Index" class
-start background task, depending on index size this may run a long time==Starte Hintergrund-Task. Abhängig von der Indexgröße kann der Vorgang sehr lange dauern
With the button "discover from index" you can search within the metadata of your local index (Web Structure Index) to find systems which support the Opensearch specification.==Mit dem Knopf "Discover vom Index" können Sie in den Metadaten Ihres lokalen Suchindexes (Web Struktur Index) suchen, um Systeme zu finden, die die OpenSearch Spezifikation unterstützen.
The task is started in the background. It may take some minutes before new entries appear (after refreshing the page).==Der Task wird im Hintergrund gestartet. Es kann einige Minuten dauern bevor neue Einträge erscheinen (nachdem die Seite erneut geladen wurde).
-Alternatively you may==Alternativ können Sie
->copy & paste a example config file<==>eine existierende Beispiel Konfiguration mit Copy & Paste kopieren<
-located in defaults/heuristicopensearch.conf to the DATA/SETTINGS directory.==von defaults/heuristicopensearch.conf ins Verzeichnis DATA/SETTINGS.
-For the discover function the web graph option of the web structure index and the fields target_rel_s, target_protocol_s, target_urlstub_s have to be switched on in the webgraph Solr schema.==Für die Discover Funktion der Web Graph Option aus dem Web Struktur Index und den Feldern target_rel_s, target_protocol_s, target_urlstub_s müssen im Web Graph Solr Schema angeschalten werden.
"switch Solr fields on"=="Schalte Solr Felder an"
-('modify Solr Schema')==('Modifiziere Solr Schema')
-#-----------------------------
-
+Active==Aktiv
+Comment==Kommentar
+Title==Titel
+new==neu
+"heuristic:<name> (new link)"=="heuristic:<name> (neuer Link)"
+"heuristic:<name> (redundant)"=="heuristic:<name> (redundant)"
+) below the favicon left from the search result entry:==) unter dem Favicon links vom Suchergebniseintrag markiert:
+The success of heuristics are marked with an image (==Der Erfolg von Heuristiken wird mit einem Bild (
+Url==URL
+When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content. This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==Wenn eine Suchheuristik verwendet wird, werden die resultierenden Links nicht direkt als Suchergebnis verwendet; stattdessen werden die geladenen Seiten wie andere Inhalte indexiert und gespeichert. Dadurch können Blacklists verwendet werden und es ist sichergestellt, dass das gesuchte Wort tatsächlich auf der durch die Heuristik gefundenen Seite vorkommt.
+delete==löschen
+#-----------------------------
+
+"discover from index"=="aus Index entdecken"
#File: ConfigHTCache_p.html
#---------------------------
Hypertext Cache Configuration==Hypertext Cache Konfiguration
@@ -533,25 +520,28 @@ The cache is a rotating cache: if it is full, then the oldest entries are delete
HTCache Configuration==HTCache Konfiguration
The path where the cache is stored==Der Pfad an dem der Cache gespeichert wird
The current size of the cache==Die aktuelle Größe des Caches
->#[actualCacheSize]# MB for #[actualCacheDocCount]# files, #[docSizeAverage]# KB / file in average==>#[actualCacheSize]# MB für #[actualCacheDocCount]# Dateien, #[docSizeAverage]# KB / Datei im Durchschnitt
The maximum size of the cache==Die maximale Größe des Caches
"Set"=="Setzen"
Cleanup==Aufräumen
Cache Deletion==Cache Löschen
Delete HTTP & FTP Cache==Lösche HTTP & FTP Cache
Delete robots.txt Cache==Lösche robots.txt Cache
-Delete cached snippet-fetching failures during search==Lösche gecachte Snippet-Hol-Fehler während der Suche
"Delete"=="Löschen"
+MB==MB
+"A cache hit occurs when the requested data can be found in a cache."=="Ein Cache-Treffer tritt auf, wenn die angeforderten Daten in einem Cache gefunden werden."
+"Concurrent access timeout info"=="Information zum Timeout bei gleichzeitigem Zugriff"
+Beyond this limit, the crawler or proxy falls back to regular remote resource loading.==Oberhalb dieses Limits fällt der Crawler oder Proxy auf reguläres Laden der Remote-Ressource zurück.
+The maximum time to wait for acquiring a synchronization lock on concurrent get/store cache operations.==Die maximale Wartezeit zum Erwerb einer Synchronisationssperre bei gleichzeitigen get/store-Cache-Operationen.
#-----------------------------
+Cache hits==Cache-Treffer
+Compression level==Kompressionsstufe
+Concurrent access timeout==Timeout für gleichzeitigen Zugriff
+milliseconds==Millisekunden
#File: ConfigLanguage_p.html
#---------------------------
Language selection==Sprachauswahl
You can change the language of the YaCy-webinterface with translation files.==Hier können Sie die Sprache ändern. Wählen Sie die gewünschte Sprache aus der Liste aus.
-Current language==Aktuelle Sprache
-Author(s) (chronological)==Autoren (chronologisch)
-Send additions to maintainer==Schicken Sie Ergänzungen bitte an
-Available Languages==Verfügbare Sprachen
Download Language File==Sprachdatei herunterladen
Supported formats are the internal language file (extension .lng) or XLIFF (extension .xlf) format.==Unterstütztes Format ist das interne Sprachdatei (Dateiendung .lng) oder XLIFF (Dateiendung .xlf) Format.
Install new language from URL==Neue Sprachdatei herunterladen
@@ -559,38 +549,24 @@ Use this language==Diese Sprachdatei sofort benutzen
"Use"=="Benutzen"
"Delete"=="Löschen"
"Install"=="Installieren"
-Unable to get URL:==Nicht möglich die angegebene Datei von folgender URL zu installieren:
Error saving the language file.==Es trat ein Fehler beim Speichern der Sprachdatei auf.
Make sure that you only download data from trustworthy sources. The new language file==Stellen Sie sicher, dass Sie nur Dateien aus vertrauenswürdigen Quellen herunterladen.
might overwrite existing data if a file of the same name exists already.==Achtung, existiert bereits eine Datei mit gleichem Namen, wird diese überschrieben !
-Simple Editor==Einfacher Editor
-to add untranslated text==zum bearbeiten unübersetzter Texte
#-----------------------------
#File: ConfigNetwork_p.html
#---------------------------
-==
Network Configuration==Netzwerk Einstellungen
No changes were made!==Es wurden keine Änderungen vorgenommen!
-Accepted Changes==Änderungen wurden gespeichert
-Inapplicable Setting Combination==unpassende Einstellungskombination
-#P2P operation can run without remote indexing, but runs better with remote indexing switched on. Please switch 'Accept Remote Crawl Requests' on==P2P-Tätigkeit läuft ohne Remote-Indexierung, aber funktioniert besser, wenn diese eingeschaltet ist. Bitte aktivieren Sie 'Remote Crawling akzeptieren'
-For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration==Für P2P-Tätigkeit muss mindestens DHT-Verteilung oder DHT-Empfang (oder beides) aktiviert sein. Ansonsten haben Sie einen Robinson-Peer definiert
Global Search in P2P configuration is only allowed, if index receive is switched on. You have a P2P configuration, but are not allowed to search other peers.==Die globale Suche im P2P-Modus ist nur erlaubt, wenn der Index-Empfang aktiviert ist. Sie sind im P2P-Modus, aber Sie dürfen keine anderen Peers durchsuchen.
-For Robinson Mode, index distribution and receive is switched off==Im Robinson-Modus werden Indexverteilung und -empfang deaktiviert
-#This Robinson Mode switches remote indexing on, but limits targets to peers within the same cluster. Remote indexing requests from peers within the same cluster are accepted==Dieser Robinson-Modus aktiviert Remote-Indexierung, aber beschränkt die Anfragen auf Peers des selben Clusters. Nur Remote-Indexierungsanfragen von Peers des selben Clusters werden akzeptiert
-#This Robinson Mode does not allow any remote indexing (neither requests remote indexing, nor accepts it)==Dieser Robinson-Modus erlaubt keinerlei Remote-Indexierung (es wird weder Remote-Indexierung angefragt, noch akzeptiert)
Network and Domain Specification==Netzwerk und Domain Spezifikation
-# With this configuration it is not allowed to authentify automatically from localhost!==Diese Konfiguration erlaubt keine automatische Authentifikation von localhost!
-# Please open the Account Configuration and set a new password.==Bitte in der Benutzerverwaltung ein neues Passwort festlegen.
YaCy can operate a computing grid of YaCy peers or as a stand-alone node.==Sie können an einem verteiltem Netz aus YaCy Peers mitwirken oder einen eigenständigen Peer betreiben.
-To control that all participants within a web indexing domain have access to the same domain,==Um zu kontrollieren, dass alle Teilnehmer innerhalb einer Indexierungs Domain Zugriff zu der selben Domain haben,
+To control that all participants within a web indexing domain have access to the same domain,==Um zu kontrollieren, dass alle Teilnehmer innerhalb einer Indexierungs Domain Zugriff zu der selben Domain haben,
this network definition must be equal to all members of the same YaCy network.==müssen diese Netzwerkdefinitionen bei allen Mitgliedern des YaCy Netzwerkes gleich sein.
Network Definition==Netzwerk Definition
Network Nick==Netzwerk Name
Long Description==Lange Beschreibung
Indexing Domain==Indexierungs Domain
-#DHT==DHT
"Change Network"=="Netzwerk wechseln"
Distributed Computing Network for Domain==Verteiltes Rechnen Netzwerk für die Domain
@@ -600,100 +576,91 @@ Enable 'Robinson Mode' for a completely independent search engine instance,==Akt
without any data exchange between your peer and other peers.==ohne jeglichen Datenaustausch zwischen Ihrem und anderen Peers einzurichten.
Peer-to-Peer Mode==Peer-to-Peer Modus
->Index Distribution==>Index-Verteilung
-This enables automated, DHT-ruled Index Transmission to other peers==Dies aktiviert den automatischen, DHT-basierten Versand an andere Peers
->enabled==>aktiviert
disabled during crawling==während des Crawlings deaktiviert
disabled during indexing==während des Indexierens deaktiviert
->Index Receive==>Index-Empfang
-Accept remote Index Transmissions==Remote Index-Übertragungen akzeptieren
-This works only if you have a senior peer. The DHT-rules do not work without this function==Dies funktioniert nur, wenn Sie einen Senior-Peer haben. Die DHT-Regeln arbeiten nicht ohne diese Funktion
->reject==>verwerfe
accept transmitted URLs that match your blacklist==akzeptiere übertragene URLs, die zu Ihrer Blacklist passen
-#>Accept Remote Crawl Requests==>Remotecrawl-Anfragen akzeptieren
-#Perform web indexing upon request of another peer==Führe Indexierung bei Anfrage eines anderen Peers aus
-#This works only if you are a senior peer==Dies funktioniert nur, wenn Sie ein Senior-Peer sind
-#Load with a maximum of==Lade mit maximal
-#pages per minute==Seiten pro Minute (PPM)
->Robinson Mode==>Robinson Modus
-If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers==Falls Ihr Peer im 'Robinson Modus' läuft, so verwenden Sie YaCy als Suchmaschine für Ihr eigenes Suchportal, ohne Datenaustausch mit anderen Peers
-There is no index receive and no index distribution between your peer and any other peer==Es gibt keinen Index-Empfang von und keine Index-Verteilung zu anderen Peers
-In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster==Im Fall eines Robinson-Clusters können Remotecrawl-Anfragen von Peers des selben Clusters akzeptiert werden
->Private Peer==>Privater Peer
-Your search engine will not contact any other peer, and will reject every request==Ihre Suchmaschine wird keine fremden Peers kontaktieren und alle Anfragen anderer Peers ablehnen
-#>Private Cluster==>Privater Cluster
#Your peer is part of a private cluster without public visibility
#Index data is not distributed, but remote crawl requests are distributed and accepted from your cluster
#Search requests are spread over all peers of the cluster, and answered from all peers of the cluster
#List of ip:port - addresses of the cluster: (comma-separated)
->Public Cluster==>Öffentlicher Cluster
-Your peer is part of a public cluster within the YaCy network==Ihr Peer ist Teil eines öffentlichen Clusters innerhalb des YaCy-Netzwerkes
Index data is not distributed, but remote crawl requests are distributed and accepted==Indexdaten werden nicht verteilt, aber Remotecrawl-Anfragen werden verteilt und akzeptiert
-Search requests are spread over all peers of the cluster, and answered from all peers of the cluster==Suchanfragen werden über alle Peers des Clusters verteilt und von allen Peers des Clusters beantwortet
List of .yacy or .yacyh - domains of the cluster: (comma-separated)==Liste von .yacy oder .yacyh Domains der Peers des Clusters: (kommagetrennt)
->Public Peer==>Öffentlicher Peer
-You are visible to other peers and contact them to distribute your presence==Sie sind für andere Peers sichtbar und kontaktieren sie um ihnen Ihre Anwesenheit mitzuteilen
-Your peer does not accept any outside index data, but responds on all remote search requests==Ihr Peer akzeptiert keinerlei Indexdaten von außen, aber antwortet auf alle Remote-Suchanfragen
-#>Peer Tags==>Peer Tags
-When you allow access from the YaCy network, your data is recognized using keywords==Falls Sie Zugriff vom YaCy-Netzwerk aus erlauben, so werden Ihre Daten anhand von Schlüsselwörtern erkannt
-Please describe your search portal with some keywords (comma-separated)==Bitte beschreiben Sie Ihr Suchportal mit einigen Schlüsselwörtern (kommagetrennt)
If you leave the field empty, no peer asks your peer. If you fill in a '*', your peer is always asked.==Wenn Sie das Feld leer lassen werden Sie keine Anfragen von anderen Peers bekommen. Wenn Sie ein '*' eintragen, wird Ihr Peer immer abgefragt.
"Save"=="Speichern"
#-----------------------------
+Accepted Changes.==Änderungen übernommen.
+DHT==DHT
+Enter custom URL...==Benutzerdefinierte URL eingeben...
+Outgoing communications encryption==Verschlüsselung ausgehender Kommunikation
+Protocol operations encryption==Verschlüsselung von Protokolloperationen
+Remote Network Definition URL==URL der Remote-Netzwerkdefinition
+deny remote search==Remote-Suche verweigern
+"Secure Sockets Layer"=="Secure Sockets Layer"
+"Transport Layer Security"=="Transport Layer Security"
+Accept remote Index Transmissions.==Remote-Indexübertragungen akzeptieren.
+For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration.==Für P2P-Betrieb muss mindestens DHT-Verteilung oder DHT-Empfang (oder beides) aktiviert sein. Sie haben daher eine Robinson-Konfiguration definiert.
+For Robinson Mode, index distribution and receive is switched off.==Im Robinson-Modus sind Indexverteilung und -empfang ausgeschaltet.
+If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers.==Wenn Ihr Peer im 'Robinson-Modus' läuft, betreiben Sie YaCy als Suchmaschine für Ihr eigenes Suchportal ohne Datenaustausch mit anderen Peers.
+In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster.==Bei Robinson-Clustering können Remote-Crawl-Anfragen von Peers dieses Clusters akzeptiert werden.
+Inapplicable Setting Combination:==Nicht anwendbare Einstellungskombination:
+Index Distribution==Indexverteilung
+Index Receive==Indexempfang
+Peer Tags==Peer-Tags
+Please describe your search portal with some keywords (comma-separated).==Bitte beschreiben Sie Ihr Suchportal mit einigen Schlüsselwörtern (kommagetrennt).
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Bitte beachten Sie, dass Zertifikate im Gegensatz zu striktem TLS nicht gegen vertrauenswürdige Zertifizierungsstellen (CA) validiert werden; dadurch können YaCy-Peers selbstsignierte Zertifikate verwenden.
+Prefer HTTPS for outgoing connexions to remote peers.==HTTPS für ausgehende Verbindungen zu Remote-Peers bevorzugen.
+Private Peer==Privater Peer
+Public Cluster==Öffentlicher Cluster
+Public Peer==Öffentlicher Peer
+Robinson Mode==Robinson-Modus
+Search requests are spread over all peers of the cluster, and answered from all peers of the cluster.==Suchanfragen werden über alle Peers des Clusters verteilt und von allen Peers des Clusters beantwortet.
+There is no index receive and no index distribution between your peer and any other peer.==Es gibt keinen Indexempfang und keine Indexverteilung zwischen Ihrem Peer und anderen Peers.
+This enables automated, DHT-ruled Index Transmission to other peers.==Dies aktiviert die automatische, DHT-gesteuerte Indexübertragung an andere Peers.
+This works only if you have a senior peer. The DHT-rules do not work without this function.==Dies funktioniert nur, wenn Sie einen Senior-Peer haben. Die DHT-Regeln funktionieren ohne diese Funktion nicht.
+When TLS/SSL is enabled on remote peers, it should be used to encrypt outgoing communications with them (for operations such as network presence, index transfer, remote crawl...).==Wenn TLS/SSL auf Remote-Peers aktiviert ist, sollte es zur Verschlüsselung ausgehender Kommunikation mit ihnen verwendet werden (für Vorgänge wie Netzwerkpräsenz, Indextransfer, Remote-Crawl ...).
+When you allow access from the YaCy network, your data is recognized using keywords.==Wenn Sie Zugriff aus dem YaCy-Netzwerk erlauben, werden Ihre Daten anhand von Schlüsselwörtern erkannt.
+You are visible to other peers and contact them to distribute your presence.==Sie sind für andere Peers sichtbar und kontaktieren sie, um Ihre Präsenz zu verteilen.
+Your peer does not accept any outside index data, but responds on all remote search requests.==Ihr Peer akzeptiert keine externen Indexdaten, beantwortet aber alle Remote-Suchanfragen.
+Your peer is part of a public cluster within the YaCy network.==Ihr Peer ist Teil eines öffentlichen Clusters im YaCy-Netzwerk.
+Your search engine will not contact any other peer, and will reject every request.==Ihre Suchmaschine kontaktiert keinen anderen Peer und lehnt jede Anfrage ab.
+allow==erlauben
+enabled==aktiviert
+reject==ablehnen
#File: ConfigParser_p.html
#---------------------------
Parser Configuration==Parser Einstellungen
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 Dateitypen 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/==http://www.iana.org/assignments/media-types/ werfen.
-If you want to test a specific parser you can do so using the==Wenn Sie einen bestimmten Parser testen wollen, verwenden Sie dafür den
->File Viewer<==>Datei Betrachter<
-> enable/disable<==> aktiv / inaktiv<
->Extension<==>Erweiterung<
->Mime-Type<==>MIME-Typ<
"Submit"=="Speichern"
+Extension==Erweiterung
#-----------------------------
+Mime-Type==MIME-Type
#File: ConfigPortal_p.html
#---------------------------
Integration of a Search Portal==Integration eines Suchportals
If you like to integrate YaCy as portal for your web pages, you may want to change icons and messages on the search page.==Wenn Sie YaCy als Suchportal für Ihre Webseiten integrieren wollen, können Sie auch die Icons und Nachrichten auf den Suchseiten verändern.
-The search page may be customized.==Die Suchseite kann auf die eigenen Bedürfnisse zugeschnitten werden.
-You can change the 'corporate identity'-images, the greeting line==Sie können die 'Corporate Identity' Bilder, die Grußzeile
and a link to a home page that is reached when the 'corporate identity'-images are clicked.==und einen Link auf die Homepage ändern, der aufgerufen wird wenn die 'Corporate Identity' Bilder angeklickt werden.
-To change also colours and styles use the Appearance Servlet for different skins and languages.==Um auch die Farben und Stile zu verändern verwenden Sie das Servlet Aussehen für andere Skins und Sprachen.
-Greeting Line<==Grußzeile<
-URL of Home Page<==URL der Homepage<
-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 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)
NOCACHE: no use of web cache, load all snippets online==NOCACHE: Keine Verwendung des Webcache, alle Snippets online laden
IFFRESH: use the cache if the cache exists and is fresh otherwise load online==IFRESH: Verwende den Cache wenn er existiert und frisch ist und lade ansonsten online nach
IFEXIST: use the cache if the cache exist or load online==IFEXIST: Verwende den Cache wenn er existiert ansonsten lade online
If verification fails, delete index reference==Wenn die Überprüfung fehlschlägt lösche die Index Referenz
-CACHEONLY: never go online, use all content from cache. If no cache entry exist, consider content nevertheless as available and show result without snippet==CACHEONLY: Gehe niemals online und verwende den ganzen Content aus dem Cache. Wenn kein Eintrag im Cache existiert betrachte den Kontent trotzdem als existent und zeige Resultate ohne Snippets.
+CACHEONLY: never go online, use all content from cache. If no cache entry exist, consider content nevertheless as available and show result without snippet==CACHEONLY: Niemals online gehen und den gesamten Inhalt aus dem Cache verwenden. Wenn kein Cache-Eintrag existiert, den Inhalt trotzdem als verfügbar betrachten und das Ergebnis ohne Snippet anzeigen.
FALSE: no link verification and not snippet generation: all search results are valid without verification==FALSE: Keine Linkprüfung und keine Snippet Generierung: Alle Suchergebnisse sind ohne Prüfung valide
Greedy Learning Mode==Schnellstmöglicher Lernmodus
-load documents linked in search results, will be deactivated automatically when index size==Lade Dokumente die in Suchergebnissen verlinkt sind. Wird automatisch deaktiviert wenn die Indexgröße
Show Navigation Bar on Search Page?==Navigationsleiste auf Suchseite anzeigen?
-Show Navigation Top-Menu ==Zeige Top-Menu Navigation
+Show Navigation Top-Menu==Top-Menü-Navigation anzeigen
no link to YaCy Menu (admin must navigate to /Status.html manually)==kein Verweis auf YaCy Menu (Der Admin muss manuell auf /Status.html wechseln)
Show Advanced Search Options on Search Page?==Erweiterte Suchoptionen auf Suchseite anzeigen?
-Show Advanced Search Options on index.html ==Erweiterte Suchoptionen auf index.html anzeigen?
do not show Advanced Search==Erweiterte Suche nicht anzeigen
-Default Pop-Up Page<==Standard Pop-up<
->Status Page==>Status Seite
->Search Front Page==>Frontseite Suche
->Search Page (small header)==>Suchseite (kleine Kopfzeile)
->Interactive Search Page==>Interaktive Suchseite
-Default maximum number of results per page==Standard Maximum der Suchergebnisse pro Seite
+Default maximum number of results per page==Standard-Maximum der Suchergebnisse pro Seite
Default index.html Page (by forwarder)==Standard index.html Seite (durch Weiterleitung)
Target for Click on Search Results==Zielfenster beim Klicken auf ein Suchergebnis
@@ -704,43 +671,71 @@ Target for Click on Search Results==Zielfenster beim Klicken auf ein Suchergebni
"searchresult" (a default custom page name for search results)=="Suchergebnis" (Eine standardmäßig konfigurierbare Seite für Suchergebnisse)
Special Target as Exception for an URL-Pattern==Spezial Ziel als Ausnahme für ein URL-Muster
-Pattern:<==Muster:<
->Exclude Hosts<==>Hosts ausnehmen<
-List of hosts that shall be excluded from search results by default but can be included using the site:<host> operator:==Liste aller Hosts die von standardmäßig von den Suchergebnissen ausgeschlossen werden sollen aber mit dem Seitenoperator: <host> wieder aufgenommen werden können.
+Exclude Hosts==Hosts ausnehmen
+List of hosts that shall be excluded from search results by default but can be included using the site:<host> operator:==Liste aller Hosts, die standardmäßig von den Suchergebnissen ausgeschlossen werden sollen, aber mit dem Operator site:<host> wieder aufgenommen werden können.
'About' Column (shown in a column alongside with the search result page)=='Über' Spalte (wird in einer Spalte mit der Suchergebnisseite angezeigt)
-(Headline)==(Kopfzeile)
(Content)==(Inhalt)
"Change Search Page"=="Ändere die Suchseite"
"Set to Default Values"=="Standardwerte setzen"
-You have ==Sie müssen
-set a remote user/password==einen Remote Benutzer mit Passwort anlegen
-to change this options.==, um diese Option zu ändern.
+Remote results resorting==Neusortierung von Remote-Ergebnissen
+Automated results resorting with JavaScript makes the browser load the full result set of each search request.==Automatische Neusortierung der Ergebnisse mit JavaScript lässt den Browser die vollständige Ergebnismenge jeder Suchanfrage laden.
+This may lead to high system loads on the server.==Dies kann zu hoher Systemlast auf dem Server führen.
+Remote search encryption==Verschlüsselung der Remote-Suche
+When SSL/TLS is enabled on remote peers, https should be used to encrypt data exchanged with them when performing peer-to-peer searches.==Wenn SSL/TLS auf Remote-Peers aktiviert ist, sollte HTTPS verwendet werden, um bei Peer-to-Peer-Suchen ausgetauschte Daten zu verschlüsseln.
+Prefer https for search queries on remote peers.==HTTPS für Suchanfragen auf Remote-Peers bevorzugen.
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Bitte beachten Sie, dass Zertifikate im Gegensatz zu striktem TLS nicht gegen vertrauenswürdige Zertifizierungsstellen (CA) validiert werden; dadurch können YaCy-Peers selbstsignierte Zertifikate verwenden.
+Index remote results==Remote-Ergebnisse indexieren
+Limit size of indexed remote results==Größe indexierter Remote-Ergebnisse begrenzen
+Media Search==Mediensuche
+or extended to pages including such medias (provide generally more results, but eventually less relevant).==oder auf Seiten erweitert werden, die solche Medien enthalten (liefert generell mehr Ergebnisse, aber eventuell weniger relevante).
The search page can be integrated in your own web pages with an iframe. Simply use the following code:==Die Suchseite kann mit einem iframe in Ihre eigenen Webseiten eingebaut werden. Verwenden Sie dazu den folgenden Code:
This would look like:==Das würde so aussehen:
For a search page with a small header, use this code:==Für eine Suchseite mit kleiner Kopfzeile verwenden Sie folgenden Code:
A third option is the interactive search. Use this code:==Als dritte Option gibt es die interaktive Suche. Verwenden Sie dazu folgenden Code:
+"Detailed statistics"=="Detaillierte Statistik"
+"Remote results resorting can be triggered once the 'Refresh sorting' button (near the 'Search' button) becomes available."=="Die Neusortierung von Remote-Ergebnissen kann ausgelöst werden, sobald der Button 'Sortierung aktualisieren' neben dem Button 'Suchen' verfügbar ist."
+"This usually improves ranking accuracy, but doesn't work well for users who have Javascript disabled, are using screen readers, or are on slow computers."=="Dies verbessert üblicherweise die Ranking-Genauigkeit, funktioniert aber nicht gut für Benutzer mit deaktiviertem JavaScript, Screenreadern oder langsamen Computern."
+"idea"=="Idee"
+(Headline)==(Kopfzeile)
+Alternative text for Corporate Images==Alternativtext für Corporate-Images
+Automated, with JavaScript in the browser.==Automatisch, mit JavaScript im Browser.
+Control whether media search results are as default strictly limited to indexed documents matching exactly the desired content domain (images, videos or applications specific),==Steuert, ob Mediensuchergebnisse standardmäßig strikt auf indexierte Dokumente beschränkt werden, die exakt zur gewünschten Inhaltsdomäne passen (bild-, video- oder anwendungsspezifisch),
+Counts by origin :==Anzahl nach Herkunft:
+Default Pop-Up Page==Standard-Pop-up-Seite
+Extended==Erweitert
+Greeting Line==Grußzeile
+Interactive Search Page==Interaktive Suchseite
+On demand, server-side==Bei Bedarf, serverseitig
+Pattern:==Muster:
+Search Front Page==Such-Startseite
+Search Page (small header)==Suchseite (kleine Kopfzeile)
+Show Advanced Search Options on index.html==Erweiterte Suchoptionen auf index.html anzeigen
+Status Page==Statusseite
+Strict==Strikt
+The search page may be customized. You can change the 'corporate identity'-images, the greeting line==Die Suchseite kann angepasst werden. Sie können die Corporate-Identity-Bilder und die Grußzeile ändern
+URL of Home Page==URL der Homepage
+URL of a Large Corporate Image==URL eines großen Corporate-Image
+URL of a Small Corporate Image==URL eines kleinen Corporate-Image
+add remote search results to the local index ( default=on, it is recommended to enable this option ! )==Remote-Suchergebnisse zum lokalen Index hinzufügen (Standard=ein, es wird empfohlen, diese Option zu aktivieren!)
+maximum allowed size in kbytes for each remote search result to be added to the local index (for example, a 1000kbytes limit might be useful if you are running YaCy with a low memory setup)==Maximal erlaubte Größe in KByte für jedes Remote-Suchergebnis, das dem lokalen Index hinzugefügt wird (z.B. kann ein Limit von 1000 KByte sinnvoll sein, wenn YaCy mit wenig Arbeitsspeicher betrieben wird)
#-----------------------------
#File: ConfigProfile_p.html
#---------------------------
Your Personal Profile==Ihr persönliches Profil
You can create a personal profile here, which can be seen by other YaCy-members==Hier können Sie Ihr persönliches Profil verwalten, welches andere YaCy-Benutzer ansehen können
-or in the public using a FOAF RDF file.==oder in der Öffentlichkeit eine FOAF RDF Datei benutzen.
-#Name==Name
-#Nick Name==Nick Name
-Homepage (appears on every Supporter Page as long as your peer is online)==Homepage (erscheint auf der Unterstützer Seite, so lange Ihr Peer online ist).
-#eMail==eMail
-#ICQ==ICQ
-#Jabber==Jabber
-#Yahoo!==Yahoo!
-#MSN==MSN
-#Skype==Skype
Comment==Kommentar
"Save"=="Speichern"
-You can use <==Sie können <
-> here.==> hier im Profil benutzen.
#-----------------------------
+ICQ==ICQ
+Jabber==Jabber
+MSN==MSN
+Name==Name
+Nick Name==Spitzname
+Skype==Skype
+Yahoo!==Yahoo!
+eMail==E-Mail
#File: ConfigProperties_p.html
#---------------------------
Advanced Config==Erweiterte Einstellungen
@@ -755,7 +750,6 @@ For explanation please look into defaults/yacy.init==Eine Erklärung finden Sie
#---------------------------
Exclude Web-Spiders==Web-Spider ausschließen
Here you can set up a robots.txt for all webcrawlers that try to access the webinterface of your peer.==Hier können Sie eine robots.txt für alle Webcrawler die das Webinterface Ihres Peers indexieren wollen, erstellen.
-is a volunteer agreement most search-engines (including YaCy) follow.==ist ein freiwilliger Standard den die meisten Suchmaschinen (inkl. YaCy) befolgen.
It disallows crawlers to access webpages or even entire domains.==Er kann Crawlern den Zugriff auf Webseiten oder sogar ganze Domains verbieten.
Deny access to==Verbiete die Erfassung
Entire Peer==des ganzen Peers
@@ -769,77 +763,123 @@ Public bookmarks==der öffentlichen Lesezeichen
Home Page==der Home-Page
File Share==des File-Shares
"Save restrictions"=="Beschränkungen speichern"
+failed==fehlgeschlagen
+Deletion of==Löschung von
+Unable to access the local file:==Zugriff auf die lokale Datei nicht möglich:
+htroot/robots.txt==htroot/robots.txt
+robots.txt==robots.txt
#-----------------------------
+Impressum==Impressum
+is a voluntary agreement most search-engines (including YaCy) follow.==ist eine freiwillige Vereinbarung, der die meisten Suchmaschinen (einschließlich YaCy) folgen.
#File: ConfigSearchBox.html
#---------------------------
Integration of a Search Box==Integration einer Suchbox
We give information how to integrate a search box on any web page that==Hier finden Sie Informationen dazu wie man eine Suchbox auf jeder Webseite einsetzen kann das
calls the normal YaCy search window.==ein normales YaCy Suchfenster aufruft.
Simply use the following code:==Verwenden Sie einfach den folgenden Code:
- MySearch== Meine Suche
"Search"=="Suchen"
This would look like:==Das sieht dann so aus:
This does not use a style sheet file to make the integration into another web page with a different style sheet easier.==Da hier keine Stylesheet Datei verwendet wird, gestaltet sich die Integration in andere Webseiten mit einem anderen Stylesheet einfacher.
You would need to change the following items:==Sie müssen dazu die folgenden Einträge ändern:
Replace the given colors #eeeeee (box background) and #cccccc (box border)==Ersetzen sie die vorgegebenen Farben #eeeeee (Hintergrund der Box) and #cccccc (Boxenrand)
Replace the word "MySearch" with your own message==Ersetzen Sie das Wort "Meine Suche" mit Ihrer eigenen Nachricht
+MySearch==MeineSuche
#-----------------------------
#File: ConfigSearchPage_p.html
#---------------------------
-==
-Search Page<==Suchseite<
->Search Result Page Layout Configuration<==>Konfiguration des Seitenlayouts der Seite für Suchergebnisse<
-Below is a generic template of the search result page. Mark the check boxes for features you would like to be displayed.==Im Folgenden wird ein generisches Template einer Suchergebnisseite. Markieren Sie die Checkboxen für alle Features die angezeigt werden sollen.
-To change colors and styles use the ==Um die Farben und Stile zu ändern, verwenden Sie das
->Appearance<==>Erscheinungsbild<
- menu for different skins.== Menü für verschiedene Skins.
-Other portal settings can be adjusted in Generic Search Portal menu.==Andere Einstellungen für das Portal können im Generisches Suchportal Menü geändert werden.
->Page Template<==>Seiten Template<
-#>Administration<==>Administration<
->Web Search<==>Websuche<
->File Search<==>Dateisuche<
->Help / YaCy Wiki<==>Hilfe / YaCy Wiki<
-"Search"=="Suche"
-#>Text<==>Text<
->Images<==>Bilder<
-#>Audio<==>Audio<
-#>Video<==>Video<
->Applications<==>Anwendungen<
->more options<==>mehr Optionen<
-#>Tag<==>Tag<
->Topics<==>Themen<
-#>Cloud<==>Cloud<
->Protocol<==>Protokoll<
->Filetype<==>Dateityp<
->Provider<==>Anbieter<
->Wiki Name Space<==>Wiki Namespace Navigator<
->Language<==>Sprache<
->Author<==>Autoren<
->Vocabulary<==>Vokabellisten<
->Title of Result<==>Ergebnis Titel<
-Description and text snippet of the search result==Beschreibung und Textauschnitt der Suchergebnisse
-http://url-of-the-search-result.net==http://URL-des-Suchergebnisses.de
-42 kbyte<==42 KB<
->Metadata<==>Metadaten<
-#>Parser<==>Parser<
-#>Citation<==>Citation<
->Pictures<==>Bilder<
-#>Cache<==>Cache<
+Date Navigation==Datumsnavigation
+Below is a generic template of the search result page. Mark the check boxes for features you would like to be displayed.==Im Folgenden wird ein generisches Template einer Suchergebnisseite angezeigt. Markieren Sie die Checkboxen für alle Features, die angezeigt werden sollen.
+Add Navigators==Navigatoren hinzufügen
+max. items==max. Einträge
+Description and text snippet of the search result==Beschreibung und Textausschnitt des Suchergebnisses
+http://url-of-the-search-result.net==http://url-of-the-search-result.net
+(remaining can then be expanded)==(verbleibende können dann ausgeklappt werden)
+Max. tags initially displayed==Max. anfangs angezeigte Tags
+Maximum range (in days)==Maximaler Bereich (in Tagen)
+Show websites favicon==Website-Favicons anzeigen
+Not showing websites favicon can help you save some CPU time and network bandwidth.==Das Ausblenden von Website-Favicons kann CPU-Zeit und Netzwerkbandbreite sparen.
+View via Proxy==Über Proxy anzeigen
+For this option URL proxy must be enabled.==Für diese Option muss der URL-Proxy aktiviert sein.
+Ranking: 1.12195955E9==Ranking: 1.12195955E9
+menu: System Administration > Advanced Settings==Menü: Systemadministration > Erweiterte Einstellungen
+show search results on map==Suchergebnisse auf Karte anzeigen
"Save Settings"=="Einstellungen Speichern"
"Set Default Values"=="Setze Standardwerte"
#-----------------------------
+"Add navigator"=="Navigator hinzufügen"
+"Browse index"=="Index durchsuchen"
+"Date"=="Datum"
+"Delete navigator"=="Navigator löschen"
+"Raw ranking score value"=="Rohwert des Ranking-Scores"
+"Size"=="Größe"
+"Top navigation bar"=="Obere Navigationsleiste"
+"Enable login link/status"=="Anmelde-Link/-Status aktivieren"
+"Help"=="Hilfe"
+"Last known modification date"=="Letztes bekanntes Änderungsdatum"
+"Log in to use extended search features"=="Anmelden, um erweiterte Suchfunktionen zu verwenden"
+"Maximum days number in the histogram. Beware that a large value may trigger high CPU loads both on the server and on the browser with large result sets."=="Maximale Anzahl von Tagen im Histogramm. Beachten Sie, dass ein großer Wert bei großen Ergebnismengen hohe CPU-Last sowohl auf dem Server als auch im Browser auslösen kann."
+"Protocols"=="Protokolle"
+"Sorted by ascending counts"=="Nach aufsteigender Anzahl sortiert"
+"Sorted by ascending labels"=="Nach aufsteigenden Labels sortiert"
+"Sorted by descending counts"=="Nach absteigender Anzahl sortiert"
+"Sorted by descending labels"=="Nach absteigenden Labels sortiert"
+"Tag cloud"=="Tag-Cloud"
+"Website favicon"=="Website-Favicon"
+"You are authenticated as userName"=="Sie sind als userName authentifiziert"
+"earthsearchlogo"=="earthsearchlogo"
+"info"=="Info"
+"search..."=="suchen..."
+42 kbyte==42 KByte
+Administration »==Administration »
+Applications==Anwendungen
+Ascending counts==Aufsteigende Anzahl
+Ascending labels==Aufsteigende Labels
+Audio==Audio
+Cache==Cache
+Citation==Zitat
+Cloud==Cloud
+Descending counts==Absteigende Anzahl
+Descending labels==Absteigende Labels
+Images==Bilder
+Location==Ort
+Log in==Anmelden
+Menu: System Administration > Advanced Settings > Debug/Analysis Settings==Menü: Systemadministration > Erweiterte Einstellungen > Debug/Analyse-Einstellungen
+Metadata==Metadaten
+Page Template==Seitenvorlage
+Parser==Parser
+Pictures==Bilder
+Search Interfaces==Suchschnittstellen
+Search Result Page Layout Configuration==Konfiguration des Layouts der Suchergebnisseite
+Sort by==Sortieren nach
+Tag==Tag
+Tags==Tags
+Text==Text
+Title of Result==Titel des Ergebnisses
+Toggle navigation==Navigation umschalten
+Topics==Themen
+Video==Video
+Vocabulary==Vokabular
+append==anhängen
+file==file
+ftp==ftp
+http==http
+https==https
+keyword==Schlagwort
+keyword2==Schlagwort2
+keyword3==Schlagwort3
+more options==mehr Optionen
+search==suchen
+smb==smb
+subject==Thema
+userName==Benutzername
#File: ConfigUpdate_p.html
#---------------------------
Manual System Update==Manuelle System-Aktualisierung
Current installed Release==Aktuell installierte Version
-Available Releases==Verfügbare Versionen
->changelog<==>Changelog<
-> and <==> und <
-> RSS feed<==> RSS Feed<
(unsigned)==(unsigniert)
(signed)==(signiert)
"Download Release"=="Version Herunterladen"
@@ -852,13 +892,9 @@ no automated installation on development environments==Keine automatische I
Automatic Update==Automatische Aktualisierung
check for new releases, download if available and restart with downloaded release==Suche nach neuer Version, lade diese bei Bedarf herunter und starte neu mit dieser Version
"Check + Download + Install Release Now"=="Suchen + Herunterladen + Version nun installieren"
-Download of release #[downloadedRelease]# finished. Restart Initiated.== Der Download von Version #[downloadedRelease]# ist beendet. Ein Neustart ist eingeleitet.
No more recent release found.==Kein neuere Version gefunden.
Release will be installed. Please wait.==Das Release wird nun installiert. Bitte warten.
-You installed YaCy with a package manager.==Sie haben YaCy mit einer Paketverwaltung installiert.
-To update YaCy, use the package manager:==Um YaCy auf den neuesten Stand zu bringen, verwenden Sie den Paketmanager.
Omitting update because this is a development environment.==Update ausgelassen weil dies ein Entwicklersystem ist.
-Omitting update because download of release #[downloadedRelease]# failed.==Update ausgelassen weil der Download von Version #[downloadedRelease]# fehlschlug.
Automated System Update==Automatische System-Aktualisierung
manual update==Manuelle Aktualisierung
no automatic look-up, updates can be made manually using this interface (see options above)==Keine automatische Aktualisierung. Updates können manuell vorgenommen werden (siehe die Optionen oben).
@@ -867,7 +903,6 @@ updates are made within fixed cycles:==Aktualisierungen werden nach festen Regel
Time between lookup==Zeit zwischen Update Prüfungen
hours==Stunden
Release blacklist==Versionen Negativliste
-regex on release number strings==regex mit Versionsnummern
Release type==Release Typ
only main releases==nur offizielle Versionen
any release including developer releases==jede Version, auch Entwickler Versionen
@@ -880,102 +915,91 @@ Last System Lookup==Letzter System Check
never==niemals
Last Release Download==Letzter Download
Last Deploy==Letztes Update
+(no signature)==(keine Signatur)
+Omitting update because an error occurred while trying to deploy the release.==Update wird ausgelassen, weil beim Deployment des Releases ein Fehler aufgetreten ist.
+System Update==System-Update
+automatic update: add the following line to /etc/crontab 0 6 * * * root apt-get update && apt-get -y --force-yes install yacy==Automatisches Update: fügen Sie die folgende Zeile zu /etc/crontab hinzu 0 6 * * * root apt-get update && apt-get -y --force-yes install yacy
+manual update: apt-get update && apt-get install yacy==Manuelles Update: apt-get update && apt-get install yacy
#-----------------------------
+(regex on release number strings)==(Regex auf Release-Nummern)
+If you see this message this means that your operation system is not supported.==Wenn Sie diese Meldung sehen, wird Ihr Betriebssystem nicht unterstützt.
+This servlet can only be used on operating systems that are currently supported for deploy functions.==Dieses Servlet kann nur auf Betriebssystemen verwendet werden, die derzeit für Deployment-Funktionen unterstützt werden.
+You installed YaCy with a package manager. To update YaCy, use the package manager:==Sie haben YaCy mit einem Paketmanager installiert. Verwenden Sie zum Aktualisieren den Paketmanager:
#File: Connections_p.html
#---------------------------
-Connection Tracking==Verbindungsstatus
Incoming Connections==Eingehende Verbindungen
-Showing #[numActiveRunning]# active connections from a max. of #[numMax]# allowed incoming connections.==Es werden #[numActiveRunning]# Verbindungen von max. #[numMax]# erlaubten eingehenden Verbindungen angezeigt.
-Protocol==Protokoll
Duration==Dauer
Source IP[:Port]==Quell-IP[:Port]
Dest. IP[:Port]==Ziel-IP[:Port]
-Command==Kommando
-Used==Benutzt
-Close==Schließen
-Waiting for new request nr.==Warte auf neue Anfrage Nr.
Outgoing Connections==Ausgehende Verbindungen
-Showing #[clientActive]# pooled outgoing connections used as:==Gezeigt werden #[clientActive]# zusammengefasste ausgehende Verbindungen, benutzt als:
-Duration==Dauer
-#ID==ID
#-----------------------------
+Command==Befehl
+ID==ID
+Protocol==Protokoll
+Server Connection Tracking==Server-Verbindungsverfolgung
+Up-Bytes==Up-Bytes
#File: CookieMonitorIncoming_p.html
#---------------------------
-Incoming Cookies Monitor==Überwachung eingehender Cookies
Cookie Monitor: Incoming Cookies==Cookie Überwachung: Eingehende Cookies
This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:==Dies ist eine Liste aller Cookies, die ein Webserver an Clients des YaCy Proxys geschickt hat:
-Showing #[num]# entries from a total of #[total]# Cookies.==Angezeigt werden #[num]# Einträge von insgesamt #[total]# Cookies.
Sending Host==Host (Sender)
-Date==Datum
Receiving Client==Client (Empfänger)
-#Cookie==Cookie
"Enable Cookie Monitoring"=="Cookie Überwachung aktivieren"
"Disable Cookie Monitoring"=="Cookie Überwachung deaktivieren"
#-----------------------------
+Cookie==Cookie
+Date==Datum
#File: CookieMonitorOutgoing_p.html
#---------------------------
-Outgoing Cookies Monitor==Überwachung ausgehender Cookies
Cookie Monitor: Outgoing Cookies==Cookie Überwachung: Ausgehende Cookies
This is a list of cookies that browsers using the YaCy proxy sent to webservers:==Dies ist eine Auflistung aller Cookies, die Browser, die den YaCy Proxy benutzen, an einen Webserver geschickt haben:
-Showing #[num]# entries from a total of #[total]# Cookies.==Angezeigt werden #[num]# Einträge von insgesamt #[total]# Cookies.
Receiving Host==Host (Empfänger)
-Date==Datum
Sending Client==Client (Sender)
-#Cookie==Cookie
"Enable Cookie Monitoring"=="Cookie Überwachung aktivieren"
"Disable Cookie Monitoring"=="Cookie Überwachung deaktivieren"
#-----------------------------
+Cookie==Cookie
+Date==Datum
#File: CrawlCheck_p.html
#---------------------------
Crawl Check==Crawl Überprüfung
This pages gives you an analysis about the possible success for a web crawl on given addresses.==Diese Seite zeigt Ihnen eine Analyse über den möglichen Erfolg eines Web Crawls auf einer bestimmten Adresse.
List of possible crawl start URLs==Liste aller möglichen Crawl Start URLs
"Check given urls"=="Angegebene URLs überprüfen"
->Analysis<==>Analyse<
-#>URL<==>URL<
->Access<==>Zugriff<
-#>Robots<==>Robots<
->Crawl-Delay<==>Crawl-Verzögerung<
->Sitemap<==>Seitenverzeichnis(Sitemap)<
+URL==URL
+Access==Zugriff
+Analysis==Analyse
+Crawl-Delay==Crawl-Delay
+Robots==Robots
+Sitemap==Sitemap
#-----------------------------
#File: Crawler_p.html
#---------------------------
-#Crawler==Crawler
Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db==Fehler im Profil Management. Bitte stoppen Sie YaCy, löschen Sie die Datei DATA/PLASMADB/crawlProfiles0.db
and restart.==und starten Sie YaCy neu.
-Error:==Fehler:
-Application not yet initialized. Sorry. Please wait some seconds and repeat==Anwendung noch nicht initialisiert. Bitte warten Sie noch ein paar Sekunden und versuchen
-ERROR: Crawl filter==FEHLER: Crawl Maske
-does not match with==stimmt nicht überein mit
-crawl root==dem Crawlstart
-Please try again with different==Bitte probieren Sie es erneut mit einer anderen
-filter. ::==Maske. ::
-Crawling of==Crawling von
-failed. Reason:==schlug fehl. Grund:
-Error with URL input==Fehler mit URL Eingabe
-Error with file input==Fehler mit Datei Eingabe
-started.==gestartet.
-Please wait some seconds,==Bitte warten Sie einige Sekunden,
-it may take some seconds until the first result appears there.==es kann einige Sekunden dauern, bis hier die ersten Ergebnisse zu sehen sind.
->Size==>Größe
->Progress<==>Fortschritt<
-#Max==Max
+Application not yet initialized. Sorry. Please wait some seconds and repeat==Anwendung noch nicht initialisiert. Bitte warten Sie noch ein paar Sekunden und versuchen
+Size==Größe
"set"=="Setzen"
-#Indexing==Indexieren
-Loader==Lader
->Index Size<==>Index Größe<
Seg- ments==Seg- mente
->Documents<==>Dokumente<
->solr search api<==>Solr Such-API<
->Webgraph Edges<==>Webgraph Kanten<
Citations (reverse link index)==Citations (Rückwärts Such Index)
RWIs (P2P Chunks)==RWIs (P2P Anteile)
+Crawler==Crawler
+Crawled Pages==Gecrawlte Seiten
+Crawler PPM==Crawler-PPM
+Name==Name
+Queue==Queue
+Running==Läuft
+Status==Status
+Terminate All==Alle beenden
+pending:==ausstehend:
+(Please enable JavaScript to automatically update this page!)==(Bitte aktivieren Sie JavaScript, um diese Seite automatisch zu aktualisieren!)
+Click on this API button to see an XML with information about the crawler status==Klicken Sie auf diesen API-Button, um ein XML mit Informationen zum Crawler-Status zu sehen
Local Crawler==Lokaler Crawler
Limit Crawler==Limitierter Crawler
Remote Crawler==Entfernter Crawler
@@ -987,37 +1011,46 @@ Indicator==Indikator
Level==Stufe
Postprocessing Progress==Postprozess Fortschritt
Traffic (Crawler)==Daten-Traffic (Crawler)
-Load<==Auslastung<
+"API"=="API"
+"Latency Factor"=="Latenzfaktor"
+"Max same Host in queue"=="Max. gleicher Host in Warteschlange"
+"Pages Per Minute"=="Seiten pro Minute"
+"Set PPM to the default maximum value"=="PPM auf den Standard-Maximalwert setzen"
+"Set PPM to the default minimum value"=="PPM auf den Standard-Minimalwert setzen"
+LF==LF
+MH==MH
+PPM==PPM
+Could not parse the Solr filter query :==Die Solr-Filterabfrage konnte nicht geparst werden:
+Count==Anzahl
+Index Size==Indexgröße
+Load==Laden
+MB==MB
+No embedded local Solr index is connected. This is required to use a Solr query filter.==Es ist kein eingebetteter lokaler Solr-Index verbunden. Dieser ist erforderlich, um einen Solr-Abfragefilter zu verwenden.
+Progress==Fortschritt
+Queues==Warteschlangen
+The Solr filter query syntax is not valid :==Die Syntax der Solr-Filterabfrage ist nicht gültig:
+You asked for remote indexing, but remote crawl results won't be added to the local index as the remote crawler is currently disabled on this peer.==Sie haben Remote-Indexierung angefordert, aber Remote-Crawl-Ergebnisse werden nicht zum lokalen Index hinzugefügt, da der Remote-Crawler auf diesem Peer derzeit deaktiviert ist.
+filter.==Filter.
+it may take some seconds until the first result appears there.==es kann einige Sekunden dauern, bis dort das erste Ergebnis erscheint.
+the request.==die Anfrage.
#-----------------------------
+"Terminate"=="Beenden"
+"hide graphic"=="Grafik ausblenden"
+"show link structure"=="Linkstruktur anzeigen"
#File: CrawlProfileEditor_p.html
#---------------------------
Crawl Profile Editor==Crawl Profil Editor
->Crawler Steering<==>Crawler Steuerung<
->Crawl Scheduler<==>Crawl Planer<
->Scheduled Crawls can be modified in this table<==>Geplante Crawls können in dieser Tabelle geändert werden<
Crawl profiles hold information about a crawl process that is currently ongoing.==Crawl Profile beinhalten Informationen über einen Crawl Prozess der gerade ausgeführt wird.
-#The profiles for remote crawls, indexing via proxy and snippet fetches==Die Profile für Remote Crawl, Indexierung per Proxy und Snippet Abrufe
Crawl Profile List==Crawl Profil Liste
Crawl Thread==Crawl Art
-#Status==Status
-#Start URL==Start URL
->Depth==>Tiefe
Must Match==Muss zutreffen
Must Not Match==Muss nicht zutreffen
-MaxAge==Max. Alter
-#Auto Filter Depth==Auto Filter Tiefe
-#Auto Filter Content==Auto Inhalts Filter
-Max Page Per Domain==Max. Seiten pro Domain
-Accept==Akzeptiere
Fill Proxy Cache==Fülle Proxy Cache
Local Text Indexing==Lokal Text Indexieren
Local Media Indexing==Lokal Media Indexieren
-Remote Indexing==Remote Indexieren
-#Status / Action==Status / Aktion
-#terminated::active==beendet::aktiv
-no::yes==nein::ja
+Remote Indexing==Remote-Indexierung
Running==Läuft
"Terminate"=="Beenden"
Finished==Beendet
@@ -1025,34 +1058,42 @@ Finished==Beendet
"Delete finished crawls"=="Beendete Crawls löschen"
Select the profile to edit==Profil zur Bearbeitung auswählen
"Edit profile"=="Profil bearbeiten"
-An error occurred during editing the crawl profile:==Es trat folgender Fehler bei der Bearbeitung des Crawl Profils auf:
-Edit Profile==Bearbeite Profil
"Submit changes"=="Änderungen speichern"
+Collections==Sammlungen
+Crawler Steering==Crawl Steuerung
+Depth==Tiefe
+false==false
+no==nein
+true==true
+yes==ja
+Crawl Scheduler==Crawl-Scheduler
+Max Page Per Domain==Max. Seiten pro Domain
+Recrawl if older than==Erneut crawlen, wenn älter als
+Scheduled Crawls can be modified in this table==Geplante Crawls können in dieser Tabelle geändert werden
#-----------------------------
+Accept '?' URLs=='?' URLs akzeptieren
+Domain Counter Content==Domain-Zähler-Inhalt
+Status==Status
#File: CrawlResults.html
#---------------------------
-Crawl Results<==Crawl Ergebnisse<
->Crawl Results Overview<==>Crawl Ergebnisse Überblick<
These are monitoring pages for the different indexing queues.==Das sind die Seiten zur Überwachung der verschiedenen Indexier Warteschlangen.
YaCy knows 5 different ways to acquire web indexes. The details of these processes (1-5) are described within the submenu's listed==YaCy kennt 5 verschiedene Arten, um zu indexieren. Die Details zu diesen Prozessen (1-5) sind in den Untermenüs oben beschrieben.
-above which also will show you a table with indexing results so far. The information in these tables is considered as private,==Dort kann man ausserdem eine Tabelle mit den Resultaten des Index sehen. Informationen in diesen Tabellen sind als privat eingestuft,
+above which also will show you a table with indexing results so far. The information in these tables is considered as private,==Dort sehen Sie außerdem eine Tabelle mit den bisherigen Indexierungsergebnissen. Informationen in diesen Tabellen sind als privat eingestuft,
so you need to log-in with your administration password.==also müssen Sie sich mit Ihrem Administrator Passwort einloggen, um sie zu sehen.
-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==Fall (6) ist ein Monitor des lokalen Empfangs-Generator, der Gegensatz zu (1). Er enthält ausserdem einen Index Resulate Monitor, ist aber nicht privat,
+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==Fall (6) ist ein Monitor des lokalen Empfangsgenerators, der Gegenfall zu (1). Er enthält außerdem einen Indexierungsergebnis-Monitor, gilt aber nicht als privat,
since it shows crawl requests from other peers.==da er Crawl Anfragen von anderen Peers zeigt.
Case (7) occurs if pack files are imported==Fall (7) tritt ein wenn Pack-Dateien importiert werden.
The image above illustrates the data flow initiated by web index acquisition.==Das obige Bild zeigt den Datenfluss, der durch die Index Erwerbung über das Internet entsteht.
-Some processes occur double to document the complex index migration structure.==Einige Prozesse erscheinen doppelt, um die Komplexizität der Index Verteilungs Struktur zu erklären.
+Some processes occur double to document the complex index migration structure.==Einige Prozesse erscheinen doppelt, um die Komplexität der Indexverteilungsstruktur zu erklären.
(1) Results of Remote Crawl Receipts==(1) Ergebnisse der Remote Crawl Rückmeldungen
This is the list of web pages that this peer initiated to crawl,==Dies ist eine Liste von Internetseiten, bei der Ihr Peer den Crawl initiiert hat,
but had been crawled by other peers.==die aber von anderen Peers gecrawlt wurden.
This is the 'mirror'-case of process (6).==Dies ist der 'Gegensatz' Prozess zu (6)
-Use Case: You get entries here, if you start a local crawl on the 'Advanced Crawler' page and check the==Anwendungsfall: Sie erhalten hier Einträge, wenn Sie einen lokalen Crawl auf der 'Experten Crawl Start' Seite starten und
-'Do Remote Indexing'-flag, and if you checked the 'Accept Remote Crawl Requests'-flag on the 'Remote Crawling' page.==die 'Remote Indexierung' aktivieren, und wenn Sie auf der Seite 'Remote Crawling' das Kennzeichen'Akzeptiere Remote Crawl Anfragen' gesetzt haben.
-Every page that a remote peer indexes upon this peer's request is reported back and can be monitored here.==Jede Seite, die von einem remote Peer durch Ihre Anfrage indexiert wurde, wird nun zurück gemeldet und hier angezeigt.
+Every page that a remote peer indexes upon this peer's request is reported back and can be monitored here.==Jede Seite, die von einem Remote-Peer auf Anfrage dieses Peers indexiert wurde, wird zurückgemeldet und kann hier überwacht werden.
(2) Results for Result of Search Queries==(2) Ergebnisse der Resultate bei Suchanfragen
This index transfer was initiated by your peer by doing a search query.==Dieser Index Transfer wurde von Ihrem Peer dadurch initiiert, dass Sie eine Suchanfrage gestartet haben.
-The index was crawled and contributed by other peers.==Der Index wurde von anderen Peers gecrawlt und nun Ihnen breitgestellt.
+The index was crawled and contributed by other peers.==Der Index wurde von anderen Peers gecrawlt und Ihnen bereitgestellt.
Use Case: This list fills up if you do a search query on the 'Search Page'==Anwendungsfall: Diese Liste füllt sich, wenn Sie eine Suchanfrage auf der 'Suchseite' starten.
(3) Results for Index Transfer==(3) Ergebnisse der DHT-Verteilung
The url fetch was initiated and executed by other peers.==Die URL Indexierung wurde von anderen Peers initiiert und durchgeführt.
@@ -1061,7 +1102,6 @@ the logic of the Global Distributed Hash Table.==übereinstimmend mit der Logic
Use Case: This list may fill if you check the 'Index Receive'-flag on the 'Index Control' page==Anwendung: Dies Liste füllt sich, wenn Sie die 'Index Empfang' Option auf der 'Index Kontrolle' Seite aktiviert haben.
(4) Results for Proxy Indexing==(4) Ergebnisse der Proxy Indexierung
These web pages had been indexed as result of your proxy usage.==Diese Internetseiten wurden durch die Benutzung des Proxy indexiert.
-No personal or protected page is indexed==Weder persönliche noch geschützte Seiten werden indexiert
such pages are detected by Cookie-Use or POST-Parameters (either in URL or as HTTP protocol)==Solche Seiten werden durch die Benutzung von Cookies oder POST-Parametern (in der URL oder im HTTP Protokoll) identifiziert
and automatically excluded from indexing.==und automatisch von der Indexierung ausgeschlossen.
Use Case: You must use YaCy as proxy to fill up this table.==Anwendung: Sie müssen YaCy als Proxy benutzen, um diese Tabelle zu füllen.
@@ -1073,88 +1113,68 @@ These web pages had been crawled by your own crawl task.==Diese Internetseiten w
(6) Results for Global Crawling==(6) Ergebnisse des globalen Crawlens
These pages had been indexed by your peer, but the crawl was initiated by a remote peer.==Diese Seiten wurden von Ihrem Peer indexiert, der Crawl wurde aber von einem anderen Peer initiiert (remote-Crawl).
This is the 'mirror'-case of process (1).==Dies ist der 'Gegensatz' Prozess zu (1).
-Use Case: This list may fill if you check the 'Accept Remote Crawl Requests'-flag on the 'Remote Crawling' page==Anwendung: Diese Liste füllt sich, wenn Sie 'Akzeptiere Remote Crawl Anfragen' auf der 'Remote Crawling' Seite aktiviert haben.
The stack is empty.==Die Liste ist leer.
-Statistics about #[domains]# domains in this stack:==Statistiken über #[domains]# Domains in diesem Bereich:
(7) Results from pack import==(7) Ergebnisse aus dem Pack Import
These records had been imported from pack files in DATA/PACKS/load==Diese Datensätze wurden aus Pack Dateien in DATA/PACKS/load importiert
-Use Case: place files with dublin core metadata content into DATA/PACKS/load or use an index import method==Anwendungsfall: Dateien mit Dublin Core Metadaten Inhalt in das DATA/PACKS/load kopieren oder eine der Index Import Funktionen nutzen
-(i.e. MediaWiki import, OAI-PMH retrieval)==(z.B. MediaWiki Dump Import, OAI-PMH Import)
-#Domain==Domain
#URLs=URLs
"delete all"=="Alle Löschen"
-Showing all #[all]# entries in this stack.==Zeigt alle #[all]# Einträge in diesem Bereich.
-Showing latest #[count]# lines from a stack of #[all]# entries.==Zeigt die letzten #[count]# Einträge aus diesem Bereich von insgesamt #[all]# Einträgen.
"clear list"=="Liste leeren"
-#Initiator==Initiator
->Executor==>Ausführender
->Modified==>Änderungsdatum
->Words==>Wörter
->Title==>Titel
-#URL==URL
"delete"=="Löschen"
-#-----------------------------
-
+Collection==Collection
+Title==Titel
+URLs==URLs
+"An illustration how yacy works"=="Eine Illustration, wie YaCy funktioniert"
+No personal or protected page is indexed;==Keine persönliche oder geschützte Seite wird indexiert;
+Country==Land
+Crawl Results Overview==Übersicht der Crawl-Ergebnisse
+Executor==Ausführender
+IP of Host==IP des Hosts
+Modified==Geändert
+No remote crawl results can currently been added to the local index as the remote crawler is disabled on this peer.==Derzeit können keine Remote-Crawl-Ergebnisse zum lokalen Index hinzugefügt werden, da der Remote-Crawler auf diesem Peer deaktiviert ist.
+The remote crawler is currently disabled==Der Remote-Crawler ist derzeit deaktiviert
+Words==Wörter
+no title==kein Titel
+#-----------------------------
+
+Blacklist to use==Zu verwendende Blacklist
+Domain==Domain
+Initiator==Initiator
+URL==URL
+"del & blacklist"=="löschen & blacklist"
#File: CrawlStartExpert.html
#---------------------------
-==
Expert Crawl Start==Experten Crawl Start
Start Crawling Job:==Starte Crawling Job:
You can define URLs as start points for Web page crawling and start crawling here.==Sie können hier URLs angeben, die gecrawlt werden sollen und dann das Crawling starten.
"Crawling" means that YaCy will download the given website, extract all links in it and then download the content behind these links.=="Crawling" bedeutet, dass YaCy die angegebene Webseite runterlädt, alle Links extrahiert und dann den Inhalt hinter diesen Links lädt.
This is repeated as long as specified under "Crawling Depth".== Dies wird solange wiederholt wie unter "Crawling Tiefe" angegeben.
-A crawl can also be started using wget and the==Ein Crawl kann auch mit wget gestartet werden unter Verwendung der
->post arguments<==>POST Argumente<
-> for this web page.==> für diese Webseite.
-#>Crawl Job<==>Crawl Job<
A Crawl Job consist of one or more start point, crawl limitations and document freshness rules.==Ein Crawl Job besteht aus einem oder mehreren Startpunkten, Crawl Limitierungen und einer Dokumenten Frischheits-Regel.
->Start Point<==>Startpunkt<
One Start URL or a list of URLs: (must start with http:// https:// ftp:// smb:// file://)==Eine Start URL oder eine Liste von URLs: (muss mit http:// https:// ftp:// smb:// file:// beginnen)
Define the start-url(s) here. You can submit more than one URL, each line one URL please.==Definiere die Start-URL(s) hier. Die können mehr als eine URL angeben und diese bitte mit einer URL pro Zeile.
Each of these URLs are the root for a crawl start, existing start URLs are always re-loaded.==Jede dieser URLs ist die Wurzel für einen Crawl Start. Existierende Start URLs werden immer neu geladen.
Other already visited URLs are sorted out as "double", if they are not allowed using the re-crawl option.==Andere bereits besuchte Seiten werden als 'doppelt' aussortiert, wenn diese nicht ausdrücklich per Re-crawl Option zugelassen wurden.
->From Link-List of URL<==>Von Linkliste der URL<
+From Link-List of URL==Von Linkliste der URL
From Sitemap==Von Sitemap
From File (enter a path within your local file system)==Von Datei (Verwende Pfad einer Datei auf dem lokalen Dateisystem)
-A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==Ein Web Crawl führt eine Dubletten Prüfung anhand einer internen Datenbank gegen alle im Internet gefunden Links durch. Wenn dieselbe URL wieder gefunden wird,
+A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==Ein Web-Crawl führt für alle im Internet gefundenen Links eine Dublettenprüfung gegen die interne Datenbank durch. Wenn dieselbe URL erneut gefunden wird,
then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,==wird die URL als Dublette behandelt wenn die 'Keine Doubletten' Option ausgewählt wurde. Eine URL kann noch einmal geladen werden wenn sie ein bestimmtes Alter erreicht hat.
-#to use that check the 're-load' option. When you want that this web crawl is repeated automatically, then check the 'scheduled' option.==Dafür kann die 'Nachladen' Option verwendet werden. Wenn der Web Crawl automatisch wiederholt werden soll, kann die 'Geplant' Option ausgewählt werden.
-#In this case the crawl is repeated after the given time and no url from the previous crawl is omitted as double.==In diesem Fall wird der Crawl erneut nach der eingestellten Zeit ausgeführt und keine URL aus einem vorhergegangenem Crawl wird als Dublette ausgelassen.
-#Must-Match Filter==Muss-entsprechen Filter
Use filter==Filter nutzen
-Restrict to start domain==Auf Startdomain beschränken
-Restrict to sub-path==Auf Sub-Pfad beschränken
-#The filter is an emacs-like regular expression that must match with the URLs which are used to be crawled;==Dieser Filter ist ein emacs-ähnlicher regulärer Ausdruck, der mit den zu crawlenden URLs übereinstimmen muss;
-#that must match with the URLs which are used to be crawled; default is 'catch all'.==der auf die zum Crawlen verwendeten URLs zutreffen muss. Die Standard Einstellung ist 'alle zulassen'.
-#Example: to allow only urls that contain the word 'science', set the filter to '.*science.*'.==Beispiel: Um nur URLs zuzulassen, die das Wort 'Wissenschaft' beeinhalten, setzen Sie den Filter auf '.*Wissenschaft.*'.
+Restrict to start domain(s)==Auf Startdomain(s) beschränken
+Restrict to sub-path(s)==Auf Sub-Pfad(e) beschränken
You can also use an automatic domain-restriction to fully crawl a single domain.==Sie können aber auch eine automatische Domain-Beschränkung benutzen, um eine einzelne Domain komplett zu crawlen.
-#Must-Not-Match Filter==Muss-nicht-entsprechen Filter
-#This filter must not match to allow that the page is accepted for crawling.==Dieser Filter darf nicht passen, um zu erlauben, dass die Seite zum crawlen akzeptiert wird.
-#The empty string is a never-match filter which should do well for most cases.==Ein leeres Feld ist ein niemals-passend Filter, der in den meisten Fällen gute Dienste leisten sollte.
-#Re-crawl known URLs:==Re-crawl bekannter URLs:
-
-#It depends on the age of the last crawl if this is done or not: if the last crawl is older than the given==Es hängt vom Alter des letzten Crawls ab, ob dies getan oder nicht getan wird: wenn der letzte Crawl älter als das angegebene
-#Auto-Dom-Filter:==Auto-Dom-Filter:
-#This option will automatically create a domain-filter which limits the crawl on domains the crawler==Diese Option erzeugt automatisch einen Domain-Filter der den Crawl auf die Domains beschränkt ,
-#will find on the given depth. You can use this option i.e. to crawl a page with bookmarks while==die auf der angegebenen Tiefe gefunden werden. Diese Option kann man beispielsweise benutzen, um eine Seite mit Bookmarks zu crawlen
-#restricting the crawl on only those domains that appear on the bookmark-page. The adequate depth==und dann den folgenden Crawl automatisch auf die Domains zu beschränken, die in der Bookmarkliste vorkamen. Die einzustellende Tiefe für
-#for this example would be 1.==dieses Beispiel wäre 1.
-#The default value 0 gives no restrictions.==Der Vorgabewert 0 bedeutet, dass nichts eingeschränkt wird.
-#Maximum Pages per Domain:==Maximale Seiten pro Domain:
-#Page-Count==Seitenanzahl
+
+Page-Count==Seitenanzahl
You can limit the maximum number of pages that are fetched and indexed from a single domain with this option.==Sie können die maximale Anzahl an Seiten, die von einer einzelnen Domain gefunden und indexiert werden, mit dieser Option begrenzen.
You can combine this limitation with the 'Auto-Dom-Filter', so that the limit is applied to all the domains within==Sie können diese Option auch mit dem 'Auto-Dom-Filter' kombinieren, so dass das Limit für alle Domains mit der
the given depth. Domains outside the given depth are then sorted-out anyway.==angegebenen Tiefe gilt. Domains ausserhalb der angegebenen Tiefe werden einfach aussortiert.
-#dynamic URLs==dynamische URLs
-Document Cache<==Dokumenten Cache<
Store to Web Cache==Speichern im Web-Cache
This option is used by default for proxy prefetch, but is not needed for explicit crawling.==Diese Option ist standardmäßig beim Proxy aktiviert, wird aber zum reinen Crawlen nicht gebraucht.
A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled.==Ein Fragezeichen ist normalerweise ein Hinweis auf eine dynamische Seite. URLs mit dynamischem Inhalt sollten normalerweise nicht gecrawlt werden.
@@ -1170,14 +1190,8 @@ no cache==kein Cache
if fresh==bei frischem Cache Hit
if exist==bei Cache Hit
cache only==nur Cache
-never use the cache, all content from fresh internet source;==Den Cache nie verwenden, allen Inhalt frisch von der Online Quelle
-use the cache if the cache exists and is fresh using the proxy-fresh rules;==Verwende den Cache, wenn ein Treffer im Cache existiert und dieser aktuell ist.
-use the cache if the cache exist. Do no check freshness. Otherwise use online source;==Verwende den Cache, wenn ein Treffer existiert ohne die Aktualität zu prüfen. Andernfalls verwende die Quelle online;
-never go online, use all content from cache. If no cache exist, treat content as unavailable==Gehe niemals online, verwende nur den Cache Inhalt. Wenn kein Cache existiert, behandle den Inhalt als nicht verfügbar
-#>Crawler Filter<==>Crawler Filter<
These are limitations on the crawl stacker. The filters will be applied before a web page is loaded.==Das sind Limitierungen auf den Crawl-Stacker. Die Filter werden angewandt bevor eine Webseite geladen wurde.
-Crawling Depth<==Crawling Tiefe<
This defines how often the Crawler will follow links (of links..) embedded in websites.==Dies definiert, wie oft der Crawler eingebetteten Links (von Links ...) in Webseiten folgen wird.
0 means that only the page you enter under "Starting Point" will be added==0 bedeutet, dass nur die Seite unter "Startpunkt"
to the index. 2-4 is good for normal indexing. Values over 8 are not useful, since a depth-8 crawl will==dem Index zugefügt wird. 2-4 ist gut für normales Indexieren. Werte über 8 sind nicht nützlich, denn eine Suche mit Suchtiefe 8 würde
@@ -1185,11 +1199,8 @@ index approximately 25.600.000.000 pages, maybe this is the whole WWW.==ungefäh
also all linked non-parsable documents==auch alle verlinkten und nicht-parsbaren Dokumente
Unlimited crawl depth for URLs matching with==Unlimitierte Crawl Tiefe für URLs auf die folgendes zutrifft
Maximum Pages per Domain==Maximale Seiten per Domain
->Use<==>Benutzen<
->Page-Count<==>Seitenanzahl<
misc. Constraints==Verschiedene Einschränkungen
->Load Filter on URLs<==>Lade Filter auf URLs<
->Load Filter on IPs<==>Lade Filter auf IPs<
+Filter on URLs==Filter auf URLs
Must-Match List for Country Codes==Liste aller Ländercodes die zutreffen müssen
Crawls can be restricted to specific countries. This uses the country code that can be computed from==Crawls können auf bestimmte Länder beschränkt werden. Dafür wird der Ländercode verwendet, der
the IP of the server that hosts the page. The filter is not a regular expressions but a list of country codes, separated by comma.==aus der IP des Servers berechnet wird welcher die Seite hostet. Der Filter ist kein regulärer Ausdruck aber eine Liste mit Ländercodes und Komma als Trennzeichen.
@@ -1197,43 +1208,32 @@ no country code restriction==keine Einschränkung anhand von Ländercodes
Document Filter==Dokument-Filter
These are limitations on index feeder. The filters will be applied after a web page was loaded.==Das sind Limitierungen auf den Index-Feeder. Die Filter werden angewandt wenn eine Webseite geladen wurde.
->Filter on URLs<==>Filter auf URLs<
-The filter is a==Der Filter ist ein
->regular expression<==>Regülärer Ausdruck<
+These are limitations on parts of a document. The filter will be applied after a web page was loaded.==Das sind Einschränkungen für Teile eines Dokuments. Der Filter wird angewendet, nachdem eine Webseite geladen wurde.
that must not match with the URLs to allow that the content of the url is indexed.==der auf die URLs nicht zutreffen darf, damit der Inhalt der URL indexiert werden darf.
-> must-match<==> muss zutreffen<
-> must-not-match<==> darf nicht zutreffen<
(must not be empty)==(darf nicht leer sein)
Clean-Up before Crawl Start==Aufräumen vor dem Crawl Start
->No Deletion<==>Kein Löschen<
->Re-load<==>Neu Laden<
+Delete only old==Nur alte löschen
+Delete sub-path==Unterpfad löschen
For each host in the start url list, delete all documents (in the given subpath) from that host.==Lösche alle Dokumente (im angegebenen Unterpfad) für jeden Host in der URL Startliste von diesem Host.
Do not delete any document before the crawl is started.==Lösche keine Dokumente bevor der Crawl gestartet wird.
Treat documents that are loaded==Behandle Dokumente die
-> ago as stale and delete them before the crawl is started.==> zuvor geladen wurden als abgelaufen und lösche sie bevor der Crawl gestartet wird.
After a crawl was done in the past, document may become stale and eventually they are also deleted on the target host.==Nachdem ein Crawl abgeschlossen wurde, werden Dokumenten ebenfalls überfällig und eventuell werden diese auch auf dem Ziel-Host gelöscht.
To remove old files from the search index it is not sufficient to just consider them for re-load but it may be necessary==Um diese alten Dateien aus dem Suchindex zu entfernen ist es nicht ausreichend sie für einen erneutes Laden vorzusehen - aber es kann notwending sein
to delete them because they simply do not exist any more. Use this in combination with re-crawl while this time should be longer.==diese ebenfalls zu Löschen weil sie ganz einfach nicht mehr existieren. Verwendung in Kombination mit Re-Crawl während diese Zeit länger sein sollte.
Double-Check Rules==Dubletten Check Regeln
No Doubles==Keine Dubletten
-A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==Ein Web Crawl macht einen Dubletten Check auf alle im Internet gefundenen Links gegen die interne Datenbank. Wenn dieselbe URL wieder gefunden wird,
-then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,==dann wird die URL als Dublette behandelt wenn Sie die 'Keine Dubletten' Option ausgewählt haben. Eine URL wird wieder geladen, wenn sie ein bestimmtes Alter erreicht hat.
to use that check the 're-load' option.==Um diese Option zu verwenden bitte die Option "Neu Laden" markieren.
->Re-load<==>Neu Laden<
-Treat documents that are loaded==Behandle Dokumente die
-> ago as stale and load them again. If they are younger, they are ignored.==> zuvor geladen wurden als abgelaufen und lade sie erneut. Wenn sie jünger sind werden sie ignoriert.
Never load any page that is already known. Only the start-url may be loaded again.==Lade nie eine Seite die schon bekannt ist. Nur die Start-URL kann erneut geladen werden.
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 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.
+Because YaCy can be used as replacement for commercial search appliances==Da YaCy als Ersatz für kommerzielle Search Appliances verwendet werden kann
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.
+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 Crawl-Timings haben, sich mit einem anderen User-Agent ausweisen und die jeweiligen robots-Regeln anwenden.
-Do Local Indexing==Lokales Indexieren
index text==Indexiere Text
index media==Indexiere Medien
This enables indexing of the webpages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the==Dies aktiviert die Indexierung von Webseiten, die der Crawler runterlädt. Dies sollte standardmässig aktiviert sein, ausser Sie wollen den
@@ -1244,218 +1244,215 @@ This message will appear in the 'Other Peer Crawl Start' table of other peers.==
If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Wenn aktiviert, wird der Crawler mit anderen Peers Kontakt aufnehmen und diese als Remote Indexierer für Ihren Crawl benutzen.
If you need your crawling results locally, you should switch this off.==Wenn Sie die Crawling Ergebnisse lokal benötigen, sollten Sie diese Funktion deaktivieren.
Only senior and principal peers can initiate or receive remote crawls.==Nur Senior und Principal Peers können einen remote Crawl initiieren oder erhalten.
-A YaCyNews message will be created to inform all peers about a global crawl==Eine Nachricht wird im YaCy News Bereich angezeigt, um alle Peers von diesem globalen Crawl zu informieren
so they can omit starting a crawl with the same start point.==damit sie es vermeiden können, einen Crawl vom selben Startpunkt zu starten.
-#Exclude static Stop-Words==Statische Stop-Words ausschließen
-#This can be useful to circumvent that extremely common words are added to the database, i.e. "the", "he", "she", "it"... To exclude all words given in the file yacy.stopwords from indexing,==Dies ist sinnvoll, um zu verhindern, dass extrem häufig vorkommende Wörter wie z.B. "der", "die", "das", "und", "er", "sie" etc in die Datenbank aufgenommen werden. Um alle Wörter von der Indexierung auszuschließen, die in der Datei yacy.stopwords enthalten sind,
-Add Crawl result to collection(s)==Crawl Ergebnis zu Kollektion(en) hinzufügen
A crawl result can be tagged with names which are candidates for a collection request.==Ein Crawl Ergebnis kann mit Namen getagged werden die Kandidaten für eine Kollektion Anfrage sind.
-These tags can be selected with the==Diese Tags können ausgewählt werden mit dem
-GSA interface==GSA Interface
-using the 'site' operator.==durch Verwendung des 'site' Befehls.
-To use this option, the 'collection_sxt'-field must be switched on in the==Um diese Option zu verwenden, muss das 'collection_sxt'-Feld eingeschalten werden auf der Seite für das
-#Solr Schema==Solr Schema
"Start New Crawl Job"=="Neuen Crawl Job starten"
-#-----------------------------
-
+Always cross check file extension against Content-Type header==Dateierweiterung immer mit dem Content-Type-Header abgleichen
+Check this option to be sure to get fresh search results including newly crawled documents. Beware that it will also interrupt any refreshing/resorting of search results currently requested from browser-side.==Aktivieren Sie diese Option, um frische Suchergebnisse einschließlich neu gecrawlter Dokumente zu erhalten. Beachten Sie, dass dadurch auch eine aktuell vom Browser angeforderte Aktualisierung oder Neusortierung der Suchergebnisse unterbrochen wird.
+Clean up search events cache==Cache der Suchereignisse aufräumen
+Click on this API button to see a documentation of the POST request parameter for crawl starts.==Klicken Sie auf diesen API-Button, um eine Dokumentation der POST-Request-Parameter für Crawl-Starts zu sehen.
+Do not load URLs with an unsupported file extension==URLs mit nicht unterstützter Dateierweiterung nicht laden
+Each parsed document is checked against the given Solr query before being added to the index.==Jedes geparste Dokument wird gegen die angegebene Solr-Abfrage geprüft, bevor es dem Index hinzugefügt wird.
+Example: to allow loading only links from pages on example.org domain, set the must-match filter to '.*example.org.*'.==Beispiel: Um nur Links von Seiten der Domain example.org zu laden, setzen Sie den Must-Match-Filter auf '.*example.org.*'.
+Example: to allow only urls that contain the word 'science', set the must-match filter to '.*science.*'.==Beispiel: Um nur URLs zuzulassen, die das Wort 'science' enthalten, setzen Sie den Must-Match-Filter auf '.*science.*'.
+Filter on Document Media Type (aka MIME type)==Filter auf Dokument-Medientyp (auch MIME-Type)
+Indeed, for some web resources the actual Media Type is not consistent with the URL file extension. Here are some examples:==Tatsächlich stimmt bei manchen Webressourcen der tatsächliche Medientyp nicht mit der Dateierweiterung der URL überein. Hier sind einige Beispiele:
+Media Type detection==Medientyp-Erkennung
+Not loading URLs with unsupported file extension is faster but less accurate.==URLs mit nicht unterstützter Dateierweiterung nicht zu laden ist schneller, aber weniger genau.
+Obey html-robots-nofollow:==html-robots-nofollow beachten:
+Remote crawl results won't be added to the local index as the remote crawler is disabled on this peer.==Remote-Crawl-Ergebnisse werden nicht zum lokalen Index hinzugefügt, da der Remote-Crawler auf diesem Peer deaktiviert ist.
+The embedded local Solr index must be connected to use this kind of filter.==Der eingebettete lokale Solr-Index muss verbunden sein, um diese Art von Filter zu verwenden.
+The time zone is required when the parser detects a date in the crawled web page. Content can be searched with the on: - modifier which==Die Zeitzone ist erforderlich, wenn der Parser ein Datum in der gecrawlten Webseite erkennt. Inhalte können mit dem Modifikator on: durchsucht werden, der
+Time zone offsets for locations east of UTC must be negative; offsets for zones west of UTC must be positve.==Zeitzonen-Offsets für Orte östlich von UTC müssen negativ sein; Offsets für Zonen westlich von UTC müssen positiv sein.
+You can use class names to enrich the terms of a vocabulary based on the text content that appears on web pages. Please write the names of classes into the matrix.==Sie können Klassennamen verwenden, um die Begriffe eines Vokabulars anhand des Textinhalts auf Webseiten anzureichern. Tragen Sie die Klassennamen bitte in die Matrix ein.
+from dates without time zones to UTC, this offset must be given here. The offset is given in minutes;==Daten ohne Zeitzonen nach UTC umrechnet; dieser Offset muss hier angegeben werden. Der Offset wird in Minuten angegeben;
+requires also a time zone when a query is made. To normalize all given dates, the date is stored in UTC time zone. To get the right offset==erfordert auch eine Zeitzone, wenn eine Abfrage gestellt wird. Um alle angegebenen Daten zu normalisieren, wird das Datum in UTC gespeichert. Um den richtigen Offset zu erhalten
+#-----------------------------
+
+Filter on Content of Document (all visible text, including camel-case-tokenized url and title)==Filter auf Dokumentinhalt (gesamter sichtbarer Text, einschließlich Camel-Case-tokenisierter URL und Titel)
+"API"=="API"
+"Clean up search events cache info"=="Info zum Aufräumen des Suchereignis-Caches"
+"Media Type checking info"=="Info zur Medientyp-Prüfung"
+"Media Type filter info"=="Info zum Medientyp-Filter"
+"Show all links"=="Alle Links anzeigen"
+"Solr query filter info"=="Info zum Solr-Abfragefilter"
+"empty"=="leer"
+"info"=="Info"
+cache only: never go online, use all content from cache. If no cache exist, treat content as unavailable==nur Cache: niemals online gehen, alle Inhalte aus dem Cache verwenden. Wenn kein Cache existiert, Inhalt als nicht verfügbar behandeln
+if exist: use the cache if the cache exist. Do no check freshness. Otherwise use online source;==wenn vorhanden: Cache verwenden, wenn er existiert. Aktualität nicht prüfen. Andernfalls Online-Quelle verwenden;
+if fresh: use the cache if the cache exists and is fresh using the proxy-fresh rules;==wenn frisch: Cache verwenden, wenn er existiert und nach den Proxy-Frische-Regeln aktuell ist;
+no cache: never use the cache, all content from fresh internet source;==kein Cache: Cache nie verwenden, alle Inhalte frisch aus der Internetquelle laden;
+A YaCyNews message will be created to inform all peers about a global crawl,==Eine YaCyNews-Nachricht wird erstellt, um alle Peers über einen globalen Crawl zu informieren,
+Add Crawl result to collection (important for Index Pack generation)==Crawl-Ergebnis zu Collection hinzufügen (wichtig für die Index-Pack-Erzeugung)
+Class==Klasse
+Content Filter==Inhaltsfilter
+Crawl Job==Crawl-Job
+Crawler Filter==Crawler-Filter
+Crawling Depth==Crawling-Tiefe
+Do not use underline '_' in collection name, use '-' instead. When useful, add a language code to the collection name, e.g. 'top-100-en'.==Verwenden Sie keinen Unterstrich '_' im Collection-Namen, sondern '-' . Wenn sinnvoll, fügen Sie einen Sprachcode hinzu, z.B. 'top-100-en'.
+Document Cache==Dokumenten-Cache
+Enrich Vocabulary==Vokabular anreichern
+Evaluate by default==Standardmäßig auswerten
+Filter div or nav class names==div- oder nav-Klassennamen filtern
+Ignore all words in document by default until a CSS class as listed below appears, then evaluate all==Standardmäßig alle Wörter im Dokument ignorieren, bis eine unten aufgeführte CSS-Klasse erscheint; dann alle auswerten
+Ignore by default==Standardmäßig ignorieren
+Index Attributes==Indexattribute
+Indexing==Indexierung
+Load Filter on IPs==Ladefilter auf IPs
+Load Filter on URL origin of links==Ladefilter auf URL-Ursprung von Links
+Load Filter on URLs==Ladefilter auf URLs
+No Deletion==Kein Löschen
+No Indexing when Canonical present and Canonical != URL==Keine Indexierung, wenn Canonical vorhanden ist und Canonical != URL
+Re-load==Neu laden
+Scraping Fields==Scraping-Felder
+Start Point==Startpunkt
+Time Zone Offset==Zeitzonen-Offset
+Use==Verwenden
+Use all words in document by default until a CSS class as listed below appears; then ignore all==Standardmäßig alle Wörter im Dokument verwenden, bis eine unten aufgeführte CSS-Klasse erscheint; dann alle ignorieren
+Vocabulary==Vokabular
+You can choose to:==Sie können wählen:
+ago as stale and delete them before the crawl is started.==zuvor geladen wurden als veraltet behandeln und vor dem Start des Crawls löschen.
+ago as stale and load them again. If they are younger, they are ignored.==zuvor geladen wurden als veraltet behandeln und erneut laden. Wenn sie jünger sind, werden sie ignoriert.
+comma-separated list of <div> or <nav> element class names which should be filtered out/in according to switch above.==Kommagetrennte Liste von <div>- oder <nav>-Klassennamen, die entsprechend dem obigen Schalter heraus- oder hineingefiltert werden sollen.
+must-match==muss zutreffen
+must-not-match==darf nicht zutreffen
+that must match with the document Media Type (also known as MIME Type) to allow the URL to be indexed.==der mit dem Dokument-Medientyp (auch MIME-Type) übereinstimmen muss, damit die URL indexiert werden darf.
#File: CrawlStartScanner_p.html
#---------------------------
Network Scanner==Netzwerk Scanner
YaCy can scan a network segment for available http, ftp and smb server.==YaCy kann ein Netzwerksegment auf verfügbare HTTP, FTP und SMB Server hin absuchen.
You must first select a IP range and then, after this range is scanned,==Sie müssen zuerst einen IP Bereich festlegen und dann, nachdem dieser Bereich gescannt wurde,
it is possible to select servers that had been found for a full-site crawl.==ist es möglich einen gefunden Server für eine volle Seiten Suche crawlen zu lassen.
-No servers had been detected in the given IP range==Es wurde kein Server im angegebenen IP Bereich gefunden
-Please enter a different IP range for another scan.==Bitte geben Sie einen anderen IP Bereich ein für einen weiteren Scan.
-Please wait...==Bitte warten...
->Scan the network<==>Das Netzwerk Scannen<
Scan Range==Scan Bereich
Scan sub-range with given host==Scanne Unterbereich vom angegebenen Host aus
-Full Intranet Scan:==Voller Intranet Scan:
Do not use intranet scan results, you are not in an intranet environment!==Verwenden Sie nicht die Intranet Scan Resultate, da sie sich nicht in einer Intranet Umgebung befinden!
All known hosts in the search index (/31 subnet recommended!)==Alle bekannten Hosts im Suchindex (/31 Subnetz empfohlen!)
-only the given host(s)==Nur den/die angegebenen Host(s)
-addresses)==Addressen)
-Subnet<==Subnetz<
-Time-Out<==Timeout<
-#>Scan Cache<==>Scan Cache<
accumulate scan results with access type "granted" into scan cache (do not delete old scan result)==Sammle Scan Ergebnisse mit dem Zugriffstyp "granted" im Scan Cache (Lösche keine alten Scan Ergebnisse)
->Service Type<==>Service Typ<
-#>ftp==>FTP
-#>smb==>SMB
-#>http==>HTTP
-#>https==>HTTPS
->Scheduler<==>Scan Planung<
run only a scan==Nur einmalig Scannen
scan and add all sites with granted access automatically. This disables the scan cache accumulation.==Scannen und alle Webseiten mit erlaubtem Zugriff automatisch hinzufügen. Diese Einstellungen deaktiviert die Scan Cache Ansammlung.
-Look every==Überprüfe alle
->minutes<==>Minuten<
->hours<==>Stunden<
->days<==>Tage<
again and add new sites automatically to indexer.==wieder und füge neue Seiten automatisch zum Indexer hinzu.
Sites that do not appear during a scheduled scan period will be excluded from search results.==Seiten die nicht im Laufe eines geplanten Scans auftauchen werden von den Suchergebnissen ausgeschlossen.
"Scan"=="Scannen"
-#-----------------------------
-
+Scheduler==Zeitplaner
+days==Tage
+ftp==ftp
+hours==Stunden
+http==http
+https==https
+minutes==Minuten
+smb==smb
+ Look every== Prüfe alle
+/16 (65024 addresses)==/16 (65024 Adressen)
+/20 (4064 addresses)==/20 (4064 Adressen)
+/24 (254 addresses)==/24 (254 Adressen)
+/31 (only the given host(s))==/31 (nur die angegebenen Hosts)
+Scan Cache==Scan-Cache
+Scan the network==Netzwerk scannen
+Service Type==Diensttyp
+ms==ms
+#-----------------------------
+
+Subnet==Subnetz
+Time-Out==Timeout
#File: CrawlStartSite.html
#---------------------------
->Site Crawling<==>Seiten Crawlen<
Site Crawler:==Seiten Crawler:
Download all web pages from a given domain or base URL.==Downloaden aller Webseiten von einer gegebenen Domain oder Basis URL.
->Site Crawl Start<==>Seiten Crawl Start<
->Site<==>Seite<
-Start URL (must start with==Start URL (muss mit ... beginnen
Link-List of URL==Link Liste der URL
-#>Scheduler<==>Zeitplanung<
-#run this crawl once==führe diesen Crawl nur einmalig aus
-#scheduled, look every==geplant, überprüfe alle
-#>minutes<==>Minuten<
-#>hours<==>Stunden<
-#>days<==>Tage<
-#for new documents automatically.==automatisch auf neue Dokument.
->Path<==>Pfad<
load all files in domain==Lade alle Dateien in der Domäne
load only files in a sub-path of given url==Lade nur Dateien in einem Unterpfad der angegebenen URL
->Limitation<==>Einschränkungen<
-not more than <==nicht mehr als <
->documents<==>Dokumente<
-#>Dynamic URLs<==>Dynamische URLs<
-#allow <==erlaube <
-#urls with a '?' in the path==URLs mit einem '?' im Pfad
-Collection<==Kollektion<
-#>Start<==>Start<
"Start New Crawl"=="Starte neuen Crawl"
-Hints<==Hinweise<
->Crawl Speed Limitation<==>Einschränkung der Crawl Geschwindigkeit<
-No more that two pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.==Es werden nicht mehr als 2 Seiten pro Sekunde vom selben Host geladen (nicht mehr als 120 Dokumente per Minute), um die Last auf den Zielserver zu minimieren.
->Target Balancer<==>Ziel Balancer<
A second crawl for a different host increases the throughput to a maximum of 240 documents per minute since the crawler balances the load over all hosts.==Ein zweiter Crawl für einen anderen Host erhöht den Durchsatz auf ein Maximum von 240 Dokumenten pro Minute weil der der Crawler Balancer die Last über alle Hosts verteilt.
->High Speed Crawling<==>Hochgeschwindigkeits Crawlen<
A 'shallow crawl' which is not limited to a single host (or site)==Ein 'oberflächlicher Crawl' der nicht auf einen einzelnen Host (oder eine Seite) limitiert ist
can extend the pages per minute (ppm) rate to unlimited documents per minute when the number of target hosts is high.==kann die Anzahl der Seiten pro Minute (ppm) auf unendlich viele Dokumente pro Minute erweitern wenn die Anzahl der Ziel Hosts hoch ist.
-This can be done using the Expert Crawl Start servlet.==Das kann erreicht werden durch Verwendung des Crawl Start (Expert) Servlets.
->Scheduler Steering<==>Geplante Steuerung<
-The scheduler on crawls can be changed or removed using Automation.==Die geplante Ausführung von Crawls kann geändert oder entfernt werden mit Automatisierung.
-#-----------------------------
-
+"Show all links"=="Alle Links anzeigen"
+"empty"=="leer"
+Collection==Collection
+Path==Verzeichnis
+Crawl Speed Limitation==Crawl-Geschwindigkeitsbegrenzung
+High Speed Crawling==Hochgeschwindigkeits-Crawling
+Hints==Hinweise
+Limitation==Begrenzung
+No more that four pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.==Um die Last auf dem Zielserver zu begrenzen, werden nicht mehr als vier Seiten vom selben Host in einer Sekunde geladen (nicht mehr als 120 Dokumente pro Minute).
+Scheduler Steering==Scheduler-Steuerung
+Site==Site
+Start==Start
+Target Balancer==Ziel-Balancer
+documents==Dokumente
+#-----------------------------
+
+Site Crawl Start==Site-Crawl starten
+Site Crawling==Site-Crawling
+Sitemap URL==Sitemap-URL
+not more than==nicht mehr als
+Start URL (must start with http:// https:// ftp:// smb:// file://)==Start-URL (muss beginnen mit http:// https:// ftp:// smb:// file://)
#File: Help.html
#---------------------------
-#YaCy: Help==YaCy: Hilfe
YaCy: Tutorial==YaCy: Anleitung
-You are using the administration interface of your own search engine==Sie benutzen gerade das Administrationsinterface ihrer eigenen Suchmaschine
-You can create your own search index with YaCy==Sie können mit YaCy Ihren eigenen Suchindex erstellen
-To learn how to do that, watch one of the demonstration videos below==Bitte sehen Sie als Anleitung eine Demonstration (2. Video unten in deutscher Sprache)
twitter this video==Video twittern
-Download from Vimeo==Von Vimeo herunterladen
More Tutorials==Mehr Tutorials
-Please see the tutorials on==Bitte besuchen Sie auch die Anleitungen auf
+To learn how to do that, watch one of the demonstration videos below:==Um zu lernen, wie das geht, sehen Sie sich eines der Demonstrationsvideos unten an:
+You are using the administration interface of your own search engine. You can create your own search index with YaCy.==Sie verwenden die Administrationsoberfläche Ihrer eigenen Suchmaschine. Mit YaCy können Sie Ihren eigenen Suchindex erstellen.
#-----------------------------
+Tutorial==Tutorial
#File: IndexBrowser_p.html
#---------------------------
-#Index Browser==Index Browser
-Browse the index of #[ucount]# documents.==Durchsuchen Sie den Index von #[ucount]# Dokumenten.
-Enter a host or an URL for a file list or view a list of==Geben Sie einen Host oder eine URL an, um eine Liste mit Dateien zu bekommen. Oder sehen Sie eine Liste mit
->all hosts<==>allen Hosts<
->only hosts with urls pending in the crawler<==>nur Hosts mit wartenden URLs im Crawler<
-> or <==> oder <
->only with load errors<==>nur Ladefehlern<
-#Host/URL:==Host/URL:
-"Browse Host"=="Host Durchsuchen"
"Delete Subpath"=="Teilpfad Löschen"
-Confirm Deletion==Löschen Bestätigen
->Host List<==>Host Liste<
Count Colors:==Legende der farbigen Zahlen:
Documents without Errors==Dokumente ohne Fehler
Pending in Crawler==Warten im Crawler
-Crawler Excludes<==Crawler Ausnahmen<
-Load Errors<==Ladefehler<
-#Load Errors (exclusion/failure)==Ladefehler (Ausschluss/Fehler)
-#Browser for #[path]#==Browser für #[path]#
-documents stored for host: #[hostsize]#==Gespeicherte Dokumente für Host: #[hostsize]#
-documents stored for subpath: #[subpathloadsize]#==Gespeicherte Dokumente für Teilpfad: #[subpathloadsize]#
-unloaded documents detected in subpath: #[subpathdetectedsize]#==Entladene Dokumente erkannt im Teilpfad: #[subpathdetectedsize]#
->Path<==>Pfad<
->stored<==>gespeichert<
->linked<==>verlinkt<
->pending<==>wartend<
->excluded<==>ausgeschlossen<
->failed<==>fehlgeschlagen<
-Show Metadata==Metadaten anzeigen
link, detected from context==Link, erkannt aus Kontext
load & index==Laden & Indexieren
->indexed<==>indexiert<
->loading<==>ladend<
-Outbound Links, outgoing from #[host]# - Host List==Ausgehende Links, ausgehend von #[host]# - Host Liste
-Inbound Links, incoming to #[host]# - Host List==Eingehende Links, eingehend auf #[host]# - Host Liste
-#browse #[host]#==Durchsuche #[host]#
-##[count]# URLs==#[count]# URL(s)
-#Administration Options==Administration Optionen
-==
-Administration Options==Administrator Optionen
+Administration Options==Administrationsoptionen
Delete all==Lösche alle
->Load Errors<==>Ladefehler<
from index==vom Index
"Delete Load Errors"=="Lösche alle Ladefehler"
-#-----------------------------
-
+Metadata==Metadaten
+Path==Verzeichnis
+URLs==URLs
+indexed==indexiert
+Host List==Host-Liste
+"Directory"=="Verzeichnis"
+Add to blacklist==Zur Blacklist hinzufügen
+Crawler Excludes==Crawler-Ausschlüsse
+Host Analysis==Host-Analyse
+Load Errors==Ladefehler
+excluded==ausgeschlossen
+failed==fehlgeschlagen
+linked==verlinkt
+loading==wird geladen
+pending==ausstehend
+stored==gespeichert
+#-----------------------------
+
+Browse Host==Host durchsuchen
+Host/URL==Host/URL
+Index Browser==Index-Browser
+"Re-load load-failure docs (404s etc)"=="Dokumente mit Ladefehlern neu laden (404 usw.)"
#File: index.html
#---------------------------
-==
-YaCy '#[clientname]#': Search Page==YaCy '#[clientname]#': Suchseite
-#kiosk mode==Kiosk Modus
-"Search"=="Suchen"
-#Text==Text
Images==Bilder
-#Audio==Audio
Video==Videos
Applications==Anwendungen
more options...==mehr Optionen...
-#advanced parameters==erweiterte Parameter
-#Max. number of results==Max. Anzahl der Ergebnisse
Results per page==Ergebnisse pro Seite
Resource==Quelle
-global==global
-#>local==>lokal
-#Global search is disabled because==Die globale Suche ist deaktiviert, denn
-#DHT Distribution is==die DHT-Verteilung ist
-#Index Receive is==der Index-Empfang ist
-#DHT Distribution and Index Receive are==DHT-Verteilung und Index-Empfang sind
-#disabled.#(==deaktiviert.#(
-#URL mask==URL-Filter
restrict on==beschränken auf
show all==alle zeigen
#überarbeiten!!!
Prefer mask==Vorzugsmaske
-Constraints==Einschränkungen
only index pages==Nur Index-Seiten
-#"authentication required"=="Autorisierung erforderlich"
-#Disable search function for users without authorization==Suchfunktion für Benutzer ohne Autorisierung sperren
-#Enable web search to everyone==Suchfunktion für alle Nutzer erlauben
the peer-to-peer network==Peer-to-Peer-Netzwerk
only the local index==Nur lokaler Index
Query Operators==Such-Operatoren
restrictions==Restriktionen
only urls with the <phrase> in the url==Nur URLs, welche <phrase> enthalten
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-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
-they are rare==eher selten
-crawl them yourself==crawlen Sie sie selbst
-only resources from smb servers==Nur Ressourcen von SMB-Servern
-Intranet Indexing must be selected==Intranet-Indexierung muss ausgewählt sein
-only files from a local file system==Nur Dateien aus dem lokalen Dateisystem
ranking modifier==Ranking-Modifizierung
-sort by date==Sortierung nach Datum
-latest first==Neuste zuerst
multiple words shall appear near==Mehrere Wörter sollen nah zusammen stehen
-doublequotes==Anführungszeichen
-prefer given language==Angegebene Sprache bevorzugen
-an ISO 639-1 2-letter code==2-Buchstaben-Ländercode nach ISO 639-1
heuristics==Heuristiken
add search results from external opensearch systems==Benutze zusätzliche Ergebnisse von externen Opensearchsystemen
Search Navigation==Such-Navigation
@@ -1466,22 +1463,56 @@ automatic result retrieval==Automatische Ergebnis-Abfrage
browser integration==Browserintegration
after searching, click-open on the default search engine in the upper right search field of your browser and select 'Add "YaCy Search.."'==Nach der Suche clicken Sie auf das Suchfeld Ihres Browsers und wählen Sie '"YaCy" hinzufügen'
search as rss feed==Suche als RSS-Feed
-click on the red icon in the upper right after a search. this works good in combination with the==Klicken Sie nach der Suche auf das rote Icon in der rechten oberen Ecke. Dies funktioniert gut mit dem
-See an==siehe
->example==>Beispiel
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'
+Constraints:==Einschränkungen:
+only urls with extension <ext>==nur URLs mit der Erweiterung <ext>
+only urls from host <host>==nur URLs vom Host <host>
+only pages with as-author-annotated <author>==nur Seiten mit als Autor annotiertem <author>
+only pages from top-level-domains <tld>==nur Seiten von Top-Level-Domains <tld>
+only pages with <date> in content==nur Seiten mit <date> im Inhalt
+only pages with a date between <date1> and <date2> in content==nur Seiten mit einem Datum zwischen <date1> und <date2> im Inhalt
+only pages with keyword anotation containing <phrase>==nur Seiten mit einer Schlagwort-Annotation, die <phrase> enthält
+only documents having location metadata (geographical coordinates)==nur Dokumente mit Standortmetadaten (geografische Koordinaten)
+only documents within a square zone embracing a circle of given radius (in decimal degrees) around the specified latitude and longitude (in decimal degrees)==nur Dokumente innerhalb einer quadratischen Zone um einen Kreis mit angegebenem Radius (in Dezimalgrad) um die angegebene Breite und Länge (in Dezimalgrad)
+sort by date (latest first)==nach Datum sortieren (neueste zuerst)
+"" (doublequotes)=="" (doppelte Anführungszeichen)
+/language/<lang>==/language/<sprache>
+Text==Text
+Audio==Audio
+spatial restrictions==räumliche Einschränkungen
+"Extend media search results (images, videos or applications specific) to pages including such medias (provides generally more results, but eventually less relevant)."=="Mediensuchergebnisse (bild-, video- oder anwendungsspezifisch) auf Seiten erweitern, die solche Medien enthalten (liefert generell mehr Ergebnisse, aber eventuell weniger relevante)."
+"Reference alpha-2 language codes list"=="Referenzliste der Alpha-2-Sprachcodes"
+"Strictly limit media search results (images, videos or applications specific) to indexed documents matching exactly the desired content domain."=="Mediensuchergebnisse (bild-, video- oder anwendungsspezifisch) strikt auf indexierte Dokumente beschränken, die exakt zur gewünschten Inhaltsdomäne passen."
+/date==/date
+/file==/file
+/ftp==/ftp
+/heuristic==/heuristic
+/http==/http
+/location==/location
+/near==/near
+/radius/<latitude>/<longitude>/<distance>==/radius/<Breitengrad>/<Längengrad>/<Entfernung>
+/smb==/smb
+Extended==Erweitert
+Media search==Mediensuche
+Search==Suchen
+Strict==Strikt
+author:<author>==author:<Autor>
+filetype:<ext>==filetype:<Erweiterung>
+from:<date1> to:<date2>==from:<Datum1> to:<Datum2>
+inlink:<phrase>==inlink:<Phrase>
+inurl:<phrase>==inurl:<Phrase>
+keyword:<phrase>==keyword:<Phrase>
+on:<date>==on:<Datum>
+site:<host>==site:<Host>
+tld:<tld>==tld:<TLD>
#-----------------------------
#File: IndexControlRWIs_p.html
#---------------------------
Reverse Word Index Administration==Reverse Wort Indexverwaltung
-The local index currently contains #[wcount]# reverse word indexes==Der lokale Index enthält im Moment #[wcount]# inverse Wort Indexe
RWI Retrieval (= search for a single word)==RWI Abfrage (= Suche nach einem einzelnen Wort)
-#Select Segment:==Segment Auswahl:
-Retrieve by Word:<==Abfrage nach Wort:<
"Show URL Entries for Word"=="URL Einträge für Wort zeigen"
-Retrieve by Word-Hash==Abfrage nach Wort-Hash
"Show URL Entries for Word-Hash"=="URL Einträge für Wort-Hash zeigen"
"Generate List"=="Liste erstellen"
Limitations==Einschränkungen
@@ -1489,68 +1520,16 @@ Index Reference Size==Index Referenzgröße
No reference size limitation (this may cause strong CPU load when words are searched that appear very often)==Kein Referenzgrößen Limit (Dies kann sehr hohe CPU Auslastung erzeigen wenn Wörter gesucht werden die sehr häufig vorkommen)
Limitation of number of references per word:==Limitierung der Anzahl der Referenzen pro Wort:
(this causes that old references are deleted if that limit is reached)==(sorgt dafür dass alte References gelöscht werden wenn das Limit erreicht ist)
->Set References Limit<==>Setze das Referenz Limit<
-#Cleanup==Aufräumen
-#>Index Deletion<==>Index Löschung<
-#>Delete Search Index<==>Lösche Suchindex<
-#Stop Crawler and delete Crawl Queues==Crawler anhalten und Crawler Warteschlangen löschen
-#Delete HTTP & FTP Cache==Lösche HTTP & FTP Cache
-#Delete robots.txt Cache==Lösche robots.txt Cache
-#Delete cached snippet-fetching failures during search==Lösche gecachte Snippet-Holen Fehler während der Suche
-#"Delete"=="Löschen"
-No entry for word '#[word]#'==Keinen Eintrag zu Wort '#[word]#'
-No entry for word hash==Keinen Eintrag zu Wort-Hash
-Search result==Suchergebnis
-total URLs==insgesamte URLs
-appearance in==kommt vor in
-in link type==im Link-Typ
-document type==Dokumenten-Typ
-
description
==
Beschreibung
-
title
==
Titel
-
creator
==
Erzeuger
-
subject
==
Thema
-
url
==
URL
-
emphasized
==
betont
-
image
==
Bilder
-
audio
==
Audio
-
video
==
Video
-
app
==
Anwendung
-index of==Index of
->Selection==>Auswahl
Display URL List==Anzeige der URL-Liste
-Number of lines==Zeilenanzahl
all lines==alle Zeilen
"List Selected URLs"=="Ausgewählte URLs anzeigen"
Transfer RWI to other Peer==RWI Transfer an anderen Peer
-Transfer by Word-Hash==Transfer per Wort-Hash
"Transfer to other peer"=="An anderen Peer senden"
-to Peer==an Peer
-
select==
auswählen
-or enter a hash==oder Hash eingeben
-Sequential List of Word-Hashes==aufeinanderfolgende Liste der URL-Hashes
No URL entries related to this word hash==Keine URL Einträge zugehörig zu diesem Wort Hash
->#[count]# URL entries related to this word hash==>#[count]# URL Einträge zugehörig zu diesem Wort Hash
-Resource==Ressource
Negative Ranking Factors==Negative Ranking Faktoren
Positive Ranking Factors==Positive Ranking Faktoren
Reverse Normalized Weighted Ranking Sum==Inverse normalisierte gewichtete Ranking Summe
-hash==Hash
-dom length==Domain Länge
-#ybr==YBR
#url comps
-url length==URL Länge
-pos in text==Pos. im Text
-pos of phrase==Pos. des Satzes
-pos in phrase==Pos. im Satz
-word distance==Wort Distanz
-
authority
==
Autorität
-
date
==
Datum
-words in title==Wörter im Titel
-words in text==Wörter im Text
-local links==lokale Links
-remote links==remote Links
-hitcount==Trefferzahl
-#props==
unresolved URL Hash==ungelöster URL-Hash
Word Deletion==Wort Löschung
Deletion of selected URLs==Löschung von selektierten URLs
@@ -1565,17 +1544,54 @@ Blacklist Extension==Blacklist Erweiterung
"Add selected domains to blacklist"=="Markierte Domains zu Blacklist hinzufügen"
#-----------------------------
+Number of lines:==Zeilenanzahl:
+Resource==Ressource
+Retrieve by Word-Hash:==Abfrage nach Wort-Hash:
+Retrieve by Word:==Abfrage nach Wort:
+Search result:==Suchergebnis:
+Selection==Auswahl
+Sequential List of Word-Hashes:==Aufeinanderfolgende Liste der Wort-Hashes:
+Set References Limit==Referenzlimit setzen
+Transfer by Word-Hash:==Transfer per Wort-Hash:
+app==Anwendung
+appearance in==kommt vor in
+audio==Audio
+authority==Autorität
+creator==Erzeuger
+date==Datum
+description==Beschreibung
+document type==Dokumenttyp
+dom length==Domain-Länge
+emphasized==betont
+hash==Hash
+hitcount==Trefferzahl
+image==Bild
+in link type==im Linktyp
+index of==Index von
+local links==lokale Links
+or enter a hash or peer name:==oder Hash oder Peer-Name eingeben:
+pos in phrase==Pos. im Ausdruck
+pos in text==Pos. im Text
+pos of phrase==Pos. des Ausdrucks
+props==Eigenschaften
+remote links==Remote-Links
+select==auswählen
+subject==Thema
+term frequency==Termfrequenz
+title==Titel
+to Peer:==an Peer:
+total URLs==URLs gesamt
+url==URL
+url comps==URL-Komponenten
+url length==URL-Länge
+video==Video
+words in text==Wörter im Text
+words in title==Wörter im Titel
#File: IndexControlURLs_p.html
#---------------------------
-#URL References Administration==URL Referenzen Administration
-The local index currently contains #[ucount]# URL references==Der lokale Index enthält im Moment #[ucount]# URL-Referenzen
URL Retrieval==URL Abfrage
-#Select Segment:==Segment Auswahl:
-Retrieve by URL:<==Abfrage nach URL:<
"Show Details for URL"=="Details für URL zeigen"
-Retrieve by URL-Hash==Abfrage nach URL-Hash
"Show Details for URL-Hash"=="Details für URL-Hash zeigen"
-#"Generate List"=="Liste erstellen"
Cleanup==Aufräumen
Index Deletion==Löschen des Index
Delete local search index (embedded Solr and old Metadata)==Lösche den lokalen Suchindex (Embedded Solr und alte Metadaten)
@@ -1585,98 +1601,61 @@ Delete Citation Index (linking between URLs)==Lösche Citation Index (Verlinkung
Delete HTTP & FTP Cache==Lösche HTTP & FTP Cache
Stop Crawler and delete Crawl Queues==Stoppe Crawler und lösche Crawl Queues
Delete robots.txt Cache==Lösche robots.txt Cache
-Delete cached snippet-fetching failures during search==Lösche gecachte snippet-fetching Fehler während der Suche
"Delete"=="Löschen"
Statistics about top-domains in URL Database==Statistik über die Top-Domains in der URL Datenbank
Show top==Zeige die
domains from all URLs.==Top-Domains aus allen URLs.
"Generate Statistics"=="Statistik erstellen"
-Dump and Restore of Solr Index==Dump und Wiederherstellen des Solr Index
-Dump File==Dump Datei
-"Create Dump"=="Erstelle Dump"
-"Restore Dump"=="Stelle Dump wieder her"
Optimize Solr==Optimiere Solr
-merge to max. <==Merge mit max. <
-> segments==> Segmenten
Reboot Solr Core==Starte Solr Core neu
"Shut Down and Re-Start Solr"=="Fahre Solr herunter und Neustart"
-Statistics about the top-#[domains]# domains in the database:==Statistik über die Top-#[domains]# Domains in der Datenbank:
"delete all"=="Alle Löschen"
-#Domain==Domain
-#URLs==URLs
-#Sequential List of URL-Hashes==Sequentielle Liste der URL-Hashes
-Loaded URL Export==Export geladener URLs
-Export File==Export-Datei
-#URL Filter==URL Filter
-#Export Format==Export Format
-#Only Domain (superfast)==Nur Domains (sehr schnell)
-Only Domain:==Liste mit nur Domainnamen:
-Full URL List:==Liste mit vollständiger URL:
-Plain Text List (domains only)==Einfache Text Liste (nur Domains)
-HTML (domains as URLs, no title)==HTML (Domains als URLs, kein Titel)
-#Full URL List (high IO)==Vollständige URL Liste (hoher IO)
-Plain Text List (URLs only)==Einfache Text Liste (nur URLs)
-HTML (URLs with title)==HTML (URLs mit Titel)
-#XML (RSS)==XML (RSS)
-"Export URLs"=="URLs exportieren"
-Export to file #[exportfile]# is running .. #[urlcount]# URLs so far==Export nach Datei #[exportfile]# läuft .. #[urlcount]# URLs bisher
-Finished export of #[urlcount]# URLs to file==Export beendet und #[urlcount]# URLs gespeichert in Datei
-Export to file #[exportfile]# failed:==Export in Datei #[exportfile]# fehlgeschlagen:
-No entry found for URL-hash==Keinen Eintrag gefunden für URL-Hash
-#URL String==URL Adresse
-#Hash==Hash
-#Description==Beschreibung
-#Modified-Date==Änderungsdatum
-#Loaded-Date==Ladedatum
-#Referrer==Referrer
-#Doctype==Dokumententyp
-#Language==Sprache
-#Size==Größe
-#Words==Wörter
"Show Content"=="Inhalt anzeigen"
"Delete URL"=="URL löschen"
this may produce unresolved references at other word indexes but they do not harm==dies mag ungelöste Referenzen an anderen Wort Indizes erzeugen, aber es richtet keinen Schaden an
"Delete URL and remove all references from words"=="URL löschen und alle Referenzen zu Wörtern entfernen"
delete the reference to this url at every other word where the reference exists (very extensive, but prevents unresolved references)==löscht die Referenz zu dieser URL und jedem anderen Wort, wo die Referenz existiert (sehr umfassend, aber bewahrt vor ungelösten Referenzen)
-#-----------------------------
-
+"API"=="API"
+Delete First-Seen Date Table==First-Seen-Datumstabelle löschen
+Retrieve by URL-Hash:==Abrufen nach URL-Hash:
+Retrieve by URL:==Abrufen nach URL:
+This feature is available when using exclusively a local embedded Solr.==Diese Funktion ist verfügbar, wenn ausschließlich ein lokal eingebettetes Solr verwendet wird.
+merge to max.==auf max. zusammenführen
+segments==Segmente
+#-----------------------------
+
+Click the API icon to see an example call to the search rss API.==Klicken Sie auf das API-Symbol, um einen Beispielaufruf der Such-RSS-API zu sehen.
+Domain==Domain
+URL Database Administration==URL-Datenbankadministration
+URLs==URLs
+"Optimize Solr"=="Solr optimieren"
#File: IndexCreateLoaderQueue_p.html
#---------------------------
Loader Queue==Lade-Puffer
The loader set is empty==Der Lade-Puffer ist leer.
-There are #[num]# entries in the loader set:==Es befinden sich #[num]# Einträge in dem Lade-Puffer:
Initiator==Initiator
Depth==Tiefe
-#URL==URL
#-----------------------------
+Status==Status
+URL==URL
#File: IndexCreateParserErrors_p.html
#---------------------------
-Parser Errors==Parser Fehler
-Rejected URL List:==Liste der zurückgewiesenen URLs:
-There are #[num]# entries in the rejected-urls list.==Es befinden sich #[num]# Einträge in Liste der zurückgewiesenen URLs.
-Showing latest #[num]# entries.==Es werden die letzten #[num]# Einträge angezeigt.
"show more"=="Mehr anzeigen"
"clear list"=="Liste löschen"
-There are #[num]# entries in the rejected-queue:==Es befinden sich #[num]# Einträge in der zurückgewiesenen URL Liste:
-#Initiator==Initiator
-#Executor==Ausführender
-#URL==URL
Fail-Reason==Fehlermeldung
#-----------------------------
+Rejected URLs==Abgewiesene URLs
+Time==Zeit
+URL==URL
#File: IndexExport_p.html
#---------------------------
-#URL Database Administration==URL Database Administration
#Index Export
-The local index currently contains #[ucount]# documents.==Der lokale Index enthält im Moment #[ucount]# Dokumente.
Loaded URL Export==Export geladener URLs
-Export File==Export-Datei
#URL Filter
#>query<
#Export Format
-Full Data Records:==Komplette Datensätze
-(Rich and full-text Solr data, one document per line in one large xml file, can be processed with shell tools, can be imported with DATA/PACKS/load/)==(vollständige Solr Daten, ein Dokument pro Zeile in einer grossen xml Datei, kann mit Kommandozeilentools bearbeitet werden, kann aus DATA/PACKS/load/ importiert werden)
#> XML (RSS)<
Full URL List:==Liste mit vollständiger URL:
Plain Text List (URLs only)==Einfache Text Liste (nur URLs)
@@ -1684,20 +1663,24 @@ HTML (URLs with title)==HTML (URLs mit Titel)
Only Domain:==Liste mit nur Domainnamen:
Plain Text List (domains only)==Einfache Text Liste (nur Domains)
HTML (domains as URLs, no title)==HTML (Domains als URLs, kein Titel)
->Only Text:==>Nur Text:
Fulltext of Search Index Text==Voller Text der Indexdokumente
#"Export"
-Export to file #[exportfile]# is running .. #[urlcount]# Documents so far==Export nach Datei #[exportfile]# läuft .. #[urlcount]# Dokumente bisher
-Finished export of #[urlcount]# Documents to file==Export beendet und #[urlcount]# Dokumente gespeichert in Datei
Import this file by moving it to DATA/PACKS/load==Verschiebe diese Datei nach DATA/PACKS/load um sie zu importieren
-Export to file #[exportfile]# failed:==Export in Datei #[exportfile]# fehlgeschlagen:
-Dump and Restore of Solr Index==Dump und Wiederherstellen des Solr Index
-"Create Dump"=="Erstelle Dump"
-Dump File==Dump Datei
-"Restore Dump"=="Stelle Dump wieder her"
-Stored a solr dump to file==Solr Dump gespeichert in Datei
-#-----------------------------
-
+Export Format==Export-Format
+Index Export==Index-Export
+URL Filter==URL-Filter
+Export Path==Exportpfad
+Export Size==Exportgröße
+Only Text:==Nur Text:
+full size, all fields:==volle Größe, alle Felder:
+if exceeded: several chunks are stored; -1 = unlimited (makes only one chunk)==wenn überschritten: mehrere Chunks werden gespeichert; -1 = unbegrenzt (erzeugt nur einen Chunk)
+maximum age (seconds)==maximales Alter (Sekunden)
+maximum number of records per chunk==maximale Anzahl Datensätze pro Chunk
+minified; only fields sku, date, title, description, text_t==minifiziert; nur die Felder sku, date, title, description, text_t
+query==Abfrage
+#-----------------------------
+
+"Export"=="Exportieren"
#File: ContentIntegrationPHPBB3_p.html
#---------------------------
Content Integration: Retrieval from phpBB3 Databases==Integration von Inhalt: Import aus phpBB3 Datenbanken
@@ -1705,110 +1688,102 @@ It is possible to extract texts directly from mySQL and postgreSQL databases.==E
Each extraction is specific to the data that is hosted in the database.==Jeder Vorgang extrahiert genau die Datensätze die in der Datenbank gehostet werden.
This interface gives you access to the phpBB3 forums software content.==Dieses Interface erlaubt den Zugriff auf die Inhalte der phpBB3 Forum Software.
If you read from an imported database, here are some hints to get around problems when importing dumps in phpMyAdmin:==Wenn aus einer importierten Datenbank gelesen werden soll sind hier einige Hinweise, um Probleme zu vermeiden wenn Datenbankdumps in phpMyAdmin importiert werden.
-before importing large database dumps, set==Bevor große Datenbankdumps importiert werden die folgende Zeile
-in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB)==in die Datei phpmyadmin/config.inc.php schreiben und die Datenbank Datei in /tmp ablegen (Andernfalls ist es nicht möglich Dateien größer als 2MB hochzuladen)
deselect the partial import flag==Den teilweisen Import Flag abschalten
When an export is started, pack files are generated into DATA/PACKS/load which are automatically fetched by an indexer thread.==Wenn ein Export gestartet wird werden Hilfsdateien in DATA/PACKS/load erzeugt, die automatisch von einem Indexer Thread geholt und verarbeitet werden.
All indexed pack files are then moved to DATA/PACKS/loaded and can be re-cycled when an index is deleted.==Alle indexierten Hilfsdateien werden dann nach DATA/PACKS/loaded verschoben und können recycelt werden wenn ein Index gelöscht wird.
-The URL stub==Der Teil der URL
-like https://community.searchlab.eu==wie z.B. https://community.searchlab.eu
-this must be the path right in front of '/viewtopic.php?'==dies muss den kompletten Pfad vor '/viewtopic.php?' enthalten
-Type==Typ
-> of database<==> der Datenbank<
-use either 'mysql' or 'pgsql'==Verwende entweder 'mysql' oder 'pgsql'
-Host==Hostname
-> of the database<==> der Datenbank<
-of database service==des Datenbank Dienstes
-usually 3306 for mySQL==normalerweise 3306 für MySQL
-Name of the database==Name der Datenbank
-on the host==auf dem Host
-Table prefix string==Tabellen Präfix
-for table names==für Tabellennamen
-User==Benutzer
-that can access the database==mit Zugriff auf die Datenbank
-Password==Passwort
-for the account of that user given above==für den Zugang des oben angegebenen Benutzers
-Posts per file==Beiträge pro Datei
-in exported packs==in der exportierten Pack-Datei
-Check database connection==Datenbankverbindung überprüfen
-Export Content to Packs==Exportiere Inhalt in Pack-Dateien
-Import a database dump==Importieren eines Datenbankauszugs
-Import Dump==Datenbankdump importieren
Posts in database==Beiträge in Datenbank
first entry==Erster Eintrag
last entry==Letzter Eintrag
-Info failed:==Info Fehlgeschlagen:
-Export successful! Wrote #[files]# files in DATA/PACKS/load==Export erfolgreich! #[files]# Dateien in DATA/PACKS/load geschrieben
-Export failed:==Export fehlgeschlagen:
Import successful!==Import erfolgreich!
-Import failed:==Import fehlgeschlagen:
-#-----------------------------
-
+"Check database connection"=="Datenbankverbindung prüfen"
+"Export Content to Packs"=="Inhalt in Packs exportieren"
+"Import Dump"=="Dump importieren"
+Import a database dump,==Datenbank-Dump importieren,
+The URL stub, like http://forum.yacy-websuche.de this must be the path right in front of '/viewtopic.php?'==Der URL-Stub, wie http://forum.yacy-websuche.de dies muss der Pfad direkt vor '/viewtopic.php?' sein
+Type of database (use either 'mysql' or 'pgsql')==Typ der Datenbank (verwenden Sie entweder 'mysql' oder 'pgsql')
+before importing large database dumps, set the following Line in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB):==Setzen Sie vor dem Import großer Datenbank-Dumps die folgende Zeile in phpmyadmin/config.inc.php und legen Sie Ihre Dump-Datei in /tmp ab (andernfalls können keine Dateien größer als 2 MB hochgeladen werden):
+#-----------------------------
+
+Host of the database==Host der Datenbank
+Name of the database on the host==Name der Datenbank auf dem Host
+Password for the account of that user given above==Passwort für das Konto des oben angegebenen Benutzers
+Port of database service (usually 3306 for mySQL)==Port des Datenbankdienstes (normalerweise 3306 für mySQL)
+Posts per file in exported packs==Beiträge pro Datei in exportierten Paketen
+Table prefix string for table names==Tabellenpräfix für Tabellennamen
+User that can access the database==Benutzer, der auf die Datenbank zugreifen kann
#File: DictionaryLoader_p.html
#---------------------------
Knowledge Loader==Wissensdatenbank-Lader
YaCy can use external libraries to enable or enhance some functions. These libraries are not==YaCy kann externe Bibliotheken zum Erweitern oder Aktivieren bestimmter Funktionen verwenden. Diese Bibliotheken sind nicht
included in the main release of YaCy because they would increase the application file too much.==im Standard Release von YaCy enthalten weil diese die Anwendungsdatei zu stark vergrößern würden.
You can download additional files here.==Sie können zusätzliche Dateien hier herunterladen.
->Geolocalization<==>Geolokalisierung<
Geolocalization will enable YaCy to present locations from OpenStreetMap according to given search words.==Geolokalisierung erlaubt es YaCy bestimmte Orte auf OpenStreetMap zu bestimmten Suchbegriffen zu präsentieren.
->GeoNames<==>Geografische Namen<
With this file it is possible to find cities all over the world.==Mit dieser Datei ist es möglich Städte überall auf der Erde zu finden.
-Content<==Inhalt<
cities with a population > 1000 all over the world==Städte überall auf der Erde mit mehr als 1000 Einwohnern
cities with a population > 5000 all over the world==Städte überall auf der Erde mit mehr als 5000 Einwohnern
cities with a population > 100000 all over the world (the set is is reduced to cities > 100000)==Städte überall auf der Erde mit mehr als 100000 Einwohnern (Der Datensatz wurde auf Städte mit > 100000 Einwohnern reduziert)
->Download from<==>Download von<
->Storage location<==>Speicherort<
-#>Status<==>Status<
->not loaded<==>nicht geladen<
->loaded<==>geladen<
-:deactivated==:deaktiviert
->Action<==>Aktion<
->Result<==>Resultat<
"Load"=="Laden"
"Deactivate"=="Deaktivieren"
"Remove"=="Entfernen"
"Activate"=="Aktivieren"
->loaded and activated dictionary file<==>Wörterbuch Datei geladen und aktiviert<
->loading of dictionary file failed: #[error]#<==>Laden der Wörterbuch Datei ist fehlgeschlagen: #[error]#<
->deactivated and removed dictionary file<==>Wörterbuch Datei deaktiviert und entfernt<
->cannot remove dictionary file: #[error]#<==>Wörterbuch Datei kann nicht entfernt werden: #[error]#<
->deactivated dictionary file<==>Wörterbuch Datei deaktiviert<
->cannot deactivate dictionary file: #[error]#<==>Wörterbuch Datei kann nicht deaktiviert werden: #[error]#<
->activated dictionary file<==>Wörterbuch Datei aktiviert<
->cannot activate dictionary file: #[error]#<==>Wörterbuch Datei kann nicht aktiviert werden: #[error]#<
-#>OpenGeoDB<==>OpenGeoDB<
->With this file it is possible to find locations in Germany using the location (city) name, a zip code, a car sign or a telephone pre-dial number.<==>Mit dieser Datei ist es möglich, Orte in Deutschland anhand des (Stadt)Namens, der Postleitzahl, eines Autokennzeichens oder einer Telefonvorwahl zu finden.<
-Suggestions<==Eingabevorschläge<
Suggestion dictionaries will help YaCy to provide better suggestions during the input of search words==Wörterbücher mit Vorschlägen helfen YaCy bessere Suchtips bei der Eingabe von Suchworten anzuzeigen
This file provides 100000 most common german words for suggestions==Diese Datei stell die 100000 häufigsten deutschen Wörter für Suchvorschläge bereit
#-----------------------------
+Suggestions==Vorschläge
+Action==Aktion
+Activated==Aktiviert
+Content==Inhalt
+DeReWo - Korpusbasierte Grund-/Wortformenlisten (German) of 'Institut für Deutsche Sprache'==DeReWo - Korpusbasierte Grund-/Wortformenlisten (Deutsch) des 'Institut für Deutsche Sprache'
+Deactivated==Deaktiviert
+Download from==Herunterladen von
+Downloaded from==Heruntergeladen von
+GeoNames==GeoNames
+Geolocalization==Geolokalisierung
+Moby Lexicon - English Thesaurus from https://www.gutenberg.org/ebooks/3202==Moby Lexicon - englischer Thesaurus von https://www.gutenberg.org/ebooks/3202
+OpenGeoDB==OpenGeoDB
+OpenThesaurus - German Thesaurus from http://www.openthesaurus.de==OpenThesaurus - deutscher Thesaurus von http://www.openthesaurus.de
+Result==Ergebnis
+Russian Thesaurus==Russischer Thesaurus
+Status==Status
+Storage location==Speicherort
+Synonyms==Synonyme
+Synonyms are used to find not only the searched word but also their synonyms. This is done by adding all synonyms of words in documents to the document and searching the synonyms as well.==Synonyme werden verwendet, um nicht nur das gesuchte Wort, sondern auch seine Synonyme zu finden. Dazu werden alle Synonyme von Wörtern in Dokumenten zum Dokument hinzugefügt und ebenfalls durchsucht.
+The data from this source was converted to the YaCy synonym file format and part of the YaCy distribution.==Die Daten aus dieser Quelle wurden in das YaCy-Synonymdateiformat konvertiert und sind Teil der YaCy-Distribution.
+The data was converted to the YaCy synonym file format and part of the YaCy distribution.==Die Daten wurden in das YaCy-Synonymdateiformat konvertiert und sind Teil der YaCy-Distribution.
+With this file it is possible to find locations in Germany using the location (city) name, a zip code, a car sign or a telephone pre-dial number.==Mit dieser Datei können Orte in Deutschland über Ortsnamen, Postleitzahlen, Kfz-Kennzeichen oder Telefonvorwahlen gefunden werden.
+activated dictionary file==Wörterbuchdatei aktiviert
+deactivated==deaktiviert
+deactivated and removed dictionary file==Wörterbuchdatei deaktiviert und entfernt
+deactivated dictionary file==Wörterbuchdatei deaktiviert
+loaded==geladen
+loaded - can be upgraded using the Load button for the new URL==geladen - kann mit dem Laden-Button für die neue URL aktualisiert werden
+loaded and activated dictionary file==Wörterbuchdatei geladen und aktiviert
+loaded and upgraded dictionary file==Wörterbuchdatei geladen und aktualisiert
+not loaded==nicht geladen
#File: IndexCreateQueues_p.html
#---------------------------
-Crawl Queue<==Crawl-Puffer<
Click on this API button to see an XML with information about the crawler latency and other statistics.==Klick auf API Icon für statistische Kennwerte des Crawlers als XML.
This crawler queue is empty==Dieser Crawl-Puffer ist leer
Delete Entries:==Lösche Einträge:
"Delete"=="Löschen"
->Count<==>Anzahl<
->Initiator<==>Initiator<
->Profile<==>Profil<
->Depth<==>Tiefe<
Modified Date==Änderungsdatum
Anchor Name==Anker Name
+"API"=="API"
+URL==URL
#-----------------------------
+Count==Anzahl
+Delta/ms==Delta/ms
+Depth==Tiefe
+Host==Host
+Initiator==Initiator
+Profile==Profil
#File: IndexDeletion_p.html
#---------------------------
-Index Deletion<==Indexlöschung<
-The search index contains #[doccount]# documents. You can delete them here.==Der Suchindex enthält #[doccount]# Dokumenta. Diese können Sie hier löschen.
Deletions are made concurrently which can cause that recently deleted documents are not yet reflected in the document count.==Löschungen erfolgen nebenläufig was dazu führen kann, dass kürzlich gelöschte Dokumente noch nicht im Dokumentenzähler sichtbar sind.
-Delete by URL Matching<==Löschung durch URL Vergleich<
Delete all documents within a sub-path of the given urls. That means all documents must start with one of the url stubs as given here.==Lösche alle Dokumente innerhalb eines Unterpfades der gegebenen URLs. Das bedeutet dass alle Dokumente mit einem der angegebenen URL Stubs übereinstimmen muss.
One URL stub, a list of URL stubs or a regular expression==Ein URL Stub, eine Liste von URL Stubs oder ein regulärer Ausdruck
-Matching Method<==Vergleichsmethode<
sub-path of given URLs==Unterpfad der angegebenen URLs
matching with regular expression==Vergleich mit regulärem Ausdruck
"Simulate Deletion"=="Simuliere Löschung"
@@ -1816,39 +1791,35 @@ matching with regular expression==Vergleich mit regulärem Ausdruck
"Engage Deletion"=="Starte Löschung"
"simulate a deletion first to calculate the deletion count"=="Simulieren Sie zuerst die Löschung, um die Menge der Löschungen zu erfahren"
"engaged"=="scharf"
-selected #[count]# documents for deletion==#[count]# Dokumente zur Löschung ausgewählt
-deleted #[count]# documents==#[count]# Dokumente gelöscht
-Delete by Age<==Löschen nach Alter<
Delete all documents which are older than a given time period.==Lösche alle Dokumente die älter als die angegebene Zeitperiode sind.
-Time Period<==Zeitperiode<
All documents older than==Alle Dokumente älter als
-years<==Jahre<
-months<==Monate<
-days<==Tage<
-hours<==Stunden<
-Age Identification<==Altersidentifikation<
->load date==>Lade Datum
->last-modified==>Zuletzt geändert
-Delete Collections<==Kollektionen Löschen<
Delete all documents which are inside specific collections.==Lösche alle Dokumente die sich innerhalb spezifischer Kollektionen befinden.
-Not Assigned<==Nicht zugewiesen<
Delete all documents which are not assigned to any collection==Lösche alle Dokumente die keiner Kollektion zugewiesen sind
-, separated by ',' (comma) or '|' (vertical bar); or==, getrennt durch ',' (Komma) oder '|' (Vertikaler Trennstrich); oder
->generate the collection list...==>generiere die Liste der Kollektion...
-Assigned<==Zugewiesen<
Delete all documents which are assigned to the following collection(s)==Lösche alle Dokumente die der(n) folgenden Kollektion(en) zugewiesen sind
-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.
-#-----------------------------
-
+days==Tage
+hours==Stunden
+Age Identification==Altersbestimmung
+Assigned==Zugewiesen
+Core==Core
+Delete Collections==Sammlungen löschen
+Delete by Age==Nach Alter löschen
+Delete by Solr Query==Nach Solr-Abfrage löschen
+Delete by URL Matching==Nach URL-Matching löschen
+Index Deletion==Index-Löschung
+Matching Method==Matching-Methode
+Not Assigned==Nicht zugewiesen
+Time Period==Zeitraum
+last-modified==last-modified
+load date==Ladedatum
+months==Monate
+years==Jahre
+#-----------------------------
+
+Index deletion will not immediately reduce the storage size on disk because entries are only marked as deleted in a first step.==Das Löschen aus dem Index reduziert die Speichergröße auf der Festplatte nicht sofort, da Einträge im ersten Schritt nur als gelöscht markiert werden.
#File: IndexImportMediawiki_p.html
#---------------------------
-#MediaWiki Dump Import==MediaWiki Dump Import
No import thread is running, you can start a new thread here==Sie können hier einen neuen Thread starten, da aktuell kein Import Thread läuft
-Bad input data:==Ungültige Eingabedaten:
-MediaWiki Dump File Selection: select an XML file (which may be bz2- or gz-encoded)==MediaWiki Dump Datei Auswahl: Wähle eine XML Datei (die auch bz2 oder gzip komprimiert sein darf)
-You can import MediaWiki dumps here. An example is the file==Hier können Sie MediaWiki dumps importieren. Als Beispiel dient die Datei
-Dumps must be in XML format and may be compressed in gz or bz2. Place the file in the YaCy folder or in one of its sub-folders.==Dumps müssen im XML Format vorliegen und bz2 komprimiert sein. Legen Sie die Datei im YaCy-Verzeichnis oder einem Unterordner ab.
"Import MediaWiki Dump"=="Importiere MediaWiki Dump"
When the import is started, the following happens:==Wenn der Import gestartet wird passiert Folgendes:
The dump is extracted on the fly and wiki entries are translated into Dublin Core data format. The output looks like this:==Der Dump wird zur Laufzeit extrahiert und die Wiki Einträge werden in das Dublin Core Datenformat übersetzt. Die Ausgabe schaut wie folgt aus:
@@ -1858,78 +1829,66 @@ Each time a xml pack file appears in /DATA/PACKS/load, the YaCy indexer fetches
When a pack file is finished with indexing, it is moved to /DATA/PACKS/loaded==Wenn eine Pack-Datei vollständig indexiert wurde, wird sie nach /DATA/PACKS/loaded verschoben
You can recycle processed pack files by moving them from /DATA/PACKS/loaded to /DATA/PACKS/load==Sie können schon abgearbeitete Pack-Dateien durch Verschieben von /DATA/PACKS/loaded nach /DATA/PACKS/load recyclen.
Import Process==Import Prozess
-#Thread:==Thread:
-#Dump:==Dump:
Processed:==Bearbeitet:
-Wiki Entries==Wiki Einträge
Speed:==Geschwindigkeit:
-articles per second<==Artikel pro Sekunde<
Running Time:==Laufzeit:
-hours,==Stunden,
-minutes<==Minuten<
Remaining Time:==Verbleibende Zeit:
-#hours,==Stunden,
-#minutes<==Minuten<
-#-----------------------------
-
+"Uniform Resource Locator"=="Uniform Resource Locator"
+"Dump file path on this YaCy server file system, or any remote URL"=="Dump-Dateipfad im Dateisystem dieses YaCy-Servers oder eine Remote-URL"
+Dump file path or URL==Dump-Dateipfad oder URL
+Dumps can be stored in the local file system or on a remote server in XML format and may be compressed in gz or bz2.==Dumps können im lokalen Dateisystem oder auf einem Remote-Server im XML-Format gespeichert sein und mit gz oder bz2 komprimiert sein.
+Error : dump URL is malformed.==Fehler: Dump-URL ist fehlerhaft.
+Import only when modified since last import==Nur importieren, wenn seit dem letzten Import geändert
+MediaWiki Dump File Selection==MediaWiki-Dump-Dateiauswahl
+When checked, the dump file is imported only if its last modified date is unknown or is after the last import execution date on this same file==Wenn aktiviert, wird die Dump-Datei nur importiert, wenn ihr letztes Änderungsdatum unbekannt ist oder nach dem letzten Importdatum derselben Datei liegt
+running==läuft
+started==gestartet
+#-----------------------------
+
+Dump:==Dump:
+MediaWiki Dump Import==MediaWiki-Dump-Import
+Thread:==Thread:
#File: IndexImportOAIPMH_p.html
#---------------------------
-#OAI-PMH Import==OAI-PMH Import
-Results from the import can be monitored in the indexing results for packs==Ergebnisse aus dem Import finden Sie auf der Seite Ergebnisse aus dem Pack-Datei Import
Single request import==Einfacher Anfrage Import
This will submit only a single request as given here to a OAI-PMH server and imports records into the index==Mit dieser Methode wird nur eine einzelne Abfrage an einen OAI-PMH Server geschickt und die Datensätze in den Index aufgenommen
"Import OAI-PMH source"=="Importiere OAI-PMH Quelle"
Source:==Quelle:
Processed:==Bearbeitet:
-records<==Datensätze<
-#ResumptionToken:==ResumptionToken:
-Import failed:==Import fehlgeschlagen:
Import all Records from a server==Importiere alle Datensätze von einem Server
Import all records that follow according to resumption elements into index==Importiere alle folgenden Datensätze die Wiederaufnahme Elementen entsprechen in den Index
"import this source"=="Importiere diese Quelle"
-::or ==::oder
"import from a list"=="Importiere von einer Liste"
Import started!==Import gestartet!
-Bad input data:==Ungültige Eingabedaten:
+or==oder
#-----------------------------
+OAI-PMH Import==OAI-PMH-Import
+ResumptionToken:==ResumptionToken:
#File: IndexImportOAIPMHList_p.html
#---------------------------
-List of #[num]# OAI-PMH Servers==Liste von #[num]# OAI-PMH Servern
"Load Selected Sources"=="Lade ausgewählte Quellen"
-OAI-PMH source import list==OAI-PMH Quellen Import Liste
-#OAI Source List==OAI Quellen Liste
->Source<==>Quelle<
Import List==Importierte Liste
-#>Thread<==>Thread<
-#>Source<==>Quelle<
->Processed Chunks<==>Bearbeitete Datenblöcke<
->Imported Records<==>Importierte Datensätze<
->Speed (records/second)==>Geschwindigkeit ==(Datensätze/Sekunde)
+Thread==Thread
+Imported Records==Importierte Datensätze
+Processed Chunks==Verarbeitete Chunks
+Source==Quelle
+Speed (records/second)==Geschwindigkeit (Datensätze/Sekunde)
#-----------------------------
+Complete at # Records==Abgeschlossen bei # Datensätzen
#File: IndexReIndexMonitor_p.html
#---------------------------
-Field Re-Indexing<==Feld Re-Indexierung<
In case that an index schema of the embedded/local index has changed, all documents with missing field entries can be indexed again with a reindex job.==Im Falle einer Änderung des Index-Schemas des eingebauten/lokalen Index, können alle Dokumente mit fehlenden Feldeinträgen mit einem Re-Indexierungs-Job erneut indexiert werden.
"refresh page"=="Seite neu laden"
-Documents in current queue<==Dokumente in aktueller Warteschlange<
-Documents processed<==Bearbeitete Dokumente<
current select query==Aktuelle SELECT Anfrage
"start reindex job now"=="Starte den Re-Indexierungs-Job jetzt"
"stop reindexing"=="Beende Re-Indexierung"
Remaining field list==Noch zu erledigende Feld Liste
reindex documents containing these fields:==Re-Indiziere Dokumente die folgende Felder enthalten:
# The following lines are hard-coded and would need to be translated in the .java bean
-#"reindex job stopped"=="Re-Indexierungs-Job angehalten"
-#"reindex is running"=="Re-Indexierungs-Job läuft"
-#"is empty"=="ist leer"
-#"no reindex job running"=="Es läuft kein Re-Indexierungs-Job"
-#"! reindex works only with embedded Solr index !"=="! Re-Indexierung funktioniert nur mit eingebautem Solr Index !"
Re-Crawl Index Documents==Re-Crawl Index Dokumente
Searches the local index and selects documents to add to the crawler (recrawl the document).==Durchsucht und selektiert Dokumente im lokalen Index und fügt diese dem Crawler hinzu (Dokumente erneut crawlen).
-This runs transparent as background job.==Dies läuft transparent als Hintergrund Job.
-Documents are added to the crawler only if no other crawls are active==Dokumente werden dem Crawler hinzugefügt, wenn kein anderer Crawl-Job aktiv ist
and are added in small chunks.==und wird in kleinen Blöcken verarbeitet.
"start recrawl job now"=="Starte Re-Crawl-Job jetzt"
"stop recrawl job"=="Beende Re-Crawl-Job"
@@ -1937,23 +1896,55 @@ Re-Crawl Query Details==Re-Crawl Abfrage Details
Documents to process==Dokumente in Warteschlange
Current Query==Aktuelle Abfrage
Edit Solr Query==Edit Solr Abfrage
-update==aktualisieren
Include failed URLs==inklusive Fehler-Urls
#-----------------------------
+Re-crawl works only with an embedded local Solr index!==Erneutes Crawlen funktioniert nur mit einem eingebetteten lokalen Solr-Index!
+The job terminated early due to an error when requesting the Solr index.==Der Job wurde wegen eines Fehlers bei der Anfrage an den Solr-Index vorzeitig beendet.
+to re-crawl documents selected with the given query.==um mit der angegebenen Abfrage ausgewählte Dokumente erneut zu crawlen.
+"Reset to default values"=="Auf Standardwerte zurücksetzen"
+"An error occurred while trying to refresh automatically"=="Beim automatischen Aktualisieren ist ein Fehler aufgetreten"
+"Automatically refreshing"=="Automatische Aktualisierung"
+"Check only how many documents would be selected for recrawl"=="Nur prüfen, wie viele Dokumente für den erneuten Crawl ausgewählt würden"
+"Set defaults"=="Standardwerte setzen"
+"Simulate"=="Simulieren"
+"URLs added to the crawler queue for recrawl"=="URLs wurden für den erneuten Crawl zur Crawler-Queue hinzugefügt"
+"URLs rejected for some reason by the crawl stacker or the crawler queue. Please check the logs for more details."=="URLs wurden aus irgendeinem Grund vom Crawl-Stacker oder der Crawler-Queue abgewiesen. Bitte prüfen Sie die Logs für weitere Details."
+"update"=="aktualisieren"
+An error occurred when trying to run the selection query.==Beim Ausführen der Auswahlabfrage ist ein Fehler aufgetreten.
+Delete URLs==URLs löschen
+Delete urls==URLs löschen
+Documents in current queue==Dokumente in aktueller Queue
+Documents processed==Verarbeitete Dokumente
+End time==Endzeit
+Field==Feld
+Field Re-Indexing==Feld-Neuindexierung
+Include failed urls==Fehlgeschlagene URLs einschließen
+Last==Letzte
+Malformed URLs==Fehlerhafte URLs
+Query==Abfrage
+Re-Crawl job report==Re-Crawl-Jobbericht
+Recrawled URLs==Erneut gecrawlte URLs
+Refresh==Aktualisieren
+Rejected URLs==Abgewiesene URLs
+Running==Läuft
+Shutdown in progress==Herunterfahren läuft
+Solr query==Solr-Abfrage
+Start time==Startzeit
+Status==Status
+Terminated==Beendet
+The Solr index is not connected. Please restart your peer.==Der Solr-Index ist nicht verbunden. Bitte starten Sie Ihren Peer neu.
+This runs transparent as background job. Documents are added to the crawler only if no other crawls are active==Dies läuft transparent als Hintergrundjob. Dokumente werden dem Crawler nur hinzugefügt, wenn keine anderen Crawls aktiv sind
+count==Anzahl
+document(s)==Dokument(e)
+selected for recrawl.==für erneuten Crawl ausgewählt.
#File: Load_MediawikiWiki.html
#---------------------------
-YaCy '#[clientname]#': Configuration of a Wiki Search==YaCy '#[clientname]#': Konfiguration einer Wiki Suche
-#Integration in MediaWiki==Integration in MediaWiki
It is possible to insert wiki pages into the YaCy index using a web crawl on that pages.==Es ist möglich Wiki Seiten in den YaCy Index aufzunehmen, indem man diese Seiten crawlen läßt.
This guide helps you to crawl your wiki and to insert a search window in your wiki pages.==Diese Anleitung hilft Ihnen, Ihr Wiki zu crawlen und ein Suchfeld in die Wiki Seiten einzubauen.
Retrieval of Wiki Pages==Abrufen der Wiki Seiten
The following form is a simplified crawl start that uses the proper values for a wiki crawl.==Das folgende Eingabeformular ist eine vereinfachte Crawl Startseite die passende Werte für eine Wiki Suche voreingestellt hat.
-Just insert the front page URL of your wiki.==Fügen Sie einfach die Start URL Ihres Wikis ein.
-After you started the crawl you may want to get back==Nachdem Sie den Crawl gestartet haben sollten Sie nochmals zurück
to this page to read the integration hints below.==auf diese Seite gehen, um die Integrationshinweise weiter unten zu lesen.
-URL of the wiki main page==URL der Wiki Hauptseite
-This is a crawl start point==Das ist der Ausgangspunkt des Crawls
"Get content of Wiki: crawl wiki pages"=="Hole den Inhalt des Wiki: Crawle die Wiki Seiten"
Inserting a Search Window to MediaWiki==Einfügen eines Suchfeldes in ein MediaWiki
To integrate a search window into a MediaWiki, you must insert some code into the wiki template.==Um ein Suchfeld in das MediWiki einzufügen, müssen Sie einigen Code in Ihr Wiki Template einfügen.
@@ -1963,271 +1954,266 @@ open skins/MonoBook.php==Öffnen Sie skins/MonoBook.php
find the line where the default search window is displayed, there are the following statements:==Finden Sie die Zeile in der die Standard Suchmaschine angezeigt wird, erkennbar an folgenden Anweisungen:
Remove that code or set it in comments using '<!--' and '-->'==Entfernen Sie diesen Code oder setzen sie ihn zwischen Kommentar Klammern mit '<!--' und '-->'
Insert the following code:==Fügen Sie folgenden Code ein:
-Search with YaCy in this Wiki:==Mit YaCy in diesem Wiki suchen:
-value="Search"==value="Suche"
Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Überprüfen Sie alle in diesem Codeschnipsel vorkommenden statischen IP Adressen und ersetzen Sie diese mit Ihrer eigenen IP oder dem eigenen Hostnamen.
You may want to change the default text elements in the code snippet==Sie können auch die Standard Textelemente in dem Code Ausschnitt gegen eigene Texte austauschen.
To see all options for the search widget, look at the more generic description of search widgets at==Um alle Optionen für das Suchfeld zu sehen, schauen Sie sich die generische Beschreibung des Such Widgets auf
-the configuration for live search.==der Seite Integration eines Suchfelds für Live Suche an.
+URL of the wiki main page This is a crawl start point==URL der Wiki-Hauptseite Dies ist ein Crawl-Startpunkt
+Just insert the front page URL of your wiki. After you started the crawl you may want to get back==Geben Sie einfach die Frontpage-URL Ihres Wikis ein. Nachdem Sie den Crawl gestartet haben, möchten Sie vielleicht zurückkehren
#-----------------------------
+Integration in MediaWiki==Integration in MediaWiki
#File: Load_PHPBB3.html
#---------------------------
-Configuration of a phpBB3 Search==Konfiguration einer phpBB3 Suche
-#Integration in phpBB3==Integration in phpBB3
It is possible to insert forum pages into the YaCy index using a database import of forum postings.==Es ist möglich die Forumsseiten mit YaCy zu indexieren, indem die Datenbank mit den Forumseinträgen importiert wird.
This guide helps you to insert a search window in your phpBB3 pages.==Diese Anleitung hilft Ihnen ein YaCy Suchfeld in Ihre phpBB3 Forenseiten einzubinden.
Retrieval of phpBB3 Forum Pages using a database export==Extraktion der phpBB3 Forenseiten durch Datenbank Export
Forum posting contain rich information about the topic, the time, the subject and the author.==Forenbeiträge enthalten reichaltige Informationen über das Thema, die Zeit, den Betreff und den Autor.
This information is in an bad annotated form in web pages delivered by the forum software.==Diese Information wird in einem schlecht kommentierten Format in Form von Webseiten ausgeliefert, die von der Forumssoftware erzeugt werden.
-It is much better to retrieve the forum postings directly from the database.==Es ist viel besser die Forenbeiträge direkt aus der Datenbank zu extrahieren.
-This will cause that YaCy is able to offer nice navigation features after searches.==Durch den Direktimport kann YaCy nach einer Suche auch hilfreiche Features zur Navigation anbieten.
-YaCy has a phpBB3 extraction feature, please go to the phpBB3 content integration servlet for direct database imports.==YaCy kann bereits Daten aus einer phpBB3 Installation extrahieren. Auf der Seite Import aus phpBB3 Datenbanken finden Sie ein Servlet für den direkten Datenbank Import.
Retrieval of phpBB3 Forum Pages using a web crawl==Extraktion der phpBB3 Forenseiten durch Web Crawling
The following form is a simplified crawl start that uses the proper values for a phpbb3 forum crawl.==Das folgende Eingabeformular ist eine vereinfachte Crawl Startseite, die passende Werte für eine phpBB3 Forensuche voreingestellt hat.
Just insert the front page URL of your forum. After you started the crawl you may want to get back==Fügen Sie einfach die Startseite Ihres Forums ein. Nachdem Sie den Crawl gestartet haben sollten Sie zurück
to this page to read the integration hints below.==auf die Seite kommen, um die Integrationshinweise unten zu lesen.
-URL of the phpBB3 forum main page==URL der Hauptseite des phpBB3 Forums
-This is a crawl start point==Das ist der Ausgangspunkt für den Crawl
"Get content of phpBB3: crawl forum pages"=="Hole den phpBB3 Foreninhalt: Crawlen der Forenseiten"
Inserting a Search Window to phpBB3==Einfügen eines Suchfeldes in das phpBB3 Forum
To integrate a search window into phpBB3, you must insert some code into a forum template.==Um ein Suchfeld in Ihr phpBB3 Forum einzubauen, müssen Sie folgende Zeilen Code in das Forums Template einbauen.
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, that's right behind the
<div id="search-box">
statement==Finden Sie die Zeile in der das Standard Suchfeld angezeigt wird, das sich gleich hinter der Anweisung
<div id="search-box">
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
Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Überprüfen Sie alle in diesem Codeschnipsel vorkommenden statischen IP Adressen und ersetzen Sie diese mit Ihrer eigenen IP oder dem eigenen Hostnamen.
You may want to change the default text elements in the code snippet==Sie können auch die Standard Textelemente in dem Code Ausschnitt gegen eigene Texte austauschen.
To see all options for the search widget, look at the more generic description of search widgets at==Um alle Optionen für das Suchfeld zu sehen, schauen Sie sich die generische Beschreibung des Such Widgets auf
-the configuration for live search.==der Seite Integration eines Suchfelds für Live Suche an.
+URL of the phpBB3 forum main page This is a crawl start point==URL der phpBB3-Forum-Hauptseite Dies ist ein Crawl-Startpunkt
+Insert the following code right behind the div tag:==Fügen Sie den folgenden Code direkt hinter dem div-Tag ein:
+It is much better to retrieve the forum postings directly from the database. This will cause that YaCy is able to offer nice navigation features after searches.==Es ist deutlich besser, die Forenbeiträge direkt aus der Datenbank abzurufen. Dadurch kann YaCy nach Suchen gute Navigationsfunktionen anbieten.
+you are using the default template, 'prosilver':==Sie verwenden das Standard-Template 'prosilver':
#-----------------------------
+Integration in phpBB3==Integration in phpBB3
#File: Load_RSS_p.html
#---------------------------
-Configuration of a RSS Search==Konfiguration einer RSS Suche
-Loading of RSS Feeds<==Laden eines RSS Feeds<
RSS feeds can be loaded into the YaCy search index.==RSS Feeds können in den YaCy Suchindex geladen werden.
This does not load the rss file as such into the index but all the messages inside the RSS feeds as individual documents.==Dabei wird nicht die RSS Datei als solche in den Index geladen aber dafür alle Nachrichten innerhalb des RSS Feeds als einzelne Dokumente.
URL of the RSS feed==URL des RSS Feeds
->Preview<==>Vorschau<
"Show RSS Items"=="Zeige RSS Objekte"
Available after successful loading of rss feed in preview==Verfügbar nach dem erfolgreichen Laden des RSS Feeds in der Vorschau
"Add All Items to Index (full content of url)"=="Füge alle Objekte zum Index hinzu (Voller Inhalt der URL)"
->once<==>einmalig<
->load this feed once now<==>Lade diesen Feed nun einmalig<
->scheduled<==>geplant<
->repeat the feed loading every<==>Wiederhole das Laden dieses Feeds alle<
->minutes<==>Minuten<
->hours<==>Stunden<
->days<==>Tage<
-> automatically.==> automatisch.
->List of Scheduled RSS Feed Load Targets<==>Liste aller geplanten RSS Feed Ziele<
->Title<==>Titel<
-#>URL/Referrer<==>URL/Referrer<
->Recording<==>Eintrag<
->Last Load<==>Zuletzt Geladen<
->Next Load<==>Nächster Ladevorgang<
->Last Count<==>Letzter Zähler<
->All Count<==>Gesamter Zähler<
->Avg. Update/Day<==>Durchschnittliche Updates pro Tag<
"Remove Selected Feeds from Scheduler"=="Entferne ausgewählte Feeds aus der geplanten Liste"
"Remove All Feeds from Scheduler"=="Entferne alle Feeds aus der geplanten Liste"
->Available RSS Feed List<==>Liste mit verfügbaren RSS Feeds<
"Remove Selected Feeds from Feed List"=="Entferne ausgewählte Feeds aus der Feed Liste"
"Remove All Feeds from Feed List"=="Entferne alle Feeds aus der Feed Liste"
"Add Selected Feeds to Scheduler"=="Füge ausgewählte Feeds zur geplanten Liste hinzu"
->new<==>Neu<
->enqueued<==>Geplant<
->indexed<==>Indexiert<
->RSS Feed of==>RSS Feed von
->Author<==>Autor<
->Description<==>Beschreibung<
->Language<==>Sprache<
->Date<==>Datum<
->Time-to-live<==>TTL (Zeit zu Leben)<
->Docs<==>Dokumente<
->State<==><
-#>URL<==>URL<
"Add Selected Items to Index (full content of url)"=="Füge ausgewählte Objekte zum Index hinzu (Voller Inhalt der URL)"
#-----------------------------
+Indexing==Indexierung
+All Count==Gesamtanzahl
+Attached media==Angehängte Medien
+Author==Autor
+Available RSS Feed List==Verfügbare RSS-Feed-Liste
+Avg. Update/Day==Durchschn. Aktualisierung/Tag
+Date==Datum
+Description==Beschreibung
+Docs==Dokumente
+Language==Sprache
+Last Count==Letzte Anzahl
+Last Load==Letztes Laden
+List of Scheduled RSS Feed Load Targets==Liste geplanter RSS-Feed-Ladeziele
+Loading of RSS Feeds==Laden von RSS-Feeds
+Next Load==Nächstes Laden
+Preview==Vorschau
+Recording==Aufzeichnung
+State==Status
+Time-to-live==Time-to-live
+Title==Titel
+URL==URL
+URL/Referrer==URL/Referrer
+automatically.==automatisch.
+collection==Collection
+days==Tage
+enqueued==eingereiht
+hours==Stunden
+indexed==indexiert
+load this feed once now==diesen Feed jetzt einmal laden
+minutes==Minuten
+new==neu
+once==einmal
+repeat the feed loading every==Feed-Laden wiederholen alle
+scheduled==geplant
#File: Messages_p.html
#---------------------------
->Messages==>Nachrichten
-Date==Datum
-From==Von
-To==An
->Subject==>Betreff
Action==Aktion
From:==Von:
To:==An:
Date:==Datum:
-#Subject:==Betreff:
->view==>anzeigen
+Subject:==Betreff:
reply==antworten
->delete==>löschen
Compose Message==Nachrichtenerstellung
Send message to peer==Sende eine Nachricht an Peer
"Compose"=="Erstellen"
Message:==Nachricht:
inbox==Posteingang
+Date==Datum
+Messages==Nachrichten
+"RSS"=="RSS"
+Action:==Aktion:
+From==Von
+Subject==Betreff
+To==An
+delete==löschen
+view==anzeigen
#-----------------------------
#File: MessageSend_p.html
#---------------------------
Send message==Nachricht versenden
-You cannot send a message to==Sie können keine Nachricht schicken an
-The peer does not respond. It was now removed from the peer-list.==Der Peer antwortet nicht. Er ist nicht mehr in der Peer-Liste vorhanden.
-The peer ==Der Peer
-is alive and responded:==ist online und antwortet:
-You are allowed to send me a message==Es ist Ihnen erlaubt, mir eine Nachricht zu senden
-kb and an==KB und einen
-attachment ≤==Anhang ≤
+The peer does not respond. It was now removed from the peer-list.==Der Peer antwortet nicht. Er ist nicht mehr in der Peer-Liste vorhanden.
Your Message==Ihre Nachricht
Subject:==Betreff:
Text:==Inhalt:
"Enter"=="Nachricht senden"
"Preview"=="Vorschau"
-You can use==Sie können hier
-Wiki Code here.==Wiki Code benutzen.
Preview message==Nachricht Vorschau
The message has not been sent yet!==Die Nachricht wurde noch nicht gesendet!
The peer is alive but cannot respond. Sorry.==Der Peer ist nicht online und kann nicht antworten. Entschuldigung.
Your message has been sent. The target peer responded:==Ihre Nachricht wurde erfolgreich versandt. Der Ziel-Peer antwortet:
The target peer is alive but did not receive your message. Sorry.==Der Ziel-Peer ist online, hat aber Ihre Nachricht nicht erhalten. Entschuldigung.
Here is a copy of your message, so you can copy it to save it for further attempts:==Hier ist eine Kopie Ihrer Nachricht. Sie können diese kopieren, speichern und es später nochmal versuchen:
-You cannot call this page directly. Instead, use a link on the Network page.==Sie können diese Seite nicht direkt aufrufen. Benutzen Sie stattdessen einen Link auf der Netzwerk Seite.
+Message:==Nachricht:
#-----------------------------
#File: Network.html
#---------------------------
-YaCy Search Network==YaCy Suche Netzwerk
-YaCy Network<==YaCy Netzwerk<
The information that is presented on this page can also be retrieved as XML.==Die Informationen auf dieser Seite können auch im XML Format abgerufen werden.
Click the API icon to see the XML.==Klicken Sie auf das API Symbol, um das XML anzeigen zu lassen.
-To see a list of all APIs, please visit the API wiki page.==Um eine Liste aller APIs zu sehen, besuchen Sie die API Seite im Wiki.
Network Overview==Netzwerkübersicht
-Active Peers==Aktive Peers
-Passive Peers==Passive Peers
-Potential Peers==Potenzielle Peers
-Active Peers in '#[networkName]#' Network==Aktive Peers im '#[networkName]#' Netzwerk
-Passive Peers in '#[networkName]#' Network==Passive Peers im '#[networkName]#' Netzwerk
-Potential Peers in '#[networkName]#' Network==Potentielle Peers im '#[networkName]#' Netzwerk
Manually contacting Peer==Kontaktiere Peer manuell
-no remote #[peertype]# peer for this list known==Kein remote Peer #[peertype]# bekannt oder online.
-Showing #[num]# entries from a total of #[total]# peers.==Gezeigt werden #[num]# Einträge von insgesamt #[total]# Peers.
send Message/ show Profile/ edit Wiki/ browse Blog==Sende Nachricht (m)/ Zeige Profil (p)/ Ändere Wiki (w)/ Durchsuche Blog (b)
Search for a peername (RegExp allowed)==Suche nach Peernamen (RegExp erlaubt)
"Search"=="Suche"
Name==Name
-Address==Adresse
Hash==Hash
-Type==Typ
-Release<==YaCy Version<
-#>PPM<==>PPM<
-#>QPH<==>QPH<
Last Seen==Zuletzt online
Location==Ort
->URLs for Remote Crawl<==>URLs zum Remote Crawlen<
-Offset==Versatz
-Send message to peer==Sende Nachricht an Peer
-View profile of peer==Zeige Profil des Peers
-Read and edit wiki on peer==Lese und ändere Wiki des Peers
-Browse blog of peer==Durchsuche den Blog von Peer
-#"Ranking Receive: no"=="Ranking Empfang: nein"
-#"no ranking receive"=="kein Ranking Empfang"
-#"Ranking Receive: yes"=="Ranking Empfang: ja"
-#"Ranking receive enabled"=="Ranking Empfang aktiv"
"DHT Receive: yes"=="DHT Empfang: ja"
"DHT receive enabled"=="DHT Empfang aktiv"
-"DHT Receive: no; #[peertags]#"=="DHT Empfang: nein; #[peertags]#"
"DHT Receive: no"=="DHT Empfang: nein"
-#no tags given==keine Tags angegeben
"no DHT receive"=="kein DHT Empfang"
"Accept Crawl: no"=="Akzeptiert Crawl: nein"
"no crawl"=="kein Crawl"
"Accept Crawl: yes"=="Akzeptiert Crawl: ja"
"crawl possible"=="Crawl möglich"
-Contact: passive==Kontakt: passiv
-Contact: direct==Kontakt: direkt
-Seed download: possible==Seed Download: möglich
-runtime:==Laufzeit:
-#Peers==Peers
-#YaCy Cluster==YaCy Cluster
-
->Network<==>Netzwerk<
-#>Online Peers<==>Online Peers<
->Number of Documents<==>Anzahl der Dokumente<
-Indexing Speed:==Indexiergeschwindigkeit:
-Pages Per Minute (PPM)==Seiten pro Minute (PPM)
-Query Frequency:==Abfragegeschwindigkeit:
-Queries Per Hour (QPH)==Abfragen pro Stunde (QPH)
->Today<==>Heute<
->Last Week<==>Letzte Woche<
->Last Month<==>Letzter Monat<
+Age==Alter
+Links==Links
+PPM==PPM
+Peer Hash==Peer-Hash
+Peer IP==Peer-IP
+Peer Port==Peer-Port
+RWIs==RWIs
+Uptime==Laufzeit
+Version==Version
+
Last Hour==Letzte Stunde
->Now<==>Jetzt<
->Active<==>Aktiv<
->Passive<==>Passiv<
->Potential<==>Potentiell<
->This Peer<==>Dieser Peer<
+Active Senior==Aktive Senior Peers
+Active Principal and Senior Peers==Aktive Principal- und Senior-Peers
+Junior (fragment)==Junior (Fragment)
+Junior (fragment) Peers==Junior (Fragment) Peers
+Passive Senior==Passive Senior Peers
+Passive Senior Peers==Passive Senior-Peers
URLs for Remote Crawl==URLs zum Remote Crawlen
"The YaCy Network"=="Das YaCy Netzwerk"
Indexing PPM==Indexier PPM
-(public local)==öffentlich lokal
-(remote)==(extern)
Your Peer:==Ihr Peer:
-#>Name<==>Name<
-#>Info<==>Info<
-#>Version<==>Version<
-#>UTC<==>UTC<
->Uptime<==>Laufzeit<
-#>Links<==>Links<
-#>RWIs<==>RWIs<
Sent URLs==Gesendete URLs
Sent DHT Word Chunks==Gesendete DHT Wortstücke
Received URLs==Empfangene URLs
Received DHT Word Chunks==Empfangene DHT Wortstücke
Known Seeds==Bekannte Seeds
Connects per hour==Verbindungen pro Stunde
-#Version==Version
-#Own/Other==Eigene/Andere
->dark green font<==>dunkelgrüne Schrift<
+dark green font==dunkelgrüne Schrift
senior/principal peers==Senior/Principal Peers
->light green font<==>hellgrüne Schrift<
->passive peers<==>passive Peers<
->pink font<==>pinke Schrift<
+light green font==hellgrüne Schrift
+passive peers==passive Peers
+pink font==pinke Schrift
junior peers==Junior Peers
red point==roter Punkt
this peer==Ihr Peer
->grey waves<==>graue Wellen<
->crawling activity<==>Crawl Aktivität<
->green radiation<==>grüne Strahlung<
->strong query activity<==>starke Abfrage Aktivität<
->red lines<==>rote Linien<
->DHT-out<==>DHT ausgehend<
->green lines<==>grüne Linien<
->DHT-in<==>DHT eingehend<
-#You are in online mode, but probably no internet resource is available.==Sie befinden sich im Online-Modus, aber zur Zeit besteht keine Internetverbindung.You are in online mode, but probably no internet resource is available.
-#Please check your internet connection.==Bitte überprüfen Sie Ihre Internetverbindung.
-#You are not in online mode. To get online, press this button:==Sie sind nicht im Online-Modus. Um Online zu gehen, drücken Sie diesen Knopf:
-#"go online"=="online gehen"
+grey waves==graue Wellen
+crawling activity==Crawl-Aktivität
+green radiation==grüne Strahlung
+strong query activity==starke Abfrageaktivität
+red lines==rote Linien
+green lines==grüne Linien
Network History==Netzwerk Historie
-Count of Connected Senior Peers==Anzahl aktiver Senior Peers
-in the last two days, scale = 1h==in den letzten 2 Tagen, Teilung 1h
-Count of all Active Peers Per Day==Anzahl aktiver Peers pro Tag
-in the last week, scale = 1d==in der letzten Woche, Teilung 1 Tag
-Count of all Active Peers Per Week==Anzahl aktiver Peers pro Woche
-in the last 30d, scale = 7d==in den letzten 30 Tagen, Teilung 7 Tage
-Count of all Active Peers Per Month==Anzahl aktiver Peers pro Monat
-in the last 365d, scale = 30d==in den letzten 365 Tagen, Teilung 30 Tage
#-----------------------------
+"Blog updated"=="Blog aktualisiert"
+"Profile updated"=="Profil aktualisiert"
+"Type: Virgin"=="Typ: Virgin"
+"Wiki updated"=="Wiki aktualisiert"
+"add Peer"=="Peer hinzufügen"
+Count of Connected Senior Peers in the last two days, scale = 1h==Anzahl verbundener Senior-Peers in den letzten zwei Tagen, Skalierung = 1h
+Count of all Active Peers Per Day in the last week, scale = 1d==Anzahl aller aktiven Peers pro Tag in der letzten Woche, Skalierung = 1d
+Count of all Active Peers Per Month in the last 365d, scale = 30d==Anzahl aller aktiven Peers pro Monat in den letzten 365 Tagen, Skalierung = 30d
+Count of all Active Peers Per Week in the last 30d, scale = 7d==Anzahl aller aktiven Peers pro Woche in den letzten 30 Tagen, Skalierung = 7d
+UTC Offset==UTC Offset
+Indexing Speed: Pages Per Minute (PPM)==Indexiergeschwindigkeit: Seiten pro Minute (PPM)
+Number of Documents==Anzahl Dokumente
+QPH (remote)==QPH (remote)
+Query Frequency: Queries Per Hour (QPH)==Abfragehäufigkeit: Abfragen pro Stunde (QPH)
+"API"=="API"
+"Crawl enabled"=="Crawl aktiviert"
+"Crawl"=="Crawl"
+"DHT Receive enabled"=="DHT-Empfang aktiviert"
+"Junior direct"=="Junior direkt"
+"Junior offline"=="Junior offline"
+"Junior passive"=="Junior passiv"
+"Junior"=="Junior"
+"Principal active"=="Principal aktiv"
+"Principal offline"=="Principal offline"
+"Principal passive"=="Principal passiv"
+"Principal"=="Principal"
+"Senior direct"=="Senior direkt"
+"Senior offline"=="Senior offline"
+"Senior"=="Senior"
+"Type: Junior | Contact: direct"=="Typ: Junior | Kontakt: direkt"
+"Type: Junior | Contact: offline"=="Typ: Junior | Kontakt: offline"
+"Type: Junior | Contact: passive"=="Typ: Junior | Kontakt: passiv"
+"Type: Junior"=="Typ: Junior"
+"Type: Principal | Contact: direct | Seed download: possible"=="Typ: Principal | Kontakt: direkt | Seed-Download: möglich"
+"Type: Principal | Contact: offline | Seed download: ?"=="Typ: Principal | Kontakt: offline | Seed-Download: ?"
+"Type: Principal | Contact: passive | Seed download: possible"=="Typ: Principal | Kontakt: passiv | Seed-Download: möglich"
+"Type: Principal"=="Typ: Principal"
+"Type: Senior | Contact: direct"=="Typ: Senior | Kontakt: direkt"
+"Type: Senior | Contact: offline"=="Typ: Senior | Kontakt: offline"
+"Type: Senior | Contact: passive"=="Typ: Senior | Kontakt: passiv"
+"Type: Senior"=="Typ: Senior"
+"Virgin"=="Virgin"
+"contact current peer from this peer"=="aktuellen Peer von diesem Peer kontaktieren"
+"https supported"=="HTTPS unterstützt"
+"senior passive"=="Senior passiv"
+Contacting current peer from another:==Kontaktaufnahme zum aktuellen Peer von einem anderen:
+DHT-in==DHT eingehend
+DHT-out==DHT ausgehend
+Info==Info
+Last Month==Letzter Monat
+Last Week==Letzte Woche
+Network==Netzwerk
+Now==Jetzt
+Online Peers==Online-Peers
+QPH==QPH
+QPH (public local)==QPH (öffentlich lokal)
+Received DHT Word Chunks==Empfangene DHT- Wort-Chunks
+Release==Release
+Sent DHT Word Chunks==Gesendete DHT- Wort-Chunks
+This Peer==Dieser Peer
+Today==Heute
+URLs for Remote Crawl==URLs für Remote Crawl
+UTC==UTC
+YaCy Network==YaCy-Netzwerk
+con/h ==Verb./h
+ip:port==IP:Port
+user agent ==User-Agent
#File: News.html
#---------------------------
Overview==Überblick
@@ -2245,162 +2231,161 @@ profile entries on the Network page, where that profile change is visualized wit
More news services will follow.==Mehr News Services werden folgen.
Above you can see four menus:==Sie können diese vier Menüs sehen:
-Incoming News (#[insize]#): latest news that arrived your peer.==Eingehende News(#[insize]#): 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.
-Processed News (#[prsize]#): this is simply an archive of incoming news that you removed by processing.==Gelesene News (#[prsize]#): Hier ist ein simples Archiv der bereits gelesenen News.
-Outgoing News (#[ousize]#): here your can see news entries that you have created. These news are currently broadcasted to other peers.==Ausgehende News (#[ousize]#): Hier können Sie die News sehen, die durch Sie enstanden sind. Diese News werden sofort an andere Peers übertragen.
you can stop the broadcast if you want.==Sie können die Weiterverteilung stoppen, wenn Sie wollen.
-Published News (#[pusize]#): your news that have been broadcasted sufficiently or that you have removed from the broadcast list.==Veröffentlichte News (#[pusize]#): Ihre News, die genügend verbreitet oder aus der Verbreitungsliste gelöscht wurden.
Originator==Initiator
Created==Erstellt
Category==Kategorie
Received==Empfangen
Distributed==Verteilt
Attributes==Attribute
-"#(page)#::Process Selected News::Delete Selected News::Abort Publication of Selected News::Delete Selected News#(/page)#"=="#(page)#::Gewählte News als gelesen markieren::Gewählte News löschen::Verbreitung gewählter News abbrechen::Gewählte News löschen#(/page)#"
-"#(page)#::Process All News::Delete All News::Abort Publication of All News::Delete All News#(/page)#"=="#(page)#::Alle News als gelesen markieren::Alle News löschen::Verbreitung von allen News abbrechen::Alle News löschen#(/page)#"
+"Incoming News"=="Eingehende Nachrichten"
+"Outgoing News"=="Ausgehende Nachrichten"
+"Processed News"=="Verarbeitete Nachrichten"
+"Published News"=="Veröffentlichte Nachrichten"
+Publishing of added or modified translation for the user interface. Other peers may include it in their local translation list.==Veröffentlichung einer hinzugefügten oder geänderten Übersetzung der Benutzeroberfläche. Andere Peers können sie in ihre lokale Übersetzungsliste aufnehmen.
#-----------------------------
#File: Performance_p.html
#---------------------------
-==
Performance Settings==Leistungseinstellungen
Memory Settings==Speicher Einstellungen
Memory reserved for JVM==Für JVM reservierter Speicher
"Set"=="Setzen"
Resource Observer==Ressourcen Beobachter
-Reset state==Status zurücksetzen
-> free space==> freiem Speicher
-disable DHT-in below==Deaktivere eingehende DHT Transfers unter
-RAM==Arbeitsspeicher
-Accepted change. This will take effect after restart of YaCy==Änderung akzeptiert. Diese werden erst nach einem Neustart von YaCy wirksam
-restart now==jetzt neustarten
-Confirm Restart==Bestätige Neustart
+Free space disk==Freier Festplattenspeicher
+Used space disk==Belegter Festplattenspeicher
+Steady-state minimum==Sollwert-Minimum
+Absolute minimum==Absolutes Minimum
+Steady-state maximum==Sollwert-Maximum
+Absolute maximum==Absolutes Maximum
+Minimum required==Erforderliches Minimum
+The autoregulation task performs the following sequence of operations, stopping once free space disk is over the steady-state value :==Die Autoregulation führt die folgende Abfolge von Aktionen aus und stoppt, sobald der freie Festplattenspeicher über dem Sollwert liegt:
+The autoregulation task performs the following sequence of operations, stopping once used space disk is below the steady-state value:==Die Autoregulation führt die folgende Abfolge von Aktionen aus und stoppt, sobald der belegte Festplattenspeicher unter dem Sollwert liegt:
+delete old releases==alte Releases löschen
+delete logs==Logs löschen
+delete robots.txt table==robots.txt-Tabelle löschen
+delete news==News löschen
+clear HTCACHE==HTCACHE leeren
+clear citations==Zitationen leeren
+throw away large crawl queues==große Crawl-Queues verwerfen
+cut away too large RWIs==zu große RWIs kürzen
+when absolute minimum limit has been reached.==wenn das absolute Minimum erreicht wurde.
+when absolute maximum limit has been reached.==wenn das absolute Maximum erreicht wurde.
+Enough memory is available for proper operation.==Für den ordnungsgemäßen Betrieb ist ausreichend Arbeitsspeicher verfügbar.
+Within the last eleven minutes, at least four operations have tried to request memory that would have reduced free space within the minimum required.==Innerhalb der letzten elf Minuten haben mindestens vier Operationen versucht, Arbeitsspeicher anzufordern, wodurch der freie Speicher unter das erforderliche Minimum gefallen wäre.
+RAM==Arbeitsspeicher
+MByte==MByte
refresh graph==Aktualisiere Diagramm
-Use Default Profile:==Standard Profil benutzen:
-and use==und nutze
-of the defined performance.==der vorgegebenen Geschwindigkeit.
-Save==Speichern
Changes take effect immediately==Änderungen werden sofort wirksam
-YaCy Priority Settings==YaCy Priorität Einstellungen
-YaCy Process Priority==YaCy Prozess Priorität
-#Normal==Normal
-Below normal==unter Normal
-Idle==untätig
-"Set new Priority"=="Neue Priorität speichern"
-Changes take effect after restart of YaCy==Änderungen werden erst nach einem Neustart von YaCy wirksam.
-Online Caution Settings==Onlinezugriff Verzögerung Einstellungen
+Online Caution Settings:==Onlinezugriff-Verzögerung:
This is the time that the crawler idles when the proxy is accessed, or a local or remote search is done.==Dies ist die Zeit die der Crawler pausiert, wenn auf den Proxy zugegriffen wird, oder eine lokale oder globale Suche durchgeführt wird.
The delay is extended by this time each time the proxy is accessed afterwards.==Die normale Verzögerung wird um diese Zeit verlängert, wenn auf den Proxy zugegriffen wird.
This shall improve performance of the affected process (proxy or search).==Dies soll die Performance des betroffenen Prozesses (Proxy oder Suche) erhöhen.
-(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 occurrence==Indexierer Verzögerung (Millisekunden) nach Onlinezugriff
-#Proxy:==Proxy:
+Proxy:==Proxy:
Local Search:==Lokale Suche:
Remote Search:==Remote Suche:
"Enter New Parameters"=="Neue Parameter eintragen"
+"Amount of memory (in Mebibytes) that should at least be free for proper operation"=="Arbeitsspeicher in Mebibytes, der für den ordnungsgemäßen Betrieb mindestens frei sein sollte"
+"Amount of space (in Mebibytes) that should be kept free as steady state"=="Speicherplatz in Mebibytes, der als Sollwert frei gehalten werden soll"
+"Amount of space (in Megabytes) that should at least be kept free as hard limit"=="Speicherplatz in Megabytes, der als harte Grenze mindestens frei gehalten werden soll"
+"Distributed Hash Table"=="Verteilte Hash-Tabelle"
+"Exhausted state info"=="Information zum erschöpften Zustand"
+"Free space disk autoregulation info"=="Information zur Autoregulation des freien Festplattenspeichers"
+"Java Virtual Machine"=="Java Virtual Machine"
+"Manually reset to 'proper' state"=="Manuell auf Status 'proper' zurücksetzen"
+"Maximum amount of space (in Mebibytes) that should be used as hard limit"=="Maximaler Speicherplatz in Mebibytes, der als harte Grenze belegt sein soll"
+"Maximum amount of space (in Mebibytes) that should be used as steady state"=="Maximaler Speicherplatz in Mebibytes, der als Sollwert belegt sein soll"
+"Mebibyte"=="Mebibyte"
+"PerformanceGraph"=="Leistungsdiagramm"
+"Proper state info"=="Information zum ordnungsgemäßen Zustand"
+"Random Access Memory"=="Arbeitsspeicher"
+"Reset state"=="Status zurücksetzen"
+"Restart now"=="Jetzt neu starten"
+"Save"=="Speichern"
+"Used space disk autoregulation info"=="Information zur Autoregulation des belegten Festplattenspeichers"
+MiB free space. Disable DHT-in below.==MiB freier Speicher. Darunter DHT-in deaktivieren.
+MiB. Disable DHT-in when free space is below.==MiB. DHT-in deaktivieren, wenn der freie Speicher darunter liegt.
+MiB. Disable DHT-in when used space is over.==MiB. DHT-in deaktivieren, wenn der belegte Speicher darüber liegt.
+MiB. Disable crawls when free space is below.==MiB. Crawls deaktivieren, wenn der freie Speicher darunter liegt.
+MiB. Disable crawls when used space is over.==MiB. Crawls deaktivieren, wenn der belegte Speicher darüber liegt.
+exhausted==erschöpft
+Accepted change. This will take effect after restart of YaCy.==Änderung akzeptiert. Diese wird nach einem Neustart von YaCy wirksam.
+Autoregulate==Autoregulieren
+Memory state :==Speicherzustand:
+Restart now==Jetzt neu starten
+proper==ordnungsgemäß
#-----------------------------
#File: PerformanceMemory_p.html
#---------------------------
-==
Performance Settings for Memory==Performanceeinstellungen für Speicher
refresh graph==Aktualisiere Diagramm
simulate short memory status==Simuliere kurzen Speicherstatus
-use Standard Memory Strategy (current: #[memoryStrategy]#)==Verwende Standard Speicher-Strategie (Aktuell: #[memoryStrategy]#)
Memory Usage==Speichernutzung
After Startup==Nach Start
-After Initializations==Nach Initialisierungen
before GC==vor GC
after GC==nach GC
->Now==>Jetzt
-before <==vor <
Description==Beschreibung
maximum memory that the JVM will attempt to use==maximaler Speicher den die JVM nutzen wird
->Available<==>Verfügbar<
total available memory including free for the JVM within maximum==gesamter verfügbarer Speicher für die JVM innerhalb des Maximums.
->Total<==>Gesamt<
total memory taken from the OS==gesamter vom Betriebssystem zugewiesener Speicher
->Free<==>Frei<
free memory in the JVM within total amount==freier Speicher in der JVM innerhalb des Gesamten Speichers
->Used<==>Belegt<
used memory in the JVM within total amount==genutzter Speicher in der JVM innerhalb des Gesamten Speichers
-Solr Resources==Solr Resourcen
->Class<==>Klasse<
->Type<==>Typ<
->Statistics<==>Statistiken<
->Size<==>Größe<
Table RAM Index==Tabelle RAM Speicher Index
->Key==>Schlüssel
->Value==>Wert
-Table==Tabelle
-Chunk Size<==Chunk Größe<
-#Count==Anzahl
-Used Memory<==Benutzter Speicher<
Object Index Caches==Objekt Index Caches
Needed Memory==Benötigter Speicher
-Object Read Caches==Objekt Lese Caches
->Read Hit Cache<==>Lese Treffer Cache<
->Read Miss Cache<==>Lese Miss Cache<
->Read Hit<==>Lese Hit<
->Read Miss<==>Lese Verfehler<
-Write Unique<==Schreiben einzigartig<
-Write Double<==Schreiben mehrfach<
-Deletes<==Löschungen<
-Flushes<==Leerungen<
-Total Mem==Gesamter Speicher
-MB (hit)==MB (Treffer)
-MB (miss)==MB (Verfehler)
-Stop Grow when less than #[objectCacheStopGrow]# MB available left==Beende Erweiterung wenn weniger als #[objectCacheStopGrow]# MB verfügbar sind
-Start Shrink when less than #[objectCacheStartShrink]# MB availabe left==Starte Verkleinerung wenn weniger als #[objectCacheStartShrink]# MB verfügbar sind
Other Caching Structures==Andere Zwischenspeicher Strukturen
->Hit<==>Treffer<
->Miss<==>Verfehler<
-Insert<==Einfügen<
-Delete<==Löschen<
-#DNSCache==DNSCache
-#DNSNoCache==DNSNoCache
-#HashBlacklistedCache==HashBlacklistedCache
-Search Event Cache<==Suchereignis Cache<
+"PerformanceGraph"=="Leistungsdiagramm"
+(ARC)==(ARC)
+After Initializations after GC==Nach Initialisierungen nach GC
+After Initializations before GC==Nach Initialisierungen vor GC
+Available==Verfügbar
+DNSCache/Hit==DNSCache/Treffer
+DNSCache/Miss==DNSCache/Fehler
+Delete==Löschen
+Free==Frei
+Hit==Treffer
+Insert==Einfügen
+Key==Schlüssel
+Max==Max
+Miss==Fehler
+Now==Jetzt
+Search Event Cache==Suchereignis-Cache
+Size==Größe
+Table==Tabelle
+Total==Gesamt
+Type==Typ
+Used==Belegt
+Used Memory==Belegter Speicher
+Value==Wert
+use Standard Memory Strategy==Standard-Speicherstrategie verwenden
#-----------------------------
+Chunk Size==Chunk-Größe
+DNSNoCache==DNSNoCache
+HashBlacklistedCache==HashBlacklistedCache
#File: PerformanceQueues_p.html
#---------------------------
Performance Settings of Queues and Processes==Performanceeinstellungen für Puffer und Prozesse
Scheduled tasks overview and waiting time settings:==Übersicht geplanter Aufgaben und Wartezeiteinstellungen:
-Queue Size==Warteschl.- länge
->Total==>gesamte
-#Block Time==
-#Sleep Time==
-#Exec Time==
-
Idle==
untät.
->Busy==>beschäft.
+Queue Size==Warteschlangenlänge
Short Mem Cycles==Durchl. ohne ausr. Speicher
->per Cycle==>pro Durchlauf
->per Busy-Cycle==>pro beschäft. Durchl.
->Memory Use==>Speicher- nutzung
->Delay between==>Verzögerung zwischen
->idle loops==>untät. Durchl.
->busy loops==>beschäft. Durchl.
Minimum of Required Memory==Mindestens benötigter Speicher
Maximum of System-Load==Maximum der Systemlast
Full Description==Vollständige Beschreibung
-Submit New Delay Values==Neue Verzögerungswerte speichern
-Re-set to default==Auf Defaultwerte zurücksetzen
Changes take effect immediately==Änderungen werden sofort wirksam
Cache Settings:==Cache Einstellungen:
-#RAM Cache==RAM Cache
-
Prozess
-': Index Pack Downloader==': Index-Paket-Downloader
YaCy Pack Downloader==YaCy-Paket-Downloader
Available Packs==Verfügbare Pakete
+File==Datei
+Process==Verarbeiten
+Repo ID==Repo-ID
+Source==Quelle
#-----------------------------
#File: IndexPackManager_p.html
#---------------------------
-Packs: Loaded List
Size (KB)
Process==Pakete: Geladen-Liste
Größe (KB)
Prozess
-Packs: Hold List
Size (KB)
Process==Pakete: Halteliste
Größe (KB)
Prozess
-Packs: Load List
Size (KB)
Process==Pakete: Ladeliste
Größe (KB)
Prozess
-': Index Pack Manager==': Index-Paket-Manager
YaCy Pack Manager==YaCy-Paket-Manager
Pack Folders==Paket-Ordner
+Process==Verarbeiten
+Size (KB)==Größe (KB)
+Packs: Hold List==Packs: Halten-Liste
+Packs: Load List==Packs: Ladeliste
+Packs: Loaded List==Packs: Geladene Liste
#-----------------------------
#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: ==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:
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: ==Eine Suche durchführen, 10 Ergebnisse erhalten, in den Feldern text_t, title, description mit Boosts suchen:
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 (only if collection is "user")==Slug - beschreiben Sie den Inhalt (nur wenn die Collection "user" ist)
- *:* (default) is a catch-all; format: :== *:* (Standard) ist ein Auffangmuster; Format: :
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: ==Docker-Container von OpenSearch starten:
-Pack
Process
Size (KB)==Paket
Prozess
Größe (KB)
-The local index currently contains==Der lokale Index enthält derzeit
-Bulk-upload the index file: ==Die Index-Datei per Bulk hochladen:
-Create the search index: ==Den Suchindex erstellen:
-Unblock index creation: ==Index-Erstellung freigeben:
-': 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:
+"info"=="Info"
+Import this file by moving it to DATA/PACKS/load==Verschiebe diese Datei nach DATA/PACKS/load um sie zu importieren
+"Generate Data Pack"=="Datenpaket erzeugen"
+Bulk-upload the index file:==Indexdatei per Bulk-Upload hochladen:
+Create the search index:==Suchindex erstellen:
+Make a search, get 10 results, search in fields text_t, title, description with boosts:==Eine Suche ausführen, 10 Ergebnisse abrufen, in den Feldern text_t, title, description mit Boosts suchen:
+Pack==Paket
+Process==Verarbeiten
+Size (KB)==Größe (KB)
+Start docker container of opensearch:==Docker-Container von OpenSearch starten:
+This JSON is an elasticsearch index dump format and can be bulk-imported to elasticsearch. Here is an example for opensearch, using docker:==Dieses JSON ist ein Elasticsearch-Index-Dump-Format und kann per Bulk-Import in Elasticsearch importiert werden. Hier ist ein Beispiel für OpenSearch mit Docker:
+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 Sprachbeschreibung enden, z.B. "-de"
+Unblock index creation:==Indexerstellung entsperren:
+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 Sammlungsname wird als Teil des Dateinamens verwendet, um den Inhalt zu beschreiben. Ausnahme: Wenn die Sammlung "user" ist, können Sie den Inhalt mit einem Slug benennen.
#-----------------------------
#File: IndexExportImportSolr_p.html
@@ -4336,35 +4469,34 @@ failed:==fehlgeschlagen:
(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)
+"Create Dump"=="Dump erstellen"
+"Restore Dump"=="Dump wiederherstellen"
+Could not create the Solr dump : no embedded Solr is available.==Solr-Dump konnte nicht erstellt werden: kein eingebettetes Solr verfügbar.
+Could not restore the Solr dump : no embedded Solr is available.==Solr-Dump konnte nicht wiederhergestellt werden: kein eingebettetes Solr verfügbar.
+Successfully restored Solr index from dump file!==Solr-Index erfolgreich aus Dump-Datei wiederhergestellt!
+This feature is available only when a local embedded Solr is active.==Diese Funktion ist nur verfügbar, wenn ein lokal eingebettetes Solr aktiv ist.
#-----------------------------
#File: IndexImportJsonList_p.html
#---------------------------
-You can download jsonlist archives from the YaCy Searchlab portal.==Sie können jsonlist-Archive vom YaCy Searchlab-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
+Thread:==Thread:
+"Import JsonList File"=="JsonList-Datei importieren"
+"Stop"=="Stopp"
#-----------------------------
#File: IndexImportWarc_p.html
@@ -4373,30 +4505,26 @@ Warc File Selection: select an warc file (which may be gz compressed)==Warc-Date
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
+"Import Warc File"=="Warc-Datei importieren"
+"Stop"=="Stopp"
#-----------------------------
+Thread:==Thread:
#File: IndexImportZim_p.html
#---------------------------
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
@@ -4404,72 +4532,80 @@ Running Time:==Laufzeit:
Collection:==Sammlung:
Processed:==Verarbeitet:
ZIM File:==ZIM-Datei:
-Entries==Einträge
-minutes==Minuten
Speed:==Geschwindigkeit:
-hours,==Stunden,
File:==Datei:
+Thread:==Thread:
+"Import ZIM File"=="ZIM-Datei importieren"
+"Stop"=="Stopp"
#-----------------------------
#File: ConfigAccountList_p.html
#---------------------------
-User
First name
Last name
Address
Last Access
Rights
Time
Traffic==Benutzer
Vorname
Nachname
Adresse
Letzter Zugriff
Rechte
Zeit
Traffic
-': User Accounts==': Benutzerkonten
User Accounts==Benutzerkonten
User List==Benutzerliste
#-----------------------------
+Address==Adresse
+First name==Vorname
+Last Access==Letzter Zugriff
+Last name==Nachname
+Rights==Rechte
+Time==Zeit
+Traffic==Traffic
+User==Benutzer
#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:==Passwort wiederholen:
Passwords do not match.==Passwörter stimmen nicht überein.
User Account Editor==Benutzerkonten-Editor
-First name:==Vorname:
-right ==Recht
-Edit current user:==Aktuellen Benutzer bearbeiten:
-Last name:==Nachname:
-Timelimit:==Zeitlimit:
-Time used:==Verbrauchte Zeit:
-Username:==Benutzername:
-Password:==Passwort:
back to user list==zurück zur Benutzerliste
-Address:==Adresse:
-': User Editor==': Benutzer-Editor
Generic error.==Allgemeiner Fehler.
-User created:==Benutzer erstellt:
-User changed:==Benutzer geändert:
Rights:==Rechte:
+"Delete User"=="Benutzer löschen"
+"Save User"=="Benutzer speichern"
+"ConfigAccountList_p.html"=="ConfigAccountList_p.html"
#-----------------------------
+Address==Adresse
+First name==Vorname
+Last name==Nachname
+Password==Passwort
+Repeat password==Passwort wiederholen
+Time used==Verbrauchte Zeit
+Timelimit==Zeitlimit
+Username==Benutzername
#File: ContentAnalysis_p.html
#---------------------------
-This field is set during parsing and is influenced by two attributes for the TextProfileSignature class.==Dieses Feld wird beim Parsen gesetzt und wird von zwei Attributen der Klasse TextProfileSignature beeinflusst.
-Double Content Detection
Double-Content detection is done using a ranking on a 'unique'-Field, named 'fuzzy_signature_unique_b'.==Doppelte-Inhalte-Erkennung
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
+minTokenLen==minTokenLen
+quantRate==quantRate
#-----------------------------
+Double Content Detection==Double-Content-Erkennung
+Double-Content detection is done using a ranking on a 'unique'-Field, named 'fuzzy_signature_unique_b'.==Double-Content-Erkennung erfolgt über ein Ranking auf einem 'unique'-Feld namens 'fuzzy_signature_unique_b'.
+"Re-Set to default"=="Auf Standard zurücksetzen"
+"Set"=="Setzen"
#File: CrawlMonitorRemoteStart.html
#---------------------------
-Remote crawl start points, crawl is ongoing==Entfernte Crawl-Startpunkte, Crawl läuft
-Remote crawl start points, finished:==Entfernte Crawl-Startpunkte, abgeschlossen:
-': 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
-Intention/Description==Absicht/Beschreibung
-Accept '?' URLs=='?'-URLs akzeptieren
-Start Time==Startzeit
-Peer Name==Peer-Name
-Start URL==Start-URL
-Depth==Tiefe
+no==nein
+yes==ja
#-----------------------------
+Accept '?' URLs=='?' URLs akzeptieren
+Depth==Tiefe
+Intention/Description==Absicht/Beschreibung
+Peer Name==Peer-Name
+Remote crawl start points, crawl is ongoing==Remote-Crawl-Startpunkte, Crawl läuft
+Remote crawl start points, finished:==Remote-Crawl-Startpunkte, abgeschlossen:
+Start Time==Startzeit
+Start URL==Start-URL
#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.
@@ -4477,17 +4613,13 @@ When a user with limited rights (unauthenticated or without extended search righ
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 Search Portal configuration page).==(siehe den Abschnitt 'Remote results resorting' auf der Konfigurationsseite Suchportal.)
-(check the default Snippet Fetch Strategy on the Search Portal configuration page).==(siehe die Standard-Snippet-Abrufstrategie auf der Konfigurationsseite Suchportal.)
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 Accounts configuration page for details on users' rights).==(Details zu den Benutzerrechten finden Sie auf der Konfigurationsseite Konten.)
Changes will take effect immediately.==Änderungen werden sofort wirksam.
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
@@ -4497,6 +4629,9 @@ Max searches in 3s==Max. Suchen in 3s
Max searches in 3s==Max. Suchen in 3s
limitations==Beschränkungen
YaCy search==YaCy-Suche
+"Set defaults"=="Standardwerte setzen"
+"Reset to defaults settings"=="Auf Standardeinstellungen zurücksetzen"
+"Submit"=="Speichern"
#-----------------------------
#File: Trails.html
@@ -4506,28 +4641,23 @@ CyTag Trails==CyTag-Spuren
#File: TransNews_p.html
#---------------------------
- Vote on this translation. If you vote positive the translation is added to your local translation list.== Stimmen Sie über diese Übersetzung ab. Wenn Sie positiv abstimmen, wird die Übersetzung Ihrer lokalen Übersetzungsliste hinzugefügt.
- You can check your outgoing messages here.== Ihre ausgehenden Nachrichten können Sie hier prüfen.
-To edit or add local translations you can use Translator_p.html.==Zum Bearbeiten oder Hinzufügen lokaler Übersetzungen können Sie Translator_p.html verwenden.
-The remote peer can vote on your translation and add it to its own local translation. ==Der entfernte Peer kann über Ihre Übersetzung abstimmen und sie zu seiner eigenen lokalen Übersetzung hinzufügen.
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
-
Translation:==Übersetzung:
English:==Englisch:
existing==vorhanden
-score==Bewertung
+"negative vote"=="Negative Bewertung"
+"positive vote"=="Positive Bewertung"
+Originator==Initiator
+Vote on this translation. If you vote positive the translation is added to your local translation list.==Über diese Übersetzung abstimmen. Wenn Sie positiv abstimmen, wird die Übersetzung zu Ihrer lokalen Übersetzungsliste hinzugefügt.
#-----------------------------
+File:==Datei:
+The remote peer can vote on your translation and add it to its own local translation.==Der Remote-Peer kann über Ihre Übersetzung abstimmen und sie zu seiner eigenen lokalen Übersetzung hinzufügen.
+"Publish"=="Veröffentlichen"
#File: VFS.html
#---------------------------
User storage in the browser cache with file-system-like navigation.==Benutzerspeicher im Browser-Cache mit dateisystemartiger Navigation.
-Select a .txt or .md file to preview.==Wählen Sie eine .txt- oder .md-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
@@ -4535,56 +4665,64 @@ Edit file==Datei bearbeiten
Preview==Vorschau
Discard==Verwerfen
Save==Speichern
+"File system browser"=="Dateisystem-Browser"
+"Root contents"=="Root-Inhalte"
#-----------------------------
#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 ==Dokument-Zitate für
-Sentences in==Sätzen in
List of==Liste von
+Cited==Zitiert
+filter cited sentences==zitierte Sätze filtern
+filter off==Filter aus
#-----------------------------
#File: YaCySearchPluginFF.html
#---------------------------
In Mozilla Firefox, you can the Search-Plugin via the search box on the toolbar. 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. 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.
-YaCy Firefox Search-Plugin Installation:==YaCy Firefox-Suchplugin-Installation:
-Install the YaCy search plugin.==Installieren Sie das YaCy-Suchplugin.
-: Firefox Search Plugin==: Firefox-Suchplugin
-': Quick Crawl Link==': Schnell-Crawl-Link
+"YaCy-Logo"=="YaCy-Logo"
#-----------------------------
+Install the YaCy search plugin.==YaCy-Such-Plugin installieren.
+YaCy Firefox Search-Plugin Installation:==YaCy Firefox Such-Plugin Installation:
#File: env/templates/simpleSearchHeader.template
#---------------------------
-Search Interfaces==Suchschnittstellenexternal Community (Web Forums)==extern Community (Web-Foren)
API Solr Default Core / JSON==API Solr Standard-Core / JSON
- Example Calls to the Search API:== Beispielaufrufe der Such-API:API Solr Default Core / XML==API Solr Standard-Core / XML
external Git Repository==extern Git-Repository
-Toggle navigation==Navigation umschaltenexternal Download YaCy==extern YaCy herunterladen
external Bugtracker==extern Bugtracker
JavaScript information==JavaScript-Informationen
-Log in==Anmelden
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
-#-----------------------------
-
+"Help"=="Hilfe"
+"Log in to use extended search features"=="Anmelden, um erweiterte Suchfunktionen zu verwenden"
+Chat==Chat
+Search Interfaces==Suchschnittstellen
+Toggle navigation==Navigation umschalten
+"Administration"=="Administration"
+"Search Interfaces"=="Suchschnittstellen"
+==
+API Solr RSS/Opensearch==API Solr RSS/OpenSearch
+API Solr Webgraph Core / XML==API Solr-Webgraph-Core / XML
+API YaCy JSON==API YaCy JSON
+API YaCy RSS/Opensearch==API YaCy RSS/OpenSearch
+#-----------------------------
+
+Administration »==Administration »
+Example Calls to the Search API:==Beispielaufrufe der Such-API:
+Log in==Anmelden
#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.
-Attach PNG/JPG or text (.txt/.md/.tex)==PNG/JPG oder Text anhängen (.txt/.md/.tex)
-Attach Search Results==Suchergebnisse anhängen
-Show System==System anzeigen
-Default Dialog Augmentation:==Standard-Dialog-Augmentierung:
no search, allow attachments==keine Suche, Anhänge erlauben
use global search==globale Suche verwenden
use local search==lokale Suche verwenden
@@ -4593,4 +4731,128 @@ Upload Chat==Chat hochladen
Clear Chat==Chat leeren
YaCy Chat==YaCy-Chat
User==Benutzer
+"Attach a file"=="Datei anhängen"
+"Attach search results by default"=="Suchergebnisse standardmäßig anhängen"
+"Clear chat"=="Chat leeren"
+"Download chat"=="Chat herunterladen"
+"Search"=="Suchen"
+"Send"=="Senden"
+"Show system prompt"=="System-Prompt anzeigen"
+"Upload chat"=="Chat hochladen"
+Attach PNG/JPG or text (.txt/.md/.tex)==PNG/JPG oder Text anhängen (.txt/.md/.tex)
+Attach Search Results==Suchergebnisse anhängen
+Default Dialog Augmentation:==Standard-Dialogerweiterung:
+Show System==System anzeigen
+#-----------------------------
+
+#File: jslicense.html
+#---------------------------
+License==Lizenz
+Script==Skript
+Source==Quelle
+YaCy JavaScript files license information==Lizenzinformationen zu YaCy-JavaScript-Dateien
+YaCy JavaScript license information==YaCy-JavaScript-Lizenzinformationen
+#-----------------------------
+
+#File: rct_p.html
+#---------------------------
+"retrieve"=="Abrufen"
+Retrieve remote crawl url list==Remote-Crawl-URL-Liste abrufen
+Target Peer:==Ziel-Peer:
+remote crawl fetch test==Remote-Crawl-Abruf-Test
+select==auswählen
+#-----------------------------
+
+#File: yacysearchpagination.html
+#---------------------------
+"Next page"=="Nächste Seite"
+"Previous page"=="Vorherige Seite"
+«==«
+»==»
+#-----------------------------
+
+#File: yacysearch_location.html
+#---------------------------
+The information that is presented on this page can also be retrieved as XML==Die auf dieser Seite dargestellten Informationen können auch als XML abgerufen werden
+Click the API icon to see the XML.==Klicken Sie auf das API-Symbol, um das XML zu sehen.
+"API"=="API"
+search==suchen
+"search"=="Suchen"
+#-----------------------------
+
+#File: api/push_p.html
+"Submit"=="Absenden"
+Collection==Collection
+Content-Type==Content-Type
+Data==Daten
+Example usage is the direct attachment of a content management system to YaCy to push newly changed files directly to the YaCy indexer.==Beispiel ist die direkte Anbindung eines Content-Management-Systems an YaCy, um neu geänderte Dateien direkt an den YaCy-Indexer zu senden.
+File Count==Dateianzahl
+File Number==Dateinummer
+File Upload==Dateiupload
+Files to process:==Zu verarbeitende Dateien:
+If you want to push again files, use this form to pre-define a number of upload forms:==Wenn Sie erneut Dateien pushen möchten, verwenden Sie dieses Formular, um eine Anzahl von Upload-Formularen vorzudefinieren:
+Item==Eintrag
+Last-Modified==Last-Modified
+Media-Keywords ()==Media-Keywords ()
+Media-Title==Media-Title
+Message==Meldung
+Result for the recently submitted file(s). You can also submit the same form using the servlet push_p.json to get push confirmations in json format.==Ergebnis für die kürzlich übermittelte(n) Datei(en). Sie können dasselbe Formular auch mit dem Servlet push_p.json senden, um Push-Bestätigungen im JSON-Format zu erhalten.
+Success==Erfolg
+The following attributes are only used for media type content==Die folgenden Attribute werden nur für Medientyp-Inhalte verwendet
+This form can be used to upload a file and assign it to an url.==Dieses Formular kann verwendet werden, um eine Datei hochzuladen und ihr eine URL zuzuweisen.
+URL==URL
+commit==commit
+count==count
+countfail==countfail
+countsuccess==countsuccess
+fail==fail
+false==false
+ok==ok
+successall==successall
+synchronous==synchronous
+true==true
+#---------------------------
+
+#File: env/grafics/donate.html
+#---------------------------
+"Donate!"=="Spenden!"
+Github Sponsors==GitHub Sponsors
+Please support our work on YaCy!==Bitte unterstützen Sie unsere Arbeit an YaCy!
+beneficial: 5 €==hilfreich: 5 €
+generous: 25 €==großzügig: 25 €
+gracious: 50 €==besonders großzügig: 50 €
+#-----------------------------
+
+#File: processing/domaingraph/applet/index.html
+#---------------------------
+"Download Java Plug-in"=="Java-Plug-in herunterladen"
+"Processing.org"=="Processing.org"
+Built with Processing==Erstellt mit Processing
+Get the latest Java Plug-in here.==Holen Sie hier das neueste Java-Plug-in.
+This browser does not have a Java Plug-in.==Dieser Browser hat kein Java-Plug-in.
+domaingraph : Built with Processing==domaingraph: Erstellt mit Processing
+#-----------------------------
+
+#File: proxymsg/urlproxyheader.html
+#---------------------------
+"add bookmark"=="Lesezeichen hinzufügen"
+(Warning: secure target viewed over normal http)==(Warnung: Sicheres Ziel wird über normales HTTP angezeigt)
+YaCy stop proxy==YaCy-Proxy stoppen
+#-----------------------------
+
+#File: goto_p.html
+#---------------------------
+forward to remote peer==an Remote-Peer weiterleiten
+forwarding==Weiterleitung
+#-----------------------------
+
+#File: portalsearch/yacy-portalsearch.html
+#---------------------------
+YaCy Bookmarks==YaCy-Lesezeichen
+YaCy Portalsearch:==YaCy-Portalsuche:
+#-----------------------------
+
+#File: rssTerminal.html
+#---------------------------
+rss terminal==RSS-Terminal
#-----------------------------
diff --git a/locales/el.lng b/locales/el.lng
index bc699abe5..1490d5913 100644
--- a/locales/el.lng
+++ b/locales/el.lng
@@ -1,172 +1,4772 @@
-# el.lng
-# English-->Greek
-# -----------------------
-# part of YaCy
-# (C) by Michael Peter Christen; mc@anomic.de
-# first published on http://www.anomic.de
-# Frankfurt, Germany, 2005
-#
-#
-# This file is written by (chronological order) Constantine Mousafiris
-# Αυτό το αρχείο γράφτηκε (με χρονολογική σειρά) από τον Κωστή Μουσαφείρη
-
-# If you find any mistakes or untranslated strings in this file please don't hesitate to email them to the maintainer.
-# Αν βρείτε τυχόν σφάλματα ή αμετάφραστες γραμμές κειμένου σε αυτό το αρχείο, παρακαλώ μη διστάσετε να τα στείλλετε με ένα email στον συντηρητή.
-
-#File: ConfigLanguage_p.html
-#---------------------------
-#Only part 1.
-#Μόνον το Μέρος 1.
-#Contributors are in chronological order, not how much they did absolutely.
-#Οι άνθρωποι που συνεισέφεραν παρατίθενται κατά χρονολογική σειρά, και όχι με βάση το πόσο πολλά προσέφεραν κατ' απόλυτη έννοια.
-#Thank you for your help!
-#Σας ευχαριστούμε για τη βοήθειά σας!
-default(english)==Greek
-==Constantine Mousafiris
-==
-#-----------------------------
-
-#File: Blacklist_p.html
-#---------------------------
-Blacklist Manager==Διαχειριστής Blacklist
-Blacklist==Μαύρη Λίστα
-This function provides an URL filter to the proxy; any blacklisted URL is blocked==Αυτή η λειτουργία παρέχει στον proxy ένα φίλτρο για τις URL. Στις URL που περιλαμβάνονται στη Μαύρη Λίστα, δεν θα επιτραπεί να
-from being loaded. You can define several blacklists and activate them separately.== φορτωθούν. Μπορείτε να ορίσετε διάφορες Μαύρες Λίστες και να τις ενεργοποιήσετε ξεχωριστά.
-You may also provide your blacklist to other peers by sharing them; in return you may==Μπορείτε, επίσης, να προσφέρετε τη Μαύρη Λίστα σας στους άλλους ομότιμους χρήστες, καθιστώντας την διαμοιράσιμη. Σε αντάλλαγμα μπορείτε να
-collect blacklist entries from other peers.==συλλέγετε τις καταχωρήσεις από τις Μαύρες Λίστες των άλλων ομότιμων χρηστών.
-Edit list:==Τροποποίηση καταλόγου:
-(active)#not active::active#(/active)# #(shared)#not shared::shared#(/shared)==(active)#ανενεργή::ενεργή#(/active)# #(shared)#μη διαμοιρασμένη::διαμοιρασμένη#(/shared)
-"select"=="επιλέξτε"
-New list:==Νέος κατάλογος:
-"create"=="δημιουργία"
-Enable/disable this list==Ενεργοποίηση/Απενεργοποίηση Λίστας
-Share/don't share this list==Μοιράσου/Μη μοιράζεσαι αυτή τη λίστα
-Change==Αλλαγή
-Delete this list==Διαγραφή λίστας
-/>active==/>ενεργός
-/>shared==/>διαμοιρασμένος
-Active list:==Ενεργή Λίστα:
-These are the domain name / path patterns in this blacklist:==Αυτά είναι τα ονόματα χώρου (domain name)/διαδρομές σε αυτή την Μαύρη Λίστα:
-You can select them here for deletion==Μπορείτε να τα επιλέξετε εδώ για διαγραφή
-Delete URL pattern==Διαγραφή του URL pattern
-Enter new domain name / path pattern in the form:==Βάλτε στη φόρμα ένα νέο όνομα χώρου (domain name)/διαδρομή
-#path-regexpr==path-regexpr
-Add URL pattern==Προσθήκη ενός URL pattern
-Import blacklist items from other YaCy peers:==Εισαγωγή καταχωρήσεων από Μαύρες Λίστες άλλων ομότιμων χρηστών του YacY:
-#Host:==Host:
-"Load new blacklist items"=="Φορτώστε νέες καταχωρήσεις στη Μαύρη Λίστα"
-Import blacklist items from URL:==Εισαγωγή καταχωρήσεων της Μαύρης Λίστας από την URL
-#URL:==URL:
-"Load new blacklist items"=="Φορτώστε νέες καταχωρήσεις στη Μαύρη Λίστα"
-Import blacklist items from file:==Εισαγωγή καταχωρήσεων που βρίσκονται σε Μαύρες Λίστες, από το αρχείο:
-"Load new blacklist items"=="Φορτώστε νέες καταχωρήσεις στη Μαύρη Λίστα"
-was removed from blacklist==αφαιρέθηκε από τη Μαύρη Λίστα
-was added to the blacklist==προσετέθη στη Μαύρη Λίστα
-File:==Αρχείο:
-#-----------------------------
-
-#File: Bookmarks.html
-#---------------------------
-#YaCy '#[clientname]#': Bookmarks==YaCy '#[clientname]#': Bookmarks
-#
Bookmarks==
Bookmarks
-Add Bookmark==Προσθήκη Σελειδοδείκτη (Bookmark)
-Edit Bookmark==Τροποποίηση Σελειδοδείκτη (Bookmark)
-#URL:==URL:
-Title:==Τίτλος:
-Description:==Περιγραφή:
-Tags (comma separated):==Tags (χωρισμένα με κόμματα):
-Public:==Δημόσιος:
-yes==ναι
-no==όχι
-"create"=="δημιουργία"
-"edit"=="τροποποίηση"
-Tagged with==Ετικέττα
-Edit==Τροποποίηση
-Delete==Διαγραφή
-next page==επόμενη σελίδα
-All==Όλα
-#-----------------------------
-
-#File: ConfigProfile_p.html
-#---------------------------
-Your Personal Profile==Το Προσωπικό σας Προφίλ
-You can create a personal profile here. Other YaCy users can view these information using a link on the network page.==Εδώ μπορείτε να δημιουργήσετε το προσωπικό σας προφίλ. Οι άλλοι χρήστες του YaCy θα μπορούν να δουν αυτές τις πληροφορίες, χρησιμοποιώντας το link στη σελίδα The search can also be applied globally, by searching other peers. You can use the following options to enhance your search results=='Δίκτυο'.
-You do not need to provide any personal data here, but if you want to distribute your contact information, you can do that here.==Δε χρειάζεται να δώσετε κανένα προσωπικό στοιχείο, αλλά αν θέλετε να γνωστοποιήσετε τις πληροφορίες για το πως να έρθουν σε επαφή μαζί σας, μπορείτε να το κάνετε εδώ.
-#Name==Όνομα
-#Nick Name==Ψευδώνυμο
-#Homepage==Αρχική σελίδα
-#eMail==eMail
-#ICQ==ICQ
-#Jabber==Jabber
-#Yahoo!==Yahoo!
-#MSN=MSN
-Comment==Σχόλιο
-"Save"=="Αποθήκευση"
-#-----------------------------
-
-#File: Connections_p.html
-#---------------------------
-YaCy '#[clientname]#': Connection Tracking==YaCy '#[clientname]#': Ανίχνευση συνδέσεως
-Connection Tracking==Ανίχνευση συνδέσεως
-Incoming Connections==Εισερχόμενες συνδέσεις
-Showing #[numActiveRunning]# active, #[numActivePending]# pending connections from a max. of #[numMax]# allowed incoming connections.==Προβολή ενεργών συνδέσεων #[numActiveRunning]# και των εκκρεμών συνδέσεων #[numActivePending]# από ένα μέγιστο #[numMax]# επιτρεπόμενων εισερχόμενων συνδέσεων.
-Protocol==Πρωτόκολλο
-Duration==Διάρκεια
-Source IP[:Port]==IP Πηγής[:Port]
-Dest. IP[:Port]==IP Προορισμού.[:Port]
-Command==Εντολή
-Used==Σε χρήση
-Close==Κλειστή
-Waiting for new request nr.==Αναμένοντας νέο αριθμό αιτήματος
-#-----------------------------
-
-#File: CookieMonitorIncoming_p.html
-#---------------------------
-Incoming Cookies Monitor==Παρακολούθηση Εισερχόμενων Cookies
-Cookie Monitor: Incoming Cookies==Παρακολούθηση Cookies: Εισερχόμενα Cookies
-This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:==Αυτός είναι ένας κατάλογος με τα Cookies που έστειλε ο διακομιστής προς τους πελάτες του YaCy Proxy :
-Showing==Επίδειξη
-entries from a total of==καταχωρήσεις από ένα σύνολο
-Cookies==Cookies
-#-----------------------------
-
-#File: CookieMonitorOutgoing_p.html
-#---------------------------
-Outgoing Cookies Monitor==Παρακολούθηση Εξερχόμενων Cookies
-Cookie Monitor: Outgoing Cookies==Παρακολούθηση Cookies: Εξερχόμενα Cookies
-This is a list of Cookies that a browser using the YaCy Proxy has sent to a web server:==:Αυτός είναι ένας κατάλογος με Cookies που έστειλε ένας browser ο οποίος χρησιμοποιούσε τον YaCy Proxy προς τον διακομιστή διαδικτύου
-Showing==Επίδειξη
-entries from a total of==καταχωρήσεις από ένα σύνολο
-Cookies==Cookies
-#-----------------------------
-
-#File: Help.html
-#---------------------------
-YaCy: Help==YaCy: Βοήθεια
-Help==Βοήθεια
-Search Page==Σελίδα Αναζήτησης
-Network==Δίκτυο
-Status==Κατάσταση
-
-YaCy uses Regular Expressions for some functions, for example in the blacklist.==Το YaCy, σε κάποιες συναρτήσεις, χρησιμοποιεί Regular Expressions, για παράδειγμα στη Μαύρη Λίστα.
-There are some standards for these regexps, YaCy uses the syntax used by Perl 5.==Υπάρχουν διάφορα πρότυπα για τις regexps, το YaCy χρησιμοποιεί την σύνταξη της Perl 5.
-Here is a short overview about the functions, which should fir for most cases:<==Ακολουθεί μία σύντομη επισκόπηση αυτών των συναρτήσεων, που πρέπει να επαρκούν για την πλειοψηφία των περιπτώσεων:<
-
-arbitrary character==αυθαίρετοι χαρακτήρες
-character x==χαρακτήρας x
-not x==όχι x
-0 or more times x==0 ή περισσότερες φορές x
-0 or 1 time x==0 ή 1 φορά x
-1 or more times x==1 ή περισσότερες φορές x
-concatenation of x and y==Concatenation των x και y
-x or y==x ή y
-String "foo" or string "bar"==String "foo" ή String "bar"
-a or b or c (same as a|b|c)==a ή b ή c (ίδιο όπως και το a|b|c)
-a or b or c (same as above)==a ή b ή c (όπως και πιο πάνω)
-exactly n appearances of x==ακριβώς n εμφανίσεις του x
-at least n appearances of x==τουλάχιστον n εμφανίσεις του x
-at least n, maximum m appearanches of x==τουλάχιστον n, το ανώτερο m εμφανίσεις του x
-Modify priority of instructions==Αλλάξτε την προτεραιότητα των εντολών
-#-----------------------------
-
-# EOF
+# el.lng
+# English-->Greek
+# -----------------------
+# part of YaCy
+# (C) by Michael Peter Christen; mc@anomic.de
+# first published on http://www.anomic.de
+# Frankfurt, Germany, 2005
+#
+#
+# This file is written by (chronological order) Constantine Mousafiris
+# Αυτό το αρχείο γράφτηκε (με χρονολογική σειρά) από τον Κωστή Μουσαφείρη
+
+# If you find any mistakes or untranslated strings in this file please don't hesitate to email them to the maintainer.
+# Αν βρείτε τυχόν σφάλματα ή αμετάφραστες γραμμές κειμένου σε αυτό το αρχείο, παρακαλώ μη διστάσετε να τα στείλλετε με ένα email στον συντηρητή.
+
+#File: AILab.html
+#---------------------------
+"Inference engine setup"=="Ρύθμιση κινητήρα συμπερασμάτων"
+"Model assignment preview"=="Προεπισκόπηση ανάθεσης μοντέλου"
+"Index creation"=="Δημιουργία ευρετηρίου"
+"RAG configuration"=="διαμόρφωση RAG"
+"Tools configuration"=="Διαμόρφωση εργαλείων"
+"Log report monitor"=="Παρακολούθηση αναφοράς καταγραφής"
+"Shield definition"=="Ρύθμιση προστασίας"
+AI Lab Build System==AI Lab Build System
+Craft your AI toolkit==Κατασκευάστε την εργαλειοθήκη AI σας
+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.==Ολοκληρώστε τις παρακάτω αποστολές για να ξεκλειδώσετε τον βοηθό τεχνητής νοημοσύνης του YaCy: συνδέστε έναν κινητήρα συμπερασμάτων, φορτώστε μοντέλα παραγωγής, τροφοδοτήστε τον με το ευρετήριό σας και, στη συνέχεια, καλωδίωση RAG και ασπίδες.
+0 / 6 unlocked==0 / 6 ξεκλείδωτο
+Mandatory==Επιτακτικός
+Needs setup==Χρειάζεται ρύθμιση
+Bind an inference engine==Συνδέστε μια μηχανή συμπερασμάτων
+Pick your host (Ollama, LM Studio, OpenAI-compatible) and give YaCy a place to send prompts.==Επιλέξτε τον οικοδεσπότη σας (Ollama, LM Studio, OpenAI-συμβατός) και δώστε στον YaCy ένα μέρος για να στείλει μηνύματα προτροπής.
+Open engine setup==Ανοίξτε τη ρύθμιση κινητήρα
+Set hoststub, API keys, and defaults to unlock downloads.==Ορίστε τα κλειδιά hoststub, API και τις προεπιλογές για να ξεκλειδώσετε τις λήψεις.
+Populate the Production Models Matrix==Συμπληρώστε τον πίνακα μοντέλων παραγωγής
+Assign models for chat, search, translation, and more. This is your loadout bench.==Εκχωρήστε μοντέλα για συνομιλία, αναζήτηση, μετάφραση και άλλα. Αυτός είναι ο πάγκος φόρτωσης σας.
+Go to Production Models Matrix==Μεταβείτε στο Production Models Matrix
+Deploy at least one model, then assign capabilities (chat, search-query, tooling, vision).==Αναπτύξτε τουλάχιστον ένα μοντέλο και, στη συνέχεια, εκχωρήστε δυνατότητες (chat, search-query, εργαλεία, όραμα).
+Optional==Προαιρετικός
+Grow a search index==Αναπτύξτε ένα ευρετήριο αναζήτησης
+Create a local index for grounding: crawl a site or import a pack to give your AI facts to cite.==Δημιουργήστε ένα τοπικό ευρετήριο για γείωση: ανιχνεύστε έναν ιστότοπο ή εισαγάγετε ένα πακέτο για να αναφέρετε στοιχεία AI σας.
+Start a crawl==Ξεκινήστε μια ανίχνευση
+Import an index pack==Εισαγάγετε ένα πακέτο ευρετηρίου
+Indexed documents:==Ευρετηριασμένα έγγραφα:
+required to unlock (need at least 1000 documents).==απαιτείται για ξεκλείδωμα (χρειάζονται τουλάχιστον 1000 έγγραφα).
+Wire RAG retrieval==Ανάκτηση καλωδίου RAG
+Map which production models answer search-query and Q/A pairs so the RAG proxy can mix search with chat.==Χαρτογραφήστε ποια μοντέλα παραγωγής απαντούν σε ζεύγη search-query και Q/A, ώστε ο διακομιστής μεσολάβησης RAG να μπορεί να συνδυάσει την αναζήτηση με τη συνομιλία.
+Wire RAG prompts==Καλωδιακά RAG προτροπές
+Test in Chat==Δοκιμή στο Chat
+Set the search-query and qapairs columns to connect retrieval to your chat flow.==Ορίστε τις στήλες search-query και qapairs για να συνδέσετε την ανάκτηση με τη ροή συνομιλίας σας.
+Enable/Disable Tools==Ενεργοποίηση/απενεργοποίηση εργαλείων
+Superpowers for the YaCy Chat==Υπερδυνάμεις για τη συνομιλία YaCy
+Open tools configuration==Ανοίξτε τη διαμόρφωση εργαλείων
+Tune descriptions and set maxCallsPerTurn per tool (0 disables a tool).==Συντονίστε τις περιγραφές και ορίστε maxCallsPerTurn ανά εργαλείο (0 απενεργοποιεί ένα εργαλείο).
+Monitor log reports==Παρακολούθηση αναφορών καταγραφής
+Assign a log-report model, then review generated hourly and daily self-enhancement reports.==Εκχωρήστε ένα μοντέλο αναφοράς καταγραφής και, στη συνέχεια, ελέγξτε τις ωριαίες και ημερήσιες αναφορές αυτοβελτίωσης που δημιουργούνται.
+Open log reports==Άνοιγμα αναφορών καταγραφής
+Assign log-report model==Εκχώρηση μοντέλου αναφοράς καταγραφής
+Report generation stays inactive until a production model is assigned to the log-report role.==Η δημιουργία αναφορών παραμένει ανενεργή έως ότου ένα λειτουργικό μοντέλο εκχωρηθεί στον ρόλο log-report.
+Define a shield==Ρύθμιση προστασίας
+Add guardrails: access rates, grant or deny non-localhost access. Activate the front page link for chat to complete this quest.==Προσθήκη προστατευτικών κιγκλιδωμάτων: ποσοστά πρόσβασης, παραχώρηση ή απαγόρευση πρόσβασης μη τοπικού κεντρικού υπολογιστή. Ενεργοποιήστε τον σύνδεσμο της πρώτης σελίδας για συνομιλία για να ολοκληρώσετε αυτήν την αποστολή.
+Open shield settings==Άνοιγμα ρυθμίσεων προστασίας
+Store your shield directives (system prompts, stop words) as properties, then exercise them in chat.==Αποθηκεύστε τις οδηγίες προστασίας (system prompts, stop words) ως ιδιότητες και στη συνέχεια δοκιμάστε τις στη συνομιλία.
+#-----------------------------
+
+#File: AIShield_p.html
+#---------------------------
+Wire RAG Retrieval Shield==Σύρμα RAG Ασπίδα ανάκτησης
+Control who can access the chat interface and rate-limit non-localhost clients to protect your peer and LLM backends from overload.==Ελέγξτε ποιος μπορεί να έχει πρόσβαση στη διεπαφή συνομιλίας και σε πελάτες που δεν είναι τοπικοί κεντρικοί υπολογιστές με όριο ρυθμού, για να προστατεύσετε τους ομοτίμους και τα LLM backend σας από υπερφόρτωση.
+Overall Load Protection==Συνολική προστασία φορτίου
+Recent access volume across all clients (localhost included). You can enforce global limits here to protect the host.==Πρόσφατος όγκος πρόσβασης σε όλους τους πελάτες (συμπεριλαμβάνεται ο localhost). Μπορείτε να επιβάλλετε καθολικά όρια εδώ για να προστατεύσετε τον κεντρικό υπολογιστή.
+Requests / minute==Αιτήματα / λεπτό
+Requests / hour==Αιτήματα / ώρα
+Requests / day==Αιτήματα / ημέρα
+Limit for all requests, including localhost==Όριο για όλα τα αιτήματα, συμπεριλαμβανομένου του localhost
+Per minute:==Ανά λεπτό:
+Per hour:==Ανά ώρα:
+Per day:==Ανά ημέρα:
+Guest Access Control & Rate Limits==Έλεγχος πρόσβασης επισκεπτών και όρια τιμών
+By default only localhost may reach the chat UI. Enable non-localhost access and throttle requests to reduce abuse.==Από προεπιλογή, μόνο ο localhost μπορεί να φτάσει στη διεπαφή συνομιλίας. Ενεργοποιήστε τα αιτήματα πρόσβασης και γκαζιού εκτός τοπικού κεντρικού υπολογιστή για να μειώσετε την κατάχρηση.
+Allow non-localhost clients to access the chat interface==Επιτρέψτε σε πελάτες που δεν είναι localhost να έχουν πρόσβαση στη διεπαφή συνομιλίας
+Requests from non-localhost will be throttled using these caps:==Τα αιτήματα από μη τοπικούς κεντρικούς υπολογιστές θα διευθετούνται χρησιμοποιώντας αυτά τα όρια:
+Front Page Link==Σύνδεσμος πρώτης σελίδας
+Expose a shortcut to the chat UI on the search front page if you want users to discover it.==Εκθέστε μια συντόμευση στη διεπαφή χρήστη συνομιλίας στην πρώτη σελίδα αναζήτησης, εάν θέλετε να την ανακαλύψουν οι χρήστες.
+Show a link to yacychat.html on the search front page==Εμφάνιση συνδέσμου προς yacychat.html στην πρώτη σελίδα αναζήτησης
+Save Shield Settings==Αποθήκευση ρυθμίσεων προστασίας
+#-----------------------------
+
+#File: AccessGrid_p.html
+#---------------------------
+"YaCy Access Grid"=="YaCy Πλέγμα πρόσβασης"
+Server Access Grid==Πλέγμα πρόσβασης διακομιστή
+This images shows incoming connections to your YaCy peer and outgoing connections from your peer to other peers and web servers==Αυτές οι εικόνες δείχνουν τις εισερχόμενες συνδέσεις με το YaCy ομότιμο σας και τις εξερχόμενες συνδέσεις από το ομότιμο σας σε άλλους ομότιμους και διακομιστές ιστού
+#-----------------------------
+
+#File: AccessTracker_p.html
+#---------------------------
+Server Access Overview==Επισκόπηση πρόσβασης διακομιστή
+Host==Πλήθος
+Access Count During==Αριθμός πρόσβασης κατά τη διάρκεια
+last Second==τελευταίο δευτερόλεπτο
+last Minute==τελευταία στιγμή
+last 10 Minutes==τελευταία 10 λεπτά
+last Hour==τελευταία Ώρα
+The following hosts are registered as source for brute-force requests to protected pages==Οι ακόλουθοι κεντρικοί υπολογιστές έχουν εγγραφεί ως πηγή για αιτήματα brute-force σε προστατευμένες σελίδες
+Access Times==Χρόνοι πρόσβασης
+Server Access Details==Στοιχεία πρόσβασης διακομιστή
+This is a list of requests (max. 1000) to the local http server within the last hour.==Αυτή είναι μια λίστα αιτημάτων (μέγ. 1000) στον τοπικό διακομιστή http την τελευταία ώρα.
+Date==Ημερομηνία
+Path==Μονοπάτι
+Local Search Log==Αρχείο καταγραφής τοπικής αναζήτησης
+This is a list of searches that had been requested from this' peer search interface==Αυτή είναι μια λίστα αναζητήσεων που είχαν ζητηθεί από αυτήν τη διεπαφή ομότιμης αναζήτησης
+Requesting Host==Αίτηση οικοδεσπότη
+Offset==Οφσετ
+Expected Results==Αναμενόμενα Αποτελέσματα
+Returned Results==Επιστράφηκαν αποτελέσματα
+Known Results==Γνωστά Αποτελέσματα
+Used Time (ms)==Χρόνος χρήσης (ms)
+URL fetch (ms)==Ανάκτηση URL (ms)
+Snippet comp (ms)==Σύνθεση αποσπάσματος (ms)
+Query==Ερώτηση
+User Agent==Πράκτορας χρήστη
+Top Search Words (last 7 Days)==Κορυφαίες λέξεις αναζήτησης (τελευταίες 7 ημέρες)
+Local Search Host Tracker==Παρακολούθηση κεντρικού υπολογιστή τοπικής αναζήτησης
+Count==Κόμης
+Queries Per Last Hour==Ερωτήματα ανά τελευταία ώρα
+Access Dates==Ημερομηνίες πρόσβασης
+Remote Search Log==Αρχείο καταγραφής απομακρυσμένης αναζήτησης
+This is a list of searches that had been requested from remote peer search interface==Αυτή είναι μια λίστα αναζητήσεων που είχαν ζητηθεί από τη διεπαφή απομακρυσμένης ομότιμης αναζήτησης
+Peer Name==Όνομα ομοτίμου
+Search Word Hashes==Αναζήτηση κατακερματισμών λέξεων
+Remote Search Host Tracker==Παρακολούθηση κεντρικού υπολογιστή απομακρυσμένης αναζήτησης
+#-----------------------------
+
+#File: Autocrawl_p.html
+#---------------------------
+"Save"=="Αποθήκευση"
+Autocrawler==Autocrawler
+Autocrawler automatically selects and adds tasks to the local crawl queue. This will work best when there are already quite a few domains in the index.==Το Autocrawler επιλέγει αυτόματα και προσθέτει εργασίες στην τοπική ουρά ανίχνευσης. Αυτό θα λειτουργήσει καλύτερα όταν υπάρχουν ήδη αρκετοί τομείς στο ευρετήριο.
+Autocralwer Configuration==Διαμόρφωση Autocralwer
+You need to restart for some settings to be applied==Πρέπει να κάνετε επανεκκίνηση για να εφαρμοστούν ορισμένες ρυθμίσεις
+Enable Autocrawler:==Ενεργοποίηση Autocrawler:
+Deep crawl every Nth document:==Βαθιά ανίχνευση κάθε Νοτου εγγράφου:
+Warning: if this is bigger than "Rows to fetch" only shallow crawls will run.==Προειδοποίηση: εάν αυτό είναι μεγαλύτερο από το "Σειρές προς ανάκτηση" θα εκτελούνται μόνο ρηχές ανιχνεύσεις.
+Rows to fetch at once:==Σειρές για ανάκτηση ταυτόχρονα:
+Recrawl only older than # days:==Ανίχνευση εκ νέου μόνο παλαιότερη από # ημέρες:
+Get hosts by query:==Λήψη κεντρικών υπολογιστών με ερώτημα:
+Can be any valid Solr query.==Μπορεί να είναι οποιοδήποτε έγκυρο ερώτημα Solr.
+Shallow crawl depth (0 to 2):==Μικρό βάθος ανίχνευσης (0 έως 2):
+Deep crawl depth (1 to 5):==Βαθύ βάθος ανίχνευσης (1 έως 5):
+Index text:==Κείμενο ευρετηρίου:
+Index media:==Μέσα ευρετηρίου:
+#-----------------------------
+
+#File: Automation_p.html
+#---------------------------
+"API"=="API"
+"no previous page"=="καμία προηγούμενη σελίδα"
+"previous page"=="προηγούμενη σελίδα"
+"no next page"=="όχι επόμενη σελίδα"
+"next page"=="επόμενη σελίδα"
+"Apply edited next execution dates"=="Εφαρμογή επεξεργασμένων επόμενων ημερομηνιών εκτέλεσης"
+"clone"=="κλώνος"
+"yyyy/MM/dd HH:mm:ss"=="εεεε/MM/dd ΩΩ:λλ:δδ"
+"Execute Selected Actions"=="Εκτελέστε επιλεγμένες ενέργειες"
+"Delete Selected Actions"=="Διαγραφή επιλεγμένων ενεργειών"
+"Delete all Actions which had been created before "=="Διαγράψτε όλες τις Ενέργειες που είχαν δημιουργηθεί στο παρελθόν"
+Process Automation==Αυτοματισμός Διαδικασιών
+This table shows actions that had been issued on the YaCy interface.==Αυτός ο πίνακας εμφανίζει ενέργειες που είχαν εκδοθεί στη διεπαφή YaCy.
+These recorded actions can be used to repeat specific actions and to send them==Αυτές οι καταγεγραμμένες ενέργειες μπορούν να χρησιμοποιηθούν για την επανάληψη συγκεκριμένων ενεργειών και την αποστολή τους
+to a scheduler for a periodic execution.==σε έναν προγραμματιστή για μια περιοδική εκτέλεση.
+The information that is presented on this page can also be retrieved as XML.==Οι πληροφορίες που παρουσιάζονται σε αυτήν τη σελίδα μπορούν επίσης να ανακτηθούν ως XML.
+Click the API icon to see the XML.==Κάντε κλικ στο εικονίδιο API για να δείτε το XML.
+Recorded Actions==Καταγεγραμμένες ενέργειες
+Type==Τύπος
+Comment==Σχόλιο
+Call Count==Καταμέτρηση κλήσεων
+Recording Date==Καταγραφή Ημερομηνία
+Last Exec Date==Last Exec Date
+Next Exec Date==Επόμενη Exec Date
+Apply==Εφαρμόζω
+Event Trigger==Ενεργοποίηση συμβάντος
+Scheduler==Προγραμματιστής
+URL==URL
+no event==κανένα συμβάν
+activate event==ενεργοποίηση εκδήλωσης
+off==μακριά από
+run once==τρέξε μια φορά
+run regular==τρέξτε τακτικά
+after start-up==μετά την εκκίνηση
+at 00:00h==στις 00:00
+at 01:00h==στις 01:00
+at 02:00h==στις 02:00
+at 03:00h==στις 03:00
+at 04:00h==στις 04:00
+at 05:00h==στις 05:00
+at 06:00h==στις 06:00
+at 07:00h==στις 07:00
+at 08:00h==στις 08:00
+at 09:00h==στις 09:00
+at 10:00h==στις 10:00
+at 11:00h==στις 11:00
+at 12:00h==στις 12:00
+at 13:00h==στις 13:00
+at 14:00h==στις 14:00
+at 15:00h==στις 15:00
+at 16:00h==στις 16:00
+at 17:00h==στις 17:00
+at 18:00h==στις 18:00
+at 19:00h==στις 19:00
+at 20:00h==στις 20:00
+at 21:00h==στις 21:00
+at 22:00h==στις 22:00
+at 23:00h==στις 23:00
+no repetition==καμία επανάληψη
+activate scheduler==ενεργοποίηση χρονοπρογραμματιστή
+minutes==πρακτικά
+hours==ώρες
+days==ημέρες
+1 day==1 ημέρα
+2 days==2 μέρες
+3 days==3 μέρες
+4 days==4 μέρες
+5 days==5 μέρες
+6 days==6 μέρες
+1 week==1 εβδομάδα
+2 weeks==2 εβδομάδες
+3 weeks==3 εβδομάδες
+1 month==1 μήνα
+2 months==2 μήνες
+3 months==3 μηνών
+6 months==6 μηνών
+9 months==9 μήνες
+1 year==1 έτος
+2 years==2 χρόνια
+Result of API execution==Αποτέλεσμα εκτέλεσης API
+Status==Κατάσταση
+#-----------------------------
+
+#File: BlacklistCleaner_p.html
+#---------------------------
+"Check"=="Ελεγχος"
+"Change Selected"=="Επιλεγμένη αλλαγή"
+"Delete Selected"=="Διαγραφή επιλεγμένων"
+Blacklist Cleaner==Καθαριστικό μαύρης λίστας
+Here you can remove or edit illegal or double blacklist-entries.==Εδώ μπορείτε να αφαιρέσετε ή να επεξεργαστείτε παράνομες ή διπλές καταχωρίσεις μαύρης λίστας.
+Check list==Λίστα ελέγχου
+Allow regular expressions in host part of blacklist entries.==Να επιτρέπονται τυπικές εκφράσεις στο τμήμα κεντρικού υπολογιστή των καταχωρίσεων μαύρης λίστας.
+The blacklist-cleaner only works for the following blacklist-engines up to now:==Το πρόγραμμα καθαρισμού μαύρης λίστας λειτουργεί μέχρι τώρα μόνο για τους ακόλουθους κινητήρες μαύρης λίστας:
+Two wildcards in host-part==Δύο χαρακτήρες μπαλαντέρ στο κεντρικό μέρος
+Either subdomain==Είτε υποτομέα
+or==ή
+wildcard==μπαλαντέρ
+Path is invalid Regex==Η διαδρομή δεν είναι έγκυρη Regex
+Wildcard not on begin or end==Ο χαρακτήρας μπαλαντέρ δεν είναι στην αρχή ή στο τέλος
+Host contains illegal chars==Ο κεντρικός υπολογιστής περιέχει παράνομους χαρακτήρες
+Double==Διπλό
+Host is invalid Regex==Ο κεντρικός υπολογιστής δεν είναι έγκυρος Regex
+No Blacklist selected==Δεν έχει επιλεγεί μαύρη λίστα
+#-----------------------------
+
+#File: BlacklistImpExp_p.html
+#---------------------------
+"Load new blacklist items"=="Φόρτωση νέων στοιχείων μαύρης λίστας"
+"Export list as XML"=="Εξαγωγή λίστας ως XML"
+"Export list as text"=="Εξαγωγή λίστας ως κείμενο"
+Blacklist Import==Εισαγωγή μαύρης λίστας
+Used Blacklist engine:==Χρησιμοποιημένος κινητήρας μαύρης λίστας:
+Import blacklist items from...==Εισαγωγή στοιχείων μαύρης λίστας από...
+other YaCy peers:==άλλοι YaCy συνομήλικοι:
+URL:==URL:
+plain text file:==αρχείο απλού κειμένου:
+Upload a regular text file which contains one blacklist entry per line.==Ανεβάστε ένα κανονικό αρχείο κειμένου που περιέχει μία καταχώριση στη μαύρη λίστα ανά γραμμή.
+XML file:==αρχείο XML:
+Upload an XML file which contains one or more blacklists.==Ανεβάστε ένα αρχείο XML που περιέχει μία ή περισσότερες μαύρες λίστες.
+Export blacklist items to...==Εξαγωγή στοιχείων μαύρης λίστας σε...
+Here you can export a blacklist as an XML file. This file will contain additional==Εδώ μπορείτε να εξαγάγετε μια μαύρη λίστα ως αρχείο XML. Αυτό το αρχείο θα περιέχει επιπλέον
+information about which cases a blacklist is activated for.==πληροφορίες σχετικά με τις περιπτώσεις για τις οποίες ενεργοποιείται μια μαύρη λίστα.
+all==όλοι
+Here you can export a blacklist as a regular text file with one blacklist entry per line.==Εδώ μπορείτε να εξαγάγετε μια μαύρη λίστα ως κανονικό αρχείο κειμένου με μία καταχώρηση μαύρης λίστας ανά γραμμή.
+This file will not contain any additional information.==Αυτό το αρχείο δεν θα περιέχει πρόσθετες πληροφορίες.
+#-----------------------------
+
+#File: BlacklistTest_p.html
+#---------------------------
+"Test"=="Δοκιμή"
+Blacklist Test==Δοκιμή μαύρης λίστας
+Used Blacklist engine:==Χρησιμοποιημένος κινητήρας μαύρης λίστας:
+Test list:==Λίστα δοκιμών:
+It is blocked for the following cases:==Είναι μπλοκαρισμένο για τις ακόλουθες περιπτώσεις:
+is not blocked==δεν είναι μπλοκαρισμένο
+Crawling==Σέρνοντας
+DHT==DHT
+News==Νέα
+Proxy==Πληρεξούσιο
+Search==Ερευνα
+Surftips==Surftips
+The tested URL was not valid.==Το δοκιμασμένο URL δεν ήταν έγκυρο.
+#-----------------------------
+
+#File: Blacklist_p.html
+#---------------------------
+"create"=="δημιουργία"
+"Add URL pattern"=="Προσθήκη URL μοτίβου"
+"set"=="σειρά"
+"Save URL pattern(s)"=="Αποθήκευση URL μοτίβων"
+"Share/don't share this list"=="Μοιραστείτε/don't κοινοποιήστε αυτήν τη λίστα"
+"Delete this list"=="Διαγράψτε αυτήν τη λίστα"
+"Save"=="Αποθήκευση"
+Blacklist Administration==Διαχείριση μαύρης λίστας
+This function provides an URL filter to the proxy; any blacklisted URL is blocked==Αυτή η λειτουργία παρέχει στον proxy ένα φίλτρο για τις URL. Στις URL που περιλαμβάνονται στη Μαύρη Λίστα, δεν θα επιτραπεί να
+from being loaded. You can define several blacklists and activate them separately.== φορτωθούν. Μπορείτε να ορίσετε διάφορες Μαύρες Λίστες και να τις ενεργοποιήσετε ξεχωριστά.
+You may also provide your blacklist to other peers by sharing them; in return you may==Μπορείτε, επίσης, να προσφέρετε τη Μαύρη Λίστα σας στους άλλους ομότιμους χρήστες, καθιστώντας την διαμοιράσιμη. Σε αντάλλαγμα μπορείτε να
+collect blacklist entries from other peers.==συλλέγετε τις καταχωρήσεις από τις Μαύρες Λίστες των άλλων ομότιμων χρηστών.
+Active list:==Ενεργή Λίστα:
+No blacklist selected==Δεν έχει επιλεγεί μαύρη λίστα
+Select list to edit:==Επιλέξτε λίστα για επεξεργασία:
+not shared==δεν μοιράζονται
+shared==κοινόχρηστο
+Create new list:==Δημιουργία νέας λίστας:
+A legal name is made up from a letter, digit, minus, plus or underscore as the first character==Ένα νομικό όνομα αποτελείται από ένα γράμμα, ψηφίο, μείον, συν ή υπογράμμιση ως πρώτος χαρακτήρας
+followed by letters, digits, minus, plus, underscores or dots.==ακολουθούμενα από γράμματα, ψηφία, μείον, συν, κάτω παύλες ή τελείες.
+An error occurred while moving entries to the target list.==Παρουσιάστηκε σφάλμα κατά τη μετακίνηση των καταχωρήσεων στη λίστα προορισμού.
+Add new pattern:==Προσθήκη νέου μοτίβου:
+domain.net/fullpath==domain.net/fullpath
+domain.net/*==domain.net/*
+sub.domain.*/*==sub.domain.*/*
+domain.*/*==πεδίο ορισμού.*/*
+Blacklist Pattern==Μοτίβο μαύρης λίστας
+Edit selected pattern(s)==Επεξεργασία επιλεγμένων μοτίβων
+Delete selected pattern(s)==Διαγραφή επιλεγμένων μοτίβων
+Move selected pattern(s) to==Μετακίνηση επιλεγμένων μοτίβων σε
+Show entries:==Εμφάνιση καταχωρήσεων:
+Entries per page:==Καταχωρήσεις ανά σελίδα:
+Edit existing pattern(s):==Επεξεργασία υπάρχοντος μοτίβου:
+An error occurred while editing the following entries. Please check syntax.==Παρουσιάστηκε σφάλμα κατά την επεξεργασία των ακόλουθων καταχωρήσεων. Ελέγξτε τη σύνταξη.
+Activate this list for ...==Ενεργοποιήστε αυτήν τη λίστα για...
+#-----------------------------
+
+#File: Blog.html
+#---------------------------
+"RSS"=="RSS"
+"Submit"=="Υποτάσσομαι"
+"Preview"=="Πρεμιέρα"
+"Discard"=="Απορρίπτω"
+"Yes, delete it."=="Ναι, διαγράψτε το."
+"No, leave it."=="Όχι, αφήστε το."
+"Import"=="Εισαγωγή"
+<< previous entries==<< προηγούμενες εγγραφές
+next entries >>==επόμενες καταχωρήσεις >>
+Blog-Home==Blog-Home
+Edit==Τροποποίηση
+Author:==Συγγραφέας:
+Subject:==Θέμα:
+Text:==Κείμενο:
+Comments:==Σχόλια:
+deactivated==απενεργοποιημένο
+activated==ενεργοποιήθηκε
+moderated==μετριάζεται
+Preview==Πρεμιέρα
+No changes have been submitted so far!==Δεν έχουν υποβληθεί αλλαγές μέχρι στιγμής!
+Access denied==Δεν επιτρέπεται η πρόσβαση
+To edit or create blog-entries you need to be logged in as Admin or User who has Blog rights.==Για να επεξεργαστείτε ή να δημιουργήσετε καταχωρήσεις ιστολογίου, πρέπει να είστε συνδεδεμένοι ως Διαχειριστής ή Χρήστης που έχει δικαιώματα ιστολογίου.
+Are you sure...==Είσαι σίγουρος...
+Confirm deletion==Επιβεβαιώστε τη διαγραφή
+XML-Import==XML-Εισαγωγή
+Import was successful!==Η εισαγωγή ήταν επιτυχής!
+Import failed, maybe the supplied file was no valid blog-backup?==Η εισαγωγή απέτυχε, ίσως το παρεχόμενο αρχείο δεν ήταν έγκυρο αντίγραφο ασφαλείας ιστολογίου;
+Please select the XML-file you want to import:==Επιλέξτε το XML-αρχείο που θέλετε να εισαγάγετε:
+#-----------------------------
+
+#File: BlogComments.html
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+"Preview"=="Πρεμιέρα"
+"Discard"=="Απορρίπτω"
+Blog-Home==Blog-Home
+Comments:==Σχόλια:
+<< previous entries==<< προηγούμενες εγγραφές
+next entries >>==επόμενες καταχωρήσεις >>
+Comments are not allowed for this posting!==Δεν επιτρέπονται σχόλια για αυτήν την ανάρτηση!
+Comment on this Blog==Σχολιάστε αυτό το ιστολόγιο
+Author:==Συγγραφέας:
+Subject:==Θέμα:
+Text:==Κείμενο:
+#-----------------------------
+
+#File: Bookmarks.html
+#---------------------------
+"RSS"=="RSS"
+"create"=="δημιουργία"
+"Save"=="Αποθήκευση"
+"import"=="εισαγωγή"
+"API"=="API"
+"start it"=="ξεκινήστε το"
+"stop it"=="σταματήστε το"
+"private bookmark"=="ιδιωτικός σελιδοδείκτης"
+"public bookmark"=="δημόσιος σελιδοδείκτης"
+Bookmarks==Σελιδοδείκτες
+Login==Σύνδεση
+List Bookmarks==Λίστα σελιδοδεικτών
+Add Bookmark==Προσθήκη Σελειδοδείκτη (Bookmark)
+Import Bookmarks==Εισαγωγή σελιδοδεικτών
+Bookmarks (XBEL)==Σελιδοδείκτες (XBEL)
+Bookmarks (XML)==Σελιδοδείκτες (XML)
+Bookmarks (RSS)==Σελιδοδείκτες (RSS)
+Edit Bookmark==Τροποποίηση Σελειδοδείκτη (Bookmark)
+URL:==URL:
+Title:==Τίτλος:
+Description:==Περιγραφή:
+Query:==Ερώτηση:
+Folder (/folder/subfolder):==Φάκελος (/folder/subfolder):
+Tags (comma separated):==Tags (χωρισμένα με κόμματα):
+Public:==Δημόσιος:
+yes==ναι
+no==όχι
+Bookmark is a newsfeed==Ο σελιδοδείκτης είναι μια ροή ειδήσεων
+Import XML Bookmarks==Εισαγωγή XML σελιδοδεικτών
+File:==Αρχείο:
+import as Public:==εισαγωγή ως Δημόσιο:
+Import HTML Bookmarks==Εισαγωγή HTML σελιδοδεικτών
+Default Tags:==Προεπιλεγμένες ετικέτες:
+The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.==Η λίστα σελιδοδεικτών μπορεί επίσης να ανακτηθεί ως ροή RSS. Αυτό μπορεί επίσης να γίνει όταν επιλέγετε μια συγκεκριμένη ετικέτα.
+Click the API icon to load the RSS from the current selection.==Κάντε κλικ στο εικονίδιο API για να φορτώσετε το RSS από την τρέχουσα επιλογή.
+Folders==Φάκελοι
+Bookmark Folder==Φάκελος σελιδοδεικτών
+Tags==Ετικέτες
+Auto Search==Αυτόματη αναζήτηση
+start autosearch of new bookmarks==έναρξη αυτόματης αναζήτησης νέων σελιδοδεικτών
+autosearch queue:==ουρά αυτόματης αναζήτησης:
+received results:==έλαβε αποτελέσματα:
+current query:==τρέχον ερώτημα:
+This starts a search of new or modified bookmarks since startup==Αυτό ξεκινά μια αναζήτηση νέων ή τροποποιημένων σελιδοδεικτών από την εκκίνηση
+in folder "search" with "query=<original_search_term>"==στον φάκελο "αναζήτηση" με "query=<original_search_term>"
+Every peer online will be ask for results.==Κάθε διαδικτυακός συνεργάτης θα ζητά αποτελέσματα.
+Bookmark List==Λίστα σελιδοδεικτών
+Tagged with |==Με ετικέτα |
+Edit==Τροποποίηση
+Delete==Διαγραφή
+Info==Πληροφορίες
+search==έρευνα
+previous page==προηγούμενη σελίδα
+next page==επόμενη σελίδα
+Show==Επίδειξη
+Bookmarks per page.==Σελιδοδείκτες ανά σελίδα.
+#-----------------------------
+
+#File: Collage.html
+#---------------------------
+Image Collage==Κολάζ εικόνων
+Private Queue==Ιδιωτική ουρά
+Public Queue==Δημόσια ουρά
+#-----------------------------
+
+#File: ConfigAccountList_p.html
+#---------------------------
+User List==Λίστα χρηστών
+User Accounts==Λογαριασμοί χρηστών
+User==Μεταχειριζόμενος
+First name==Ονομα
+Last name==Επώνυμο
+Address==Διεύθυνση
+Last Access==Τελευταία Πρόσβαση
+Rights==Δικαιώματα
+Time==Φορά
+Traffic==Κυκλοφορία
+#-----------------------------
+
+#File: ConfigAccounts_p.html
+#---------------------------
+"Define Administrator"=="Ορισμός Διαχειριστή"
+"Set Access Rules"=="Ορισμός κανόνων πρόσβασης"
+"Edit User"=="Επεξεργασία χρήστη"
+"Delete User"=="Διαγραφή χρήστη"
+"Save User"=="Αποθήκευση χρήστη"
+User Administration==Διαχείριση χρήστη
+Generic error.==Γενικό σφάλμα.
+Passwords do not match.==Οι κωδικοί πρόσβασης δεν ταιριάζουν.
+Username too short. Username must be >= 4 Characters.==Το όνομα χρήστη είναι πολύ μικρό. Το όνομα χρήστη πρέπει να είναι >= 4 χαρακτήρες.
+Username already used (not allowed).==Όνομα χρήστη που χρησιμοποιείται ήδη (δεν επιτρέπεται).
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==WARNING Αυτή η περίπτωση YaCy μπορεί να διαχειρίζεται με τον λογαριασμό "admin" και τον προεπιλεγμένο κωδικό πρόσβασης "yacy".
+Change the password as soon as possible!==Αλλάξτε τον κωδικό πρόσβασης το συντομότερο δυνατό!
+Admin Account==Λογαριασμός διαχειριστή
+Access from localhost without account==Πρόσβαση από localhost χωρίς λογαριασμό
+Access to your peer from your own computer (localhost access) is granted with administrator rights. No need to configure an administration account.==Η πρόσβαση στο peer σας από τον δικό σας υπολογιστή (πρόσβαση τοπικού κεντρικού υπολογιστή) παρέχεται με δικαιώματα διαχειριστή. Δεν χρειάζεται να διαμορφώσετε έναν λογαριασμό διαχείρισης.
+This setting is convenient but less secure than using a qualified admin account.==Αυτή η ρύθμιση είναι βολική, αλλά λιγότερο ασφαλής από τη χρήση ενός αναγνωρισμένου λογαριασμού διαχειριστή.
+Please use with care, notably when you browse untrusted and potentially malicious websites while running your YaCy peer on the same computer.==Χρησιμοποιήστε το με προσοχή, ιδίως όταν περιηγείστε σε μη αξιόπιστους και δυνητικά κακόβουλους ιστότοπους ενώ εκτελείτε το YaCy ομότιμο σας στον ίδιο υπολογιστή.
+Access only with qualified account==Πρόσβαση μόνο με πιστοποιημένο λογαριασμό
+This is required if you want a remote access to your peer, but it also hardens access controls on administration operations of your peer.==Αυτό απαιτείται εάν θέλετε απομακρυσμένη πρόσβαση στον ομότιμο σας, αλλά επίσης σκληραίνει τα στοιχεία ελέγχου πρόσβασης στις λειτουργίες διαχείρισης του ομοτίμου σας.
+Peer User:==Ομότιμος χρήστης:
+New Peer Password:==Νέος κωδικός πρόσβασης ομοτίμων:
+Repeat Peer Password:==Επαναλάβετε τον κωδικό πρόσβασης ομοτίμων:
+Access Rules==Κανόνες πρόσβασης
+Protection of all pages: if set to on, access to all pages need authorization; if off, only pages with "_p" extension are protected.==Προστασία όλων των σελίδων: εάν είναι ενεργοποιημένη, η πρόσβαση σε όλες τις σελίδες χρειάζεται εξουσιοδότηση. Εάν είναι απενεργοποιημένη, προστατεύονται μόνο οι σελίδες με επέκταση "_p".
+User Accounts==Λογαριασμοί χρηστών
+Select user==Επιλέξτε χρήστη
+New user==Νέος χρήστης
+Username==Όνομα χρήστη
+Password==Σύνθημα
+Repeat password==Επαναλάβετε τον κωδικό πρόσβασης
+First name==Ονομα
+Last name==Επώνυμο
+Address==Διεύθυνση
+Rights:==Δικαιώματα:
+Timelimit==Χρονικό όριο
+Time used==Χρόνος που χρησιμοποιείται
+#-----------------------------
+
+#File: ConfigAppearance_p.html
+#---------------------------
+"Use"=="Χρήση"
+"Delete"=="Διαγράφω"
+"Set Colors"=="Σετ χρώματα"
+"Install"=="Εγκαθιστώ"
+Appearance and Integration==Εμφάνιση και Ένταξη
+You can change the appearance of the YaCy interface with skins.==Μπορείτε να αλλάξετε την εμφάνιση της διεπαφής YaCy με τα δέρματα.
+The selected skin and language also affects the appearance of the search page.==Το επιλεγμένο δέρμα και η γλώσσα επηρεάζουν επίσης την εμφάνιση της σελίδας αναζήτησης.
+change the appearance of the search page here.==αλλάξτε την εμφάνιση της σελίδας αναζήτησης εδώ.
+Skin Selection==Επιλογή δέρματος
+Select one of the default skins. After selection it might be required to reload the web page while holding the shift key to refresh cached style files.==Επιλέξτε ένα από τα προεπιλεγμένα δέρματα. Μετά την επιλογή, ενδέχεται να χρειαστεί να φορτώσετε ξανά την ιστοσελίδα ενώ κρατάτε πατημένο το πλήκτρο shift για να ανανεώσετε αρχεία στυλ προσωρινής αποθήκευσης.
+Current skin==Τρέχον δέρμα
+Available Skins==Διαθέσιμα δέρματα
+Skin Color Definition==Ορισμός χρώματος δέρματος
+The generic skin 'generic_pd' can be configured here with custom colors:==Το γενικό δέρμα 'generic_pd' μπορεί να διαμορφωθεί εδώ με προσαρμοσμένα χρώματα:
+Background==Φόντο
+Text==Κείμενο
+Legend==Θρύλος
+Table Header==Πίνακας Κεφαλίδα
+Table Item==Πίνακας Στοιχείο
+Table Item 2==Πίνακας Item 2
+Table Bottom==Πίνακας Κάτω
+Border Line==Σύνορα Γραμμή
+Sign 'bad'==Sign 'bad'
+Sign 'good'==Υπογράψτε 'καλό'
+Sign 'other'==Υπογράψτε 'άλλο'
+Search Headline==Αναζήτηση Headline
+Search URL==Αναζήτηση URL
+Search URL + hover==Αναζήτηση URL + hover
+Skin Download==Λήψη δέρματος
+Skins can be installed from download locations:==Τα Skins μπορούν να εγκατασταθούν από τοποθεσίες λήψης:
+Install new skin from URL==Εγκαταστήστε νέο δέρμα από URL
+Use this skin==Χρησιμοποιήστε αυτό το δέρμα
+Make sure that you only download data from trustworthy sources. The new Skin file==Βεβαιωθείτε ότι πραγματοποιείτε λήψη δεδομένων μόνο από αξιόπιστες πηγές. Το νέο αρχείο Skin
+might overwrite existing data if a file of the same name exists already.==μπορεί να αντικαταστήσει τα υπάρχοντα δεδομένα εάν υπάρχει ήδη ένα αρχείο με το ίδιο όνομα.
+Error saving the skin.==Σφάλμα αποθήκευσης του δέρματος.
+#-----------------------------
+
+#File: ConfigBasic.html
+#---------------------------
+"ok"=="Εντάξει"
+"Use the browser preferred language if available"=="Χρησιμοποιήστε την προτιμώμενη γλώσσα του προγράμματος περιήγησης, εάν είναι διαθέσιμη"
+"Click to generate translated pages"=="Κάντε κλικ για να δημιουργήσετε μεταφρασμένες σελίδες"
+"Active : translated pages are available"=="Ενεργό: μεταφρασμένες σελίδες είναι διαθέσιμες"
+"Usecase Freeworld"=="Usecase Freeworld"
+"Usecase Portal"=="Πύλη Usecase"
+"Usecase Intranet"=="Usecase Intranet"
+"warning"=="προειδοποίηση"
+"Set Configuration"=="Ρύθμιση παραμέτρων"
+Basic Configuration==Βασική διαμόρφωση
+Your port has changed. Please wait 10 seconds.==Η θύρα σας άλλαξε. Περιμένετε 10 δευτερόλεπτα.
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==WARNING Αυτή η περίπτωση YaCy μπορεί να διαχειρίζεται με τον λογαριασμό "admin" και τον προεπιλεγμένο κωδικό πρόσβασης "yacy".
+Your YaCy Peer needs some basic information to operate properly==Ο ομότιμος YaCy σας χρειάζεται κάποιες βασικές πληροφορίες για να λειτουργήσει σωστά
+Select a language for the interface:==Επιλέξτε μια γλώσσα για τη διεπαφή:
+Browser==Πρόγραμμα περιήγησης
+English==αγγλικός
+Deutsch==Deutsch
+Français==Français
+Greek==ελληνικά
+Italiano==ιταλικό
+Español==Español
+Use Case: what do you want to do with YaCy:==Περίπτωση χρήσης: τι θέλετε να κάνετε με YaCy:
+Can not leave from Intranet Indexing : one or more remote Solr instances are attached and may contain private documents indexed.==Δεν είναι δυνατή η έξοδος από την Ευρετηρίαση Intranet : επισυνάπτονται μία ή περισσότερες απομακρυσμένες περιπτώσεις Solr και ενδέχεται να περιέχουν ιδιωτικά έγγραφα ευρετηριασμένα.
+One or more remote Solr instances are attached and may contain indexed public documents irrelevant to your local domain.==Επισυνάπτονται μία ή περισσότερες απομακρυσμένες περιπτώσεις Solr και ενδέχεται να περιέχουν δημόσια έγγραφα με ευρετήριο που δεν σχετίζονται με τον τοπικό σας τομέα.
+One or more remote Solr instances are attached.==Επισυνάπτονται μία ή περισσότερες απομακρυσμένες περιπτώσεις Solr.
+Community-based web search==Αναζήτηση ιστού βάσει κοινότητας
+Search portal for your own web pages==Αναζήτηση πύλης για τις δικές σας ιστοσελίδες
+Intranet Indexing==Intranet Indexing
+Join and support the global network 'freeworld', search the web with an uncensored user-owned search network==Εγγραφείτε και υποστηρίξτε το παγκόσμιο δίκτυο «ελεύθερος κόσμος», αναζητήστε στον ιστό με ένα δίκτυο αναζήτησης που ανήκει χωρίς λογοκρισία
+Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.==Η εγκατάστασή σας YaCy συμπεριφέρεται ανεξάρτητα από άλλους ομοτίμους και ορίζετε το δικό σας ευρετήριο ιστού ξεκινώντας τη δική σας ανίχνευση ιστού. Αυτό μπορεί να χρησιμοποιηθεί για την αναζήτηση στις δικές σας ιστοσελίδες ή για τον ορισμό μιας πύλης αναζήτησης προσανατολισμένη στο θέμα.
+Create a search portal for your intranet or web pages or your (shared) file system. URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form file:///<path> or smb://<server>/<path>==Δημιουργήστε μια πύλη αναζήτησης για το intranet ή τις ιστοσελίδες σας ή το (κοινόχρηστο) σύστημα αρχείων σας. Οι διευθύνσεις URL μπορούν να χρησιμοποιηθούν με http/https/ftp και ένα τοπικό όνομα τομέα ή IP, ή με URL του αρχείου φόρμας:///<path> ή smb://<server>/<path>
+Your peer name has not been customized; please set your own peer name==Το όνομα του ομοτίμου σας δεν έχει προσαρμοστεί. ορίστε το δικό σας όνομα συνομηλίκων
+You may change your peer name==Μπορείτε να αλλάξετε το όνομα συνομηλίκων σας
+Peer Name:==Όνομα ομοτίμου:
+Your peer can be reached by other peers==Ο συνομήλικός σας μπορεί να προσεγγιστεί από άλλους συνομηλίκους
+Peer Port:==Peer Port:
+with SSL (https enabled==με SSL (https ενεργοποιημένο
+Configure your router for YaCy using UPnP:==Διαμορφώστε τον δρομολογητή σας για YaCy χρησιμοποιώντας UPnP:
+Configuration was not successful. This may take a moment.==Η διαμόρφωση δεν ήταν επιτυχής. Αυτό μπορεί να διαρκέσει λίγο.
+Your Browser will reload the YaCy UI with the new port in 5 seconds...==Το πρόγραμμα περιήγησής σας θα φορτώσει ξανά τη διεπαφή χρήστη YaCy με τη νέα θύρα σε 5 δευτερόλεπτα...
+What you should do next:==Τι πρέπει να κάνετε στη συνέχεια:
+Your basic configuration is complete! You can now (for example):==Η βασική σας διαμόρφωση έχει ολοκληρωθεί! Μπορείτε τώρα (για παράδειγμα):
+Your Peer name is a default name; please set an individual peer name.==Το όνομα Peer σας είναι ένα προεπιλεγμένο όνομα. ορίστε ένα μεμονωμένο όνομα ομότιμου.
+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 recommended.==Δεν ανοίξατε θύρα στο τείχος προστασίας ή ο δρομολογητής σας δεν προωθεί τη θύρα διακομιστή στον ομότιμο σας. Αυτό είναι απαραίτητο εάν θέλετε να συμμετάσχετε πλήρως στο δίκτυο YaCy. Μπορείτε επίσης να χρησιμοποιήσετε το όμοιό σας χωρίς να το ανοίξετε, αλλά αυτό δεν συνιστάται.
+#-----------------------------
+
+#File: ConfigHTCache_p.html
+#---------------------------
+"A cache hit occurs when the requested data can be found in a cache."=="Μια επίσκεψη κρυφής μνήμης συμβαίνει όταν τα ζητούμενα δεδομένα μπορούν να βρεθούν σε μια κρυφή μνήμη."
+"Concurrent access timeout info"=="Πληροφορίες χρονικού ορίου ταυτόχρονης πρόσβασης"
+"Set"=="Σειρά"
+"Delete"=="Διαγράφω"
+Hypertext Cache Configuration==Διαμόρφωση προσωρινής μνήμης υπερκειμένου
+The HTCache stores content retrieved by the HTTP and FTP protocol. Documents from smb:// and file:// locations are not cached.==Το HTCache αποθηκεύει περιεχόμενο που ανακτάται από το πρωτόκολλο HTTP και FTP. Τα έγγραφα από το smb:// και το αρχείο:// τοποθεσίες δεν αποθηκεύονται προσωρινά.
+The cache is a rotating cache: if it is full, then the oldest entries are deleted and new one can fill the space.==Η κρυφή μνήμη είναι μια περιστρεφόμενη κρυφή μνήμη: εάν είναι γεμάτη, τότε οι παλαιότερες καταχωρήσεις διαγράφονται και μια νέα μπορεί να γεμίσει το χώρο.
+HTCache Configuration==Διαμόρφωση HTCache
+Cache hits==Επισκέψεις προσωρινής μνήμης
+The path where the cache is stored==Η διαδρομή όπου είναι αποθηκευμένη η κρυφή μνήμη
+The current size of the cache==Το τρέχον μέγεθος της κρυφής μνήμης
+The maximum size of the cache==Το μέγιστο μέγεθος της κρυφής μνήμης
+MB==MB
+Compression level==Επίπεδο συμπίεσης
+Concurrent access timeout==Χρονικό όριο ταυτόχρονης πρόσβασης
+The maximum time to wait for acquiring a synchronization lock on concurrent get/store cache operations.==Ο μέγιστος χρόνος αναμονής για την απόκτηση κλειδώματος συγχρονισμού σε ταυτόχρονες λειτουργίες cache get/store.
+Beyond this limit, the crawler or proxy falls back to regular remote resource loading.==Πέρα από αυτό το όριο, ο ανιχνευτής ή ο διακομιστής μεσολάβησης επανέρχεται στην κανονική απομακρυσμένη φόρτωση πόρων.
+milliseconds==χιλιοστά του δευτερολέπτου
+Cleanup==Καθαρισμός
+Cache Deletion==Διαγραφή προσωρινής μνήμης
+Delete HTTP & FTP Cache==Διαγραφή HTTP & FTP Cache
+Delete robots.txt Cache==Διαγραφή cache robots.txt
+#-----------------------------
+
+#File: ConfigHeuristics_p.html
+#---------------------------
+"heuristic:<name> (redundant)"=="ευρετικό:<name> (περιττό)"
+"heuristic:<name> (new link)"=="ευρετικό:<name> (νέος σύνδεσμος)"
+"add"=="προσθέτω"
+"Save"=="Αποθήκευση"
+"reset to default list"=="επαναφορά στην προεπιλεγμένη λίστα"
+"discover from index"=="ανακαλύψτε από το ευρετήριο"
+"switch Solr fields on"=="ενεργοποιήστε τα πεδία Solr"
+Heuristics Configuration==Διαμόρφωση ευρετικών παραμέτρων
+When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content. This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==Όταν χρησιμοποιείται μια ευρετική αναζήτηση, οι σύνδεσμοι που προκύπτουν δεν χρησιμοποιούνται απευθείας ως αποτέλεσμα αναζήτησης, αλλά οι σελίδες που έχουν φορτωθεί ευρετηριάζονται και αποθηκεύονται όπως άλλο περιεχόμενο. Αυτό διασφαλίζει ότι οι μαύρες λίστες μπορούν να χρησιμοποιηθούν και ότι η λέξη που αναζητήθηκε εμφανίζεται στην πραγματικότητα στη σελίδα που ανακαλύφθηκε από τον ευρετικό.
+The success of heuristics are marked with an image (==Η επιτυχία της ευρετικής σημειώνεται με μια εικόνα (
+) below the favicon left from the search result entry:==) κάτω από το favicon αριστερά από την καταχώριση αποτελεσμάτων αναζήτησης:
+The search result was discovered by a heuristic, but the link was already known by YaCy==Το αποτέλεσμα αναζήτησης ανακαλύφθηκε από μια ευρετική, αλλά ο σύνδεσμος ήταν ήδη γνωστός από YaCy
+The search result was discovered by a heuristic, not previously known by YaCy==Το αποτέλεσμα αναζήτησης ανακαλύφθηκε από μια ευρετική, άγνωστη προηγουμένως από YaCy
+'site'-operator: instant shallow crawl=='site'-operator: στιγμιαία ρηχή ανίχνευση
+When a search is made using a 'site'-operator (like: 'download site:yacy.net') then the host of the site-operator is instantly crawled with a host-restricted depth-1 crawl.==Όταν γίνεται αναζήτηση χρησιμοποιώντας έναν τελεστή "site" (όπως: "download site:yacy.net"), τότε ο κεντρικός υπολογιστής του διαχειριστή ιστότοπου ανιχνεύεται αμέσως με μια ανίχνευση βάθους 1 περιορισμένης πρόσβασης από τον κεντρικό υπολογιστή.
+That means: right after the search request the portal page of the host is loaded and every page that is linked on this page that points to a page on the same host.==Αυτό σημαίνει: αμέσως μετά το αίτημα αναζήτησης φορτώνεται η σελίδα πύλης του κεντρικού υπολογιστή και κάθε σελίδα που συνδέεται σε αυτήν τη σελίδα οδηγεί σε μια σελίδα στον ίδιο κεντρικό υπολογιστή.
+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 και σε έναν ελάχιστο χρόνο πρόσβασης για δύο διαδοχικές σελίδες, αυτή η ευρετική είναι μάλλον αργή, αλλά μπορεί να ανακαλύψει όλα τα επιθυμητά αποτελέσματα αναζήτησης χρησιμοποιώντας μια δεύτερη αναζήτηση (μετά από μια μικρή παύση μερικών δευτερολέπτων).
+search-result: shallow crawl on all displayed search results==αποτέλεσμα αναζήτησης: ρηχή ανίχνευση σε όλα τα εμφανιζόμενα αποτελέσματα αναζήτησης
+add as global crawl job==προσθήκη ως καθολική εργασία ανίχνευσης
+When a search is made then all displayed result links are crawled with a depth-1 crawl.==Όταν πραγματοποιείται αναζήτηση, όλοι οι σύνδεσμοι αποτελεσμάτων που εμφανίζονται ανιχνεύονται με ανίχνευση βάθους 1.
+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).==Εάν επιλέξετε "προσθήκη ως καθολική εργασία ανίχνευσης", οι σελίδες προς ανίχνευση προστίθενται στην ουρά καθολικής ανίχνευσης (οι απομακρυσμένοι ομότιμοι μπορούν να παραλάβουν σελίδες για ανίχνευση).
+Default is to add the links to the local crawl queue (your peer crawls the linked pages).==Η προεπιλογή είναι να προσθέσετε τους συνδέσμους στην ουρά τοπικής ανίχνευσης (ο ομότιμος σας ανιχνεύει τις συνδεδεμένες σελίδες).
+opensearch load external search result list from active systems below==opensearch φορτώστε τη λίστα αποτελεσμάτων εξωτερικής αναζήτησης από τα ενεργά συστήματα παρακάτω
+When using this heuristic, then every new search request line is used for a call to listed opensearch systems.==Όταν χρησιμοποιείτε αυτό το ευρετικό, τότε κάθε νέα γραμμή αιτήματος αναζήτησης χρησιμοποιείται για κλήση σε καταχωρημένα συστήματα ανοιχτής αναζήτησης.
+20 results are taken from remote system and loaded simultaneously, parsed and indexed immediately.==20 αποτελέσματα λαμβάνονται από το απομακρυσμένο σύστημα και φορτώνονται ταυτόχρονα, αναλύονται και ευρετηριάζονται αμέσως.
+Available/Active Opensearch System==Διαθέσιμο/Active Ανοιχτό σύστημα αναζήτησης
+Active==Ενεργός
+Title==Τίτλος
+Comment==Σχόλιο
+Url==Url
+delete==διαγράφω
+new==νέος
+With the button "discover from index" you can search within the metadata of your local index (Web Structure Index) to find systems which support the Opensearch specification.==Με το κουμπί "ανακάλυψη από ευρετήριο" μπορείτε να κάνετε αναζήτηση στα μεταδεδομένα του τοπικού σας ευρετηρίου (Web Structure Index) για να βρείτε συστήματα που υποστηρίζουν την προδιαγραφή Opensearch.
+The task is started in the background. It may take some minutes before new entries appear (after refreshing the page).==Η εργασία ξεκινά στο παρασκήνιο. Μπορεί να χρειαστούν μερικά λεπτά μέχρι να εμφανιστούν νέες καταχωρήσεις (μετά την ανανέωση της σελίδας).
+#-----------------------------
+
+#File: ConfigLanguage_p.html
+#---------------------------
+"Use"=="Χρήση"
+"Delete"=="Διαγράφω"
+"Install"=="Εγκαθιστώ"
+Language selection==Επιλογή γλώσσας
+You can change the language of the YaCy-webinterface with translation files.==Μπορείτε να αλλάξετε τη γλώσσα της διεπαφής ιστού YaCy με αρχεία μετάφρασης.
+Current language==Τρέχουσα γλώσσα
+default(english)==προεπιλογή (αγγλικά)
+Author(s) (chronological)==Συγγραφέας(οι) (χρονολογικά)
+Send additions to maintainer==Αποστολή προσθηκών στον συντηρητή
+Available Languages==Διαθέσιμες γλώσσες
+Download Language File==Λήψη αρχείου γλώσσας
+Supported formats are the internal language file (extension .lng) or XLIFF (extension .xlf) format.==Οι υποστηριζόμενες μορφές είναι η μορφή αρχείου εσωτερικής γλώσσας (επέκταση .lng) ή XLIFF (επέκταση .xlf).
+Install new language from URL==Εγκατάσταση νέας γλώσσας από URL
+Use this language==Χρησιμοποιήστε αυτή τη γλώσσα
+Make sure that you only download data from trustworthy sources. The new language file==Βεβαιωθείτε ότι πραγματοποιείτε λήψη δεδομένων μόνο από αξιόπιστες πηγές. Το νέο αρχείο γλώσσας
+might overwrite existing data if a file of the same name exists already.==μπορεί να αντικαταστήσει τα υπάρχοντα δεδομένα εάν υπάρχει ήδη ένα αρχείο με το ίδιο όνομα.
+Error saving the language file.==Σφάλμα κατά την αποθήκευση του αρχείου γλώσσας.
+#-----------------------------
+
+#File: ConfigNetwork_p.html
+#---------------------------
+"Change Network"=="Αλλαγή δικτύου"
+"Save"=="Αποθήκευση"
+"Transport Layer Security"=="Ασφάλεια επιπέδου μεταφοράς"
+"Secure Sockets Layer"=="Secure Sockets Layer"
+Network Configuration==Διαμόρφωση δικτύου
+Accepted Changes.==Αποδεκτές Αλλαγές.
+Inapplicable Setting Combination:==Μη εφαρμόσιμος συνδυασμός ρυθμίσεων:
+No changes were made!==Δεν έγιναν αλλαγές!
+For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration.==Για τη λειτουργία P2P, πρέπει να οριστεί τουλάχιστον DHT διανομή ή DHT λήψη (ή και τα δύο). Έχετε ορίσει έτσι μια διαμόρφωση Robinson.
+Global Search in P2P configuration is only allowed, if index receive is switched on. You have a P2P configuration, but are not allowed to search other peers.==Η καθολική αναζήτηση στη διαμόρφωση P2P επιτρέπεται μόνο εάν η λήψη ευρετηρίου είναι ενεργοποιημένη. Έχετε μια διαμόρφωση P2P, αλλά δεν επιτρέπεται να κάνετε αναζήτηση σε άλλους ομοτίμους.
+For Robinson Mode, index distribution and receive is switched off.==Για τη λειτουργία Robinson, η διανομή ευρετηρίου και η λήψη είναι απενεργοποιημένες.
+Network and Domain Specification==Προδιαγραφές δικτύου και τομέα
+YaCy can operate a computing grid of YaCy peers or as a stand-alone node.==Το YaCy μπορεί να λειτουργήσει ένα υπολογιστικό πλέγμα από YaCy ομοτίμους ή ως αυτόνομο κόμβο.
+To control that all participants within a web indexing domain have access to the same domain,==Για να ελέγξετε ότι όλοι οι συμμετέχοντες σε έναν τομέα ευρετηρίασης ιστού έχουν πρόσβαση στον ίδιο τομέα,
+this network definition must be equal to all members of the same YaCy network.==αυτός ο ορισμός δικτύου πρέπει να είναι ίσος με όλα τα μέλη του ίδιου δικτύου YaCy.
+Network Definition==Ορισμός Δικτύου
+Enter custom URL...==Εισαγάγετε προσαρμοσμένο URL...
+Remote Network Definition URL==Ορισμός απομακρυσμένου δικτύου URL
+Network Nick==Δικτύου Νικ
+Long Description==Μεγάλη περιγραφή
+Indexing Domain==Ευρετηρίαση Τομέα
+DHT==DHT
+Distributed Computing Network for Domain==Κατανεμημένο Υπολογιστικό Δίκτυο για Τομέα
+Enable Peer-to-Peer Mode to participate in the global YaCy network,==Ενεργοποιήστε τη λειτουργία Peer-to-Peer για συμμετοχή στο παγκόσμιο δίκτυο YaCy,
+or if you want your own separate search cluster with or without connection to the global network.==ή αν θέλετε το δικό σας ξεχωριστό σύμπλεγμα αναζήτησης με ή χωρίς σύνδεση στο παγκόσμιο δίκτυο.
+Enable 'Robinson Mode' for a completely independent search engine instance,==Ενεργοποιήστε τη "Λειτουργία Robinson" για μια εντελώς ανεξάρτητη περίπτωση μηχανής αναζήτησης,
+without any data exchange between your peer and other peers.==χωρίς καμία ανταλλαγή δεδομένων μεταξύ του ομοτίμου σας και άλλων ομοτίμων.
+Peer-to-Peer Mode==Λειτουργία Peer-to-Peer
+Index Distribution==Κατανομή Ευρετηρίου
+This enables automated, DHT-ruled Index Transmission to other peers.==Αυτό επιτρέπει την αυτοματοποιημένη μετάδοση ευρετηρίου που ελέγχεται από DHT σε άλλους ομοτίμους.
+enabled==ενεργοποιημένη
+disabled during crawling==απενεργοποιήθηκε κατά την ανίχνευση
+disabled during indexing==απενεργοποιήθηκε κατά τη δημιουργία ευρετηρίου
+Index Receive==Λήψη ευρετηρίου
+Accept remote Index Transmissions.==Αποδοχή απομακρυσμένων μεταδόσεων ευρετηρίου.
+This works only if you have a senior peer. The DHT-rules do not work without this function.==Αυτό λειτουργεί μόνο εάν έχετε έναν ανώτερο συνομήλικο. Οι κανόνες DHT δεν λειτουργούν χωρίς αυτήν τη λειτουργία.
+reject==απορρίπτω
+accept transmitted URLs that match your blacklist==αποδεχτείτε μεταδιδόμενες διευθύνσεις URL που αντιστοιχούν στη μαύρη λίστα σας
+allow==επιτρέπω
+deny remote search==άρνηση απομακρυσμένης αναζήτησης
+Robinson Mode==Robinson Mode
+If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers.==Εάν ο ομότιμος σας εκτελείται σε "Robinson Mode", εκτελείτε το YaCy ως μηχανή αναζήτησης για τη δική σας πύλη αναζήτησης χωρίς ανταλλαγή δεδομένων με άλλους ομοτίμους.
+There is no index receive and no index distribution between your peer and any other peer.==Δεν υπάρχει λήψη ευρετηρίου και κατανομή ευρετηρίου μεταξύ του ομοτίμου σας και οποιουδήποτε άλλου ομότιμου.
+In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster.==Σε περίπτωση ομαδοποίησης Robinson μπορεί να υπάρξει αποδοχή αιτημάτων απομακρυσμένης ανίχνευσης από συνομηλίκους αυτού του συμπλέγματος.
+Private Peer==Ιδιωτικός συνομήλικος
+Your search engine will not contact any other peer, and will reject every request.==Η μηχανή αναζήτησής σας δεν θα επικοινωνήσει με κανένα άλλο ομότιμο και θα απορρίψει κάθε αίτημα.
+Public Peer==Public Peer
+You are visible to other peers and contact them to distribute your presence.==Είστε ορατοί σε άλλους συνομηλίκους και επικοινωνήστε μαζί τους για να διανείμετε την παρουσία σας.
+Your peer does not accept any outside index data, but responds on all remote search requests.==Ο ομότιμος σας δεν δέχεται δεδομένα εξωτερικού ευρετηρίου, αλλά απαντά σε όλα τα αιτήματα απομακρυσμένης αναζήτησης.
+Public Cluster==Public Cluster
+Your peer is part of a public cluster within the YaCy network.==Ο ομότιμος σας είναι μέρος ενός δημόσιου συμπλέγματος εντός του δικτύου YaCy.
+Index data is not distributed, but remote crawl requests are distributed and accepted==Τα δεδομένα ευρετηρίου δεν διανέμονται, αλλά τα αιτήματα απομακρυσμένης ανίχνευσης διανέμονται και γίνονται δεκτά
+Search requests are spread over all peers of the cluster, and answered from all peers of the cluster.==Τα αιτήματα αναζήτησης κατανέμονται σε όλα τα peer του συμπλέγματος και απαντώνται από όλα τα peer του συμπλέγματος.
+List of .yacy or .yacyh - domains of the cluster: (comma-separated)==Λίστα .yacy ή .yacyh - τομείς του συμπλέγματος: (χωρισμένοι με κόμμα)
+Peer Tags==Ετικέτες ομοτίμων
+When you allow access from the YaCy network, your data is recognized using keywords.==Όταν επιτρέπετε την πρόσβαση από το δίκτυο YaCy, τα δεδομένα σας αναγνωρίζονται με χρήση λέξεων-κλειδιών.
+Please describe your search portal with some keywords (comma-separated).==Περιγράψτε την πύλη αναζήτησής σας με ορισμένες λέξεις-κλειδιά (χωρισμένες με κόμματα).
+If you leave the field empty, no peer asks your peer. If you fill in a '*', your peer is always asked.==Εάν αφήσετε το πεδίο κενό, κανένας ομότιμος δεν ρωτά τον συνομήλικό σας. Εάν συμπληρώσετε ένα '*', ο συνομήλικός σας ερωτάται πάντα.
+Outgoing communications encryption==Κρυπτογράφηση εξερχόμενων επικοινωνιών
+Protocol operations encryption==Κρυπτογράφηση λειτουργιών πρωτοκόλλου
+Prefer HTTPS for outgoing connexions to remote peers.==Προτιμήστε HTTPS για εξερχόμενες συνδέσεις σε απομακρυσμένους συνομηλίκους.
+When TLS/SSL is enabled on remote peers, it should be used to encrypt outgoing communications with them (for operations such as network presence, index transfer, remote crawl...).==Όταν το TLS/SSL είναι ενεργοποιημένο σε απομακρυσμένους ομοτίμους, θα πρέπει να χρησιμοποιείται για την κρυπτογράφηση εξερχόμενων επικοινωνιών μαζί τους (για λειτουργίες όπως η παρουσία δικτύου, η μεταφορά ευρετηρίου, η απομακρυσμένη ανίχνευση...).
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Λάβετε υπόψη ότι, σε αντίθεση με το αυστηρό TLS, τα πιστοποιητικά δεν επικυρώνονται έναντι αξιόπιστων αρχών έκδοσης πιστοποιητικών (CA), επιτρέποντας έτσι στους YaCy ομοτίμους να χρησιμοποιούν αυτο-υπογεγραμμένα πιστοποιητικά.
+#-----------------------------
+
+#File: ConfigParser_p.html
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+Parser Configuration==Διαμόρφωση Parser
+Content Parser Settings==Ρυθμίσεις ανάλυσης περιεχομένου
+With this settings you can activate or deactivate parsing of additional content-types based on their MIME-types.==Με αυτές τις ρυθμίσεις μπορείτε να ενεργοποιήσετε ή να απενεργοποιήσετε την ανάλυση πρόσθετων τύπων περιεχομένου με βάση τους τύπους MIME τους.
+For a detailed description of the various MIME-types take a look at==Για μια λεπτομερή περιγραφή των διαφόρων τύπων MIME ρίξτε μια ματιά
+Extension==Επέκταση
+Mime-Type==Mime-Type
+#-----------------------------
+
+#File: ConfigPortal_p.html
+#---------------------------
+"Remote results resorting can be triggered once the 'Refresh sorting' button (near the 'Search' button) becomes available."=="Η απομακρυσμένη καταχώρηση αποτελεσμάτων μπορεί να ενεργοποιηθεί μόλις γίνει διαθέσιμο το κουμπί «Ανανέωση ταξινόμησης» (κοντά στο κουμπί «Αναζήτηση»)."
+"This usually improves ranking accuracy, but doesn't work well for users who have Javascript disabled, are using screen readers, or are on slow computers."=="Αυτό συνήθως βελτιώνει την ακρίβεια κατάταξης, αλλά δεν λειτουργεί καλά για χρήστες που έχουν απενεργοποιημένη τη Javascript, χρησιμοποιούν προγράμματα ανάγνωσης οθόνης ή χρησιμοποιούν αργούς υπολογιστές."
+"idea"=="ιδέα"
+"Detailed statistics"=="Αναλυτικά στατιστικά"
+"Change Search Page"=="Αλλαγή σελίδας αναζήτησης"
+"Set to Default Values"=="Ορίστε τις προεπιλεγμένες τιμές"
+Integration of a Search Portal==Ενσωμάτωση μιας πύλης αναζήτησης
+If you like to integrate YaCy as portal for your web pages, you may want to change icons and messages on the search page.==Εάν θέλετε να ενσωματώσετε το YaCy ως πύλη για τις ιστοσελίδες σας, ίσως θέλετε να αλλάξετε τα εικονίδια και τα μηνύματα στη σελίδα αναζήτησης.
+The search page may be customized. You can change the 'corporate identity'-images, the greeting line==Η σελίδα αναζήτησης μπορεί να προσαρμοστεί. Μπορείτε να αλλάξετε την 'εταιρική ταυτότητα'-εικόνες, τη γραμμή χαιρετισμού
+and a link to a home page that is reached when the 'corporate identity'-images are clicked.==και έναν σύνδεσμο προς μια αρχική σελίδα που προσεγγίζεται όταν κάνετε κλικ στις εικόνες «εταιρικής ταυτότητας».
+Greeting Line==Γραμμή χαιρετισμού
+URL of Home Page==URL της Αρχικής Σελίδας
+URL of a Small Corporate Image==URL μιας μικρής εταιρικής εικόνας
+URL of a Large Corporate Image==URL μιας μεγάλης εταιρικής εικόνας
+Alternative text for Corporate Images==Εναλλακτικό κείμενο για εταιρικές εικόνες
+Enable Search for Everyone?==Ενεργοποίηση αναζήτησης για όλους;
+Search is available for everyone==Η αναζήτηση είναι διαθέσιμη για όλους
+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 με μη αυτόματο τρόπο)
+Show Advanced Search Options on Search Page?==Εμφάνιση επιλογών σύνθετης αναζήτησης στη σελίδα αναζήτησης;
+Show Advanced Search Options on index.html==Εμφάνιση επιλογών σύνθετης αναζήτησης στο index.html
+do not show Advanced Search==δεν εμφανίζεται η Σύνθετη αναζήτηση
+Media Search==Αναζήτηση πολυμέσων
+Extended==Εκτεταμένη
+Strict==Αυστηρός
+Control whether media search results are as default strictly limited to indexed documents matching exactly the desired content domain (images, videos or applications specific),==Ελέγξτε εάν τα αποτελέσματα αναζήτησης πολυμέσων περιορίζονται από προεπιλογή αυστηρά σε έγγραφα με ευρετήριο που ταιριάζουν ακριβώς με τον επιθυμητό τομέα περιεχομένου (εικόνες, βίντεο ή συγκεκριμένες εφαρμογές),
+or extended to pages including such medias (provide generally more results, but eventually less relevant).==ή επεκτείνεται σε σελίδες που περιλαμβάνουν τέτοια μέσα (παρέχουν γενικά περισσότερα αποτελέσματα, αλλά τελικά λιγότερο σχετικά).
+Remote results resorting==Απομακρυσμένη καταφυγή αποτελεσμάτων
+On demand, server-side==Κατ' απαίτηση, από την πλευρά του διακομιστή
+Automated, with JavaScript in the browser.==Αυτοματοποιημένο, με JavaScript στο πρόγραμμα περιήγησης.
+Automated results resorting with JavaScript makes the browser load the full result set of each search request.==Η αυτόματη καταφυγή αποτελεσμάτων με JavaScript κάνει το πρόγραμμα περιήγησης να φορτώνει το πλήρες σύνολο αποτελεσμάτων κάθε αιτήματος αναζήτησης.
+This may lead to high system loads on the server.==Αυτό μπορεί να οδηγήσει σε υψηλά φορτία συστήματος στον διακομιστή.
+Remote search encryption==Κρυπτογράφηση απομακρυσμένης αναζήτησης
+Prefer https for search queries on remote peers.==Προτιμήστε το https για ερωτήματα αναζήτησης σε απομακρυσμένους ομότιμους.
+When SSL/TLS is enabled on remote peers, https should be used to encrypt data exchanged with them when performing peer-to-peer searches.==Όταν το SSL/TLS είναι ενεργοποιημένο σε απομακρυσμένους ομότιμους, το https θα πρέπει να χρησιμοποιείται για την κρυπτογράφηση δεδομένων που ανταλλάσσονται μαζί τους κατά την εκτέλεση ομότιμων αναζητήσεων.
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Λάβετε υπόψη ότι, σε αντίθεση με το αυστηρό TLS, τα πιστοποιητικά δεν επικυρώνονται έναντι αξιόπιστων αρχών έκδοσης πιστοποιητικών (CA), επιτρέποντας έτσι στους YaCy ομοτίμους να χρησιμοποιούν αυτο-υπογεγραμμένα πιστοποιητικά.
+Snippet Fetch Strategy & Link Verification==Στρατηγική λήψης αποσπάσματος & Επαλήθευση συνδέσμου
+Speed up search results with this option! (use CACHEONLY or FALSE to switch off verification)==Επιταχύνετε τα αποτελέσματα αναζήτησης με αυτήν την επιλογή! (χρησιμοποιήστε CACHEONLY ή FALSE για να απενεργοποιήσετε την επαλήθευση)
+Counts by origin :==Μετράει κατά προέλευση:
+NOCACHE: no use of web cache, load all snippets online==NOCACHE: δεν χρησιμοποιείται προσωρινή μνήμη ιστού, φόρτωση όλων των αποσπασμάτων στο διαδίκτυο
+IFFRESH: use the cache if the cache exists and is fresh otherwise load online==IFFRESH: χρησιμοποιήστε την προσωρινή μνήμη εάν η κρυφή μνήμη υπάρχει και είναι φρέσκια, διαφορετικά φορτώστε την online
+IFEXIST: use the cache if the cache exist or load online==IFEXIST: χρησιμοποιήστε την κρυφή μνήμη εάν υπάρχει ή φορτωθεί online
+If verification fails, delete index reference==Εάν η επαλήθευση αποτύχει, διαγράψτε την αναφορά ευρετηρίου
+CACHEONLY: never go online, use all content from cache. If no cache entry exist, consider content nevertheless as available and show result without snippet==CACHEONLY: ποτέ μην συνδεθείτε στο διαδίκτυο, χρησιμοποιήστε όλο το περιεχόμενο από την προσωρινή μνήμη. Εάν δεν υπάρχει καταχώριση κρυφής μνήμης, θεωρήστε ωστόσο το περιεχόμενο ως διαθέσιμο και εμφανίστε το αποτέλεσμα χωρίς απόσπασμα
+FALSE: no link verification and not snippet generation: all search results are valid without verification==FALSE: καμία επαλήθευση συνδέσμου και όχι δημιουργία αποσπάσματος: όλα τα αποτελέσματα αναζήτησης είναι έγκυρα χωρίς επαλήθευση
+Greedy Learning Mode==Greedy Learning Mode
+Index remote results==Ευρετηρίαση απομακρυσμένων αποτελεσμάτων
+add remote search results to the local index ( default=on, it is recommended to enable this option ! )==προσθέστε αποτελέσματα απομακρυσμένης αναζήτησης στο τοπικό ευρετήριο (προεπιλογή=ενεργό, συνιστάται να ενεργοποιήσετε αυτήν την επιλογή! )
+Limit size of indexed remote results==Περιορίστε το μέγεθος των απομακρυσμένων αποτελεσμάτων με ευρετήριο
+maximum allowed size in kbytes for each remote search result to be added to the local index (for example, a 1000kbytes limit might be useful if you are running YaCy with a low memory setup)==μέγιστο επιτρεπόμενο μέγεθος σε kbyte για κάθε αποτέλεσμα απομακρυσμένης αναζήτησης που προστίθεται στο τοπικό ευρετήριο (για παράδειγμα, ένα όριο 1000 kbyte μπορεί να είναι χρήσιμο εάν χρησιμοποιείτε YaCy με χαμηλή ρύθμιση μνήμης)
+Default Pop-Up Page==Προεπιλεγμένη αναδυόμενη σελίδα
+Status Page==Σελίδα κατάστασης
+Search Front Page==Αναζήτηση στην πρώτη σελίδα
+Search Page (small header)==Αναζήτηση σελίδας (μικρή κεφαλίδα)
+Interactive Search Page==Διαδραστική σελίδα αναζήτησης
+Default maximum number of results per page==Προεπιλεγμένος μέγιστος αριθμός αποτελεσμάτων ανά σελίδα
+Default index.html Page (by forwarder)==Προεπιλεγμένη σελίδα index.html (από προωθητή)
+Target for Click on Search Results==Στόχος για κλικ στα αποτελέσματα αναζήτησης
+"_blank" (new window)=="_blank" (νέο παράθυρο)
+"_self" (same window)=="_self" (ίδιο παράθυρο)
+"_parent" (the parent frame of a frameset)=="_parent" (το γονικό πλαίσιο ενός συνόλου πλαισίων)
+"_top" (top of all frames)=="_top" (πάνω από όλα τα καρέ)
+"searchresult" (a default custom page name for search results)=="αποτέλεσμα αναζήτησης" (ένα προεπιλεγμένο προσαρμοσμένο όνομα σελίδας για τα αποτελέσματα αναζήτησης)
+Special Target as Exception for an URL-Pattern==Ειδικός στόχος ως εξαίρεση για ένα URL-μοτίβο
+Pattern:==Πρότυπο:
+Exclude Hosts==Εξαίρεση Hosts
+List of hosts that shall be excluded from search results by default but can be included using the site:<host> operator:==Λίστα κεντρικών υπολογιστών που θα εξαιρεθούν από τα αποτελέσματα αναζήτησης από προεπιλογή, αλλά μπορούν να συμπεριληφθούν χρησιμοποιώντας τον ιστότοπο:<host> χειριστή:
+'About' Column (shown in a column alongside with the search result page)==Στήλη 'About' (εμφανίζεται σε μια στήλη δίπλα στο με τη σελίδα αποτελεσμάτων αναζήτησης)
+(Headline)==(Επικεφαλίδα)
+(Content)==(Περιεχόμενο)
+The search page can be integrated in your own web pages with an iframe. Simply use the following code:==Η σελίδα αναζήτησης μπορεί να ενσωματωθεί στις δικές σας ιστοσελίδες με ένα iframe. Απλώς χρησιμοποιήστε τον παρακάτω κώδικα:
+This would look like:==Αυτό θα μοιάζει με:
+For a search page with a small header, use this code:==Για μια σελίδα αναζήτησης με μικρή κεφαλίδα, χρησιμοποιήστε αυτόν τον κώδικα:
+A third option is the interactive search. Use this code:==Μια τρίτη επιλογή είναι η διαδραστική αναζήτηση. Χρησιμοποιήστε αυτόν τον κωδικό:
+#-----------------------------
+
+#File: ConfigProfile_p.html
+#---------------------------
+"Save"=="Αποθήκευση"
+Your Personal Profile==Το Προσωπικό σας Προφίλ
+You can create a personal profile here, which can be seen by other YaCy-members==Μπορείτε να δημιουργήσετε ένα προσωπικό προφίλ εδώ, το οποίο μπορούν να δουν άλλα YaCy-μέλη
+Name==Ονομα
+Nick Name==Nick Name
+eMail==e-mail
+ICQ==ICQ
+Jabber==Κουβεντολόι
+Yahoo!==Yahoo!
+MSN==MSN
+Skype==Skype
+Comment==Σχόλιο
+#-----------------------------
+
+#File: ConfigProperties_p.html
+#---------------------------
+"Save"=="Αποθήκευση"
+"Clear"=="Σαφής"
+Advanced Config==Προηγμένη διαμόρφωση
+Here are all configuration options from YaCy.==Ακολουθούν όλες οι επιλογές διαμόρφωσης από YaCy.
+You can change anything, but some options need a restart, and some options can crash YaCy, if wrong values are used.==Μπορείτε να αλλάξετε οτιδήποτε, αλλά ορισμένες επιλογές χρειάζονται επανεκκίνηση και ορισμένες επιλογές μπορεί να διακοπούν YaCy, εάν χρησιμοποιηθούν λανθασμένες τιμές.
+For explanation please look into defaults/yacy.init==Για εξηγήσεις, ανατρέξτε στις προεπιλογές/yacy.init
+#-----------------------------
+
+#File: ConfigRobotsTxt_p.html
+#---------------------------
+"Save restrictions"=="Αποθηκεύστε περιορισμούς"
+Exclude Web-Spiders==Εξαιρέστε το Web-Spiders
+Here you can set up a robots.txt for all webcrawlers that try to access the webinterface of your peer.==Εδώ μπορείτε να ρυθμίσετε ένα robots.txt για όλα τα προγράμματα ανίχνευσης ιστού που προσπαθούν να αποκτήσουν πρόσβαση στη διεπαφή ιστού του ομοτίμου σας.
+robots.txt==robots.txt
+is a voluntary agreement most search-engines (including YaCy) follow.==είναι μια εθελοντική συμφωνία που ακολουθούν οι περισσότερες μηχανές αναζήτησης (συμπεριλαμβανομένου του YaCy).
+It disallows crawlers to access webpages or even entire domains.==Δεν επιτρέπει στους ανιχνευτές να έχουν πρόσβαση σε ιστοσελίδες ή ακόμα και σε ολόκληρους τομείς.
+Unable to access the local file:==Δεν είναι δυνατή η πρόσβαση στο τοπικό αρχείο:
+Deletion of==Διαγραφή του
+htroot/robots.txt==htroot/robots.txt
+failed==αποτυχημένος
+Deny access to==Απαγόρευση πρόσβασης σε
+Entire Peer==Ολόκληρο το Peer
+Status page==Σελίδα κατάστασης
+Network pages==Σελίδες δικτύου
+Surftips==Surftips
+News pages==Σελίδες ειδήσεων
+Blog==Ιστολόγιο
+Wiki==Wiki
+Public bookmarks==Δημόσιοι σελιδοδείκτες
+Home Page==Αρχική Σελίδα
+File Share==Κοινή χρήση αρχείου
+Impressum==Εντυπωσιάζει
+#-----------------------------
+
+#File: ConfigSearchBox.html
+#---------------------------
+"Search"=="Ερευνα"
+Integration of a Search Box==Ενσωμάτωση πλαισίου αναζήτησης
+We give information how to integrate a search box on any web page that==Παρέχουμε πληροφορίες πώς να ενσωματώσετε ένα πλαίσιο αναζήτησης σε οποιαδήποτε ιστοσελίδα που
+calls the normal YaCy search window.==καλεί το κανονικό παράθυρο αναζήτησης YaCy.
+Simply use the following code:==Απλώς χρησιμοποιήστε τον παρακάτω κώδικα:
+This would look like:==Αυτό θα μοιάζει με:
+MySearch==MySearch
+This does not use a style sheet file to make the integration into another web page with a different style sheet easier.==Αυτό δεν χρησιμοποιεί ένα αρχείο φύλλου στυλ για να διευκολύνει την ενσωμάτωση σε άλλη ιστοσελίδα με διαφορετικό φύλλο στυλ.
+You would need to change the following items:==Θα χρειαστεί να αλλάξετε τα ακόλουθα στοιχεία:
+Replace the given colors #eeeeee (box background) and #cccccc (box border)==Αντικαταστήστε τα δεδομένα χρώματα #eeeeee (φόντο πλαισίου) και #cccccc (περιθώριο πλαισίου)
+Replace the word "MySearch" with your own message==Αντικαταστήστε τη λέξη "MySearch" με το δικό σας μήνυμα
+#-----------------------------
+
+#File: ConfigSearchPage_p.html
+#---------------------------
+"Top navigation bar"=="Κορυφαία γραμμή πλοήγησης"
+"Enable login link/status"=="Ενεργοποίηση συνδέσμου σύνδεσης/status"
+"Log in to use extended search features"=="Συνδεθείτε για να χρησιμοποιήσετε εκτεταμένες δυνατότητες αναζήτησης"
+"You are authenticated as userName"=="Έχετε πιστοποιηθεί ως όνομα χρήστη"
+"Help"=="Βοήθεια"
+"Protocols"=="Πρωτόκολλα"
+"Tag cloud"=="Σύννεφο ετικέτας"
+"earthsearchlogo"=="λογότυπο earthsearch"
+"Delete navigator"=="Διαγραφή πλοηγού"
+"Sorted by descending counts"=="Ταξινόμηση κατά φθίνουσα μέτρηση"
+"Sorted by ascending counts"=="Ταξινόμηση κατά αύξουσα μέτρηση"
+"Sorted by descending labels"=="Ταξινόμηση κατά φθίνουσες ετικέτες"
+"Sorted by ascending labels"=="Ταξινόμηση κατά αύξουσες ετικέτες"
+"search..."=="έρευνα..."
+"Maximum days number in the histogram. Beware that a large value may trigger high CPU loads both on the server and on the browser with large result sets."=="Μέγιστος αριθμός ημερών στο ιστόγραμμα. Προσέξτε ότι μια μεγάλη τιμή μπορεί να προκαλέσει υψηλά φορτία CPU τόσο στον διακομιστή όσο και στο πρόγραμμα περιήγησης με μεγάλα σύνολα αποτελεσμάτων."
+"info"=="πληροφορίες"
+"Website favicon"=="Favicon ιστότοπου"
+"Last known modification date"=="Τελευταία γνωστή ημερομηνία τροποποίησης"
+"Browse index"=="Περιήγηση στο ευρετήριο"
+"Raw ranking score value"=="Ακατέργαστη τιμή βαθμολογίας κατάταξης"
+"Date"=="Ημερομηνία"
+"Size"=="Μέγεθος"
+"Add navigator"=="Προσθήκη πλοηγού"
+"Save Settings"=="Αποθήκευση ρυθμίσεων"
+"Set Default Values"=="Ορίστε προεπιλεγμένες τιμές"
+Search Result Page Layout Configuration==Διαμόρφωση διάταξης σελίδας αποτελεσμάτων αναζήτησης
+Below is a generic template of the search result page. Mark the check boxes for features you would like to be displayed.==Παρακάτω είναι ένα γενικό πρότυπο της σελίδας αποτελεσμάτων αναζήτησης. Σημειώστε τα πλαίσια ελέγχου για τα χαρακτηριστικά που θέλετε να εμφανίζονται.
+Page Template==Πρότυπο σελίδας
+Toggle navigation==Εναλλαγή πλοήγησης
+Log in==Συνδεθείτε
+userName==όνομα χρήστη
+Search Interfaces==Διεπαφές αναζήτησης
+Administration »==Διαχείριση »
+http==http
+https==https
+ftp==ftp
+smb==smb
+file==αρχείο
+Tag==Ετικέτα
+Topics==Θέματα
+Cloud==Σύννεφο
+Location==Τοποθεσία
+show search results on map==εμφάνιση αποτελεσμάτων αναζήτησης στο χάρτη
+Sort by==Ταξινόμηση κατά
+Descending counts==Μετράει φθίνουσα
+Ascending counts==Αύξουσα μέτρηση
+Descending labels==Φθίνουσες ετικέτες
+Ascending labels==Αύξουσες ετικέτες
+Vocabulary==Λεξιλόγιο
+search==έρευνα
+Text==Κείμενο
+Images==εικόνες
+Audio==Ήχος
+Video==Βίντεο
+Applications==Εφαρμογές
+more options==περισσότερες επιλογές
+Date Navigation==Πλοήγηση ημερομηνίας
+Maximum range (in days)==Μέγιστο εύρος (σε ημέρες)
+Show websites favicon==Εμφάνιση favicon ιστοτόπων
+Not showing websites favicon can help you save some CPU time and network bandwidth.==Η μη εμφάνιση του favicon ιστοτόπων μπορεί να σας βοηθήσει να εξοικονομήσετε χρόνο CPU και εύρος ζώνης δικτύου.
+Title of Result==Τίτλος αποτελέσματος
+Description and text snippet of the search result==Περιγραφή και απόσπασμα κειμένου του αποτελέσματος αναζήτησης
+http://url-of-the-search-result.net==http://url-of-the-search-result.net
+Tags==Ετικέτες
+keyword==λέξη-κλειδί
+subject==θέμα
+keyword2==λέξη κλειδί 2
+keyword3==λέξη-κλειδί 3
+Max. tags initially displayed==Μέγ. ετικέτες που εμφανίζονται αρχικά
+(remaining can then be expanded)==(το υπόλοιπο μπορεί στη συνέχεια να επεκταθεί)
+42 kbyte==42 kbyte
+Metadata==Μεταδεδομένα
+Parser==Αναλυτής
+Citation==Παραπομπή
+Pictures==Εικόνες
+Cache==Κρύπτη
+View via Proxy==Προβολή μέσω Proxy
+Ranking: 1.12195955E9==Κατάταξη: 1.12195955E9
+For this option URL proxy must be enabled.==Για αυτήν την επιλογή πρέπει να είναι ενεργοποιημένος ο διακομιστής μεσολάβησης URL.
+menu: System Administration > Advanced Settings==μενού: Διαχείριση συστήματος > Ρυθμίσεις για προχωρημένους
+Menu: System Administration > Advanced Settings > Debug/Analysis Settings==Μενού: Διαχείριση συστήματος > Σύνθετες ρυθμίσεις > Εντοπισμός σφαλμάτων/Analysis Ρυθμίσεις
+Add Navigators==Προσθήκη πλοηγών
+append==προσαρτώ
+max. items==μέγ. είδη
+#-----------------------------
+
+#File: ConfigUpdate_p.html
+#---------------------------
+"Download Release"=="Λήψη έκδοσης"
+"Check for new Release"=="Ελέγξτε για νέα Έκδοση"
+"Install Release"=="Εγκαταστήστε το Release"
+"Delete Release"=="Διαγραφή Έκδοσης"
+"Check + Download + Install Release Now"=="Ελέγξτε + Λήψη + Εγκατάσταση Έκδοση τώρα"
+"Submit"=="Υποτάσσομαι"
+System Update==Ενημέρωση συστήματος
+Release will be installed. Please wait.==Η έκδοση θα εγκατασταθεί. Παρακαλώ περιμένετε.
+This servlet can only be used on operating systems that are currently supported for deploy functions.==Αυτό το servlet μπορεί να χρησιμοποιηθεί μόνο σε λειτουργικά συστήματα που υποστηρίζονται αυτήν τη στιγμή για λειτουργίες ανάπτυξης.
+If you see this message this means that your operation system is not supported.==Εάν δείτε αυτό το μήνυμα, αυτό σημαίνει ότι το λειτουργικό σας σύστημα δεν υποστηρίζεται.
+Manual System Update==Μη αυτόματη ενημέρωση συστήματος
+Current installed Release==Τρέχουσα εγκατεστημένη έκδοση
+(unsigned)==(ανυπόγραφο)
+(signed)==(υπογεγραμμένο)
+Downloaded Releases==Ληφθείσες εκδόσεις
+No downloaded releases available for deployment.==Δεν υπάρχουν διαθέσιμες εκδόσεις που έχουν ληφθεί για ανάπτυξη.
+(no signature)==(χωρίς υπογραφή)
+no automated installation on development environments==όχι αυτόματη εγκατάσταση σε περιβάλλοντα ανάπτυξης
+Automatic Update==Αυτόματη Ενημέρωση
+check for new releases, download if available and restart with downloaded release==ελέγξτε για νέες εκδόσεις, πραγματοποιήστε λήψη εάν είναι διαθέσιμη και επανεκκινήστε με την έκδοση που έχετε κατεβάσει
+No more recent release found.==Δεν βρέθηκε πιο πρόσφατη έκδοση.
+Omitting update because this is a development environment.==Παράλειψη ενημέρωσης επειδή πρόκειται για περιβάλλον ανάπτυξης.
+Omitting update because an error occurred while trying to deploy the release.==Παράλειψη ενημέρωσης επειδή παρουσιάστηκε σφάλμα κατά την προσπάθεια ανάπτυξης της έκδοσης.
+Automated System Update==Αυτοματοποιημένη ενημέρωση συστήματος
+manual update==μη αυτόματη ενημέρωση
+no automatic look-up, updates can be made manually using this interface (see options above)==δεν υπάρχει αυτόματη αναζήτηση, οι ενημερώσεις μπορούν να γίνουν χειροκίνητα χρησιμοποιώντας αυτήν τη διεπαφή (δείτε τις επιλογές παραπάνω)
+automatic update==αυτόματη ενημέρωση
+updates are made within fixed cycles:==Οι ενημερώσεις γίνονται εντός σταθερών κύκλων:
+Time between lookup==Χρόνος μεταξύ αναζήτησης
+hours==ώρες
+Release blacklist==Δημοσιεύστε τη μαύρη λίστα
+(regex on release number strings)==(regex στις συμβολοσειρές αριθμού κυκλοφορίας)
+Release type==Τύπος απελευθέρωσης
+only main releases==μόνο κύριες εκδόσεις
+any release including developer releases==οποιαδήποτε έκδοση, συμπεριλαμβανομένων των εκδόσεων προγραμματιστών
+Signed autoupdate:==Υπογεγραμμένη αυτόματη ενημέρωση:
+only accept signed files==δέχονται μόνο υπογεγραμμένα αρχεία
+Accepted Changes.==Αποδεκτές Αλλαγές.
+System Update Statistics==Στατιστικά ενημέρωσης συστήματος
+Last System Lookup==Τελευταία αναζήτηση συστήματος
+never==ποτέ
+Last Release Download==Λήψη τελευταίας έκδοσης
+Last Deploy==Τελευταία ανάπτυξη
+You installed YaCy with a package manager. To update YaCy, use the package manager:==Εγκαταστήσατε το YaCy με έναν διαχειριστή πακέτων. Για να ενημερώσετε το YaCy, χρησιμοποιήστε τη διαχείριση πακέτων:
+manual update: apt-get update && apt-get install yacy==μη αυτόματη ενημέρωση: apt-get update && apt-get install yacy
+automatic update: add the following line to /etc/crontab 0 6 * * * root apt-get update && apt-get -y --force-yes install yacy==αυτόματη ενημέρωση: προσθέστε την ακόλουθη γραμμή στο /etc/crontab 0 6 * * * root apt-get update && apt-get -y --force-yes install yacy
+#-----------------------------
+
+#File: ConfigUser_p.html
+#---------------------------
+"Save User"=="Αποθήκευση χρήστη"
+"Delete User"=="Διαγραφή χρήστη"
+"ConfigAccountList_p.html"=="ConfigAccountList_p.html"
+User Account Editor==Επεξεργαστής λογαριασμού χρήστη
+Generic error.==Γενικό σφάλμα.
+Passwords do not match.==Οι κωδικοί πρόσβασης δεν ταιριάζουν.
+Username too short. Username must be >= 4 Characters.==Το όνομα χρήστη είναι πολύ μικρό. Το όνομα χρήστη πρέπει να είναι >= 4 χαρακτήρες.
+Username already used (not allowed).==Όνομα χρήστη που χρησιμοποιείται ήδη (δεν επιτρέπεται).
+Username==Όνομα χρήστη
+Password==Σύνθημα
+Repeat password==Επαναλάβετε τον κωδικό πρόσβασης
+First name==Ονομα
+Last name==Επώνυμο
+Address==Διεύθυνση
+Rights:==Δικαιώματα:
+Timelimit==Χρονικό όριο
+Time used==Χρόνος που χρησιμοποιείται
+back to user list==επιστροφή στη λίστα χρηστών
+#-----------------------------
+
+#File: Connections_p.html
+#---------------------------
+Server Connection Tracking==Παρακολούθηση σύνδεσης διακομιστή
+Incoming Connections==Εισερχόμενες συνδέσεις
+Protocol==Πρωτόκολλο
+Duration==Διάρκεια
+Source IP[:Port]==IP Πηγής[:Port]
+Command==Εντολή
+ID==ταυτότητα
+Outgoing Connections==Εξερχόμενες Συνδέσεις
+Up-Bytes==Up-Byte
+Dest. IP[:Port]==IP Προορισμού.[:Port]
+#-----------------------------
+
+#File: ContentAnalysis_p.html
+#---------------------------
+"Set"=="Σειρά"
+"Re-Set to default"=="Ρυθμίστε ξανά στην προεπιλογή"
+Content Analysis==Ανάλυση Περιεχομένου
+These are document analysis attributes.==Αυτά είναι χαρακτηριστικά ανάλυσης εγγράφων.
+Double Content Detection==Ανίχνευση διπλού περιεχομένου
+Double-Content detection is done using a ranking on a 'unique'-Field, named 'fuzzy_signature_unique_b'.==Η ανίχνευση διπλού περιεχομένου γίνεται χρησιμοποιώντας μια κατάταξη σε ένα πεδίο "μοναδικό", που ονομάζεται "fuzzy_signature_unique_b".
+minTokenLen==minTokenLen
+This is the minimum length of a word which shall be considered as element of the signature. Should be either 2 or 3.==Αυτό είναι το ελάχιστο μήκος μιας λέξης που θα θεωρείται ως στοιχείο της υπογραφής. Θα πρέπει να είναι είτε 2 είτε 3.
+quantRate==ποσοτικός συντελεστής
+The quantRate is a measurement for the number of words that take part in a signature computation. The higher the number, the less==Το quantRate είναι μια μέτρηση για τον αριθμό των λέξεων που συμμετέχουν σε έναν υπολογισμό υπογραφής. Όσο μεγαλύτερος είναι ο αριθμός, τόσο λιγότερο
+words are used for the signature.==λέξεις χρησιμοποιούνται για την υπογραφή.
+For minTokenLen = 2 the quantRate value should not be below 0.24; for minTokenLen = 3 the quantRate value must be not below 0.5.==Για minTokenLen = 2 η τιμή quantRate δεν πρέπει να είναι κάτω από 0,24. για minTokenLen = 3 η τιμή quantRate δεν πρέπει να είναι κάτω από 0,5.
+#-----------------------------
+
+#File: ContentIntegrationPHPBB3_p.html
+#---------------------------
+"Check database connection"=="Ελέγξτε τη σύνδεση της βάσης δεδομένων"
+"Export Content to Packs"=="Εξαγωγή περιεχομένου σε πακέτα"
+"Import Dump"=="Χωματερή εισαγωγής"
+Content Integration: Retrieval from phpBB3 Databases==Ενσωμάτωση περιεχομένου: Ανάκτηση από βάσεις δεδομένων phpBB3
+It is possible to extract texts directly from mySQL and postgreSQL databases.==Είναι δυνατή η εξαγωγή κειμένων απευθείας από τις βάσεις δεδομένων mySQL και postgreSQL.
+Each extraction is specific to the data that is hosted in the database.==Κάθε εξαγωγή είναι συγκεκριμένη για τα δεδομένα που φιλοξενούνται στη βάση δεδομένων.
+This interface gives you access to the phpBB3 forums software content.==Αυτή η διεπαφή σάς δίνει πρόσβαση στο περιεχόμενο λογισμικού του φόρουμ phpBB3.
+If you read from an imported database, here are some hints to get around problems when importing dumps in phpMyAdmin:==Εάν διαβάζετε από μια εισαγόμενη βάση δεδομένων, ακολουθούν ορισμένες συμβουλές για την αντιμετώπιση προβλημάτων κατά την εισαγωγή dump στο phpMyAdmin:
+before importing large database dumps, set the following Line in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB):==πριν εισαγάγετε μεγάλες βάσεις δεδομένων, ορίστε την ακόλουθη Γραμμή στο phpmyadmin/config.inc.php και τοποθετήστε το αρχείο ένδειξης σφαλμάτων στο /tmp (Διαφορετικά, δεν είναι δυνατό να ανεβάσετε αρχεία μεγαλύτερα από 2 MB):
+deselect the partial import flag==αποεπιλέξτε τη σημαία μερικής εισαγωγής
+When an export is started, pack files are generated into DATA/PACKS/load which are automatically fetched by an indexer thread.==Όταν ξεκινά μια εξαγωγή, δημιουργούνται αρχεία πακέτων στο DATA/PACKS/load τα οποία ανακτώνται αυτόματα από ένα νήμα ευρετηρίου.
+All indexed pack files are then moved to DATA/PACKS/loaded and can be re-cycled when an index is deleted.==Στη συνέχεια, όλα τα αρχεία πακέτων με ευρετήριο μετακινούνται στο DATA/PACKS/loaded και μπορούν να ανακυκλωθούν όταν διαγραφεί ένα ευρετήριο.
+The URL stub, like http://forum.yacy-websuche.de this must be the path right in front of '/viewtopic.php?'==Το URL stub, like http://forum.yacy-websuche.de αυτή πρέπει να είναι η διαδρομή ακριβώς μπροστά από το "/viewtopic.php?'
+Type of database (use either 'mysql' or 'pgsql')==Τύπος της βάσης δεδομένων (χρησιμοποιήστε είτε "mysql" είτε "pgsql")
+Host of the database==Host της βάσης δεδομένων
+Port of database service (usually 3306 for mySQL)==Port της υπηρεσίας βάσης δεδομένων (συνήθως 3306 για mySQL)
+Name of the database on the host==Όνομα της βάσης δεδομένων στον κεντρικό υπολογιστή
+Table prefix string for table names==Συμβολοσειρά προθέματος πίνακα για ονόματα πινάκων
+User that can access the database==User που μπορεί να έχει πρόσβαση στη βάση δεδομένων
+Password for the account of that user given above==Password για τον λογαριασμό αυτού του χρήστη που αναφέρεται παραπάνω
+Posts per file in exported packs==Αναρτήσεις ανά αρχείο σε εξαγόμενα πακέτα
+Import a database dump,==Εισαγωγή βάσης δεδομένων dump,
+Posts in database==Δημοσιεύσεις στη βάση δεδομένων
+first entry==πρώτη είσοδο
+last entry==τελευταία καταχώρηση
+Import successful!==Επιτυχής εισαγωγή!
+#-----------------------------
+
+#File: CookieMonitorIncoming_p.html
+#---------------------------
+"Enable Cookie Monitoring"=="Ενεργοποιήστε την παρακολούθηση cookie"
+"Disable Cookie Monitoring"=="Απενεργοποιήστε την παρακολούθηση cookie"
+Cookie Monitor: Incoming Cookies==Παρακολούθηση Cookies: Εισερχόμενα Cookies
+This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:==Αυτός είναι ένας κατάλογος με τα Cookies που έστειλε ο διακομιστής προς τους πελάτες του YaCy Proxy :
+Sending Host==Αποστολή οικοδεσπότη
+Date==Ημερομηνία
+Receiving Client==Παραλαβή Πελάτη
+Cookie==Κουλουράκι
+#-----------------------------
+
+#File: CookieMonitorOutgoing_p.html
+#---------------------------
+"Enable Cookie Monitoring"=="Ενεργοποιήστε την παρακολούθηση cookie"
+"Disable Cookie Monitoring"=="Απενεργοποιήστε την παρακολούθηση cookie"
+Cookie Monitor: Outgoing Cookies==Παρακολούθηση Cookies: Εξερχόμενα Cookies
+This is a list of cookies that browsers using the YaCy proxy sent to webservers:==Αυτή είναι μια λίστα με cookies που τα προγράμματα περιήγησης που χρησιμοποιούν τον διακομιστή μεσολάβησης YaCy έστειλαν στους διακομιστές ιστού:
+Receiving Host==Υποδοχή λήψης
+Date==Ημερομηνία
+Sending Client==Αποστολή Πελάτη
+Cookie==Κουλουράκι
+#-----------------------------
+
+#File: CrawlCheck_p.html
+#---------------------------
+"Check given urls"=="Ελέγξτε τις δεδομένες διευθύνσεις URL"
+Crawl Check==Έλεγχος ανίχνευσης
+This pages gives you an analysis about the possible success for a web crawl on given addresses.==Αυτή η σελίδα σάς παρέχει μια ανάλυση σχετικά με την πιθανή επιτυχία μιας ανίχνευσης ιστού σε συγκεκριμένες διευθύνσεις.
+List of possible crawl start URLs==Λίστα πιθανών διευθύνσεων URL έναρξης ανίχνευσης
+Analysis==Ανάλυση
+URL==URL
+Access==Πρόσβαση
+Robots==Ρομπότ
+Crawl-Delay==Ανίχνευση-Καθυστέρηση
+Sitemap==Χάρτης ιστότοπου
+#-----------------------------
+
+#File: CrawlMonitorRemoteStart.html
+#---------------------------
+Recently started remote crawls in progress==Πρόσφατα ξεκίνησαν απομακρυσμένες ανιχνεύσεις σε εξέλιξη
+Remote crawl start points, crawl is ongoing==Σημεία έναρξης απομακρυσμένης ανίχνευσης, η ανίχνευση είναι σε εξέλιξη
+Start Time==Ώρα έναρξης
+Peer Name==Όνομα ομοτίμου
+Start URL==Έναρξη URL
+Intention/Description==Πρόθεση/Description
+Depth==Βάθος
+Accept '?' URLs==Αποδοχή ';' URL
+no==όχι
+yes==ναι
+Remote crawl start points, finished:==Σημεία έναρξης απομακρυσμένης ανίχνευσης, ολοκληρώθηκαν:
+#-----------------------------
+
+#File: CrawlProfileEditor_p.html
+#---------------------------
+"Terminate"=="Περατώ"
+"Delete"=="Διαγράφω"
+"Delete finished crawls"=="Διαγραφή τελικών ανιχνεύσεων"
+"Edit profile"=="Επεξεργασία προφίλ"
+"Submit changes"=="Υποβολή αλλαγών"
+Crawler Steering==Διεύθυνση ερπυστριοφόρου
+Crawl Scheduler==Προγραμματιστής ανίχνευσης
+Scheduled Crawls can be modified in this table==Οι προγραμματισμένες ανιχνεύσεις μπορούν να τροποποιηθούν σε αυτόν τον πίνακα
+Crawl Profile Editor==Πρόγραμμα επεξεργασίας προφίλ ανίχνευσης
+Crawl profiles hold information about a crawl process that is currently ongoing.==Τα προφίλ ανίχνευσης περιέχουν πληροφορίες σχετικά με μια διαδικασία ανίχνευσης που βρίσκεται σε εξέλιξη.
+Crawl Profile List==Ανίχνευση λίστας προφίλ
+Crawl Thread==νήμα ανίχνευσης
+Collections==Συλλογές
+Status==Κατάσταση
+Depth==Βάθος
+Must Match==Πρέπει να ταιριάζει
+Must Not Match==Δεν πρέπει να ταιριάζει
+Recrawl if older than==Αναζητήστε ξανά εάν είναι μεγαλύτερο από
+Domain Counter Content==Περιεχόμενο μετρητή τομέα
+Max Page Per Domain==Μέγιστος αριθμός σελίδας ανά τομέα
+Accept '?' URLs==Αποδοχή ';' URL
+Fill Proxy Cache==Συμπληρώστε την προσωρινή μνήμη διακομιστή μεσολάβησης
+Local Text Indexing==Τοπική ευρετηρίαση κειμένου
+Local Media Indexing==Ευρετηρίαση τοπικών μέσων
+Remote Indexing==Απομακρυσμένη ευρετηρίαση
+Running==Τρέξιμο
+Finished==Πεπερασμένος
+no==όχι
+yes==ναι
+Select the profile to edit==Επιλέξτε το προφίλ που θέλετε να επεξεργαστείτε
+false==ψευδής
+true==αληθής
+#-----------------------------
+
+#File: CrawlResults.html
+#---------------------------
+"An illustration how yacy works"=="Μια απεικόνιση πώς λειτουργεί το yacy"
+"delete all"=="διαγράψτε όλα"
+"del & blacklist"=="del & μαύρη λίστα"
+"clear list"=="καθαρή λίστα"
+"delete"=="διαγράφω"
+Crawl Results Overview==Επισκόπηση αποτελεσμάτων ανίχνευσης
+These are monitoring pages for the different indexing queues.==Αυτές είναι σελίδες παρακολούθησης για τις διαφορετικές ουρές ευρετηρίου.
+YaCy knows 5 different ways to acquire web indexes. The details of these processes (1-5) are described within the submenu's listed==Ο YaCy γνωρίζει 5 διαφορετικούς τρόπους απόκτησης ευρετηρίων ιστού. Οι λεπτομέρειες αυτών των διαδικασιών (1-5) περιγράφονται στα υπομενού που παρατίθενται
+above which also will show you a table with indexing results so far. The information in these tables is considered as private,==πάνω από το οποίο θα εμφανιστεί επίσης ένας πίνακας με αποτελέσματα ευρετηρίασης μέχρι στιγμής. Οι πληροφορίες σε αυτούς τους πίνακες θεωρούνται ιδιωτικές,
+so you need to log-in with your administration password.==οπότε πρέπει να συνδεθείτε με τον κωδικό πρόσβασης διαχείρισης.
+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==Η περίπτωση (6) είναι μια οθόνη της τοπικής γεννήτριας αποδείξεων, η αντίθετη περίπτωση της (1). Περιέχει επίσης μια παρακολούθηση αποτελεσμάτων ευρετηρίασης, αλλά δεν θεωρείται ιδιωτικό
+since it shows crawl requests from other peers.==αφού εμφανίζει αιτήματα ανίχνευσης από άλλους συνομηλίκους.
+Case (7) occurs if pack files are imported==Η περίπτωση (7) παρουσιάζεται εάν εισάγονται αρχεία πακέτων
+The image above illustrates the data flow initiated by web index acquisition.==Η παραπάνω εικόνα απεικονίζει τη ροή δεδομένων που ξεκίνησε από την απόκτηση ευρετηρίου Ιστού.
+Some processes occur double to document the complex index migration structure.==Ορισμένες διεργασίες πραγματοποιούνται διπλά για την τεκμηρίωση της σύνθετης δομής μετεγκατάστασης ευρετηρίου.
+(1) Results of Remote Crawl Receipts==(1) Αποτελέσματα αποδείξεων απομακρυσμένης ανίχνευσης
+This is the list of web pages that this peer initiated to crawl,==Αυτή είναι η λίστα των ιστοσελίδων που ξεκίνησε να ανιχνεύει αυτός ο ομότιμος,
+but had been crawled by other peers.==αλλά είχε ανιχνευθεί από other συνομήλικους.
+This is the 'mirror'-case of process (6).==Αυτή είναι η περίπτωση «καθρέφτη» της διαδικασίας (6).
+Every page that a remote peer indexes upon this peer's request is reported back and can be monitored here.==Κάθε σελίδα που ευρετηριάζει ένας απομακρυσμένος ομότιμος μετά από αίτημα αυτού του ομότιμου αναφέρεται πίσω και μπορεί να παρακολουθηθεί εδώ.
+No remote crawl results can currently been added to the local index as the remote crawler is disabled on this peer.==Επί του παρόντος, δεν μπορούν να προστεθούν αποτελέσματα απομακρυσμένης ανίχνευσης στο τοπικό ευρετήριο, καθώς ο απομακρυσμένος ανιχνευτής είναι απενεργοποιημένος σε αυτό το ομότιμο.
+(2) Results for Result of Search Queries==(2) Αποτελέσματα για Αποτελέσματα Ερωτημάτων Αναζήτησης
+This index transfer was initiated by your peer by doing a search query.==Αυτή η μεταφορά ευρετηρίου ξεκίνησε από τον ομότιμο σας κάνοντας ένα ερώτημα αναζήτησης.
+The index was crawled and contributed by other peers.==Ο δείκτης ανιχνεύτηκε και συνεισφέρθηκε από άλλους συνομηλίκους.
+Use Case: This list fills up if you do a search query on the 'Search Page'==Περίπτωση χρήσης: Αυτή η λίστα γεμίζει εάν κάνετε ένα ερώτημα αναζήτησης στη "Σελίδα αναζήτησης"
+(3) Results for Index Transfer==(3) Αποτελέσματα για Μεταφορά Ευρετηρίου
+The url fetch was initiated and executed by other peers.==Η ανάκτηση url ξεκίνησε και εκτελέστηκε από άλλους ομολόγους.
+These links here have been transmitted to you because your peer is the most appropriate for storage according to==Αυτοί οι σύνδεσμοι εδώ έχουν μεταδοθεί σε εσάς επειδή ο ομότιμος σας είναι ο καταλληλότερος για αποθήκευση σύμφωνα με
+the logic of the Global Distributed Hash Table.==τη λογική του Παγκόσμιου Κατανεμημένου Πίνακα Κατακερματισμού.
+Use Case: This list may fill if you check the 'Index Receive'-flag on the 'Index Control' page==Περίπτωση χρήσης: Αυτή η λίστα μπορεί να γεμίσει εάν επιλέξετε τη σημαία "Λήψη ευρετηρίου" στη σελίδα "Έλεγχος ευρετηρίου"
+(4) Results for Proxy Indexing==(4) Αποτελέσματα για την ευρετηρίαση μεσολάβησης
+These web pages had been indexed as result of your proxy usage.==Αυτές οι ιστοσελίδες είχαν ευρετηριαστεί ως αποτέλεσμα της χρήσης διακομιστή μεσολάβησης.
+No personal or protected page is indexed;==Καμία προσωπική ή προστατευμένη σελίδα δεν έχει ευρετηριαστεί.
+such pages are detected by Cookie-Use or POST-Parameters (either in URL or as HTTP protocol)==τέτοιες σελίδες εντοπίζονται από Cookie-Use ή POST-Parameters (είτε στο URL είτε ως HTTP πρωτόκολλο)
+and automatically excluded from indexing.==και αποκλείεται αυτόματα από την ευρετηρίαση.
+Use Case: You must use YaCy as proxy to fill up this table.==Περίπτωση χρήσης: Πρέπει να χρησιμοποιήσετε YaCy ως διακομιστή μεσολάβησης για να γεμίσετε αυτόν τον πίνακα.
+Set the proxy settings of your browser to the same port as given==Ρυθμίστε τις ρυθμίσεις διακομιστή μεσολάβησης του προγράμματος περιήγησής σας στην ίδια θύρα που δίνεται
+on the 'Settings'-page in the 'Proxy and Administration Port' field.==στη σελίδα "Ρυθμίσεις" στο πεδίο "Διακομιστής μεσολάβησης και Θύρα διαχείρισης".
+(5) Results for Local Crawling==(5) Αποτελέσματα για την τοπική ανίχνευση
+These web pages had been crawled by your own crawl task.==Αυτές οι ιστοσελίδες είχαν ανιχνευτεί από τη δική σας εργασία ανίχνευσης.
+Use Case: start a crawl by setting a crawl start point on the 'Index Create' page.==Περίπτωση χρήσης: ξεκινήστε μια ανίχνευση ορίζοντας ένα σημείο έναρξης ανίχνευσης στη σελίδα "Δημιουργία ευρετηρίου".
+(6) Results for Global Crawling==(6) Αποτελέσματα για την παγκόσμια ανίχνευση
+These pages had been indexed by your peer, but the crawl was initiated by a remote peer.==Αυτές οι σελίδες είχαν ευρετηριαστεί από τον ομότιμο σας, αλλά η ανίχνευση ξεκίνησε από έναν απομακρυσμένο ομότιμο.
+This is the 'mirror'-case of process (1).==Αυτή είναι η περίπτωση «καθρέφτη» της διαδικασίας (1).
+The remote crawler is currently disabled==Ο απομακρυσμένος ανιχνευτής είναι προς το παρόν απενεργοποιημένος
+(7) Results from pack import==(7) Αποτελέσματα από την εισαγωγή συσκευασίας
+These records had been imported from pack files in DATA/PACKS/load==Αυτές οι εγγραφές είχαν εισαχθεί από αρχεία πακέτου στο DATA/PACKS/load
+The stack is empty.==Η στοίβα είναι άδεια.
+Domain==Πεδίο ορισμού
+URLs==URL
+Blacklist to use==Μαύρη λίστα για χρήση
+Collection==Συλλογή
+Initiator==Μυητής
+Executor==Εκτελεστής διαθήκης
+Modified==Τροποποιήθηκε
+Words==Λόγια
+Title==Τίτλος
+Country==Χώρα
+IP of Host==IP του οικοδεσπότη
+URL==URL
+no title==χωρίς τίτλο
+#-----------------------------
+
+#File: CrawlStartExpert.html
+#---------------------------
+"API"=="API"
+"info"=="πληροφορίες"
+"empty"=="αδειάζω"
+"Show all links"=="Εμφάνιση όλων των συνδέσμων"
+"Media Type checking info"=="Πληροφορίες ελέγχου τύπου μέσου"
+"Media Type filter info"=="Πληροφορίες φίλτρου τύπου μέσου"
+"Solr query filter info"=="Solr πληροφορίες φίλτρου ερωτήματος"
+"Clean up search events cache info"=="Εκκαθάριση πληροφοριών προσωρινής μνήμης συμβάντων αναζήτησης"
+"Start New Crawl Job"=="Ξεκινήστε νέα εργασία ανίχνευσης"
+Click on this API button to see a documentation of the POST request parameter for crawl starts.==Κάντε κλικ σε αυτό το κουμπί API για να δείτε μια τεκμηρίωση της παραμέτρου αιτήματος POST για την έναρξη της ανίχνευσης.
+Expert Crawl Start==Έναρξη ανίχνευσης από ειδικούς
+Start Crawling Job:==Ξεκινήστε την εργασία ανίχνευσης:
+You can define URLs as start points for Web page crawling and start crawling here.==Μπορείτε να ορίσετε τις διευθύνσεις URL ως σημεία έναρξης για την ανίχνευση ιστοσελίδων και να ξεκινήσετε την ανίχνευση εδώ.
+"Crawling" means that YaCy will download the given website, extract all links in it and then download the content behind these links.=="Ανίχνευση" σημαίνει ότι ο YaCy θα πραγματοποιήσει λήψη του συγκεκριμένου ιστότοπου, θα εξαγάγει όλους τους συνδέσμους σε αυτόν και στη συνέχεια θα πραγματοποιήσει λήψη του περιεχομένου πίσω από αυτούς τους συνδέσμους.
+This is repeated as long as specified under "Crawling Depth".==Αυτό επαναλαμβάνεται για όσο διάστημα καθορίζεται στην ενότητα "Βάθος ανίχνευσης".
+Crawl Job==Crawl Job
+A Crawl Job consist of one or more start point, crawl limitations and document freshness rules.==Μια εργασία ανίχνευσης αποτελείται από ένα ή περισσότερα σημεία έναρξης, περιορισμούς ανίχνευσης και κανόνες φρεσκάδας εγγράφων.
+Start Point==Σημείο εκκίνησης
+One Start URL or a list of URLs: (must start with http:// https:// ftp:// smb:// file://)==Μία αρχική URL ή λίστα URL: (πρέπει να ξεκινά με http:// https:// ftp:// smb:// file://)
+Define the start-url(s) here. You can submit more than one URL, each line one URL please.==Ορίστε τις διευθύνσεις URL έναρξης εδώ. Μπορείτε να υποβάλετε περισσότερα από ένα URL, κάθε γραμμή ένα URL παρακαλώ.
+Each of these URLs are the root for a crawl start, existing start URLs are always re-loaded.==Καθεμία από αυτές τις διευθύνσεις URL είναι η ρίζα για μια έναρξη ανίχνευσης, οι υπάρχουσες διευθύνσεις URL εκκίνησης φορτώνονται πάντα ξανά.
+Other already visited URLs are sorted out as "double", if they are not allowed using the re-crawl option.==Άλλες διευθύνσεις URL που έχουν ήδη επισκεφτεί ταξινομούνται ως "διπλές", εάν δεν επιτρέπονται χρησιμοποιώντας την επιλογή εκ νέου ανίχνευσης.
+From Link-List of URL==Από τη λίστα συνδέσμων των URL
+From Sitemap==Από τον χάρτη ιστότοπου
+From File (enter a path within your local file system)==Από Αρχείο (εισαγάγετε μια διαδρομή στο τοπικό σας σύστημα αρχείων)
+Index Attributes==Χαρακτηριστικά ευρετηρίου
+Add Crawl result to collection (important for Index Pack generation)==Προσθήκη αποτελέσματος ανίχνευσης στη συλλογή (σημαντικό για τη δημιουργία πακέτου ευρετηρίου)
+A crawl result can be tagged with names which are candidates for a collection request.==Ένα αποτέλεσμα ανίχνευσης μπορεί να επισημανθεί με ονόματα που είναι υποψήφια για αίτημα συλλογής.
+Do not use underline '_' in collection name, use '-' instead. When useful, add a language code to the collection name, e.g. 'top-100-en'.==Μην χρησιμοποιείτε υπογράμμιση '_' στο όνομα της συλλογής, χρησιμοποιήστε το '-'. Όταν είναι χρήσιμο, προσθέστε έναν κωδικό γλώσσας στο όνομα της συλλογής, π.χ. 'top-100-en'.
+Time Zone Offset==Μετατόπιση ζώνης ώρας
+The time zone is required when the parser detects a date in the crawled web page. Content can be searched with the on: - modifier which==Η ζώνη ώρας απαιτείται όταν ο αναλυτής εντοπίζει μια ημερομηνία στην ανιχνευμένη ιστοσελίδα. Το περιεχόμενο μπορεί να αναζητηθεί με το on: - τροποποιητή που
+requires also a time zone when a query is made. To normalize all given dates, the date is stored in UTC time zone. To get the right offset==απαιτεί επίσης μια ζώνη ώρας όταν γίνεται ένα ερώτημα. Για να ομαλοποιηθούν όλες οι δεδομένες ημερομηνίες, η ημερομηνία αποθηκεύεται στη ζώνη ώρας UTC. Για να πάρετε τη σωστή αντιστάθμιση
+from dates without time zones to UTC, this offset must be given here. The offset is given in minutes;==από ημερομηνίες χωρίς ζώνες ώρας έως UTC, αυτή η μετατόπιση πρέπει να δίνεται εδώ. Η μετατόπιση δίνεται σε λεπτά.
+Time zone offsets for locations east of UTC must be negative; offsets for zones west of UTC must be positve.==Οι μετατοπίσεις ζώνης ώρας για τοποθεσίες ανατολικά της UTC πρέπει να είναι αρνητικές. Οι μετατοπίσεις για ζώνες δυτικά της UTC πρέπει να είναι θετικές.
+Crawler Filter==Φίλτρο ανιχνευτή
+These are limitations on the crawl stacker. The filters will be applied before a web page is loaded.==Αυτοί είναι περιορισμοί στη στοίβαξη ανίχνευσης. Τα φίλτρα θα εφαρμοστούν πριν από τη φόρτωση μιας ιστοσελίδας.
+Indexing==Ευρετηρίαση
+This enables indexing of the webpages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the==Αυτό επιτρέπει την ευρετηρίαση των ιστοσελίδων που θα κατεβάσει ο ανιχνευτής. Αυτό θα πρέπει να είναι ενεργοποιημένο από προεπιλογή, εκτός εάν θέλετε να ανιχνεύσετε μόνο για να γεμίσετε το
+Document Cache without indexing.==Προσωρινή μνήμη εγγράφων χωρίς ευρετηρίαση.
+index text==κείμενο ευρετηρίου
+index media==μέσα ευρετηρίου
+Do Remote Indexing==Κάντε απομακρυσμένη ευρετηρίαση
+If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Εάν είναι επιλεγμένο, ο ανιχνευτής θα επικοινωνήσει με άλλους συνομηλίκους και θα τους χρησιμοποιήσει ως απομακρυσμένους ευρετηρητές για την ανίχνευση σας.
+If you need your crawling results locally, you should switch this off.==Εάν χρειάζεστε τα αποτελέσματα ανίχνευσης τοπικά, θα πρέπει να το απενεργοποιήσετε.
+Only senior and principal peers can initiate or receive remote crawls.==Μόνο οι ανώτεροι και κύριοι συνομήλικοι μπορούν να ξεκινήσουν ή να λάβουν απομακρυσμένες ανιχνεύσεις.
+A YaCyNews message will be created to inform all peers about a global crawl,==Ένα μήνυμα YaCyNews θα δημιουργηθεί για να ενημερώσει όλους τους συνομηλίκους σχετικά με μια παγκόσμια ανίχνευση,
+so they can omit starting a crawl with the same start point.==ώστε να μπορούν να παραλείψουν να ξεκινήσουν μια ανίχνευση με το ίδιο σημείο εκκίνησης.
+Remote crawl results won't be added to the local index as the remote crawler is disabled on this peer.==Τα αποτελέσματα απομακρυσμένης ανίχνευσης δεν θα προστεθούν στο τοπικό ευρετήριο, καθώς ο απομακρυσμένος ανιχνευτής είναι απενεργοποιημένος σε αυτό το ομότιμο.
+Describe your intention to start this global crawl (optional)==Περιγράψτε την πρόθεσή σας να ξεκινήσετε αυτήν την καθολική ανίχνευση (προαιρετικό)
+This message will appear in the 'Other Peer Crawl Start' table of other peers.==Αυτό το μήνυμα θα εμφανιστεί στον πίνακα "Άλλη έναρξη ανίχνευσης ομότιμων" άλλων ομότιμων.
+Crawling Depth==Βάθος ανίχνευσης
+This defines how often the Crawler will follow links (of links..) embedded in websites.==Αυτό καθορίζει πόσο συχνά ο ανιχνευτής θα ακολουθεί συνδέσμους (δεσμών..) που είναι ενσωματωμένοι σε ιστότοπους.
+0 means that only the page you enter under "Starting Point" will be added==Το 0 σημαίνει ότι θα προστεθεί μόνο η σελίδα που εισάγετε στην ενότητα "Σημείο εκκίνησης".
+to the index. 2-4 is good for normal indexing. Values over 8 are not useful, since a depth-8 crawl will==στον δείκτη. Το 2-4 είναι καλό για κανονική ευρετηρίαση. Τιμές πάνω από 8 δεν είναι χρήσιμες, αφού το depth-8 θα ανιχνευθεί
+index approximately 25.600.000.000 pages, maybe this is the whole WWW.==ευρετήριο περίπου 25.600.000.000 σελίδες, ίσως αυτό είναι ολόκληρο το WWW.
+also all linked non-parsable documents==επίσης όλα τα συνδεδεμένα μη αναλύσιμα έγγραφα
+Unlimited crawl depth for URLs matching with==Απεριόριστο βάθος ανίχνευσης για διευθύνσεις URL που ταιριάζουν με
+Maximum Pages per Domain==Μέγιστες σελίδες ανά τομέα
+You can limit the maximum number of pages that are fetched and indexed from a single domain with this option.==Μπορείτε να περιορίσετε τον μέγιστο αριθμό σελίδων που λαμβάνονται και ευρετηριάζονται από έναν τομέα με αυτήν την επιλογή.
+You can combine this limitation with the 'Auto-Dom-Filter', so that the limit is applied to all the domains within==Μπορείτε να συνδυάσετε αυτόν τον περιορισμό με το 'Auto-Dom-Filter', έτσι ώστε το όριο να εφαρμόζεται σε όλους τους τομείς εντός
+the given depth. Domains outside the given depth are then sorted-out anyway.==το δεδομένο βάθος. Οι τομείς εκτός του δεδομένου βάθους στη συνέχεια ταξινομούνται ούτως ή άλλως.
+Use==Χρήση
+Page-Count==Σελίδα-Αριθμός
+misc. Constraints==διάφορα. Περιορισμοί
+A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled.==Ένα ερωτηματικό είναι συνήθως μια υπόδειξη για μια δυναμική σελίδα. Οι διευθύνσεις URL που οδηγούν σε δυναμικό περιεχόμενο συνήθως δεν πρέπει να ανιχνεύονται.
+However, there are sometimes web pages with static content that==Ωστόσο, μερικές φορές υπάρχουν ιστοσελίδες με στατικό περιεχόμενο που
+is accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.==Η πρόσβαση γίνεται με διευθύνσεις URL που περιέχουν ερωτηματικά. Εάν δεν είστε σίγουροι, μην το ελέγξετε για να αποφύγετε βρόχους ανίχνευσης.
+Following frames is NOT done by Gxxg1e, but we do by default to have a richer content. 'nofollow' in robots metadata can be overridden; this does not affect obeying of the robots.txt which is never ignored.==Τα ακόλουθα πλαίσια ΔΕΝ γίνονται από το Gxxg1e, αλλά το κάνουμε από προεπιλογή για να έχουμε πιο πλούσιο περιεχόμενο. Το 'nofollow' σε ρομπότ μπορεί να παρακαμφθεί. Αυτό δεν επηρεάζει την υπακοή στο robots.txt που δεν αγνοείται ποτέ.
+Accept URLs with query-part ('?'):==Αποδοχή διευθύνσεων URL με τμήμα ερωτήματος ('?'):
+Obey html-robots-noindex:==Υπακούστε το html-robots-noindex:
+Obey html-robots-nofollow:==Υπακούστε το html-robots-nofollow:
+Media Type detection==Ανίχνευση τύπου μέσου
+Not loading URLs with unsupported file extension is faster but less accurate.==Η μη φόρτωση διευθύνσεων URL με μη υποστηριζόμενη επέκταση αρχείου είναι ταχύτερη αλλά λιγότερο ακριβής.
+Indeed, for some web resources the actual Media Type is not consistent with the URL file extension. Here are some examples:==Πράγματι, για ορισμένους πόρους Ιστού, ο πραγματικός Τύπος μέσου δεν είναι συνεπής με την επέκταση αρχείου URL. Ακολουθούν μερικά παραδείγματα:
+Do not load URLs with an unsupported file extension==Μην φορτώνετε διευθύνσεις URL με μη υποστηριζόμενη επέκταση αρχείου
+Always cross check file extension against Content-Type header==Να ελέγχετε πάντα την επέκταση αρχείου με την κεφαλίδα Τύπου περιεχομένου
+Load Filter on URLs==Φόρτωση φίλτρου σε διευθύνσεις URL
+Example: to allow only urls that contain the word 'science', set the must-match filter to '.*science.*'.==Παράδειγμα: για να επιτρέπονται μόνο url που περιέχουν τη λέξη "επιστήμη", ορίστε το φίλτρο που πρέπει να ταιριάζει σε ".*science.*".
+You can also use an automatic domain-restriction to fully crawl a single domain.==Μπορείτε επίσης να χρησιμοποιήσετε έναν αυτόματο περιορισμό τομέα για την πλήρη ανίχνευση ενός μεμονωμένου τομέα.
+must-match==πρέπει να ταιριάζει
+Restrict to start domain(s)==Περιορισμός στην έναρξη τομέα(ών)
+Restrict to sub-path(s)==Περιορισμός σε δευτερεύουσες διαδρομές
+Use filter==Χρησιμοποιήστε φίλτρο
+(must not be empty)==(δεν πρέπει να είναι κενό)
+must-not-match==δεν πρέπει να ταιριάζει
+Load Filter on URL origin of links==Φόρτωση φίλτρου στην προέλευση των συνδέσμων URL
+Example: to allow loading only links from pages on example.org domain, set the must-match filter to '.*example.org.*'.==Παράδειγμα: για να επιτρέπεται η φόρτωση μόνο συνδέσμων από σελίδες στον τομέα example.org, ορίστε το φίλτρο must-match σε '.*example.org.*'.
+Load Filter on IPs==Φόρτωση φίλτρου σε IP
+Must-Match List for Country Codes==Λίστα που πρέπει να ταιριάζουν για κωδικούς χωρών
+Crawls can be restricted to specific countries. This uses the country code that can be computed from==Οι ανιχνεύσεις μπορούν να περιοριστούν σε συγκεκριμένες χώρες. Αυτό χρησιμοποιεί τον κωδικό χώρας από τον οποίο μπορεί να υπολογιστεί
+the IP of the server that hosts the page. The filter is not a regular expressions but a list of country codes, separated by comma.==το IP του διακομιστή που φιλοξενεί τη σελίδα. Το φίλτρο δεν είναι κανονικές εκφράσεις αλλά μια λίστα κωδικών χωρών, διαχωρισμένων με κόμμα.
+no country code restriction==κανένας περιορισμός κωδικού χώρας
+Document Filter==Φίλτρο εγγράφου
+These are limitations on index feeder. The filters will be applied after a web page was loaded.==Αυτοί είναι περιορισμοί στον τροφοδότη ευρετηρίου. Τα φίλτρα θα εφαρμοστούν μετά τη φόρτωση μιας ιστοσελίδας.
+Filter on URLs==Φιλτράρισμα σε διευθύνσεις URL
+that must not match with the URLs to allow that the content of the url is indexed.==ότι δεν πρέπει να ταιριάζει με με τις διευθύνσεις URL για να επιτρέπεται η ευρετηρίαση του περιεχομένου της διεύθυνσης url.
+No Indexing when Canonical present and Canonical != URL==Χωρίς ευρετηρίαση όταν υπάρχει Κανονική και Κανονική != URL
+Filter on Content of Document (all visible text, including camel-case-tokenized url and title)==Φιλτράρισμα στο περιεχόμενο του Document (όλο το ορατό κείμενο, συμπεριλαμβανομένου του url με διακριτική θήκης καμήλας και του τίτλου)
+Filter on Document Media Type (aka MIME type)==Φίλτρο στον τύπο μέσου εγγράφου (γνωστός και ως τύπος MIME)
+that must match with the document Media Type (also known as MIME Type) to allow the URL to be indexed.==ότι πρέπει να ταιριάζει με με τον Τύπο μέσου του εγγράφου (επίσης γνωστό ως Τύπος MIME) για να επιτρέπεται η ευρετηρίαση του URL.
+Each parsed document is checked against the given Solr query before being added to the index.==Κάθε αναλυμένο έγγραφο ελέγχεται σε σχέση με το δεδομένο ερώτημα Solr πριν προστεθεί στο ευρετήριο.
+The embedded local Solr index must be connected to use this kind of filter.==Το ενσωματωμένο τοπικό ευρετήριο Solr πρέπει να συνδεθεί για να χρησιμοποιηθεί αυτό το είδος φίλτρου.
+Content Filter==Φίλτρο περιεχομένου
+These are limitations on parts of a document. The filter will be applied after a web page was loaded.==Αυτοί είναι περιορισμοί σε μέρη ενός εγγράφου. Το φίλτρο θα εφαρμοστεί μετά τη φόρτωση μιας ιστοσελίδας.
+You can choose to:==Μπορείτε να επιλέξετε να:
+Evaluate by default==Αξιολόγηση από προεπιλογή
+Use all words in document by default until a CSS class as listed below appears; then ignore all==Χρησιμοποιήστε όλες τις λέξεις στο έγγραφο από προεπιλογή μέχρι να εμφανιστεί μια τάξη CSS όπως αναφέρεται παρακάτω. τότε αγνοήστε τα όλα
+Ignore by default==Παράβλεψη από προεπιλογή
+Ignore all words in document by default until a CSS class as listed below appears, then evaluate all==Αγνοήστε όλες τις λέξεις στο έγγραφο από προεπιλογή μέχρι να εμφανιστεί μια τάξη CSS όπως αναφέρεται παρακάτω και, στη συνέχεια, αξιολογήστε όλες
+Filter div or nav class names==Φιλτράρισμα ονομάτων κλάσεων div ή πλοήγησης
+comma-separated list of <div> or <nav> element class names which should be filtered out/in according to switch above.==Λίστα διαχωρισμένων με κόμματα ονομάτων κλάσεων στοιχείων <div> ή <nav>, τα οποία θα πρέπει να φιλτραριστούν/in σύμφωνα με τον παραπάνω διακόπτη.
+Clean-Up before Crawl Start==Εκκαθάριση πριν από την έναρξη της ανίχνευσης
+Clean up search events cache==Εκκαθάριση της προσωρινής μνήμης συμβάντων αναζήτησης
+Check this option to be sure to get fresh search results including newly crawled documents. Beware that it will also interrupt any refreshing/resorting of search results currently requested from browser-side.==Επιλέξτε αυτήν την επιλογή για να βεβαιωθείτε ότι θα λάβετε νέα αποτελέσματα αναζήτησης, συμπεριλαμβανομένων των νέων εγγράφων που ανιχνεύτηκαν. Προσέξτε ότι θα διακόψει επίσης οποιαδήποτε ανανέωση/resorting των αποτελεσμάτων αναζήτησης που ζητούνται από την πλευρά του προγράμματος περιήγησης.
+No Deletion==Χωρίς Διαγραφή
+After a crawl was done in the past, document may become stale and eventually they are also deleted on the target host.==Αφού έγινε μια ανίχνευση στο παρελθόν, το έγγραφο μπορεί να γίνει μπαγιάτικο και τελικά να διαγραφούν επίσης στον κεντρικό υπολογιστή προορισμού.
+To remove old files from the search index it is not sufficient to just consider them for re-load but it may be necessary==Για να αφαιρέσετε παλιά αρχεία από το ευρετήριο αναζήτησης δεν αρκεί απλώς να τα εξετάσετε για επαναφόρτωση, αλλά μπορεί να είναι απαραίτητο
+to delete them because they simply do not exist any more. Use this in combination with re-crawl while this time should be longer.==να τα διαγράψουμε γιατί απλά δεν υπάρχουν πια. Χρησιμοποιήστε το σε συνδυασμό με εκ νέου ανίχνευση ενώ αυτός ο χρόνος θα πρέπει να είναι μεγαλύτερος.
+Do not delete any document before the crawl is started.==Μην διαγράψετε κανένα έγγραφο πριν ξεκινήσει η ανίχνευση.
+Delete sub-path==Διαγραφή δευτερεύουσας διαδρομής
+For each host in the start url list, delete all documents (in the given subpath) from that host.==Για κάθε κεντρικό υπολογιστή στη λίστα url έναρξης, διαγράψτε όλα τα έγγραφα (στη συγκεκριμένη υποδιαδρομή) από αυτόν τον κεντρικό υπολογιστή.
+Delete only old==Διαγραφή μόνο παλιού
+Treat documents that are loaded==Αντιμετωπίστε τα έγγραφα που έχουν φορτωθεί
+ago as stale and delete them before the crawl is started.==πριν ως μπαγιάτικο και διαγράψτε τα πριν ξεκινήσει η ανίχνευση.
+Double-Check Rules==Κανόνες διπλού ελέγχου
+No Doubles==Όχι Διπλοί
+A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==Μια ανίχνευση ιστού πραγματοποιεί διπλό έλεγχο σε όλους τους συνδέσμους που βρίσκονται στο Διαδίκτυο σε σχέση με την εσωτερική βάση δεδομένων. Εάν βρεθεί ξανά το ίδιο url,
+then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,==τότε το url αντιμετωπίζεται ως διπλό όταν τσεκάρετε την επιλογή 'no doubles'. Μια διεύθυνση url μπορεί να φορτωθεί ξανά όταν φτάσει σε μια συγκεκριμένη ηλικία,
+to use that check the 're-load' option.==για να το χρησιμοποιήσετε, ελέγξτε την επιλογή 're-load'.
+Never load any page that is already known. Only the start-url may be loaded again.==Μην φορτώνετε ποτέ καμία σελίδα που είναι ήδη γνωστή. Μόνο το αρχικό url μπορεί να φορτωθεί ξανά.
+Re-load==Γεμίζω πάλι
+ago as stale and load them again. If they are younger, they are ignored.==πριν σαν μπαγιάτικο και να τα ξαναφορτώσω. Αν είναι μικρότεροι, αγνοούνται.
+Document Cache==Προσωρινή μνήμη εγγράφων
+Store to Web Cache==Αποθήκευση στην προσωρινή μνήμη Ιστού
+This option is used by default for proxy prefetch, but is not needed for explicit crawling.==Αυτή η επιλογή χρησιμοποιείται από προεπιλογή για προφόρτωση διακομιστή μεσολάβησης, αλλά δεν απαιτείται για ρητή ανίχνευση.
+Policy for usage of Web Cache==Πολιτική για τη χρήση της προσωρινής μνήμης Web
+The caching policy states when to use the cache during crawling:==Η πολιτική προσωρινής αποθήκευσης δηλώνει πότε πρέπει να χρησιμοποιείται η προσωρινή μνήμη κατά την ανίχνευση:
+no cache: never use the cache, all content from fresh internet source;==no cache: μην χρησιμοποιείτε ποτέ την προσωρινή μνήμη, όλο το περιεχόμενο από νέα πηγή διαδικτύου.
+if fresh: use the cache if the cache exists and is fresh using the proxy-fresh rules;==if fresh: χρησιμοποιήστε τη μνήμη cache εάν η προσωρινή μνήμη υπάρχει και είναι φρέσκια χρησιμοποιώντας τους κανόνες του proxy-fresh.
+if exist: use the cache if the cache exist. Do no check freshness. Otherwise use online source;==if exist: χρησιμοποιήστε την προσωρινή μνήμη εάν υπάρχει η προσωρινή μνήμη. Μην ελέγχετε τη φρεσκάδα. Διαφορετικά χρησιμοποιήστε την ηλεκτρονική πηγή.
+cache only: never go online, use all content from cache. If no cache exist, treat content as unavailable==cache only: ποτέ μην συνδεθείτε στο διαδίκτυο, χρησιμοποιήστε όλο το περιεχόμενο από την προσωρινή μνήμη. Εάν δεν υπάρχει προσωρινή μνήμη, αντιμετωπίστε το περιεχόμενο ως μη διαθέσιμο
+no cache==όχι cache
+if fresh==αν φρέσκο
+if exist==εάν υπάρχει
+cache only==cache μόνο
+Robot Behaviour==Συμπεριφορά ρομπότ
+Use Special User Agent and robot identification==Χρησιμοποιήστε την αναγνώριση Special User Agent και ρομπότ
+Because YaCy can be used as replacement for commercial search appliances==Επειδή το YaCy μπορεί να χρησιμοποιηθεί ως αντικατάσταση για εμπορικά εργαλεία αναζήτησης
+(like the Google Search Appliance aka GSA) the user must be able to crawl all web pages that are granted to such commercial platforms.==(όπως το Εργαλείο αναζήτησης Google γνωστό και ως 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.==εναλλακτικούς πράκτορες χρήστη εδώ που έχουν διαφορετικούς χρονισμούς ανίχνευσης και ταυτίζονται επίσης με έναν άλλο πράκτορα χρήστη και υπακούουν στον αντίστοιχο κανόνα ρομπότ.
+Enrich Vocabulary==Εμπλουτίστε το λεξιλόγιο
+Scraping Fields==Πεδία απόξεσης
+You can use class names to enrich the terms of a vocabulary based on the text content that appears on web pages. Please write the names of classes into the matrix.==Μπορείτε να χρησιμοποιήσετε ονόματα κλάσεων για να εμπλουτίσετε τους όρους ενός λεξιλογίου με βάση το περιεχόμενο κειμένου που εμφανίζεται σε ιστοσελίδες. Παρακαλώ γράψτε τα ονόματα των τάξεων στον πίνακα.
+Vocabulary==Λεξιλόγιο
+Class==Τάξη
+#-----------------------------
+
+#File: CrawlStartScanner_p.html
+#---------------------------
+"Scan"=="Σάρωση"
+Network Scanner==Δικτυακός σαρωτής
+YaCy can scan a network segment for available http, ftp and smb server.==Το YaCy μπορεί να σαρώσει ένα τμήμα δικτύου για διαθέσιμο διακομιστή http, ftp και smb.
+You must first select a IP range and then, after this range is scanned,==Πρέπει πρώτα να επιλέξετε ένα εύρος IP και, στη συνέχεια, αφού σαρωθεί αυτό το εύρος,
+it is possible to select servers that had been found for a full-site crawl.==είναι δυνατό να επιλέξετε διακομιστές που είχαν βρεθεί για ανίχνευση πλήρους ιστότοπου.
+Scan the network==Σαρώστε το δίκτυο
+Scan Range==Εύρος σάρωσης
+Scan sub-range with given host==Σάρωση υπο-εύρος με δεδομένο κεντρικό υπολογιστή
+Do not use intranet scan results, you are not in an intranet environment!==Μην χρησιμοποιείτε αποτελέσματα σάρωσης intranet, δεν βρίσκεστε σε περιβάλλον intranet!
+All known hosts in the search index (/31 subnet recommended!)==Όλοι οι γνωστοί κεντρικοί υπολογιστές στο ευρετήριο αναζήτησης (/31 υποδίκτυο συνιστάται!)
+Subnet==Υποδίκτυο
+/31 (only the given host(s))==/31 (μόνο οι συγκεκριμένοι κεντρικοί υπολογιστές)
+/24 (254 addresses)==/24 (254 διευθύνσεις)
+/20 (4064 addresses)==/20 (4064 διευθύνσεις)
+/16 (65024 addresses)==/16 (65024 διευθύνσεις)
+Time-Out==Time-out
+ms==ms
+Scan Cache==Σάρωση προσωρινής μνήμης
+accumulate scan results with access type "granted" into scan cache (do not delete old scan result)==συσσώρευση αποτελεσμάτων σάρωσης με τύπο πρόσβασης "χορηγημένο" στην κρυφή μνήμη σάρωσης (μην διαγράψετε το παλιό αποτέλεσμα σάρωσης)
+Service Type==Τύπος υπηρεσίας
+ftp==ftp
+smb==smb
+http==http
+https==https
+Scheduler==Προγραμματιστής
+run only a scan==εκτελέστε μόνο μια σάρωση
+scan and add all sites with granted access automatically. This disables the scan cache accumulation.==σαρώστε και προσθέστε αυτόματα όλους τους ιστότοπους με παραχωρημένη πρόσβαση. Αυτό απενεργοποιεί τη συσσώρευση κρυφής μνήμης σάρωσης.
+ Look every== Κοιτάξτε κάθε
+minutes==πρακτικά
+hours==ώρες
+days==ημέρες
+again and add new sites automatically to indexer.==ξανά και προσθέστε νέους ιστότοπους αυτόματα στο ευρετήριο.
+Sites that do not appear during a scheduled scan period will be excluded from search results.==Οι ιστότοποι που δεν εμφανίζονται κατά τη διάρκεια μιας προγραμματισμένης περιόδου σάρωσης θα εξαιρεθούν από τα αποτελέσματα αναζήτησης.
+#-----------------------------
+
+#File: CrawlStartSite.html
+#---------------------------
+"empty"=="αδειάζω"
+"Show all links"=="Εμφάνιση όλων των συνδέσμων"
+"Start New Crawl"=="Ξεκινήστε τη νέα ανίχνευση"
+Site Crawling==Ανίχνευση ιστότοπου
+Site Crawler:==Πρόγραμμα ανίχνευσης ιστότοπου:
+Download all web pages from a given domain or base URL.==Λήψη όλων των ιστοσελίδων από έναν δεδομένο τομέα ή βάση URL.
+Site Crawl Start==Έναρξη ανίχνευσης ιστότοπου
+Site==Τοποθεσία
+Start URL (must start with http:// https:// ftp:// smb:// file://)==URL έναρξης (πρέπει να ξεκινά με http:// https:// ftp:// smb:// file://)
+Link-List of URL==Λίστα συνδέσμων URL
+Sitemap URL==Χάρτης ιστότοπου URL
+Path==Μονοπάτι
+load all files in domain==φορτώστε όλα τα αρχεία στον τομέα
+load only files in a sub-path of given url==φορτώστε μόνο αρχεία σε μια δευτερεύουσα διαδρομή του δεδομένου url
+Limitation==Περιορισμός
+not more than==όχι περισσότερο από
+documents==έγγραφα
+Collection==Συλλογή
+Start==Αρχή
+Hints==Συμβουλές
+Crawl Speed Limitation==Περιορισμός ταχύτητας ανίχνευσης
+No more that four pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.==Δεν φορτώνονται πλέον τέσσερις σελίδες από τον ίδιο κεντρικό υπολογιστή σε ένα δευτερόλεπτο (όχι περισσότερο από 120 έγγραφα ανά λεπτό) για να περιοριστεί η φόρτωση στον διακομιστή προορισμού.
+Target Balancer==Target Balancer
+A second crawl for a different host increases the throughput to a maximum of 240 documents per minute since the crawler balances the load over all hosts.==Μια δεύτερη ανίχνευση για διαφορετικό κεντρικό υπολογιστή αυξάνει τη διεκπεραίωση σε 240 έγγραφα ανά λεπτό το πολύ, καθώς ο ανιχνευτής εξισορροπεί το φορτίο σε όλους τους κεντρικούς υπολογιστές.
+High Speed Crawling==Ανίχνευση υψηλής ταχύτητας
+A 'shallow crawl' which is not limited to a single host (or site)==Μια «ρηχή ανίχνευση» που δεν περιορίζεται σε έναν μόνο κεντρικό υπολογιστή (ή ιστότοπο)
+can extend the pages per minute (ppm) rate to unlimited documents per minute when the number of target hosts is high.==μπορεί να επεκτείνει τον ρυθμό σελίδων ανά λεπτό (ppm) σε απεριόριστα έγγραφα ανά λεπτό όταν ο αριθμός των κεντρικών υπολογιστών-στόχων είναι υψηλός.
+Scheduler Steering==Scheduler Steering
+#-----------------------------
+
+#File: Crawler_p.html
+#---------------------------
+"API"=="API"
+"Pages Per Minute"=="Σελίδες ανά λεπτό"
+"Latency Factor"=="Συντελεστής καθυστέρησης"
+"Max same Host in queue"=="Μέγιστος ίδιος κεντρικός υπολογιστής στην ουρά"
+"set"=="σειρά"
+"Set PPM to the default minimum value"=="Ορίστε το PPM στην προεπιλεγμένη ελάχιστη τιμή"
+"Set PPM to the default maximum value"=="Ρυθμίστε το PPM στην προεπιλεγμένη μέγιστη τιμή"
+"Terminate"=="Περατώ"
+"show link structure"=="εμφάνιση δομής συνδέσμου"
+"hide graphic"=="απόκρυψη γραφικών"
+Click on this API button to see an XML with information about the crawler status==Κάντε κλικ σε αυτό το κουμπί API για να δείτε ένα XML με πληροφορίες σχετικά με την κατάσταση του προγράμματος ανίχνευσης
+Crawler==Ερπετό
+(Please enable JavaScript to automatically update this page!)==(Ενεργοποιήστε το JavaScript για αυτόματη ενημέρωση αυτής της σελίδας!)
+Queues==Ουρές
+Queue==Ουρά
+Size==Μέγεθος
+Local Crawler==Τοπικός ανιχνευτής
+Limit Crawler==Limit Crawler
+Remote Crawler==Απομακρυσμένος ανιχνευτής
+No-Load Crawler==Ανιχνευτής χωρίς φορτίο
+Terminate All==Τερματισμός όλων
+Index Size==Μέγεθος ευρετηρίου
+Database==Βάση δεδομένων
+Entries==Συμμετοχές
+Seg- ments==Seg- ments
+Citations (reverse link index)==Αναφορές (ευρετήριο αντίστροφης σύνδεσης)
+RWIs (P2P Chunks)==RWIs (P2P Τεμάχια)
+Progress==Πρόοδος
+Indicator==Δείκτης
+Level==Επίπεδο
+Speed / PPM (Pages Per Minute)==Ταχύτητα / PPM (Σελίδες ανά λεπτό)
+PPM==PPM
+LF==LF
+MH==MH
+Crawler PPM==Ανιχνευτής PPM
+Postprocessing Progress==Πρόοδος μεταεπεξεργασίας
+pending:==εκκρεμής:
+Traffic (Crawler)==Κυκλοφορία (Crawler)
+MB==MB
+Load==Φορτίο
+Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db==Σφάλμα με τη διαχείριση προφίλ. Σταματήστε YaCy, διαγράψτε το αρχείο DATA/PLASMADB/crawlProfiles0.db
+and restart.==και επανεκκίνηση.
+Application not yet initialized. Sorry. Please wait some seconds and repeat==Η εφαρμογή δεν έχει ακόμη αρχικοποιηθεί. Συγνώμη. Περιμένετε μερικά δευτερόλεπτα και επαναλάβετε
+the request.==το αίτημα.
+filter.==φίλτρο.
+it may take some seconds until the first result appears there.==μπορεί να χρειαστούν μερικά δευτερόλεπτα μέχρι να εμφανιστεί το πρώτο αποτέλεσμα εκεί.
+No embedded local Solr index is connected. This is required to use a Solr query filter.==Δεν έχει συνδεθεί ενσωματωμένο τοπικό ευρετήριο Solr. Αυτό απαιτείται για τη χρήση ενός φίλτρου ερωτήματος Solr.
+The Solr filter query syntax is not valid :==Η σύνταξη ερωτήματος φίλτρου Solr δεν είναι έγκυρη :
+Could not parse the Solr filter query :==Δεν ήταν δυνατή η ανάλυση του ερωτήματος φίλτρου Solr :
+You asked for remote indexing, but remote crawl results won't be added to the local index as the remote crawler is currently disabled on this peer.==Ζητήσατε απομακρυσμένη ευρετηρίαση, αλλά τα αποτελέσματα απομακρυσμένης ανίχνευσης δεν θα προστεθούν στο τοπικό ευρετήριο, καθώς ο απομακρυσμένος ανιχνευτής είναι απενεργοποιημένος αυτήν τη στιγμή σε αυτό το ομότιμο.
+Name==Ονομα
+Count==Κόμης
+Status==Κατάσταση
+Running==Τρέξιμο
+Crawled Pages==Ανιχνευμένες σελίδες
+#-----------------------------
+
+#File: DictionaryLoader_p.html
+#---------------------------
+"Load"=="Φορτίο"
+"Deactivate"=="Απενεργοποίηση"
+"Remove"=="Αφαιρώ"
+"Activate"=="Δραστηριοποιώ"
+Knowledge Loader==Φορτωτή γνώσης
+YaCy can use external libraries to enable or enhance some functions. These libraries are not==Το YaCy μπορεί να χρησιμοποιήσει εξωτερικές βιβλιοθήκες για να ενεργοποιήσει ή να βελτιώσει ορισμένες λειτουργίες. Αυτές οι βιβλιοθήκες δεν είναι
+included in the main release of YaCy because they would increase the application file too much.==περιλαμβάνονται στην κύρια έκδοση του YaCy επειδή θα αύξαναν υπερβολικά το αρχείο της εφαρμογής.
+You can download additional files here.==Μπορείτε να κατεβάσετε επιπλέον αρχεία εδώ.
+Geolocalization==Γεωεντοπισμός
+Geolocalization will enable YaCy to present locations from OpenStreetMap according to given search words.==Ο γεωεντοπισμός θα επιτρέψει στο YaCy να παρουσιάζει τοποθεσίες από το OpenStreetMap σύμφωνα με τις λέξεις αναζήτησης.
+GeoNames==GeoNames
+With this file it is possible to find cities all over the world.==Με αυτό το αρχείο μπορείτε να βρείτε πόλεις σε όλο τον κόσμο.
+Content==Περιεχόμενο
+cities with a population > 1000 all over the world==πόλεις με πληθυσμό > 1000 σε όλο τον κόσμο
+Download from==Λήψη από
+Storage location==Θέση αποθήκευσης
+Status==Κατάσταση
+not loaded==δεν έχει φορτωθεί
+loaded==φορτωμένος
+deactivated==απενεργοποιημένο
+Action==Δράση
+Result==Αποτέλεσμα
+loaded and activated dictionary file==φορτωμένο και ενεργοποιημένο αρχείο λεξικού
+deactivated and removed dictionary file==απενεργοποιήθηκε και αφαιρέθηκε το αρχείο λεξικού
+deactivated dictionary file==απενεργοποιημένο αρχείο λεξικού
+activated dictionary file==ενεργοποιημένο αρχείο λεξικού
+cities with a population > 5000 all over the world==πόλεις με πληθυσμό > 5000 σε όλο τον κόσμο
+cities with a population > 100000 all over the world (the set is is reduced to cities > 100000)==πόλεις με πληθυσμό > 100000 σε όλο τον κόσμο (το σύνολο περιορίζεται σε πόλεις > 100000)
+OpenGeoDB==OpenGeoDB
+With this file it is possible to find locations in Germany using the location (city) name, a zip code, a car sign or a telephone pre-dial number.==Με αυτό το αρχείο μπορείτε να βρείτε τοποθεσίες στη Γερμανία χρησιμοποιώντας το όνομα της τοποθεσίας (πόλη), έναν ταχυδρομικό κώδικα, μια πινακίδα αυτοκινήτου ή έναν αριθμό τηλεφώνου προκαταρκτικής κλήσης.
+Downloaded from==Λήψη από
+loaded - can be upgraded using the Load button for the new URL==loaded - μπορεί να αναβαθμιστεί χρησιμοποιώντας το κουμπί Load για το νέο URL
+loaded and upgraded dictionary file==φορτωμένο και αναβαθμισμένο αρχείο λεξικού
+Suggestions==Προτάσεις
+Suggestion dictionaries will help YaCy to provide better suggestions during the input of search words==Τα λεξικά προτάσεων θα βοηθήσουν τον YaCy να παρέχει καλύτερες προτάσεις κατά την εισαγωγή των λέξεων αναζήτησης
+DeReWo - Korpusbasierte Grund-/Wortformenlisten (German) of 'Institut für Deutsche Sprache'==DeReWo - Korpusbasierte Grund-/Wortformenlisten (Γερμανικά) του 'Institut für Deutsche Sprache'
+This file provides 100000 most common german words for suggestions==Αυτό το αρχείο παρέχει 100000 πιο κοινές γερμανικές λέξεις για προτάσεις
+Synonyms==Συνώνυμα
+Synonyms are used to find not only the searched word but also their synonyms. This is done by adding all synonyms of words in documents to the document and searching the synonyms as well.==Τα συνώνυμα χρησιμοποιούνται για την εύρεση όχι μόνο της αναζήτησης λέξης αλλά και των συνωνύμων τους. Αυτό γίνεται προσθέτοντας όλα τα συνώνυμα των λέξεων σε έγγραφα στο έγγραφο και αναζητώντας επίσης τα συνώνυμα.
+OpenThesaurus - German Thesaurus from http://www.openthesaurus.de==OpenThesaurus - Γερμανικός Θησαυρός από http://www.openthesaurus.de
+The data from this source was converted to the YaCy synonym file format and part of the YaCy distribution.==Τα δεδομένα από αυτήν την πηγή μετατράπηκαν στη μορφή συνωνύμου αρχείου YaCy και μέρος της διανομής YaCy.
+Deactivated==Απενεργοποιήθηκε
+Activated==Ενεργοποιήθηκε
+Moby Lexicon - English Thesaurus from https://www.gutenberg.org/ebooks/3202==Moby Lexicon - Αγγλικός Θησαυρός από https://www.gutenberg.org/ebooks/3202
+Russian Thesaurus==Ρωσικός Θησαυρός
+The data was converted to the YaCy synonym file format and part of the YaCy distribution.==Τα δεδομένα μετατράπηκαν στη μορφή συνωνύμου αρχείου YaCy και μέρος της διανομής YaCy.
+#-----------------------------
+
+#File: Help.html
+#---------------------------
+YaCy: Tutorial==YaCy: Εκμάθηση
+Tutorial==Φροντιστήριο
+You are using the administration interface of your own search engine. You can create your own search index with YaCy.==Χρησιμοποιείτε τη διεπαφή διαχείρισης της δικής σας μηχανής αναζήτησης. Μπορείτε να δημιουργήσετε το δικό σας ευρετήριο αναζήτησης με YaCy.
+To learn how to do that, watch one of the demonstration videos below:==Για να μάθετε πώς να το κάνετε αυτό, παρακολουθήστε ένα από τα βίντεο επίδειξης παρακάτω:
+twitter this video==twitter αυτό το βίντεο
+More Tutorials==Περισσότερα σεμινάρια
+#-----------------------------
+
+#File: IndexBrowser_p.html
+#---------------------------
+"Delete Subpath"=="Διαγραφή υποδιαδρομής"
+"Re-load load-failure docs (404s etc)"=="Επαναφόρτωση εγγράφων φόρτωσης αποτυχίας (404s κ.λπ.)"
+"Directory"=="Τηλεφωνικός κατάλογος"
+"Delete Load Errors"=="Διαγραφή σφαλμάτων φόρτωσης"
+Index Browser==Πρόγραμμα περιήγησης ευρετηρίου
+Host/URL==οικοδεσπότης/URL
+Browse Host==Περιήγηση στον κεντρικό υπολογιστή
+Host List==Λίστα κεντρικού υπολογιστή
+URLs==URL
+Count Colors:==Καταμέτρηση χρωμάτων:
+Documents without Errors==Έγγραφα χωρίς λάθη
+Pending in Crawler==Εκκρεμεί στο Crawler
+Crawler Excludes==Εξαιρείται το Crawler
+Load Errors==Σφάλματα φόρτωσης
+Host Analysis==Ανάλυση κεντρικού υπολογιστή
+Add to blacklist==Προσθήκη στη μαύρη λίστα
+Path==Μονοπάτι
+stored==αποθηκευμένο
+linked==συνδεδεμένο
+pending==εκκρεμής
+excluded==εξαιρούνται
+failed==αποτυχημένος
+Metadata==Μεταδεδομένα
+link, detected from context==σύνδεσμος, που εντοπίστηκε από το περιβάλλον
+load & index==φόρτωση ευρετηρίου &
+indexed==ευρετηριασμένα
+loading==φόρτωση
+Administration Options==Επιλογές Διαχείρισης
+Delete all==Διαγραφή όλων
+from index==από ευρετήριο
+#-----------------------------
+
+#File: IndexControlRWIs_p.html
+#---------------------------
+"Show URL Entries for Word"=="Εμφάνιση URL καταχωρήσεων για το Word"
+"Show URL Entries for Word-Hash"=="Εμφάνιση URL καταχωρήσεων για Word-Hash"
+"Generate List"=="Δημιουργία λίστας"
+"List Selected URLs"=="Λίστα επιλεγμένων διευθύνσεων URL"
+"Delete Word"=="Διαγραφή του Word"
+"Transfer to other peer"=="Μεταφορά σε άλλο συνομήλικο"
+"Delete reference to selected URLs"=="Διαγραφή αναφοράς σε επιλεγμένες διευθύνσεις URL"
+"Add selected URLs to blacklist"=="Προσθέστε επιλεγμένες διευθύνσεις URL στη μαύρη λίστα"
+"Add selected domains to blacklist"=="Προσθήκη επιλεγμένων τομέων στη μαύρη λίστα"
+Reverse Word Index Administration==Ανάστροφη διαχείριση ευρετηρίου Word
+RWI Retrieval (= search for a single word)==RWI Ανάκτηση (= αναζήτηση για μία μόνο λέξη)
+Retrieve by Word:==Ανάκτηση με Word:
+Retrieve by Word-Hash:==Ανάκτηση με Word-Hash:
+Limitations==Περιορισμοί
+Index Reference Size==Μέγεθος αναφοράς ευρετηρίου
+No reference size limitation (this may cause strong CPU load when words are searched that appear very often)==Χωρίς περιορισμό μεγέθους αναφοράς (αυτό μπορεί να προκαλέσει ισχυρό φορτίο CPU όταν αναζητούνται λέξεις που εμφανίζονται πολύ συχνά)
+Limitation of number of references per word:==Περιορισμός αριθμού αναφορών ανά λέξη:
+(this causes that old references are deleted if that limit is reached)==(αυτό έχει ως αποτέλεσμα να διαγράφονται παλιές αναφορές, εάν επιτευχθεί αυτό το όριο)
+Set References Limit==Ορισμός ορίου αναφορών
+Search result:==Αποτέλεσμα αναζήτησης:
+total URLs==συνολικές διευθύνσεις URL
+appearance in==εμφάνιση σε
+in link type==σε τύπο συνδέσμου
+document type==τύπος εγγράφου
+description==περιγραφή
+title==τίτλος
+creator==δημιουργός
+subject==θέμα
+url==url
+emphasized==τόνισε
+image==εικών
+audio==ήχου
+video==βίντεο
+app==εφαρμογή
+index of==ευρετήριο του
+Selection==Επιλογή
+Display URL List==Εμφάνιση λίστας URL
+Number of lines:==Αριθμός γραμμών:
+all lines==όλες τις γραμμές
+Word Deletion==Διαγραφή λέξης
+delete also the referenced URL (recommended, may produce unresolved references==διαγράψτε επίσης το αναφερόμενο URL (συνιστάται, μπορεί να δημιουργήσει μη επιλυμένες αναφορές
+at other word indexes but they do not harm)==σε ευρετήρια με άλλα λόγια, αλλά δεν βλάπτουν)
+for every resolvable and deleted URL reference, delete the same reference at every other word where==για κάθε επιλύσιμη και διαγραμμένη αναφορά URL, διαγράψτε την ίδια αναφορά σε κάθε άλλη λέξη όπου
+the reference exists (very extensive, but prevents further unresolved references)==η αναφορά υπάρχει (πολύ εκτενής, αλλά αποτρέπει περαιτέρω ανεπίλυτες αναφορές)
+Transfer RWI to other Peer==Μεταφορά RWI σε άλλο Peer
+Transfer by Word-Hash:==Μεταφορά κατά Word-Hash:
+to Peer:==να Peer:
+select==επιλέγω
+or enter a hash or peer name:==ή εισαγάγετε ένα κατακερματισμένο ή ομότιμο όνομα:
+Sequential List of Word-Hashes:==Διαδοχική λίστα κατακερματισμών λέξεων:
+No URL entries related to this word hash==Δεν υπάρχουν καταχωρήσεις URL που σχετίζονται με αυτήν τη λέξη κατακερματισμός
+Resource==Πόρος
+Negative Ranking Factors==Αρνητικούς Παράγοντες Κατάταξης
+Positive Ranking Factors==Θετικοί Παράγοντες Κατάταξης
+props==στηρίγματα
+Reverse Normalized Weighted Ranking Sum==Αντίστροφη κανονικοποιημένη σταθμισμένη κατάταξη άθροισμα
+hash==χασίσι
+dom length==dom μήκος
+url comps==url comps
+url length==μήκος url
+pos in text==pos στο κείμενο
+pos of phrase==θέση της φράσης
+pos in phrase==pos στη φράση
+term frequency==συχνότητα όρου
+authority==εξουσία
+date==ημερομηνία
+words in title==λέξεις στον τίτλο
+words in text==λέξεις στο κείμενο
+local links==τοπικούς συνδέσμους
+remote links==απομακρυσμένους συνδέσμους
+hitcount==hitcount
+unresolved URL Hash==ανεπίλυτο URL Κατακερματισμός
+Deletion of selected URLs==Διαγραφή επιλεγμένων διευθύνσεων URL
+Blacklist Extension==Επέκταση μαύρης λίστας
+#-----------------------------
+
+#File: IndexControlURLs_p.html
+#---------------------------
+"API"=="API"
+"Show Details for URL"=="Εμφάνιση λεπτομερειών για URL"
+"Show Details for URL-Hash"=="Εμφάνιση λεπτομερειών για URL-Hash"
+"Delete"=="Διαγράφω"
+"Optimize Solr"=="Βελτιστοποίηση Solr"
+"Shut Down and Re-Start Solr"=="Τερματισμός λειτουργίας και επανεκκίνηση Solr"
+"Generate Statistics"=="Δημιουργία στατιστικών στοιχείων"
+"delete all"=="διαγράψτε όλα"
+"Show Content"=="Εμφάνιση περιεχομένου"
+"Delete URL"=="Διαγραφή URL"
+"Delete URL and remove all references from words"=="Διαγράψτε το URL και αφαιρέστε όλες τις αναφορές από τις λέξεις"
+Click the API icon to see an example call to the search rss API.==Κάντε κλικ στο εικονίδιο API για να δείτε ένα παράδειγμα κλήσης στην αναζήτηση rss API.
+URL Database Administration==URL Διαχείριση βάσης δεδομένων
+URL Retrieval==URL Ανάκτηση
+Retrieve by URL:==Ανάκτηση από URL:
+Retrieve by URL-Hash:==Ανάκτηση από URL-Hash:
+Cleanup==Καθαρισμός
+Index Deletion==Διαγραφή ευρετηρίου
+Delete local search index (embedded Solr and old Metadata)==Διαγραφή ευρετηρίου τοπικής αναζήτησης (ενσωματωμένο Solr και παλιά Μεταδεδομένα)
+Delete remote solr index==Διαγραφή ευρετηρίου απομακρυσμένου solr
+Delete RWI Index (DHT transmission words)==Διαγραφή RWI Ευρετηρίου (DHT λέξεις μετάδοσης)
+Delete Citation Index (linking between URLs)==Διαγραφή ευρετηρίου παραπομπών (σύνδεση μεταξύ διευθύνσεων URL)
+Delete First-Seen Date Table==Διαγραφή του πίνακα ημερομηνιών πρώτης εμφάνισης
+Delete HTTP & FTP Cache==Διαγραφή HTTP & FTP Cache
+Stop Crawler and delete Crawl Queues==Σταματήστε το Crawler και διαγράψτε τις ουρές ανίχνευσης
+Delete robots.txt Cache==Διαγραφή cache robots.txt
+Optimize Solr==Βελτιστοποίηση Solr
+merge to max.==συγχώνευση στο μέγ.
+segments==τμήματα
+Reboot Solr Core==Επανεκκίνηση Solr Core
+This feature is available when using exclusively a local embedded Solr.==Αυτή η δυνατότητα είναι διαθέσιμη όταν χρησιμοποιείτε αποκλειστικά ένα τοπικό ενσωματωμένο Solr.
+Statistics about top-domains in URL Database==Στατιστικά στοιχεία σχετικά με τους κορυφαίους τομείς στη βάση δεδομένων URL
+Show top==Εμφάνιση κορυφής
+domains from all URLs.==τομείς από όλες τις διευθύνσεις URL.
+Domain==Πεδίο ορισμού
+URLs==URL
+this may produce unresolved references at other word indexes but they do not harm==Αυτό μπορεί να δημιουργήσει ανεπίλυτες αναφορές σε ευρετήρια άλλων λέξεων, αλλά δεν βλάπτουν
+delete the reference to this url at every other word where the reference exists (very extensive, but prevents unresolved references)==διαγράψτε την αναφορά σε αυτό το url σε κάθε άλλη λέξη όπου υπάρχει η αναφορά (πολύ εκτενής, αλλά αποτρέπει τις μη επιλυμένες αναφορές)
+#-----------------------------
+
+#File: IndexCreateLoaderQueue_p.html
+#---------------------------
+Loader Queue==Ουρά φορτωτή
+The loader set is empty==Το σετ φορτωτή είναι άδειο
+Initiator==Μυητής
+Depth==Βάθος
+Status==Κατάσταση
+URL==URL
+#-----------------------------
+
+#File: IndexCreateParserErrors_p.html
+#---------------------------
+"show more"=="δείξε περισσότερα"
+"clear list"=="καθαρή λίστα"
+Rejected URLs==Διευθύνσεις URL που απορρίφθηκαν
+Time==Φορά
+URL==URL
+Fail-Reason==Αποτυχία-Λόγος
+#-----------------------------
+
+#File: IndexCreateQueues_p.html
+#---------------------------
+"API"=="API"
+"Delete"=="Διαγράφω"
+Click on this API button to see an XML with information about the crawler latency and other statistics.==Κάντε κλικ σε αυτό το κουμπί API για να δείτε ένα XML με πληροφορίες σχετικά με τον λανθάνοντα χρόνο του προγράμματος ανίχνευσης και άλλα στατιστικά στοιχεία.
+This crawler queue is empty==Αυτή η ουρά ανιχνευτή είναι κενή
+Delete Entries:==Διαγραφή καταχωρήσεων:
+Initiator==Μυητής
+Profile==Προφίλ
+Depth==Βάθος
+Modified Date==Τροποποιημένη ημερομηνία
+Anchor Name==Όνομα άγκυρας
+URL==URL
+Count==Κόμης
+Delta/ms==Delta/ms
+Host==Πλήθος
+#-----------------------------
+
+#File: IndexDeletion_p.html
+#---------------------------
+"Simulate Deletion"=="Προσομοίωση Διαγραφής"
+"no actual deletion, generates only a deletion count"=="καμία πραγματική διαγραφή, δημιουργεί μόνο έναν αριθμό διαγραφών"
+"Engage Deletion"=="Engage Delete"
+"simulate a deletion first to calculate the deletion count"=="προσομοιώστε πρώτα μια διαγραφή για να υπολογίσετε τον αριθμό των διαγραφών"
+"engaged"=="αρραβωνιασμένος"
+Index Deletion==Διαγραφή ευρετηρίου
+Deletions are made concurrently which can cause that recently deleted documents are not yet reflected in the document count.==Οι διαγραφές γίνονται ταυτόχρονα, γεγονός που μπορεί να προκαλέσει ότι τα πρόσφατα διαγραμμένα έγγραφα δεν αντικατοπτρίζονται ακόμη στον αριθμό των εγγράφων.
+Index deletion will not immediately reduce the storage size on disk because entries are only marked as deleted in a first step.==Η διαγραφή ευρετηρίου δεν θα μειώσει αμέσως το μέγεθος αποθήκευσης στο δίσκο, επειδή οι καταχωρίσεις επισημαίνονται ως διαγραμμένες μόνο στο πρώτο βήμα.
+Delete by URL Matching==Διαγραφή κατά URL Αντιστοίχιση
+Delete all documents within a sub-path of the given urls. That means all documents must start with one of the url stubs as given here.==Διαγράψτε όλα τα έγγραφα σε μια δευτερεύουσα διαδρομή των δεδομένων url. Αυτό σημαίνει ότι όλα τα έγγραφα πρέπει να ξεκινούν με ένα από τα στελέχη url όπως δίνονται εδώ.
+One URL stub, a list of URL stubs or a regular expression==Ένα URL στέλεχος, μια λίστα με URL στελέχη ή μια τυπική έκφραση
+Matching Method==Μέθοδος αντιστοίχισης
+sub-path of given URLs==υποδιαδρομή των δεδομένων URL
+matching with regular expression==αντιστοίχιση με κανονική έκφραση
+Delete by Age==Διαγραφή ανά ηλικία
+Delete all documents which are older than a given time period.==Διαγράψτε όλα τα έγγραφα που είναι παλαιότερα από μια δεδομένη χρονική περίοδο.
+Time Period==Χρονική περίοδος
+All documents older than==Όλα τα έγγραφα παλαιότερα από
+years==χρόνια
+months==μήνες
+days==ημέρες
+hours==ώρες
+Age Identification==Αναγνώριση ηλικίας
+load date==ημερομηνία φόρτωσης
+last-modified==τελευταία τροποποίηση
+Delete Collections==Διαγραφή Συλλογών
+Delete all documents which are inside specific collections.==Διαγράψτε όλα τα έγγραφα που βρίσκονται σε συγκεκριμένες συλλογές.
+Not Assigned==Δεν έχει ανατεθεί
+Delete all documents which are not assigned to any collection==Διαγράψτε όλα τα έγγραφα που δεν έχουν εκχωρηθεί σε καμία συλλογή
+Assigned==Ανατέθηκε
+Delete all documents which are assigned to the following collection(s)==Διαγράψτε όλα τα έγγραφα που έχουν εκχωρηθεί στις ακόλουθες συλλογές
+Delete by Solr Query==Διαγραφή με Solr Ερώτημα
+This is the most generic option: select a set of documents using a solr query.==Αυτή είναι η πιο γενική επιλογή: επιλέξτε ένα σύνολο εγγράφων χρησιμοποιώντας ένα ερώτημα solr.
+Core==Πυρήνας
+#-----------------------------
+
+#File: IndexExportImportSolr_p.html
+#---------------------------
+"Create Dump"=="Δημιουργία Dump"
+"Restore Dump"=="Επαναφορά Dump"
+Solr Index Export/Import==Solr Εξαγωγή ευρετηρίου/Import
+Dump and Restore of Solr Index==Απόρριψη και επαναφορά του ευρετηρίου Solr
+This feature is available only when a local embedded Solr is active.==Αυτή η δυνατότητα είναι διαθέσιμη μόνο όταν είναι ενεργό ένα τοπικό ενσωματωμένο Solr.
+(This may take several minutes. Please be patient and wait until the page reloads.)==(Αυτό μπορεί να διαρκέσει αρκετά λεπτά. Κάντε υπομονή και περιμένετε έως ότου φορτώσει ξανά η σελίδα.)
+Dump File (full path)==Dump File (πλήρης διαδρομή)
+Could not create the Solr dump : no embedded Solr is available.==Δεν ήταν δυνατή η δημιουργία του στοιχείου ένδειξης Solr : δεν υπάρχει ενσωματωμένο Solr διαθέσιμο.
+An error occurred while trying to create the Solr dump.==Παρουσιάστηκε σφάλμα κατά την προσπάθεια δημιουργίας της ένδειξης ένδειξης Solr.
+Successfully restored Solr index from dump file!==Έγινε επιτυχής επαναφορά του ευρετηρίου Solr από το αρχείο ένδειξης σφαλμάτων!
+Could not restore the Solr dump : no embedded Solr is available.==Δεν ήταν δυνατή η επαναφορά της ένδειξης Solr : δεν υπάρχει ενσωματωμένο Solr διαθέσιμο.
+An error occurred while trying to restore the Solr dump.==Παρουσιάστηκε σφάλμα κατά την προσπάθεια επαναφοράς της ένδειξης Solr.
+#-----------------------------
+
+#File: IndexExport_p.html
+#---------------------------
+"Export"=="Εξαγωγή"
+Index Export==Δείκτης Εξαγωγή
+Loaded URL Export==Φορτώθηκε URL Εξαγωγή
+Export Path==Διαδρομή εξαγωγής
+URL Filter==URL Φίλτρο
+query==ερώτηση
+maximum age (seconds)==μέγιστη ηλικία (δευτερόλεπτα)
+maximum number of records per chunk==μέγιστος αριθμός εγγραφών ανά κομμάτι
+if exceeded: several chunks are stored; -1 = unlimited (makes only one chunk)==σε περίπτωση υπέρβασης: αποθηκεύονται πολλά κομμάτια. -1 = απεριόριστο (κάνει μόνο ένα κομμάτι)
+Export Size==Μέγεθος εξαγωγής
+full size, all fields:==πλήρες μέγεθος, όλα τα πεδία:
+minified; only fields sku, date, title, description, text_t==ελαχιστοποιήθηκε? μόνο πεδία sku, ημερομηνία, τίτλος, περιγραφή, text_t
+Export Format==Μορφή εξαγωγής
+Full URL List:==Πλήρης λίστα URL:
+Plain Text List (URLs only)==Λίστα απλού κειμένου (μόνο URL)
+HTML (URLs with title)==HTML (URL με τίτλο)
+Only Domain:==Μόνο τομέας:
+Plain Text List (domains only)==Λίστα απλού κειμένου (μόνο τομείς)
+HTML (domains as URLs, no title)==HTML (τομείς ως URL, χωρίς τίτλο)
+Only Text:==Μόνο κείμενο:
+Fulltext of Search Index Text==Πλήρες κείμενο κειμένου ευρετηρίου αναζήτησης
+Import this file by moving it to DATA/PACKS/load==Εισαγάγετε αυτό το αρχείο μετακινώντας το στο DATA/PACKS/load
+#-----------------------------
+
+#File: IndexFederated_p.html
+#---------------------------
+"Set"=="Σειρά"
+Index Sources & Targets==Πηγές ευρετηρίου & Στόχοι
+YaCy supports multiple index storage locations.==Το YaCy υποστηρίζει πολλαπλές τοποθεσίες αποθήκευσης ευρετηρίου.
+As an internal indexing database a deep-embedded multi-core Solr is used and it is possible to attach also a remote Solr.==Ως εσωτερική βάση δεδομένων ευρετηρίου χρησιμοποιείται ένας βαθιά ενσωματωμένος πολυπύρηνος Solr και είναι δυνατό να επισυναφθεί επίσης ένα απομακρυσμένο Solr.
+Solr Search Index==Solr Ευρετήριο αναζήτησης
+Lazy Value Initialization==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 is stored within the YaCy DATA directory.==Αυτό θα γράψει το YaCy-ενσωματωμένο ευρετήριο Solr που είναι αποθηκευμένο στον κατάλογο YaCy DATA.
+The Solr native search interface is accessible at==Η διεπαφή εγγενούς αναζήτησης Solr είναι προσβάσιμη στη διεύθυνση
+/solr/select?q=*:*&start=0&rows=3&core=collection1==/solr/select?q=*:*&start=0&rows=3&core=collection1
+for the default search index (core: collection1) and at==για το προεπιλεγμένο ευρετήριο αναζήτησης (πυρήνας: συλλογή1) και στο
+If you switch off this index, a remote Solr must be activated.==Εάν απενεργοποιήσετε αυτό το ευρετήριο, πρέπει να ενεργοποιηθεί ένα απομακρυσμένο Solr.
+Use remote Solr server(s)==Χρήση απομακρυσμένου διακομιστή(ων) 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. Μπορεί επίσης να χρησιμοποιηθεί επιπρόσθετα στα εσωτερικά Solr, τότε αντικατοπτρίζονται και τα δύο ευρετήρια Solr.
+Allow self-signed certificates==Να επιτρέπονται τα αυτο-υπογεγραμμένα πιστοποιητικά
+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 https://user:password@localhost:8984/solr.==Επιλέξτε αυτό όταν ο απομακρυσμένος διακομιστής Solr προστατεύεται με κωδικό πρόσβασης και ζητείται μέσω HTTPS, αλλά παρέχει μόνο ένα αυτο-υπογεγραμμένο πιστοποιητικό (όχι επικυρωμένο από επίσημη Αρχή έκδοσης πιστοποιητικών). Το Solr URL θα μπορούσε για παράδειγμα να είναι κάτι σαν https://user:password@localhost:8984/solr.
+Solr Hosts==Solr Οικοδεσπότες
+Solr Host Administration Interface==Solr Διεπαφή διαχείρισης κεντρικού υπολογιστή
+Index Size==Μέγεθος ευρετηρίου
+Solr URL(s)==Solr URL(ες)
+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 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).==Το σύνολο των απομακρυσμένων στόχων χρησιμοποιείται ως θραύσματα ενός πλήρους ευρετηρίου. Το τμήμα υποδοχής του url χρησιμοποιείται ως κλειδί για μια συνάρτηση κατακερματισμού που επιλέγει ένα από τα θραύσματα (έναν από τους απομακρυσμένους διακομιστές σας).
+When a search request is made, all servers are accessed synchronously and the result is combined.==Όταν υποβάλλεται ένα αίτημα αναζήτησης, γίνεται σύγχρονη πρόσβαση σε όλους τους διακομιστές και το αποτέλεσμα συνδυάζεται.
+Sharding Method==Μέθοδος Sharding
+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 forty times more links from loaded pages than in documents of the main search index).==Το ευρετήριο δομής ιστού χρησιμοποιείται για την περιήγηση κεντρικού υπολογιστή (για την ανακάλυψη της εσωτερικής δομής του αρχείου/folder), την κατάταξη (μετρώντας τον αριθμό των αναφορών) και την αναζήτηση αρχείων (υπάρχουν περίπου σαράντα φορές περισσότεροι σύνδεσμοι από φορτωμένες σελίδες από ό,τι σε έγγραφα του κύριου ευρετηρίου αναζήτησης).
+use citation reference index (lightweight and fast)==χρήση ευρετηρίου αναφοράς παραπομπών (ελαφρύ και γρήγορο)
+use webgraph search index (rich information in second Solr core)==χρήση ευρετηρίου αναζήτησης ιστολογίου (πλούσιες πληροφορίες στον δεύτερο πυρήνα Solr)
+Peer-to-Peer Operation==Λειτουργία Peer-to-Peer
+The 'RWI' (Reverse Word Index) is necessary for index transmission in distributed mode. For portal or intranet mode this must be switched off.==Το 'RWI' (Reverse Word Index) είναι απαραίτητο για μετάδοση ευρετηρίου σε κατανεμημένη λειτουργία. Για λειτουργία πύλης ή intranet, αυτό πρέπει να είναι απενεργοποιημένο.
+support peer-to-peer index transmission (DHT RWI index)==υποστήριξη μετάδοσης ευρετηρίου peer-to-peer (DHT RWI index)
+Block known error URLs in DHT==Αποκλεισμός διευθύνσεων URL γνωστών σφαλμάτων στο DHT
+Reject URLs/RWIs with known errors from peers. Disable to opt out.==Απόρριψη διευθύνσεων URL/RWIs με γνωστά σφάλματα από ομοτίμους. Απενεργοποιήστε για να εξαιρεθείτε.
+Retry after (days)==Επανάληψη μετά από (ημέρες)
+for temporary errors; permanent errors stay blocked.==για προσωρινά λάθη. τα μόνιμα σφάλματα παραμένουν αποκλεισμένα.
+Permanent error statuses==Μόνιμες καταστάσεις σφάλματος
+comma-separated (default: 404,410,-1; -1=DNS/network errors)==διαχωρισμένα με κόμματα (προεπιλογή: 404,410,-1; -1=DNS/network σφάλματα)
+#-----------------------------
+
+#File: IndexImportJsonList_p.html
+#---------------------------
+"Import JsonList File"=="Εισαγωγή αρχείου JsonList"
+"Stop"=="Στάση"
+JSON List Index Dump File Import==JSON Εισαγωγή αρχείου ένδειξης ευρετηρίου λίστας
+No import thread is running, you can start a new thread here==Δεν εκτελείται νήμα εισαγωγής, μπορείτε να ξεκινήσετε ένα νέο νήμα εδώ
+JsonList File Selection: select an jsonlist file (which may be gz compressed)==Επιλογή αρχείου JsonList: επιλέξτε ένα αρχείο jsonlist (το οποίο μπορεί να είναι συμπιεσμένο gz)
+File:==Αρχείο:
+or==ή
+Url:==Διεύθυνση URL:
+Import Process==Διαδικασία εισαγωγής
+Thread:==Νήμα:
+JsonList File:==Αρχείο JsonList:
+Processed:==Επεξεργασμένο:
+Speed:==Ταχύτητα:
+Running Time:==Διάρκεια:
+Remaining Time:==Χρόνος που απομένει:
+#-----------------------------
+
+#File: IndexImportMediawiki_p.html
+#---------------------------
+"Uniform Resource Locator"=="Ενιαίος εντοπιστής πόρων"
+"Dump file path on this YaCy server file system, or any remote URL"=="Αποτύπωση διαδρομής αρχείου σε αυτό το σύστημα αρχείων διακομιστή YaCy ή σε οποιοδήποτε απομακρυσμένο URL"
+"Import MediaWiki Dump"=="Εισαγωγή MediaWiki Dump"
+MediaWiki Dump Import==MediaWiki Dump Εισαγωγή
+No import thread is running, you can start a new thread here==Δεν εκτελείται νήμα εισαγωγής, μπορείτε να ξεκινήσετε ένα νέο νήμα εδώ
+Error : dump URL is malformed.==Σφάλμα : το dump URL έχει λανθασμένη μορφή.
+MediaWiki Dump File Selection==Επιλογή αρχείου Dump MediaWiki
+Dumps can be stored in the local file system or on a remote server in XML format and may be compressed in gz or bz2.==Τα Dumps μπορούν να αποθηκευτούν στο τοπικό σύστημα αρχείων ή σε έναν απομακρυσμένο διακομιστή σε μορφή XML και μπορούν να συμπιεστούν σε gz ή bz2.
+Dump file path or URL==Αποτύπωση διαδρομής αρχείου ή URL
+Import only when modified since last import==Εισαγωγή μόνο όταν έχει τροποποιηθεί από την τελευταία εισαγωγή
+When checked, the dump file is imported only if its last modified date is unknown or is after the last import execution date on this same file==Όταν είναι επιλεγμένο, το αρχείο dump εισάγεται μόνο εάν η τελευταία ημερομηνία τροποποίησης του είναι άγνωστη ή είναι μετά την τελευταία ημερομηνία εκτέλεσης εισαγωγής σε αυτό το ίδιο αρχείο
+When the import is started, the following happens:==Όταν ξεκινήσει η εισαγωγή, συμβαίνουν τα εξής:
+The dump is extracted on the fly and wiki entries are translated into Dublin Core data format. The output looks like this:==Το dump εξάγεται αμέσως και οι εγγραφές wiki μεταφράζονται σε μορφή δεδομένων Dublin Core. Η έξοδος μοιάζει με αυτό:
+Each 10000 wiki records are combined in one output file which is written to /DATA/PACKS/load into a temporary file.==Κάθε 10000 εγγραφές wiki συνδυάζονται σε ένα αρχείο εξόδου το οποίο γράφεται στο /DATA/PACKS/load σε ένα προσωρινό αρχείο.
+When each of the generated output file is finished, it is renamed to a .xml file==Όταν ολοκληρωθεί κάθε αρχείο εξόδου που δημιουργείται, μετονομάζεται σε αρχείο .xml
+Each time a xml pack file appears in /DATA/PACKS/load, the YaCy indexer fetches the file and indexes the record entries.==Κάθε φορά που εμφανίζεται ένα αρχείο πακέτου xml στο /DATA/PACKS/load,, το ευρετήριο YaCy ανακτά το αρχείο και ευρετηριάζει τις εγγραφές εγγραφών.
+When a pack file is finished with indexing, it is moved to /DATA/PACKS/loaded==Όταν ένα αρχείο πακέτου τελειώσει με την ευρετηρίαση, μετακινείται στο /DATA/PACKS/loaded
+You can recycle processed pack files by moving them from /DATA/PACKS/loaded to /DATA/PACKS/load==Μπορείτε να ανακυκλώσετε τα επεξεργασμένα αρχεία πακέτων μετακινώντας τα από /DATA/PACKS/loaded σε /DATA/PACKS/load
+Import Process==Διαδικασία εισαγωγής
+Thread:==Νήμα:
+started==ξεκίνησε
+running==τρέξιμο
+Dump:==Σκουπιδότοπος:
+Processed:==Επεξεργασμένο:
+Speed:==Ταχύτητα:
+Running Time:==Διάρκεια:
+Remaining Time:==Χρόνος που απομένει:
+#-----------------------------
+
+#File: IndexImportOAIPMHList_p.html
+#---------------------------
+"Load Selected Sources"=="Φόρτωση επιλεγμένων πηγών"
+Source==Πηγή
+Import List==Λίστα εισαγωγής
+Thread==Νήμα
+Processed Chunks==Επεξεργασμένα Τεμάχια
+Imported Records==Εισαγόμενα Εγγραφές
+Complete at # Records==Ολοκληρώστε σε # Εγγραφές
+Speed (records/second)==Ταχύτητα (εγγραφές/second)
+#-----------------------------
+
+#File: IndexImportOAIPMH_p.html
+#---------------------------
+"Import OAI-PMH source"=="Εισαγωγή πηγής OAI-PMH"
+"import this source"=="εισαγάγετε αυτήν την πηγή"
+"import from a list"=="εισαγωγή από λίστα"
+OAI-PMH Import==Εισαγωγή OAI-PMH
+Single request import==Εισαγωγή με ένα αίτημα
+This will submit only a single request as given here to a OAI-PMH server and imports records into the index==Αυτό θα υποβάλει μόνο ένα αίτημα όπως δίνεται εδώ σε έναν διακομιστή OAI-PMH και θα εισάγει εγγραφές στο ευρετήριο
+Source:==Πηγή:
+Processed:==Επεξεργασμένο:
+ResumptionToken:==ResumptionToken:
+Import all Records from a server==Εισαγωγή όλων των Εγγραφών από έναν διακομιστή
+Import all records that follow according to resumption elements into index==Εισαγάγετε όλες τις εγγραφές που ακολουθούν σύμφωνα με στοιχεία επανάληψης στο ευρετήριο
+or==ή
+Import started!==Η εισαγωγή ξεκίνησε!
+#-----------------------------
+
+#File: IndexImportWarc_p.html
+#---------------------------
+"Import Warc File"=="Εισαγωγή αρχείου Warc"
+"Stop"=="Στάση"
+Web Archive File Import==Εισαγωγή αρχείου Web Archive
+No import thread is running, you can start a new thread here==Δεν εκτελείται νήμα εισαγωγής, μπορείτε να ξεκινήσετε ένα νέο νήμα εδώ
+Warc File Selection: select an warc file (which may be gz compressed)==Επιλογή αρχείου Warc: επιλέξτε ένα αρχείο warc (το οποίο μπορεί να είναι συμπιεσμένο gz)
+You can download warc archives for example here==Μπορείτε να κατεβάσετε τα αρχεία warc για παράδειγμα εδώ
+File:==Αρχείο:
+or==ή
+Url:==Διεύθυνση URL:
+Collection:==Συλλογή:
+Import Process==Διαδικασία εισαγωγής
+Thread:==Νήμα:
+Warc File:==Αρχείο Warc:
+Processed:==Επεξεργασμένο:
+Speed:==Ταχύτητα:
+Running Time:==Διάρκεια:
+Remaining Time:==Χρόνος που απομένει:
+#-----------------------------
+
+#File: IndexImportZim_p.html
+#---------------------------
+"Import ZIM File"=="Εισαγωγή αρχείου ZIM"
+"Stop"=="Στάση"
+ZIM File Import==Εισαγωγή αρχείου ZIM
+No import thread is running, you can start a new thread here==Δεν εκτελείται νήμα εισαγωγής, μπορείτε να ξεκινήσετε ένα νέο νήμα εδώ
+Zim File Selection: select a '.zim' file==Επιλογή αρχείου Zim: επιλέξτε ένα αρχείο «.zim».
+You can download ZIM files for example here==Μπορείτε να κατεβάσετε αρχεία ZIM για παράδειγμα εδώ
+File:==Αρχείο:
+Collection:==Συλλογή:
+Import Process==Διαδικασία εισαγωγής
+Thread:==Νήμα:
+ZIM File:==Αρχείο ZIM:
+Processed:==Επεξεργασμένο:
+Speed:==Ταχύτητα:
+Running Time:==Διάρκεια:
+Remaining Time:==Χρόνος που απομένει:
+#-----------------------------
+
+#File: IndexPackDownloader_p.html
+#---------------------------
+YaCy Pack Downloader==YaCy Πρόγραμμα λήψης πακέτων
+Available Packs==Διαθέσιμα πακέτα
+Source==Πηγή
+Repo ID==Αναγνωριστικό repo
+File==Αρχείο
+Process==Διαδικασία
+#-----------------------------
+
+#File: IndexPackGenerator_p.html
+#---------------------------
+"info"=="πληροφορίες"
+"Generate Data Pack"=="Δημιουργία πακέτου δεδομένων"
+YaCy Pack Generator==YaCy Γεννήτρια πακέτων
+Index Pack Generator==Index Pack Generator
+Set a Category (this goes into the filename)==Ορίστε μια κατηγορία (αυτό μπαίνει στο όνομα αρχείου)
+mix - a mix of document types, for content from wide web crawls==mix - ένας συνδυασμός τύπων εγγράφων, για περιεχόμενο από ανιχνεύσεις ευρείας ιστού
+core - technical documentation, operating systems, computer hardware, open source and free software, manuals, protocol standards==πυρήνα - τεχνική τεκμηρίωση, λειτουργικά συστήματα, υλικό υπολογιστών, ανοιχτό κώδικα και ελεύθερο λογισμικό, εγχειρίδια, πρότυπα πρωτοκόλλου
+scroll - non-technical documents: knowledge, encyclopedia, linguistic corpora, dictionaries, translation memories, texts, non-fiction books, historical books==κύλιση - μη τεχνικά έγγραφα: γνώση, εγκυκλοπαίδεια, γλωσσικά σώματα, λεξικά, μεταφραστικές μνήμες, κείμενα, βιβλία μη μυθοπλασίας, ιστορικά βιβλία
+regula - non-technical standards: industry standards, laws, rules, compliance==regula - μη τεχνικά πρότυπα: βιομηχανικά πρότυπα, νόμοι, κανόνες, συμμόρφωση
+gem - research, papers, university publications, science==στολίδι - έρευνα, εργασίες, πανεπιστημιακές δημοσιεύσεις, επιστήμη
+fiction - fictional documents: movies, stories, series, books (fiction, science-fiction)==μυθοπλασία - φανταστικά ντοκουμέντα: ταινίες, ιστορίες, σειρές, βιβλία (φαντασίας, επιστημονικής φαντασίας)
+map - geological data, geolocation-data, earth/world information==χάρτης - γεωλογικά δεδομένα, geolocation-data, earth/world πληροφορίες
+echo – micro-content (tweets, toots, short headlines, SMS corpora), podcasts, radio archives, audio lectures, spoken-word datasets, logs, incidents, telemetry==echo – μικροπεριεχόμενο (tweets, tots, σύντομοι τίτλοι, σώματα SMS), podcast, ραδιοφωνικά αρχεία, ηχητικές διαλέξεις, σύνολα δεδομένων προφορικού λόγου, αρχεία καταγραφής, περιστατικά, τηλεμετρία
+spirit – related to non-textual data (possibly only metadata): art, music, game assets, creative-commons media (non-text culture loot)==πνεύμα – που σχετίζεται με μη κειμενικά δεδομένα (πιθανώς μόνο μεταδεδομένα): τέχνη, μουσική, στοιχεία παιχνιδιών, δημιουργικά-κοινά μέσα (κλοπή κουλτούρας εκτός κειμένου)
+vault - sensitive data: secrets, leaks, non-public documents, security advisories==θησαυροφυλάκιο - ευαίσθητα δεδομένα: μυστικά, διαρροές, μη δημόσια έγγραφα, συμβουλές ασφαλείας
+Index Collection==Συλλογή Ευρετηρίου
+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.==το όνομα της συλλογής χρησιμοποιείται ως μέρος του ονόματος αρχείου για την περιγραφή του περιεχομένου. Εξαίρεση: εάν η συλλογή είναι "χρήστης", τότε μπορείτε να ονομάσετε το περιεχόμενο με γυμνοσάλιαγκο.
+Slug - describe the content (only if collection is "user")==Slug - περιγράψτε το περιεχόμενο (μόνο εάν η συλλογή είναι "χρήστης")
+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"==Αυτό θα γίνει μέρος του ονόματος αρχείου, τα κενά θα αντικατασταθούν από "-". δεν πρέπει να είναι κενό. θα πρέπει να τελειώνει με μια γλωσσική περιγραφή, π.χ. "-en"
+URL Filter==URL Φίλτρο
+Search Query -==Ερώτημα αναζήτησης -
+Export Format==Μορφή εξαγωγής
+This JSON is an elasticsearch index dump format and can be bulk-imported to elasticsearch. Here is an example for opensearch, using docker:==Αυτό το JSON είναι μια μορφή ένδειξης ένδειξης elasticsearch και μπορεί να εισαχθεί μαζικά στο elasticsearch. Ακολουθεί ένα παράδειγμα για την opensearch, χρησιμοποιώντας το docker:
+Start docker container of opensearch:==Ξεκινήστε το docker container της opensearch:
+Unblock index creation:==Κατάργηση αποκλεισμού δημιουργίας ευρετηρίου:
+Create the search index:==Δημιουργήστε το ευρετήριο αναζήτησης:
+Bulk-upload the index file:==Μεταφορτώστε μαζικά το αρχείο ευρετηρίου:
+Make a search, get 10 results, search in fields text_t, title, description with boosts:==Κάντε μια αναζήτηση, λάβετε 10 αποτελέσματα, αναζητήστε στα πεδία text_t, τίτλος, περιγραφή με αυξήσεις:
+JSON (Rich and full-text Elasticsearch data, one document per line in one flat JSON file)==JSON (Δεδομένα Elasticsearch πλούσιου και πλήρους κειμένου, ένα έγγραφο ανά γραμμή σε ένα επίπεδο αρχείο JSON)
+XML (Rich and full-text Solr data, one document per line in one large xml file,==XML (Πλούσιο και πλήρες κείμενο Solr δεδομένα, ένα έγγραφο ανά γραμμή σε ένα μεγάλο αρχείο xml,
+can be processed with shell tools, can be imported with DATA/PACKS/load/)==μπορεί να υποβληθεί σε επεξεργασία με εργαλεία κελύφους, μπορεί να εισαχθεί με DATA/PACKS/load/)
+XML (RSS)==XML (RSS)
+Import this file by moving it to DATA/PACKS/load==Εισαγάγετε αυτό το αρχείο μετακινώντας το στο DATA/PACKS/load
+Pack List==Λίστα πακέτων
+Pack==Πακέτο
+Process==Διαδικασία
+Size (KB)==Μέγεθος (KB)
+#-----------------------------
+
+#File: IndexPackManager_p.html
+#---------------------------
+YaCy Pack Manager==YaCy Διαχειριστής πακέτων
+Pack Folders==Συσκευασία φακέλων
+Packs: Hold List==Πακέτα: Λίστα αναμονής
+Size (KB)==Μέγεθος (KB)
+Process==Διαδικασία
+Packs: Load List==Πακέτα: Λίστα φόρτωσης
+Packs: Loaded List==Πακέτα: Φορτωμένη λίστα
+#-----------------------------
+
+#File: IndexReIndexMonitor_p.html
+#---------------------------
+"refresh page"=="ανανέωση σελίδας"
+"start reindex job now"=="ξεκινήστε την εργασία εκ νέου ευρετηρίου τώρα"
+"stop reindexing"=="σταματήστε την αναπροσαρμογή"
+"Simulate"=="Προσποιούμαι"
+"Check only how many documents would be selected for recrawl"=="Ελέγξτε μόνο πόσα έγγραφα θα επιλεγούν για εκ νέου ανίχνευση"
+"Set defaults"=="Ορισμός προεπιλογών"
+"Reset to default values"=="Επαναφορά στις προεπιλεγμένες τιμές"
+"start recrawl job now"=="ξεκινήστε τώρα την εργασία ανίχνευσης"
+"update"=="εκσυγχρονίζω"
+"stop recrawl job"=="σταματήστε την εργασία ανίχνευσης"
+"Automatically refreshing"=="Αυτόματη ανανέωση"
+"An error occurred while trying to refresh automatically"=="Παρουσιάστηκε σφάλμα κατά την προσπάθεια αυτόματης ανανέωσης"
+"URLs added to the crawler queue for recrawl"=="Διευθύνσεις URL που προστέθηκαν στην ουρά του προγράμματος ανίχνευσης για εκ νέου ανίχνευση"
+"URLs rejected for some reason by the crawl stacker or the crawler queue. Please check the logs for more details."=="Διευθύνσεις URL που απορρίφθηκαν για κάποιο λόγο από το πρόγραμμα στοίβαξης ανίχνευσης ή από την ουρά του προγράμματος ανίχνευσης. Ελέγξτε τα αρχεία καταγραφής για περισσότερες λεπτομέρειες."
+Field Re-Indexing==Εκ νέου ευρετηρίαση πεδίου
+In case that an index schema of the embedded/local index has changed, all documents with missing field entries can be indexed again with a reindex job.==Σε περίπτωση που έχει αλλάξει ένα σχήμα ευρετηρίου του ενσωματωμένου/local ευρετηρίου, όλα τα έγγραφα με τις καταχωρίσεις πεδίων που λείπουν μπορούν να ευρετηριαστούν ξανά με μια εργασία επανευρετηρίου.
+Documents in current queue==Έγγραφα στην τρέχουσα ουρά
+Documents processed==Έγγραφα υποβλήθηκαν σε επεξεργασία
+current select query==τρέχον ερώτημα επιλογής
+Remaining field list==Λίστα πεδίων που απομένουν
+reindex documents containing these fields:==αναπροσαρμογή εγγράφων που περιέχουν αυτά τα πεδία:
+Field==Πεδίο
+count==κόμης
+Re-Crawl Index Documents==Εκ νέου ανίχνευση εγγράφων ευρετηρίου
+Searches the local index and selects documents to add to the crawler (recrawl the document).==Πραγματοποιεί αναζήτηση στο τοπικό ευρετήριο και επιλέγει έγγραφα για προσθήκη στον ανιχνευτή (ανιχνεύστε ξανά το έγγραφο).
+This runs transparent as background job. Documents are added to the crawler only if no other crawls are active==Αυτό εκτελείται διαφανές ως εργασία παρασκηνίου. Τα έγγραφα προστίθενται στον ανιχνευτή μόνο εάν δεν είναι ενεργές άλλες ανιχνεύσεις
+and are added in small chunks.==και προστίθενται σε μικρά κομμάτια.
+Re-crawl works only with an embedded local Solr index!==Η εκ νέου ανίχνευση λειτουργεί μόνο με έναν ενσωματωμένο τοπικό ευρετήριο Solr!
+Solr query==Solr ερώτημα
+document(s)==έγγραφα)
+selected for recrawl.==επιλεγμένο για εκ νέου ανίχνευση.
+An error occurred when trying to run the selection query.==Παρουσιάστηκε σφάλμα κατά την προσπάθεια εκτέλεσης του ερωτήματος επιλογής.
+The Solr index is not connected. Please restart your peer.==Το ευρετήριο Solr δεν είναι συνδεδεμένο. Κάντε επανεκκίνηση του συνομήλικου σας.
+Include failed URLs==Συμπεριλάβετε αποτυχημένες διευθύνσεις URL
+Delete URLs==Διαγραφή διευθύνσεων URL
+to re-crawl documents selected with the given query.==για την εκ νέου ανίχνευση εγγράφων που επιλέχθηκαν με το συγκεκριμένο ερώτημα.
+Re-Crawl Query Details==Εκ νέου ανίχνευση λεπτομερειών ερωτήματος
+Documents to process==Έγγραφα προς επεξεργασία
+Current Query==Τρέχον ερώτημα
+Edit Solr Query==Επεξεργασία Solr ερωτήματος
+Include failed urls==Συμπεριλάβετε αποτυχημένες διευθύνσεις URL
+Delete urls==Διαγραφή url
+Last==Τελευταίος
+Re-Crawl job report==Εκ νέου ανίχνευση αναφοράς εργασίας
+The job terminated early due to an error when requesting the Solr index.==Η εργασία τερματίστηκε πρόωρα λόγω σφάλματος κατά την αίτηση του ευρετηρίου Solr.
+Status==Κατάσταση
+Running==Τρέξιμο
+Shutdown in progress==Τερματισμός σε εξέλιξη
+Terminated==Τερματίστηκε
+Query==Ερώτηση
+Start time==Ώρα έναρξης
+End time==Ώρα λήξης
+Recrawled URLs==Ανιχνευμένες διευθύνσεις URL
+Rejected URLs==Διευθύνσεις URL που απορρίφθηκαν
+Malformed URLs==Λανθασμένη μορφή URL
+Refresh==Φρεσκάρω
+#-----------------------------
+
+#File: IndexSchema_p.html
+#---------------------------
+"API"=="API"
+"active"=="ενεργός"
+"disabled"=="ανάπηρος"
+"Required for proper operation"=="Απαιτείται για σωστή λειτουργία"
+"Set"=="Σειρά"
+"reset selection to default"=="επαναφέρετε την επιλογή στην προεπιλογή"
+"reindex Solr"=="αναπροσαρμογή ευρετηρίου Solr"
+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.==Το σχήμα solr μπορεί επίσης να ανακτηθεί ως xml εδώ. Κάντε κλικ στο εικονίδιο API για να δείτε το xml. Απλώς αντιγράψτε αυτό το xml στο solr/conf/schema.xml για να διαμορφώσετε το solr.
+Solr Schema Editor==Solr Επεξεργαστής σχήματος
+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==Εάν χρησιμοποιείτε ένα προσαρμοσμένο σχήμα Solr, μπορείτε να εισαγάγετε ένα διαφορετικό όνομα πεδίου στη στήλη "Προσαρμοσμένο Solr Όνομα πεδίου" του προεπιλεγμένου ονόματος YaCy
+Select a core:==Επιλέξτε έναν πυρήνα:
+Active==Ενεργός
+Attribute==Ιδιότης
+Custom Solr Field Name==Προσαρμοσμένο Solr Όνομα πεδίου
+Comment==Σχόλιο
+show active==δείχνουν ενεργό
+show all available==εμφάνιση όλων των διαθέσιμων
+show disabled==εμφάνιση απενεργοποιημένο
+Reindex documents==Αναπροσαρμογή εγγράφων
+If you unselected some fields, old documents in the index still contain the unselected fields.==Εάν αποεπιλέξατε ορισμένα πεδία, τα παλιά έγγραφα στο ευρετήριο εξακολουθούν να περιέχουν τα μη επιλεγμένα πεδία.
+To physically remove them from the index you need to reindex the documents.==Για να τα αφαιρέσετε φυσικά από το ευρετήριο, πρέπει να κάνετε εκ νέου ευρετήριο των εγγράφων.
+Here you can reindex all documents with inactive fields.==Εδώ μπορείτε να αναπροσαρμόσετε το ευρετήριο όλων των εγγράφων με ανενεργά πεδία.
+#-----------------------------
+
+#File: IndexShare_p.html
+#---------------------------
+"Set"=="Σειρά"
+Index Sharing==Κοινή χρήση ευρετηρίου
+Index:==Δείκτης:
+distribute ==διανομή
+receive==λαμβάνω
+receive grant default:==λαμβάνουν προεπιλογή επιχορήγησης:
+for each remote peer==για κάθε απομακρυσμένο ομότιμο
+links/minute ==σύνδεσμοι/minute
+words/minute==λέξεις/minute
+#-----------------------------
+
+#File: LLMSelection_p.html
+#---------------------------
+"info"=="πληροφορίες"
+LLM Selection==LLM Επιλογή
+Here you can pick models from an LLM model service to select them as production model.==Εδώ μπορείτε να επιλέξετε μοντέλα από μια υπηρεσία LLM και να τα ορίσετε ως λειτουργικά μοντέλα.
+In the "Production Models Matrix" you can then assign each selected model a function inside YaCy==Στη "Μήτρα μοντέλων παραγωγής" μπορείτε στη συνέχεια να αντιστοιχίσετε σε κάθε επιλεγμένο μοντέλο μια συνάρτηση εντός YaCy
+Service Selection==Επιλογή υπηρεσίας
+service==υπηρεσία
+Ollama==Ollama
+LMStudio==LMStudio
+OpenAI==OpenAI
+Open Router==Ανοίξτε το δρομολογητή
+This makes a preset to the Hoststub value==Αυτό δημιουργεί μια προεπιλογή στην τιμή Hoststub
+hoststub==hoststub
+you can probably leave this to the default value==μπορείτε πιθανώς να το αφήσετε στην προεπιλεγμένη τιμή
+api_key==api_key
+(not required for Ollama or LMStudio)==(δεν απαιτείται για Ollama ή LMStudio)
+Services==Υπηρεσίες
+num_ctx is the context window (in tokens) of the inference service — a per-service==Το num_ctx είναι το παράθυρο περιβάλλοντος (σε διακριτικά) της υπηρεσίας συμπερασμάτων — ανά υπηρεσία
+value, shared by all models on that endpoint. It is the total budget for prompt plus==τιμή, κοινή από όλα τα μοντέλα σε αυτό το τελικό σημείο. Είναι ο συνολικός προϋπολογισμός για την προτροπή plus
+generated output; YaCy uses it to size prompts so they leave room to generate. The row for the==παραγόμενη παραγωγή? Το YaCy το χρησιμοποιεί για να κάνει προτροπές μεγέθους, ώστε να αφήνουν χώρο για δημιουργία. Η σειρά για το
+service selected above appears here automatically with its stored (or default) window.==Η υπηρεσία που επιλέχθηκε παραπάνω εμφανίζεται εδώ αυτόματα με το αποθηκευμένο (ή προεπιλεγμένο) παράθυρο.
+This value is advisory: set it to match the window your backend actually serves==Αυτή η τιμή είναι advisory: ορίστε την ώστε να ταιριάζει με το παράθυρο που εξυπηρετεί πραγματικά το backend σας
+Context Length setting). YaCy does not enforce it on the backend.==Ρύθμιση μήκους περιβάλλοντος). Το YaCy δεν το επιβάλλει στο backend.
+num_ctx==num_ctx
+Model Downloads==Λήψεις μοντέλων
+Production Models Matrix==Matrix Μοντέλων Παραγωγής
+model==μοντέλο
+max_tokens==max_tokens
+search-answers==αναζήτηση-απαντήσεις
+This model creates answers for search requests==Αυτό το μοντέλο δημιουργεί απαντήσεις για αιτήματα αναζήτησης
+chat==κουβέντα
+This model is used in the chat interface and as default for the RAG proxy==Αυτό το μοντέλο χρησιμοποιείται στη διεπαφή συνομιλίας και ως προεπιλογή για τον διακομιστή μεσολάβησης RAG
+translation==μετάφραση
+This model can be used to make translations of the web UI==Αυτό το μοντέλο μπορεί να χρησιμοποιηθεί για την πραγματοποίηση μεταφράσεων της διεπαφής χρήστη ιστού
+classification==ταξινόμηση
+This model is used to classify prompts to find out what they demand==Αυτό το μοντέλο χρησιμοποιείται για την ταξινόμηση των προτροπών για να μάθετε τι απαιτούν
+search-query==search-query
+This model produces search queries to YaCy search from prompts in RAG or chat==Αυτό το μοντέλο παράγει ερωτήματα αναζήτησης για YaCy αναζήτηση από μηνύματα στο RAG ή συνομιλία
+qa-pairs==qa-ζευγών
+This model can be used to produce query-answer pairs which enhance search from chat prompts==Αυτό το μοντέλο μπορεί να χρησιμοποιηθεί για την παραγωγή ζευγών ερωτημάτων-απάντησης που ενισχύουν την αναζήτηση από τις προτροπές συνομιλίας
+tldr-shortener==tldr-shortener
+This model is used to make summaries from web content==Αυτό το μοντέλο χρησιμοποιείται για τη δημιουργία περιλήψεων από περιεχόμενο ιστού
+log-report==ημερολόγιο-αναφορά
+This model evaluates YaCy runtime logs and creates self-enhancement reports==Αυτό το μοντέλο αξιολογεί YaCy αρχεία καταγραφής χρόνου εκτέλεσης και δημιουργεί αναφορές αυτοβελτίωσης
+thinking==σκέψη
+we detect thinking only to be able to suppress thinking. thinking is not used in YaCy==ανιχνεύουμε τη σκέψη μόνο για να είμαστε σε θέση να καταστείλουμε τη σκέψη. η σκέψη δεν χρησιμοποιείται στο YaCy
+tooling==εργαλεία
+tooling is required for agentic abilities.==απαιτείται εργαλειοθήκη για πρακτορικές ικανότητες.
+vision==όραμα
+this enables image recognition in the chat==Αυτό επιτρέπει την αναγνώριση εικόνας στη συνομιλία
+format==σχήμα και διάταξις βιβλίου
+this is required for classification==αυτό απαιτείται για την ταξινόμηση
+Actions==Δράσεις
+#-----------------------------
+
+#File: Load_MediawikiWiki.html
+#---------------------------
+"Get content of Wiki: crawl wiki pages"=="Λάβετε περιεχόμενο του Wiki: ανιχνεύστε σελίδες wiki"
+Integration in MediaWiki==Ενσωμάτωση στο MediaWiki
+It is possible to insert wiki pages into the YaCy index using a web crawl on that pages.==Είναι δυνατή η εισαγωγή σελίδων wiki στο ευρετήριο YaCy χρησιμοποιώντας μια ανίχνευση ιστού σε αυτές τις σελίδες.
+This guide helps you to crawl your wiki and to insert a search window in your wiki pages.==Αυτός ο οδηγός σάς βοηθά να ανιχνεύσετε το wiki σας και να εισαγάγετε ένα παράθυρο αναζήτησης στις σελίδες του wiki.
+Retrieval of Wiki Pages==Ανάκτηση σελίδων Wiki
+The following form is a simplified crawl start that uses the proper values for a wiki crawl.==Η παρακάτω φόρμα είναι μια απλοποιημένη έναρξη ανίχνευσης που χρησιμοποιεί τις κατάλληλες τιμές για μια ανίχνευση wiki.
+Just insert the front page URL of your wiki. After you started the crawl you may want to get back==Απλώς εισάγετε την πρώτη σελίδα URL του wiki σας. Αφού ξεκινήσατε την ανίχνευση, μπορεί να θέλετε να επιστρέψετε
+to this page to read the integration hints below.==σε αυτήν τη σελίδα για να διαβάσετε τις παρακάτω συμβουλές ενσωμάτωσης.
+URL of the wiki main page This is a crawl start point==URL της κύριας σελίδας του wiki Αυτό είναι ένα σημείο έναρξης ανίχνευσης
+Inserting a Search Window to MediaWiki==Εισαγωγή παραθύρου αναζήτησης στο MediaWiki
+To integrate a search window into a MediaWiki, you must insert some code into the wiki template.==Για να ενσωματώσετε ένα παράθυρο αναζήτησης σε ένα MediaWiki, πρέπει να εισαγάγετε κάποιο κώδικα στο πρότυπο wiki.
+There are several templates that can be used for MediaWiki, but in this guide we consider that==Υπάρχουν πολλά πρότυπα που μπορούν να χρησιμοποιηθούν για το MediaWiki, αλλά σε αυτόν τον οδηγό λαμβάνουμε υπόψη αυτό
+you are using the default template, 'MonoBook.php':==χρησιμοποιείτε το προεπιλεγμένο πρότυπο, "MonoBook.php":
+open skins/MonoBook.php==ανοιχτά δέρματα/MonoBook.php
+find the line where the default search window is displayed, there are the following statements:==βρείτε τη γραμμή όπου εμφανίζεται το προεπιλεγμένο παράθυρο αναζήτησης, υπάρχουν οι ακόλουθες δηλώσεις:
+Remove that code or set it in comments using '<!--' and '-->'==Καταργήστε αυτόν τον κωδικό ή ορίστε τον σε σχόλια χρησιμοποιώντας "<!--" και "-->"
+Insert the following code:==Εισαγάγετε τον ακόλουθο κωδικό:
+Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Ελέγξτε όλες τις εμφανίσεις των στατικών IP που δίνονται στο απόσπασμα κώδικα και αντικαταστήστε το με το δικό σας IP ή το όνομα του κεντρικού υπολογιστή σας
+You may want to change the default text elements in the code snippet==Ίσως θέλετε να αλλάξετε τα προεπιλεγμένα στοιχεία κειμένου στο απόσπασμα κώδικα
+To see all options for the search widget, look at the more generic description of search widgets at==Για να δείτε όλες τις επιλογές για το γραφικό στοιχείο αναζήτησης, δείτε την πιο γενική περιγραφή των γραφικών στοιχείων αναζήτησης στο
+#-----------------------------
+
+#File: Load_PHPBB3.html
+#---------------------------
+"Get content of phpBB3: crawl forum pages"=="Λάβετε περιεχόμενο του phpBB3: ανίχνευση σελίδων φόρουμ"
+Integration in phpBB3==Ενσωμάτωση στο phpBB3
+It is possible to insert forum pages into the YaCy index using a database import of forum postings.==Είναι δυνατή η εισαγωγή σελίδων φόρουμ στο ευρετήριο YaCy χρησιμοποιώντας μια εισαγωγή βάσης δεδομένων αναρτήσεων φόρουμ.
+This guide helps you to insert a search window in your phpBB3 pages.==Αυτός ο οδηγός σάς βοηθά να εισαγάγετε ένα παράθυρο αναζήτησης στις σελίδες σας phpBB3.
+Retrieval of phpBB3 Forum Pages using a database export==Ανάκτηση σελίδων φόρουμ phpBB3 χρησιμοποιώντας εξαγωγή βάσης δεδομένων
+Forum posting contain rich information about the topic, the time, the subject and the author.==Η ανάρτηση στο φόρουμ περιέχει πλούσιες πληροφορίες για το θέμα, την ώρα, το θέμα και τον συγγραφέα.
+This information is in an bad annotated form in web pages delivered by the forum software.==Αυτές οι πληροφορίες είναι σε κακή μορφή σχολιασμού σε ιστοσελίδες που παρέχονται από το λογισμικό του φόρουμ.
+It is much better to retrieve the forum postings directly from the database. This will cause that YaCy is able to offer nice navigation features after searches.==Είναι πολύ καλύτερο να ανακτήσετε τις δημοσιεύσεις του φόρουμ απευθείας από τη βάση δεδομένων. Αυτό θα έχει ως αποτέλεσμα το YaCy να μπορεί να προσφέρει ωραίες λειτουργίες πλοήγησης μετά από αναζητήσεις.
+Retrieval of phpBB3 Forum Pages using a web crawl==Ανάκτηση σελίδων φόρουμ phpBB3 με χρήση ανίχνευσης ιστού
+The following form is a simplified crawl start that uses the proper values for a phpbb3 forum crawl.==Η παρακάτω φόρμα είναι μια απλοποιημένη έναρξη ανίχνευσης που χρησιμοποιεί τις κατάλληλες τιμές για μια ανίχνευση φόρουμ phpbb3.
+Just insert the front page URL of your forum. After you started the crawl you may want to get back==Απλώς εισάγετε την πρώτη σελίδα URL του φόρουμ σας. Αφού ξεκινήσατε την ανίχνευση, μπορεί να θέλετε να επιστρέψετε
+to this page to read the integration hints below.==σε αυτήν τη σελίδα για να διαβάσετε τις παρακάτω συμβουλές ενσωμάτωσης.
+URL of the phpBB3 forum main page This is a crawl start point==URL της κύριας σελίδας του φόρουμ phpBB3 Αυτό είναι ένα σημείο έναρξης ανίχνευσης
+Inserting a Search Window to phpBB3==Εισαγωγή παραθύρου αναζήτησης στο phpBB3
+To integrate a search window into phpBB3, you must insert some code into a forum template.==Για να ενσωματώσετε ένα παράθυρο αναζήτησης στο phpBB3, πρέπει να εισαγάγετε κάποιο κώδικα σε ένα πρότυπο φόρουμ.
+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
+Insert the following code right behind the div tag:==Εισαγάγετε τον ακόλουθο κώδικα ακριβώς πίσω από την ετικέτα div:
+Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Ελέγξτε όλες τις εμφανίσεις των στατικών IP που δίνονται στο απόσπασμα κώδικα και αντικαταστήστε το με το δικό σας IP ή το όνομα του κεντρικού υπολογιστή σας
+You may want to change the default text elements in the code snippet==Ίσως θέλετε να αλλάξετε τα προεπιλεγμένα στοιχεία κειμένου στο απόσπασμα κώδικα
+To see all options for the search widget, look at the more generic description of search widgets at==Για να δείτε όλες τις επιλογές για το γραφικό στοιχείο αναζήτησης, δείτε την πιο γενική περιγραφή των γραφικών στοιχείων αναζήτησης στο
+#-----------------------------
+
+#File: Load_RSS_p.html
+#---------------------------
+"Show RSS Items"=="Εμφάνιση RSS αντικειμένων"
+"Add All Items to Index (full content of url)"=="Προσθήκη όλων των αντικειμένων στο ευρετήριο (πλήρες περιεχόμενο του url)"
+"Remove Selected Feeds from Scheduler"=="Καταργήστε τις επιλεγμένες ροές από το πρόγραμμα προγραμματισμού"
+"Remove All Feeds from Scheduler"=="Κατάργηση όλων των ροών από το Scheduler"
+"Remove Selected Feeds from Feed List"=="Καταργήστε τις επιλεγμένες ροές από τη λίστα ροών"
+"Remove All Feeds from Feed List"=="Κατάργηση όλων των ροών από τη λίστα ροών"
+"Add Selected Feeds to Scheduler"=="Προσθήκη επιλεγμένων ροών στο Scheduler"
+"Add Selected Items to Index (full content of url)"=="Προσθήκη επιλεγμένων αντικειμένων στο ευρετήριο (πλήρες περιεχόμενο url)"
+Loading of RSS Feeds==Φόρτωση ροών RSS
+RSS feeds can be loaded into the YaCy search index.==Οι ροές RSS μπορούν να φορτωθούν στο ευρετήριο αναζήτησης YaCy.
+This does not load the rss file as such into the index but all the messages inside the RSS feeds as individual documents.==Αυτό δεν φορτώνει το αρχείο rss αυτούσιο στο ευρετήριο, αλλά όλα τα μηνύματα μέσα στις ροές RSS ως μεμονωμένα έγγραφα.
+URL of the RSS feed==URL της ροής RSS
+Preview==Πρεμιέρα
+Indexing==Ευρετηρίαση
+Available after successful loading of rss feed in preview==Διαθέσιμο μετά την επιτυχή φόρτωση της ροής rss σε προεπισκόπηση
+once==μια φορά
+load this feed once now==φορτώστε αυτήν τη ροή μία φορά τώρα
+scheduled==προγραμματισμένος
+repeat the feed loading every==επαναλάβετε τη φόρτωση τροφοδοσίας κάθε
+minutes==πρακτικά
+hours==ώρες
+days==ημέρες
+automatically.==αυτομάτως.
+collection==συλλογή
+List of Scheduled RSS Feed Load Targets==Λίστα προγραμματισμένων RSS στόχων φόρτωσης ροής
+Title==Τίτλος
+URL/Referrer==URL/Referrer
+Recording==Εγγραφή
+Last Load==Τελευταίο φορτίο
+Next Load==Επόμενο Φόρτωση
+Last Count==Τελευταίο μέτρημα
+All Count==Όλη η καταμέτρηση
+Avg. Update/Day==Μέσος όρος Ενημέρωση/Day
+Available RSS Feed List==Διαθέσιμη RSS Λίστα ροών
+Author==Συγγραφέας
+Description==Περιγραφή
+Language==Γλώσσα
+Date==Ημερομηνία
+Time-to-live==Χρόνος για ζωή
+Docs==Έγγραφα
+State==Κατάσταση
+URL==URL
+new==νέος
+enqueued==ουρά
+indexed==ευρετηριασμένα
+Attached media==Συνημμένα μέσα
+#-----------------------------
+
+#File: LogReports_p.html
+#---------------------------
+"delete this report"=="διαγράψτε αυτήν την αναφορά"
+Log Reports==Αναφορές καταγραφής
+run report now==εκτέλεση αναφοράς τώρα
+Generating report from the current-hour log lines — the LLM call can take a while …==Η δημιουργία αναφοράς από τις γραμμές καταγραφής τρέχουσας ώρας — η κλήση LLM μπορεί να διαρκέσει λίγο …
+seconds elapsed==δευτερόλεπτα που πέρασαν
+No log lines were found for the current hour.==Δεν βρέθηκαν γραμμές καταγραφής για την τρέχουσα ώρα.
+No production model is configured for the log-report role. Assign one in the==Δεν έχει ρυθμιστεί λειτουργικό μοντέλο για τον ρόλο log-report. Ορίστε ένα στο
+No production model is configured for the log-report role. Log report generation stays inactive until a model is assigned in the==Δεν έχει ρυθμιστεί λειτουργικό μοντέλο για τον ρόλο log-report. Η δημιουργία αναφορών παραμένει ανενεργή μέχρι να οριστεί μοντέλο στο
+Feeds:==Ροές:
+JSON==JSON
+RSS==RSS
+The report directory does not exist yet. Reports will appear here after the scheduler has generated the first completed hourly report.==Ο κατάλογος αναφοράς δεν υπάρχει ακόμα. Οι αναφορές θα εμφανίζονται εδώ αφού ο προγραμματιστής δημιουργήσει την πρώτη ολοκληρωμένη ωριαία αναφορά.
+×==×
+Report generation in progress …==Δημιουργία αναφορών σε εξέλιξη …
+the report below is completed live while the model is writing==η παρακάτω αναφορά ολοκληρώνεται ζωντανά ενώ το μοντέλο γράφει
+No generated log reports were found.==Δεν βρέθηκαν δημιουργημένες αναφορές καταγραφής.
+#-----------------------------
+
+#File: MessageSend_p.html
+#---------------------------
+"Enter"=="Εισάγω"
+"Preview"=="Πρεμιέρα"
+Send message==Αποστολή μηνύματος
+The peer does not respond. It was now removed from the peer-list.==Ο συνομήλικος δεν ανταποκρίνεται. Τώρα αφαιρέθηκε από τη λίστα ομοτίμων.
+Your Message==Το μήνυμά σας
+Subject:==Θέμα:
+Text:==Κείμενο:
+The peer is alive but cannot respond. Sorry.==Ο συνομήλικος είναι ζωντανός αλλά δεν μπορεί να ανταποκριθεί. Συγνώμη.
+Preview message==Προεπισκόπηση μηνύματος
+The message has not been sent yet!==Το μήνυμα δεν έχει σταλεί ακόμα!
+Message:==Μήνυμα:
+Your message has been sent. The target peer responded:==Το μήνυμά σας έχει σταλεί. Ο ομότιμος στόχος απάντησε:
+The target peer is alive but did not receive your message. Sorry.==Ο ομότιμος στόχος είναι ζωντανός αλλά δεν έλαβε το μήνυμά σας. Συγνώμη.
+Here is a copy of your message, so you can copy it to save it for further attempts:==Ακολουθεί ένα αντίγραφο του μηνύματός σας, ώστε να μπορείτε να το αντιγράψετε για να το αποθηκεύσετε για περαιτέρω προσπάθειες:
+#-----------------------------
+
+#File: Messages_p.html
+#---------------------------
+"RSS"=="RSS"
+"Compose"=="Συνθέτω"
+Messages==Μηνύματα
+Compose Message==Σύνταξη μηνύματος
+Send message to peer==Στείλτε μήνυμα σε peer
+Date==Ημερομηνία
+From==Από
+To==Να
+Subject==Θέμα
+Action==Δράση
+view==θέα
+reply==απάντηση
+delete==διαγράφω
+From:==Από:
+To:==Να:
+Date:==Ημερομηνία:
+Subject:==Θέμα:
+Message:==Μήνυμα:
+Action:==Δράση:
+inbox==inbox
+#-----------------------------
+
+#File: Network.html
+#---------------------------
+"API"=="API"
+"Search"=="Ερευνα"
+"https supported"=="https υποστηρίζεται"
+"Type: Junior | Contact: passive"=="Τύπος: Junior | Επαφή: παθητική"
+"Junior passive"=="Junior παθητικό"
+"Type: Junior | Contact: direct"=="Τύπος: Junior | Επικοινωνία: απευθείας"
+"Junior direct"=="Junior direct"
+"Type: Junior | Contact: offline"=="Τύπος: Junior | Επικοινωνία: εκτός σύνδεσης"
+"Junior offline"=="Junior εκτός σύνδεσης"
+"Type: Senior | Contact: passive"=="Τύπος: Senior | Επαφή: παθητική"
+"senior passive"=="ανώτερος παθητικός"
+"Type: Senior | Contact: direct"=="Τύπος: Senior | Επικοινωνία: απευθείας"
+"Senior direct"=="Ανώτερος άμεσος"
+"Type: Senior | Contact: offline"=="Τύπος: Senior | Επικοινωνία: εκτός σύνδεσης"
+"Senior offline"=="Ανώτερος εκτός σύνδεσης"
+"Type: Principal | Contact: passive | Seed download: possible"=="Τύπος: Κύριο | Επικοινωνία: παθητική | Λήψη σπόρων: δυνατή"
+"Principal passive"=="Κύρια παθητική"
+"Type: Principal | Contact: direct | Seed download: possible"=="Τύπος: Κύριο | Επικοινωνία: απευθείας | Λήψη σπόρων: δυνατή"
+"Principal active"=="Κύριος ενεργός"
+"Type: Principal | Contact: offline | Seed download: ?"=="Τύπος: Κύριο | Επικοινωνία: εκτός σύνδεσης | Λήψη σπόρων: ?"
+"Principal offline"=="Κύριος εκτός σύνδεσης"
+"Accept Crawl: no"=="Αποδοχή ανίχνευσης: όχι"
+"no crawl"=="όχι σύρσιμο"
+"Accept Crawl: yes"=="Αποδοχή Crawl: ναι"
+"crawl possible"=="η ανίχνευση είναι δυνατή"
+"no DHT receive"=="όχι DHT λήψη"
+"DHT Receive: yes"=="DHT Λήψη: ναι"
+"DHT receive enabled"=="Η λήψη DHT ενεργοποιήθηκε"
+"Profile updated"=="Το προφίλ ενημερώθηκε"
+"Wiki updated"=="Το Wiki ενημερώθηκε"
+"Blog updated"=="Το ιστολόγιο ενημερώθηκε"
+"Crawl"=="Αργή πορεία"
+"The YaCy Network"=="Το Δίκτυο YaCy"
+"Type: Virgin"=="Τύπος: Παρθένος"
+"Virgin"=="Παρθένα"
+"Type: Junior"=="Τύπος: Junior"
+"Junior"=="Κατώτερος"
+"Type: Senior"=="Τύπος: Ανώτερος"
+"Senior"=="Αρχαιότερος"
+"Type: Principal"=="Τύπος: Κύριος"
+"Principal"=="Κύριος"
+"Crawl enabled"=="Η ανίχνευση ενεργοποιήθηκε"
+"DHT Receive: no"=="DHT Λήψη: όχι"
+"DHT Receive enabled"=="DHT Η λήψη ενεργοποιήθηκε"
+"add Peer"=="προσθέστε Peer"
+"contact current peer from this peer"=="επικοινωνήστε με τον τρέχοντα ομότιμο από αυτόν τον ομότιμο"
+YaCy Network==YaCy Δίκτυο
+Network Overview==Επισκόπηση δικτύου
+Active Principal and Senior Peers==Ενεργός Principal and Senior Peers
+Passive Senior Peers==Παθητικό Senior Peers
+Junior (fragment) Peers==Junior (fragment) Peers
+Network History==Ιστορικό Δικτύου
+The information that is presented on this page can also be retrieved as XML.==Οι πληροφορίες που παρουσιάζονται σε αυτήν τη σελίδα μπορούν επίσης να ανακτηθούν ως XML.
+Click the API icon to see the XML.==Κάντε κλικ στο εικονίδιο API για να δείτε το XML.
+Manually contacting Peer==Μη αυτόματη επικοινωνία με τον Peer
+Search for a peername (RegExp allowed)==Αναζήτηση ονόματος ομοτίμου (το RegExp επιτρέπεται)
+Hash==Χασίσι
+Name==Ονομα
+Info==Πληροφορίες
+Release==Ελευθέρωση
+Age==Ηλικία
+con/h ==con/h
+PPM==PPM
+QPH==QPH
+Last Seen==Τελευταία Προβλήθηκε
+UTC Offset==UTC Offset
+Uptime==Χρόνος λειτουργίας
+Links==Εδαφος διά παιγνίδι γκολφ
+RWIs==RWIs
+URLs for Remote Crawl==URL for Remote Crawl
+Sent DHT Word Chunks==Στάλθηκαν DHT Τεμάχια λέξεων
+Sent URLs==Απεσταλμένα URL
+Received DHT Word Chunks==Λήφθηκαν DHT Word Chunks
+Received URLs==Λήφθηκαν URL
+Location==Τοποθεσία
+user agent ==πράκτορας χρήστη
+send Message/ show Profile/ edit Wiki/ browse Blog==αποστολή μηνύματος/ εμφάνιση προφίλ/ επεξεργασία Wiki/ περιήγηση ιστολογίου
+Network==Δίκτυο
+Online Peers==Online Peers
+Number of Documents==Αριθμός Εγγράφων
+Indexing Speed: Pages Per Minute (PPM)==Ταχύτητα ευρετηρίασης: Σελίδες ανά λεπτό (PPM)
+Query Frequency: Queries Per Hour (QPH)==Συχνότητα ερωτημάτων: Queries ανά ώρα (QPH)
+Last Hour==Τελευταία ώρα
+Today==Σήμερα
+Last Week==Τελευταία Εβδομάδα
+Last Month==Τελευταίος Μήνας
+Now==Τώρα
+Active Senior==Ενεργός ανώτερος
+Passive Senior==Παθητικός ανώτερος
+Junior (fragment)==Junior (θραύσμα)
+This Peer==Αυτό το Peer
+Your Peer:==Ο συνομήλικός σας:
+Version==Εκδοχή
+UTC==UTC
+URLs for Remote Crawl==Διευθύνσεις URL για Απομακρυσμένη ανίχνευση
+Sent DHT Word Chunks==Sent DHT Word Chunks
+Received DHT Word Chunks==Λήφθηκαν DHT κομμάτια λέξεων
+Known Seeds==Γνωστοί Σπόροι
+Connects per hour==Συνδέεται ανά ώρα
+Indexing PPM==Ευρετηρίαση PPM
+QPH (public local)==QPH (δημόσιο τοπικό)
+QPH (remote)==QPH (απομακρυσμένο)
+dark green font==σκούρο πράσινο γραμματοσειρά
+senior/principal peers==ανώτεροι/principal συνομήλικοι
+light green font==ανοιχτό πράσινο γραμματοσειρά
+passive peers==παθητικούς συνομηλίκους
+pink font==ροζ γραμματοσειρά
+junior peers==κατώτεροι συνομήλικοι
+red point==κόκκινο σημείο
+this peer==αυτός ο συνομήλικος
+grey waves==γκρίζα κύματα
+crawling activity==ερπυστική δραστηριότητα
+green radiation==πράσινη ακτινοβολία
+strong query activity==ισχυρή δραστηριότητα ερωτημάτων
+red lines==κόκκινες γραμμές
+DHT-out==DHT-έξω
+green lines==πράσινες γραμμές
+DHT-in==DHT-in
+Peer Hash==Peer Hash
+Peer IP==Ομότιμος IP
+Peer Port==Peer Port
+Contacting current peer from another:==Επικοινωνία με τον τρέχοντα ομότιμο από άλλον:
+ip:port==ip:port
+Count of Connected Senior Peers in the last two days, scale = 1h==Αριθμός συνδεδεμένων ηλικιωμένων συνομηλίκων τις τελευταίες δύο ημέρες, κλίμακα = 1 ώρα
+Count of all Active Peers Per Day in the last week, scale = 1d==Αριθμός όλων των ενεργών συνομηλίκων ανά ημέρα την τελευταία εβδομάδα, κλίμακα = 1 ημέρα
+Count of all Active Peers Per Week in the last 30d, scale = 7d==Αριθμός όλων των ενεργών συνομηλίκων ανά εβδομάδα τις τελευταίες 30 ημέρες, κλίμακα = 7 ημέρες
+Count of all Active Peers Per Month in the last 365d, scale = 30d==Αριθμός όλων των ενεργών συνομηλίκων ανά μήνα τις τελευταίες 365 ημέρες, κλίμακα = 30 ημέρες
+#-----------------------------
+
+#File: News.html
+#---------------------------
+"Incoming News"=="Εισερχόμενα Νέα"
+"Processed News"=="Επεξεργασμένα Νέα"
+"Outgoing News"=="Εξερχόμενα Νέα"
+"Published News"=="Δημοσιευμένα Νέα"
+Overview==Επισκόπηση
+Incoming News==Εισερχόμενα Ειδήσεις
+Processed News==Επεξεργασμένα Ειδήσεις
+Outgoing News==Εξερχόμενες Ειδήσεις
+Published News==Δημοσιεύτηκαν Ειδήσεις
+This is the YaCyNews system (currently under testing).==Αυτό είναι το σύστημα YaCyNews (επί του παρόντος υπό δοκιμή).
+The news service is controlled by several entry points:==Η υπηρεσία ειδήσεων ελέγχεται από πολλά σημεία εισόδου:
+A crawl start with activated remote indexing will automatically create a news entry.==Μια έναρξη ανίχνευσης με ενεργοποιημένη απομακρυσμένη ευρετηρίαση θα δημιουργήσει αυτόματα μια καταχώριση ειδήσεων.
+Other peers may use this information to prevent double-crawls from the same start point.==Άλλοι συνομήλικοι μπορούν να χρησιμοποιήσουν αυτές τις πληροφορίες για να αποτρέψουν διπλές ανιχνεύσεις από το ίδιο σημείο εκκίνησης.
+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' (προφίλ).
+Publishing of added or modified translation for the user interface. Other peers may include it in their local translation list.==Δημοσίευση προστιθέμενης ή τροποποιημένης μετάφρασης για τη διεπαφή χρήστη. Άλλοι συνομήλικοι μπορεί να το συμπεριλάβουν στην τοπική λίστα μεταφράσεων τους.
+More news services will follow.==Θα ακολουθήσουν περισσότερες υπηρεσίες ειδήσεων.
+Above you can see four menus:==Παραπάνω μπορείτε να δείτε τέσσερα μενού:
+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==Μπορείτε να επεξεργαστείτε αυτές τις ειδήσεις με ένα κουμπί στη σελίδα για να αφαιρέσετε την εμφάνισή τους από τη σελίδα IndexCreate and Network
+you can stop the broadcast if you want.==μπορείτε να σταματήσετε την εκπομπή αν θέλετε.
+Originator==Δημιουργός
+Created==Δημιουργήθηκε
+Category==Κατηγορία
+Received==Ελήφθη
+Distributed==Διανεμήθηκε
+Attributes==Γνωρίσματα
+#-----------------------------
+
+#File: PerformanceConcurrency_p.html
+#---------------------------
+Performance of Concurrent Processes==Εκτέλεση Παράλληλων Διαδικασιών
+serverProcessor Objects==Αντικείμενα επεξεργαστή διακομιστή
+Thread==Νήμα
+Queue Size Current==Μέγεθος ουράς Τρέχον
+Queue Size Maximum==Μέγεθος ουράς Μέγιστο
+Executors: Current Number of Threads==Εκτελεστές: Τρέχον αριθμός νημάτων
+Concurrency: Maximum Number of Threads==Ταυτόχρονα: Μέγιστος αριθμός νημάτων
+Children==Παιδιά
+Average Block Time Reading==Μέσος όρος Χρόνος αποκλεισμού Reading
+Average Exec Time==Μέσος Χρόνος εκτέλεσης
+Average Block Time Writing==Μέσος όρος Χρόνος αποκλεισμού Writing
+Total Cycles==Σύνολο Κύκλοι
+Full Description==Πλήρης περιγραφή
+#-----------------------------
+
+#File: PerformanceMemory_p.html
+#---------------------------
+"PerformanceGraph"=="Γράφημα Απόδοσης"
+Performance Settings for Memory==Ρυθμίσεις απόδοσης για τη μνήμη
+refresh graph==ανανέωση γραφήματος
+simulate short memory status==προσομοίωση κατάστασης μικρής μνήμης
+use Standard Memory Strategy==χρησιμοποιήστε Standard Memory Strategy
+Memory Usage==Χρήση Μνήμης
+Type==Τύπος
+After Startup==Μετά την Εκκίνηση
+After Initializations before GC==Μετά από αρχικοποιήσεις πριν από το GC
+After Initializations after GC==Μετά από αρχικοποιήσεις μετά από GC
+Now==Τώρα
+before GC==πριν από το GC
+after GC==μετά το ΓΚ
+Description==Περιγραφή
+Max==Μέγ
+maximum memory that the JVM will attempt to use==μέγιστη μνήμη που θα επιχειρήσει να χρησιμοποιήσει το JVM
+Available==Διαθέσιμος
+total available memory including free for the JVM within maximum==συνολική διαθέσιμη μνήμη συμπεριλαμβανομένης της δωρεάν για το JVM εντός του μέγιστου
+Total==Σύνολο
+total memory taken from the OS==συνολική μνήμη που λαμβάνεται από το λειτουργικό σύστημα
+Free==Δωρεάν
+free memory in the JVM within total amount==ελεύθερη μνήμη στο JVM εντός του συνολικού ποσού
+Used==Μεταχειρισμένος
+used memory in the JVM within total amount==χρησιμοποιημένη μνήμη στο JVM εντός της συνολικής ποσότητας
+Table RAM Index==Πίνακας RAM Ευρετήριο
+Table==Τραπέζι
+Size==Μέγεθος
+Key==Κλειδί
+Value==Αξία
+Chunk Size==Μέγεθος κομματιού
+Used Memory==Μεταχειρισμένη Μνήμη
+Object Index Caches==Κρυφές μνήμες ευρετηρίου αντικειμένων
+Needed Memory==Απαιτείται Μνήμη
+Other Caching Structures==Άλλες δομές προσωρινής αποθήκευσης
+Hit==Επιτυχία
+Miss==Δεσποινίδα
+Insert==Εισάγω
+Delete==Διαγραφή
+DNSCache/Hit==DNSCache/Hit
+(ARC)==(ΤΟΞΟ)
+DNSCache/Miss==DNSCache/Miss
+DNSNoCache==DNSNoCache
+HashBlacklistedCache==HashBlacklistedCache
+Search Event Cache==Αναζήτηση στην κρυφή μνήμη συμβάντων
+#-----------------------------
+
+#File: PerformanceQueues_p.html
+#---------------------------
+"Submit New Delay Values"=="Υποβολή νέων τιμών καθυστέρησης"
+"Re-set to default"=="Επαναφορά στην προεπιλογή"
+"When the system load average is over the specified value, that type of remote search request is not used to fill search results."=="Όταν ο μέσος όρος φόρτωσης συστήματος υπερβαίνει την καθορισμένη τιμή, αυτός ο τύπος αιτήματος απομακρυσμένης αναζήτησης δεν χρησιμοποιείται για τη συμπλήρωση των αποτελεσμάτων αναζήτησης."
+"Reverse Word Index"=="Ευρετήριο αντίστροφης λέξης"
+"Submit New Values"=="Υποβολή νέων τιμών"
+"Enter New Cache Size"=="Εισαγάγετε νέο μέγεθος προσωρινής μνήμης"
+"Enter new Threadpool Configuration"=="Εισαγάγετε τη νέα διαμόρφωση Threadpool"
+"Total maximum number of simultaneously open connections in the pool"=="Συνολικός μέγιστος αριθμός ταυτόχρονων ανοιχτών συνδέσεων στην πισίνα"
+"Number of connections currently being used to execute requests."=="Αριθμός συνδέσεων που χρησιμοποιούνται αυτήν τη στιγμή για την εκτέλεση αιτημάτων."
+"Number of reusable idle connections"=="Αριθμός επαναχρησιμοποιήσιμων συνδέσεων αδράνειας"
+"Number of connection requests being blocked awaiting a free connection"=="Αριθμός αιτημάτων σύνδεσης που έχουν αποκλειστεί σε αναμονή δωρεάν σύνδεσης"
+Performance Settings of Queues and Processes==Ρυθμίσεις απόδοσης ουρών και διεργασιών
+Scheduled tasks overview and waiting time settings:==Επισκόπηση προγραμματισμένων εργασιών και ρυθμίσεις χρόνου αναμονής:
+Thread==Νήμα
+Queue Size==Μέγεθος ουράς
+Total Block Time==Σύνολο Χρόνος αποκλεισμού
+Total Sleep Time==Συνολικός Χρόνος ύπνου
+Total Exec Time==Συνολικός Χρόνος εκτέλεσης
+Total Cycles==Σύνολο Κύκλοι
+Idle Cycles==Idle Cycles
+Busy Cycles==Απασχολημένος Κύκλοι
+Short Mem Cycles==Σύντομη μνήμη Κύκλοι
+High CPU Cycles==Υψηλός CPU Κύκλοι
+Sleep Time per Cycle (millis)==Χρόνος ύπνου ανά κύκλο (χιλιοστά)
+Exec Time per Busy-Cycle (millis)==Ώρα εκτέλεσης ανά Απασχολημένο Κύκλο (χιλιοστά)
+Memory Use per Busy-Cycle (kbytes)==Χρήση μνήμης ανά απασχολημένος-Κύκλος (kbyte)
+Delay between idle loops==Καθυστέρηση μεταξύ βρόχων αδράνειας
+Delay between busy loops==Καθυστέρηση μεταξύ busy loops
+Minimum of Required Memory==Ελάχιστη Απαιτούμενη μνήμη
+Maximum of System-Load==Μέγιστο System-Load
+Full Description==Πλήρης περιγραφή
+milliseconds==χιλιοστά του δευτερολέπτου
+kbytes==kbyte
+load==φορτίο
+Changes take effect immediately==Οι αλλαγές τίθενται σε ισχύ αμέσως
+Remote search requests:==Αιτήματα απομακρυσμένης αναζήτησης:
+Type==Τύπος
+Maximum system load==Μέγιστο φορτίο συστήματος
+RWI==RWI
+Search requests performed on remote peers distributed Reverse Word Index==Τα αιτήματα αναζήτησης που πραγματοποιήθηκαν σε απομακρυσμένους ομότιμους κατανεμήθηκαν το Reverse Word Index
+Solr==Solr
+Search requests performed on remote peers Solr indexes==Αιτήματα αναζήτησης που πραγματοποιήθηκαν σε απομακρυσμένους ομότιμους ευρετήρια Solr
+Cache Settings:==Ρυθμίσεις προσωρινής μνήμης:
+RAM Cache==Μνήμη μνήμης RAM
+Description==Περιγραφή
+Words in RAM cache: (Size in KBytes)==Λέξεις στη μνήμη RAM: (Μέγεθος σε KByte)
+This is the current size of the word caches.==Αυτό είναι το τρέχον μέγεθος της κρυφής μνήμης λέξεων.
+The indexing cache speeds up the indexing process, the DHT cache holds indexes temporary for approval.==Η κρυφή μνήμη ευρετηρίου επιταχύνει τη διαδικασία δημιουργίας ευρετηρίου, η κρυφή μνήμη DHT διατηρεί προσωρινά ευρετήρια για έγκριση.
+The maximum of this caches can be set below.==Το μέγιστο αυτής της κρυφής μνήμης μπορεί να οριστεί παρακάτω.
+Maximum URLs currently assigned to one cached word:==Μέγιστες διευθύνσεις URL που έχουν εκχωρηθεί αυτήν τη στιγμή σε μία αποθηκευμένη στην κρυφή λέξη:
+This is the maximum size of URLs assigned to a single word cache entry.==Αυτό είναι το μέγιστο μέγεθος των διευθύνσεων URL που έχουν εκχωρηθεί σε μία μόνο καταχώρηση κρυφής μνήμης λέξης.
+If this is a big number, it shows that the caching works efficiently.==Εάν αυτός είναι ένας μεγάλος αριθμός, δείχνει ότι η προσωρινή αποθήκευση λειτουργεί αποτελεσματικά.
+Maximum age of a word:==Μέγιστη ηλικία λέξης:
+This is the maximum age of a word in an index in minutes.==Αυτή είναι η μέγιστη ηλικία μιας λέξης σε ένα ευρετήριο σε λεπτά.
+Minimum age of a word:==Ελάχιστη ηλικία λέξης:
+This is the minimum age of a word in an index in minutes.==Αυτή είναι η ελάχιστη ηλικία μιας λέξης σε ένα ευρετήριο σε λεπτά.
+Maximum number of words in cache:==Μέγιστος αριθμός λέξεων στην κρυφή μνήμη:
+This is is the number of word indexes that shall be held in the==Αυτός είναι ο αριθμός των ευρετηρίων λέξεων που θα διατηρούνται στο
+ram cache during indexing. When YaCy is shut down, this cache must be==ram cache κατά τη δημιουργία ευρετηρίου. Όταν η YaCy τερματίζεται, αυτή η προσωρινή μνήμη πρέπει να είναι
+flushed to disc; this may last some minutes.==ξεπλυθεί σε δίσκο? αυτό μπορεί να διαρκέσει μερικά λεπτά.
+Thread Pool Settings:==Ρυθμίσεις ομάδας νημάτων:
+Thread Pool==Πισίνα με νήματα
+maximum Active==μέγιστο Ενεργό
+current Active==τρέχουσα Ενεργή
+Outgoing connections pools settings :==Ρυθμίσεις πισίνας εξερχόμενων συνδέσεων :
+Connection Pool==Πισίνα σύνδεσης
+Total maximum==Συνολικό μέγιστο
+Current statistics==Τρέχουσες στατιστικές
+Active==Ενεργός
+Idle==Αεργος
+Pending==Εκκρεμής
+General==Γενικός
+Remote Solr servers==Απομακρυσμένοι Solr διακομιστές
+#-----------------------------
+
+#File: PerformanceSearch_p.html
+#---------------------------
+"Search event picture"=="Αναζήτηση εικόνας συμβάντος"
+Search Sequence Timing==Χρονισμός ακολουθίας αναζήτησης
+Timing results of latest search request:==Αποτελέσματα χρονισμού του τελευταίου αιτήματος αναζήτησης:
+Query==Ερώτηση
+Event==Συμβάν
+Comment==Σχόλιο
+Time==Φορά
+Delta (ms)==Δέλτα (ms)
+Duration (ms)==Διάρκεια (ms)
+Result-Count==Αποτέλεσμα-Αριθμός
+The network picture below shows how the latest search query was solved by asking corresponding peers in the DHT:==Η παρακάτω εικόνα δικτύου δείχνει πώς επιλύθηκε το πιο πρόσφατο ερώτημα αναζήτησης ρωτώντας τους αντίστοιχους ομότιμους στο DHT:
+red -> request list alive==κόκκινο -> λίστα αιτημάτων ζωντανή
+green -> request has terminated==πράσινο -> αίτημα τερματίστηκε
+grey -> the search target hash order position(s) (more targets if a dht partition is used)==γκρι -> οι θέσεις παραγγελιών κατακερματισμού στόχου αναζήτησης (περισσότεροι στόχοι εάν χρησιμοποιείται διαμέρισμα dht)
+#-----------------------------
+
+#File: Performance_p.html
+#---------------------------
+"PerformanceGraph"=="Γράφημα Απόδοσης"
+"Java Virtual Machine"=="Java Εικονική μηχανή"
+"Set"=="Σειρά"
+"Restart now"=="Κάντε επανεκκίνηση τώρα"
+"Amount of space (in Mebibytes) that should be kept free as steady state"=="Ποσότητα χώρου (σε Mebibytes) που θα πρέπει να διατηρείται ελεύθερος ως σταθερή κατάσταση"
+"Mebibyte"=="Mebibyte"
+"Amount of space (in Megabytes) that should at least be kept free as hard limit"=="Ποσότητα χώρου (σε Megabyte) που θα πρέπει τουλάχιστον να διατηρηθεί ελεύθερος ως σκληρό όριο"
+"Distributed Hash Table"=="Κατανεμημένος πίνακας κατακερματισμού"
+"Free space disk autoregulation info"=="Πληροφορίες αυτορρύθμισης δίσκου ελεύθερου χώρου"
+"Maximum amount of space (in Mebibytes) that should be used as steady state"=="Μέγιστη ποσότητα χώρου (σε Mebibytes) που πρέπει να χρησιμοποιείται ως σταθερή κατάσταση"
+"Maximum amount of space (in Mebibytes) that should be used as hard limit"=="Μέγιστος χώρος (σε Mebibytes) που πρέπει να χρησιμοποιηθεί ως σκληρό όριο"
+"Used space disk autoregulation info"=="Πληροφορίες αυτορρύθμισης δίσκου χρησιμοποιημένου χώρου"
+"Random Access Memory"=="Μνήμη τυχαίας πρόσβασης"
+"Proper state info"=="Κατάλληλες πληροφορίες για το κράτος"
+"Exhausted state info"=="Εξαντλημένες πληροφορίες κατάστασης"
+"Reset state"=="Επαναφορά κατάστασης"
+"Manually reset to 'proper' state"=="Μη αυτόματη επαναφορά στην «κατάλληλη» κατάσταση"
+"Amount of memory (in Mebibytes) that should at least be free for proper operation"=="Ποσότητα μνήμης (σε Mebibytes) που θα πρέπει τουλάχιστον να είναι ελεύθερη για σωστή λειτουργία"
+"Save"=="Αποθήκευση"
+"Enter New Parameters"=="Εισαγάγετε νέες παραμέτρους"
+Performance Settings==Ρυθμίσεις απόδοσης
+refresh graph==ανανέωση γραφήματος
+Memory Settings==Ρυθμίσεις μνήμης
+Memory reserved for JVM==Η μνήμη έχει δεσμευτεί για JVM
+MByte==MByte
+Accepted change. This will take effect after restart of YaCy.==Αποδεκτή αλλαγή. Αυτό θα τεθεί σε ισχύ μετά την restart από YaCy.
+Restart now==Κάντε επανεκκίνηση τώρα
+Resource Observer==Παρατηρητής Πόρων
+Free space disk==Ελεύθερος χώρος στο δίσκο
+Steady-state minimum==Ελάχιστο σταθερής κατάστασης
+MiB. Disable crawls when free space is below.==MiB. Απενεργοποίηση ανιχνεύσεων όταν ο ελεύθερος χώρος είναι μικρότερος.
+Absolute minimum==Το απόλυτο ελάχιστο
+MiB. Disable DHT-in when free space is below.==MiB. Απενεργοποίηση DHT-in όταν ο ελεύθερος χώρος είναι μικρότερος.
+Autoregulate==Αυτόματη ρύθμιση
+when absolute minimum limit has been reached.==όταν έχει επιτευχθεί το απόλυτο ελάχιστο όριο.
+The autoregulation task performs the following sequence of operations, stopping once free space disk is over the steady-state value :==Η εργασία αυτορρύθμισης εκτελεί την ακόλουθη σειρά λειτουργιών, σταματώντας μόλις ο ελεύθερος χώρος υπερβεί την τιμή σταθερής κατάστασης:
+delete old releases==διαγράψτε παλιές εκδόσεις
+delete logs==διαγραφή αρχείων καταγραφής
+delete robots.txt table==διαγράψτε τον πίνακα robots.txt
+delete news==διαγραφή ειδήσεων
+clear HTCACHE==καθαρίστε το HTCACHE
+clear citations==σαφείς παραπομπές
+throw away large crawl queues==πετάξτε τις μεγάλες ουρές ανίχνευσης
+cut away too large RWIs==κόψτε πολύ μεγάλο RWIs
+Used space disk==Χρησιμοποιημένος χώρος δίσκος
+Steady-state maximum==Μέγιστο σταθερής κατάστασης
+MiB. Disable crawls when used space is over.==MiB. Απενεργοποίηση ανιχνεύσεων όταν ο χρησιμοποιημένος χώρος είναι μεγαλύτερος.
+Absolute maximum==Απόλυτο μέγιστο
+MiB. Disable DHT-in when used space is over.==MiB. Απενεργοποίηση DHT-in όταν ο χρησιμοποιημένος χώρος είναι μεγαλύτερος.
+when absolute maximum limit has been reached.==όταν έχει επιτευχθεί το απόλυτο μέγιστο όριο.
+The autoregulation task performs the following sequence of operations, stopping once used space disk is below the steady-state value:==Η εργασία αυτορρύθμισης εκτελεί την ακόλουθη σειρά λειτουργιών, η διακοπή της λειτουργίας του διαστήματος που χρησιμοποιείται είναι κάτω από την τιμή σταθερής κατάστασης:
+RAM==RAM
+Memory state :==Κατάσταση μνήμης:
+proper==κατάλληλος
+Enough memory is available for proper operation.==Υπάρχει αρκετή μνήμη για σωστή λειτουργία.
+exhausted==εξαντλημένο
+Within the last eleven minutes, at least four operations have tried to request memory that would have reduced free space within the minimum required.==Μέσα στα τελευταία έντεκα λεπτά, τουλάχιστον τέσσερις λειτουργίες προσπάθησαν να ζητήσουν μνήμη που θα μείωνε τον ελεύθερο χώρο εντός του ελάχιστου απαιτούμενου.
+Minimum required==Ελάχιστο απαιτούμενο
+MiB free space. Disable DHT-in below.==MiB ελεύθερου χώρου. Απενεργοποίηση DHT-in κάτω από αυτή την τιμή.
+Online Caution Settings:==Ρυθμίσεις Προσοχής στο Διαδίκτυο:
+This is the time that the crawler idles when the proxy is accessed, or a local or remote search is done.==Αυτή είναι η στιγμή που ο ανιχνευτής είναι σε αδράνεια όταν γίνεται πρόσβαση στον διακομιστή μεσολάβησης ή γίνεται τοπική ή απομακρυσμένη αναζήτηση.
+The delay is extended by this time each time the proxy is accessed afterwards.==Η καθυστέρηση παρατείνεται αυτή τη φορά κάθε φορά που γίνεται πρόσβαση στο διακομιστή μεσολάβησης στη συνέχεια.
+This shall improve performance of the affected process (proxy or search).==Αυτό θα βελτιώσει την απόδοση της επηρεαζόμενης διαδικασίας (διακομιστής μεσολάβησης ή αναζήτηση).
+seconds since last proxy/local-search/remote-search access.)==δευτερόλεπτα από την τελευταία πρόσβαση διακομιστή μεσολάβησης/local-search/remote-search.)
+Online Caution Case==Online Υπόθεση Προσοχής
+indexer delay (milliseconds) after case occurrence==καθυστέρηση του δείκτη (χιλιοστά του δευτερολέπτου) μετά την εμφάνιση κρουσμάτων
+Proxy:==Πληρεξούσιο:
+Local Search:==Τοπική αναζήτηση:
+Remote Search:==Απομακρυσμένη αναζήτηση:
+Changes take effect immediately==Οι αλλαγές τίθενται σε ισχύ αμέσως
+#-----------------------------
+
+#File: ProxyIndexingMonitor_p.html
+#---------------------------
+"Set proxy profile"=="Ορισμός προφίλ διακομιστή μεσολάβησης"
+Indexing with Proxy==Ευρετηρίαση με Proxy
+YaCy can be used to 'scrape' content from pages that pass the integrated caching HTTP proxy.==Το YaCy μπορεί να χρησιμοποιηθεί για την «απόξεση» περιεχομένου από σελίδες που περνούν τον ενσωματωμένο διακομιστή μεσολάβησης HTTP προσωρινής αποθήκευσης.
+When scraping proxy pages then no personal or protected page is indexed;==Κατά την απόξεση σελίδων μεσολάβησης, τότε καμία προσωπική ή προστατευμένη σελίδα δεν ευρετηριάζεται.
+those pages are detected by properties in the HTTP header (like Cookie-Use, or HTTP Authorization)==αυτές οι σελίδες εντοπίζονται από ιδιότητες στην κεφαλίδα HTTP (όπως Χρήση cookie ή HTTP Εξουσιοδότηση)
+or by POST-Parameters (either in URL or as HTTP protocol) and automatically excluded from indexing.==ή με POST-Parameters (είτε σε URL είτε ως πρωτόκολλο HTTP) και εξαιρούνται αυτόματα από την ευρετηρίαση.
+Proxy Auto Config:==Αυτόματη διαμόρφωση διακομιστή μεσολάβησης:
+this controls the proxy auto configuration script for browsers at http://localhost:8090/autoconfig.pac==αυτό ελέγχει το σενάριο αυτόματης διαμόρφωσης διακομιστή μεσολάβησης για προγράμματα περιήγησης στο http://localhost:8090/autoconfig.pac
+whether the proxy should only be used for .yacy-Domains==εάν ο διακομιστής μεσολάβησης θα πρέπει να χρησιμοποιείται μόνο για .yacy-Domains
+Proxy pre-fetch setting:==Ρύθμιση προανάκτησης διακομιστή μεσολάβησης:
+this is an automated html page loading procedure that takes actual proxy-requested==Αυτή είναι μια αυτοματοποιημένη διαδικασία φόρτωσης σελίδας html που λαμβάνει το πραγματικό αίτημα του διακομιστή μεσολάβησης
+URLs as crawling start points for crawling.==Διευθύνσεις URL ως σημεία έναρξης ανίχνευσης για ανίχνευση.
+Prefetch Depth==Βάθος προανάκτησης
+A prefetch of 0 means no prefetch; a prefetch of 1 means to prefetch all==Μια προφόρτωση 0 σημαίνει ότι δεν υπάρχει προφόρτωση. μια προφόρτωση του 1 σημαίνει προανάκτηση όλων
+embedded URLs, but since embedded image links are loaded by the browser==ενσωματωμένες διευθύνσεις URL, αλλά εφόσον οι σύνδεσμοι ενσωματωμένων εικόνων φορτώνονται από το πρόγραμμα περιήγησης
+this means that only embedded href-anchors are prefetched additionally.==Αυτό σημαίνει ότι μόνο οι ενσωματωμένες αγκυρώσεις href-anchor προαναφέρονται επιπλέον.
+Store to Cache==Αποθήκευση στην προσωρινή μνήμη
+It is almost always recommended to set this on. The only exception is that you have another caching proxy running as secondary proxy and YaCy is configured to used that proxy in proxy-proxy - mode.==Συνιστάται σχεδόν πάντα να το ενεργοποιήσετε. Η μόνη εξαίρεση είναι ότι έχετε έναν άλλο διακομιστή μεσολάβησης προσωρινής αποθήκευσης που εκτελείται ως δευτερεύων διακομιστής μεσολάβησης και ο YaCy έχει ρυθμιστεί να χρησιμοποιεί αυτόν τον διακομιστή μεσολάβησης σε λειτουργία διακομιστή μεσολάβησης.
+Do Local Text-Indexing==Κάντε τοπική ευρετηρίαση κειμένου
+If this is on, all pages (except private content) that passes the proxy is indexed.==Εάν είναι ενεργοποιημένο, όλες οι σελίδες (εκτός από το ιδιωτικό περιεχόμενο) που περνούν τον διακομιστή μεσολάβησης ευρετηριάζονται.
+Do Local Media-Indexing==Κάντε ευρετηρίαση τοπικών μέσων
+This is the same as for Local Text-Indexing, but switches only the indexing of media content on.==Αυτό είναι το ίδιο με το Local Text-Indexing, αλλά ενεργοποιεί μόνο τη δημιουργία ευρετηρίου περιεχομένου πολυμέσων.
+Do Remote Indexing==Κάντε απομακρυσμένη ευρετηρίαση
+If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Εάν είναι επιλεγμένο, ο ανιχνευτής θα επικοινωνήσει με άλλους συνομηλίκους και θα τους χρησιμοποιήσει ως απομακρυσμένους ευρετηρητές για την ανίχνευση σας.
+If you need your crawling results locally, you should switch this off.==Εάν χρειάζεστε τα αποτελέσματα ανίχνευσης τοπικά, θα πρέπει να το απενεργοποιήσετε.
+Only senior and principal peers can initiate or receive remote crawls.==Μόνο οι ανώτεροι και κύριοι συνομήλικοι μπορούν να ξεκινήσουν ή να λάβουν απομακρυσμένες ανιχνεύσεις.
+Please note that this setting only take effect for a prefetch depth greater than 0.==Λάβετε υπόψη ότι αυτή η ρύθμιση ισχύει μόνο για βάθος προανάκτησης μεγαλύτερο από 0.
+Proxy generally==Proxy γενικά
+Path==Μονοπάτι
+The path where the pages are stored (max. length 300)==Η διαδρομή όπου αποθηκεύονται οι σελίδες (μέγ. μήκος 300)
+Size==Μέγεθος
+The size in MB of the cache.==Το μέγεθος σε MB της κρυφής μνήμης.
+The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.==Το αρχείο DATA/PLASMADB/crawlProfiles0.db λείπει ή είναι κατεστραμμένο.
+Please delete that file and restart.==Διαγράψτε αυτό το αρχείο και κάντε επανεκκίνηση.
+Caching is now==Η προσωρινή αποθήκευση είναι τώρα
+off==μακριά από
+on==επί
+Local Text Indexing is now==Η τοπική ευρετηρίαση κειμένου είναι τώρα
+Local Media Indexing is now==Η ευρετηρίαση τοπικών μέσων είναι τώρα
+Remote Indexing is now==Η απομακρυσμένη ευρετηρίαση είναι τώρα
+Changes will take effect after restart only.==Οι αλλαγές θα τεθούν σε ισχύ μόνο μετά την επανεκκίνηση.
+You can see a snapshot of recently indexed pages==Μπορείτε να δείτε ένα στιγμιότυπο σελίδων που έχουν καταχωρηθεί πρόσφατα στο ευρετήριο
+#-----------------------------
+
+#File: QuickCrawlLink_p.html
+#---------------------------
+Quickly adding Bookmarks:==Γρήγορη προσθήκη σελιδοδεικτών:
+Simply drag and drop the link shown below to your Browsers Toolbar/Link-Bar.==Απλώς σύρετε και αποθέστε τον σύνδεσμο που φαίνεται παρακάτω στη γραμμή εργαλείων του προγράμματος περιήγησής σας/Link-Bar.
+If you click on it while browsing, the currently viewed website will be inserted into the YaCy crawling queue for indexing.==Εάν κάνετε κλικ σε αυτόν κατά την περιήγηση, ο ιστότοπος που προβάλλετε αυτήν τη στιγμή θα εισαχθεί στην ουρά ανίχνευσης YaCy για δημιουργία ευρετηρίου.
+Crawl with YaCy==Ανίχνευση με YaCy
+Title:==Τίτλος:
+Link:==Σύνδεσμος:
+Status:==Κατάσταση:
+URL successfully added to Crawler Queue==Το URL προστέθηκε με επιτυχία στην ουρά ανιχνευτή
+Malformed URL==Κακόμορφο URL
+#-----------------------------
+
+#File: RAGConfig_p.html
+#---------------------------
+Wire RAG Retrieval==Σύρμα RAG Ανάκτηση
+Tune how YaCy constructs prompts and search queries for Retrieval Augmented Generation.==Συντονίστε τον τρόπο με τον οποίο το YaCy κατασκευάζει προτροπές και ερωτήματα αναζήτησης για την Επαυξημένη Γενιά Ανάκτησης.
+System Prompt==Ερώτηση συστήματος
+This is sent as the system message for chats. Keep it concise and friendly.==Αυτό αποστέλλεται ως μήνυμα συστήματος για συνομιλίες. Κρατήστε το συνοπτικό και φιλικό.
+User Retrieval Prefix==Πρόθεμα ανάκτησης χρήστη
+Prepended before attached search snippets in RAG mode to tell the LLM how to use them.==Προετοιμάστηκε πριν από τα συνημμένα αποσπάσματα αναζήτησης σε λειτουργία RAG για να πει στον LLM πώς να τα χρησιμοποιήσει.
+Query Generator Prefix==Πρόθεμα δημιουργίας ερωτημάτων
+Prompt given to the model that generates search queries from user requests.==Δόθηκε προτροπή στο μοντέλο που δημιουργεί ερωτήματα αναζήτησης από αιτήματα χρηστών.
+Search Document Max Length==Μέγιστο μήκος εγγράφου αναζήτησης
+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.==Μέγιστο μήκος χαρακτήρων του εγγράφου εικονικής αναζήτησης που χρησιμοποιείται ως συνημμένο RAG και ως αποτέλεσμα του εργαλείου αναζήτησης. Περιεχόμενο πέρα από αυτό το όριο κόβεται. Προεπιλογή: 30000.
+Save RAG Settings==Αποθηκεύστε τις ρυθμίσεις RAG
+#-----------------------------
+
+#File: RankingRWI_p.html
+#---------------------------
+"info"=="πληροφορίες"
+"Set as Default Ranking"=="Ορισμός ως προεπιλεγμένη κατάταξη"
+"Re-Set to Built-In Ranking"=="Ρυθμίστε ξανά την ενσωματωμένη κατάταξη"
+RWI Ranking Configuration==RWI Διαμόρφωση κατάταξης
+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 attribute 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==Μετά την κατάταξη
+#-----------------------------
+
+#File: RankingSolr_p.html
+#---------------------------
+"Set Boost Function"=="Ρυθμίστε τη λειτουργία Boost"
+"Re-Set to default"=="Ρυθμίστε ξανά στην προεπιλογή"
+"Set Boost Query"=="Ορισμός ερωτήματος ενίσχυσης"
+"Set Filter Query"=="Ορισμός ερωτήματος φίλτρου"
+"Set Field Boosts"=="Ορίστε αυξήσεις πεδίου"
+Solr Ranking Configuration==Solr Διαμόρφωση κατάταξης
+These are ranking attributes for Solr. This ranking applies for internal and remote (P2P or shard) Solr access.==Αυτά είναι χαρακτηριστικά κατάταξης για Solr. Αυτή η κατάταξη ισχύει για εσωτερική και απομακρυσμένη (P2P ή θραύσμα) Solr πρόσβαση.
+Select a profile:==Επιλέξτε ένα προφίλ:
+Boost Function==Λειτουργία Boost
+A Boost Function can combine numeric values from the result document to produce a number which is multiplied with the score value from the query result.==Μια συνάρτηση ενίσχυσης μπορεί να συνδυάσει αριθμητικές τιμές από το έγγραφο αποτελεσμάτων για να παράγει έναν αριθμό που πολλαπλασιάζεται με την τιμή βαθμολογίας από το αποτέλεσμα του ερωτήματος.
+Example: to order by date, use "recip(ms(NOW,last_modified),3.16e-11,1,1)", to order by crawldepth, use "div(100,add(crawldepth_i,1))".==Παράδειγμα: για παραγγελία κατά ημερομηνία, χρησιμοποιήστε το "recip(ms(NOW,last_modified),3.16e-11,1,1)", για να παραγγείλετε κατά βάθος ανίχνευσης, χρησιμοποιήστε το "div(100,add(crawldepth_i,1))".
+Boost Query==Ενίσχυση ερωτήματος
+The Boost Query is attached to every query. Use this to statically boost specific content in the index.==Το Boost Query επισυνάπτεται σε κάθε ερώτημα. Χρησιμοποιήστε το για να ενισχύσετε στατικά συγκεκριμένο περιεχόμενο στο ευρετήριο.
+Example: "fuzzy_signature_unique_b:true^100000.0f" means that documents, identified as 'double' are ranked very bad and appended to the end of all results (because the unique are ranked high).==Παράδειγμα: "fuzzy_signature_unique_b:true^100000.0f" σημαίνει ότι τα έγγραφα που προσδιορίζονται ως "διπλό" κατατάσσονται πολύ κακά και προστίθενται στο τέλος όλων των αποτελεσμάτων (επειδή τα μοναδικά κατατάσσονται ψηλά).
+Filter Query==Ερώτημα φίλτρου
+The Filter Query is attached to every query. Use this to statically add a selection criteria to reduce the set of results.==Το ερώτημα φίλτρου επισυνάπτεται σε κάθε ερώτημα. Χρησιμοποιήστε το για να προσθέσετε στατικά κριτήρια επιλογής για να μειώσετε το σύνολο των αποτελεσμάτων.
+Example: "http_unique_b:true AND www_unique_b:true" will filter out all results where urls appear also with/without http(s) and/or with/without 'www.' prefix.==Παράδειγμα: Το "http_unique_b:true AND www_unique_b:true" θα φιλτράρει όλα τα αποτελέσματα όπου οι διευθύνσεις URL εμφανίζονται επίσης με/without http(s) και/or με/without 'www.' πρόθεμα.
+Solr Boosts==Solr Ενισχύει
+field not in local index (boost has no effect)==Το πεδίο δεν βρίσκεται σε τοπικό ευρετήριο (η ενίσχυση δεν έχει αποτέλεσμα)
+#-----------------------------
+
+#File: RegexTest.html
+#---------------------------
+Regex Test==Τεστ Regex
+Test String==Δοκιμαστική συμβολοσειρά
+Regular Expression==Κανονική έκφραση
+Result==Αποτέλεσμα
+no match==κανένα ταίρι
+match==αγώνας
+#-----------------------------
+
+#File: RemoteCrawl_p.html
+#---------------------------
+"Save"=="Αποθήκευση"
+Remote Crawler==Απομακρυσμένος ανιχνευτής
+The remote crawler is a process that requests urls from other peers.==Ο απομακρυσμένος ανιχνευτής είναι μια διαδικασία που ζητά url από άλλους ομοτίμους.
+Peers offer remote-crawl urls if the flag 'Do Remote Indexing'==Οι ομότιμοι προσφέρουν url απομακρυσμένης ανίχνευσης εάν η σημαία "Πραγματοποιήστε απομακρυσμένη ευρετηρίαση"
+is switched on when a crawl is started.==ενεργοποιείται όταν ξεκινά μια ανίχνευση.
+Remote Crawler Configuration==Διαμόρφωση απομακρυσμένου ανιχνευτή
+Your peer cannot accept remote crawls because you need senior or principal peer status for that!==Ο ομότιμος σας δεν μπορεί να δεχτεί απομακρυσμένες ανιχνεύσεις επειδή χρειάζεστε την ιδιότητα του ανώτερου ή του κύριου ομότιμου για αυτό!
+Accept Remote Crawl Requests==Αποδεχτείτε αιτήματα απομακρυσμένης ανίχνευσης
+Perform web indexing upon request of another peer.==Εκτελέστε ευρετηρίαση ιστού κατόπιν αιτήματος άλλου ομοτίμου.
+Load with a maximum of==Φόρτωση με μέγιστο
+pages per minute==σελίδες ανά λεπτό
+Peers offering remote crawl URLs==Ομότιμοι που προσφέρουν διευθύνσεις URL απομακρυσμένης ανίχνευσης
+If the remote crawl option is switched on, then this peer will load URLs from the following remote peers:==Εάν η επιλογή απομακρυσμένης ανίχνευσης είναι ενεργοποιημένη, τότε αυτός ο ομότιμος θα φορτώσει διευθύνσεις URL από τους ακόλουθους απομακρυσμένους ομότιμους:
+Name==Ονομα
+URLs for Remote Crawl==Διευθύνσεις URL για Remote Crawl
+Release==Ελευθέρωση
+PPM==PPM
+QPH==QPH
+Last Seen==Τελευταία Προβλήθηκε
+UTC Offset==UTC Offset
+Uptime==Χρόνος λειτουργίας
+Links==Εδαφος διά παιγνίδι γκολφ
+RWIs==RWIs
+Age==Ηλικία
+#-----------------------------
+
+#File: SearchAccessRate_p.html
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+"Set defaults"=="Ορισμός προεπιλογών"
+"Reset to defaults settings"=="Επαναφορά στις προεπιλεγμένες ρυθμίσεις"
+limitations==περιορισμούς
+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==Μπορείτε να διαμορφώσετε εδώ περιορισμούς στο ποσοστό πρόσβασης σε αυτήν τη διεπαφή ομότιμης αναζήτησης από μη πιστοποιημένους χρήστες και χρήστες χωρίς δικαίωμα εκτεταμένης αναζήτησης
+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.==Όταν ένας χρήστης με περιορισμένα δικαιώματα (χωρίς έλεγχο ταυτότητας ή χωρίς εκτεταμένο δικαίωμα αναζήτησης) υπερβαίνει ένα όριο, η αναζήτηση αποκλείεται.
+Max searches in 3s==Μέγιστη αναζήτηση σε 3 δευτερόλεπτα
+Max searches in 1mn==Μέγιστη αναζήτηση σε 1 λεπτό
+Max searches in 10mn==Μέγιστες αναζητήσεις σε 10 λεπτά
+Peer-to-peer search==Ομότιμη αναζήτηση
+Access rate limitations to the peer-to-peer search mode.==Πρόσβαση στους περιορισμούς ποσοστού στη λειτουργία αναζήτησης peer-to-peer.
+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.==Όταν ένας χρήστης με περιορισμένα δικαιώματα (χωρίς έλεγχο ταυτότητας ή χωρίς εκτεταμένο δικαίωμα αναζήτησης) υπερβαίνει ένα όριο, το εύρος αναζήτησης επανέρχεται μόνο σε αυτό το τοπικό ευρετήριο ομότιμων.
+Max searches in 10mn==Μέγιστες αναζητήσεις σε 10 λεπτά
+Peer-to-peer search with JavaScript results resorting==Ομότιμη αναζήτηση με JavaScript καταφυγή αποτελεσμάτων
+Access rate limitations to the peer-to-peer search mode with browser-side JavaScript results resorting enabled==Περιορισμοί ποσοστού πρόσβασης στη λειτουργία αναζήτησης peer-to-peer με ενεργοποιημένη την καταφυγή αποτελεσμάτων JavaScript από την πλευρά του προγράμματος περιήγησης
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, results resorting becomes only applicable on demand, server-side.==Όταν ένας χρήστης με περιορισμένα δικαιώματα (χωρίς έλεγχο ταυτότητας ή εκτεταμένο δικαίωμα αναζήτησης) υπερβαίνει ένα όριο, η καταφυγή αποτελεσμάτων εφαρμόζεται μόνο κατ' απαίτηση, από την πλευρά του διακομιστή.
+Remote snippet load==Απομακρυσμένη φόρτωση αποσπάσματος
+Limitations on snippet loading from remote websites.==Περιορισμοί στη φόρτωση αποσπασμάτων από απομακρυσμένους ιστότοπους.
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the snippets fetch strategy falls back to 'CACHEONLY'==Όταν ένας χρήστης με περιορισμένα δικαιώματα (χωρίς έλεγχο ταυτότητας ή εκτεταμένο δικαίωμα αναζήτησης) υπερβαίνει ένα όριο, η στρατηγική ανάκτησης αποσπασμάτων επιστρέφει στο "CACHEONLY"
+Max searches in 3s==Μέγιστη αναζήτηση σε 3 δευτερόλεπτα
+Changes will take effect immediately.==Οι αλλαγές θα τεθούν σε ισχύ αμέσως.
+#-----------------------------
+
+#File: ServerScannerList.html
+#---------------------------
+"Add Selected Servers to Crawler"=="Προσθήκη επιλεγμένων διακομιστών στο πρόγραμμα ανίχνευσης"
+Network Scanner Monitor==Οθόνη σαρωτή δικτύου
+The following servers can be searched:==Μπορείτε να αναζητήσετε τους ακόλουθους διακομιστές:
+Available server within the given IP range==Διαθέσιμος διακομιστής εντός του δεδομένου εύρους IP
+Protocol==Πρωτόκολλο
+IP==IP
+URL==URL
+Access==Πρόσβαση
+Process==Διαδικασία
+inaccessible==απρόσιτος
+empty==αδειάζω
+granted==χορηγείται
+denied==αρνήθηκε
+not in index==όχι σε ευρετήριο
+indexed==ευρετηριασμένα
+#-----------------------------
+
+#File: SettingsAck_p.html
+#---------------------------
+Settings Receipt:==Απόδειξη ρυθμίσεων:
+No information has been submitted==Δεν έχουν υποβληθεί πληροφορίες
+Nothing changed.==Τίποτα δεν άλλαξε.
+Error with submitted information.==Σφάλμα με τις πληροφορίες που υποβλήθηκαν.
+The user name must be given.==Πρέπει να δοθεί το όνομα χρήστη.
+Your request cannot be processed. Nothing changed.==Δεν είναι δυνατή η επεξεργασία του αιτήματός σας. Τίποτα δεν άλλαξε.
+The password redundancy check failed. You have probably mistyped your password.==Ο έλεγχος πλεονασμού κωδικού πρόσβασης απέτυχε. Μάλλον έχετε πληκτρολογήσει λάθος τον κωδικό πρόσβασής σας.
+Shutting down. Application will terminate after working off all crawling tasks.==Τερματισμός λειτουργίας. Η εφαρμογή θα τερματιστεί αφού ολοκληρωθούν όλες οι εργασίες ανίχνευσης.
+Your administration account setting has been made.==Η ρύθμιση του λογαριασμού διαχείρισης έχει γίνει.
+Your proxy access setting has been changed.==Η ρύθμιση πρόσβασης διακομιστή μεσολάβησης έχει αλλάξει.
+Your proxy account check has been disabled.==Ο έλεγχος του λογαριασμού σας μεσολάβησης έχει απενεργοποιηθεί.
+The new proxy IP filter is set to==Το νέο φίλτρο διακομιστή μεσολάβησης IP έχει οριστεί σε
+The proxy port is:==Η θύρα διακομιστή μεσολάβησης είναι:
+Port rebinding will be done in a few seconds.==Η επαναδέσμευση της θύρας θα γίνει σε λίγα δευτερόλεπτα.
+Your proxy access setting has been changed.==Η ρύθμιση πρόσβασης διακομιστή μεσολάβησης έχει αλλάξει.
+If you open any public web page through the proxy, you must log-in.==Εάν ανοίξετε οποιαδήποτε δημόσια ιστοσελίδα μέσω του διακομιστή μεσολάβησης, πρέπει να συνδεθείτε.
+Port rebinding will be done in a view seconds.==Η επανασύνδεση της θύρας θα γίνει σε δευτερόλεπτα προβολής.
+Auto pop-up of the Status page is now disabled==Το αυτόματο αναδυόμενο παράθυρο της σελίδας κατάστασης είναι πλέον disabled
+Auto pop-up of the Status page is now enabled==Το αυτόματο αναδυόμενο παράθυρο της σελίδας κατάστασης είναι πλέον enabled
+The Peer Name is:==Το όνομα του ομοτίμου είναι:
+Your static Ip(or DynDns) is:==Η στατική σας IP(ή DynDns) είναι:
+Your public port is:==Το δημόσιο λιμάνι σας είναι:
+Seed Settings changed.==Οι Ρυθμίσεις Seed άλλαξαν.
+You are now a principal peer.==Είστε πλέον κύριος συνομήλικος.
+Seed Settings changed, but something is wrong.==Οι ρυθμίσεις σπόρου άλλαξαν, αλλά κάτι δεν πάει καλά.
+Seed Uploading was deactivated automatically.==Η μεταφόρτωση σπόρων απενεργοποιήθηκε αυτόματα.
+Please return to the settings page and modify the data.==Επιστρέψτε στη σελίδα ρυθμίσεων και τροποποιήστε τα δεδομένα.
+The remote-proxy setting has been changed==Η ρύθμιση του απομακρυσμένου διακομιστή μεσολάβησης έχει αλλάξει
+The new setting is effective immediately, you don't need to re-start.==Η νέα ρύθμιση τίθεται σε ισχύ αμέσως, δεν χρειάζεται να την επανεκκινήσετε.
+The submitted peer name is already used by another peer. Please choose a different name. The Peer name has not been changed.==Το υποβληθέν όνομα ομότιμου χρησιμοποιείται ήδη από άλλο ομότιμο. Επιλέξτε διαφορετικό όνομα. Το όνομα του Peer δεν έχει αλλάξει.
+Your Peer Language is:==Η γλώσσα των ομοτίμων σας είναι:
+The submitted peer name is not well-formed. Please choose a different name. The Peer name has not been changed.==Το υποβληθέν όνομα ομότιμου δεν είναι καλά διαμορφωμένο. Επιλέξτε διαφορετικό όνομα. Το όνομα του Peer δεν έχει αλλάξει.
+Peer names must not contain characters other than (a-z, A-Z, 0-9, '-', '_') and must not be longer than 80 characters.==Τα ονόματα ομότιμων δεν πρέπει να περιέχουν άλλους χαρακτήρες εκτός από (a-z, A-Z, 0-9, '-', '_') και δεν πρέπει να υπερβαίνουν τους 80 χαρακτήρες.
+Seed Upload method was changed successfully.==Η μέθοδος μεταφόρτωσης σπόρων άλλαξε με επιτυχία.
+Seed Upload Method:==Μέθοδος μεταφόρτωσης σπόρων:
+Seed File URL:==Αρχείο Seed URL:
+Your proxy networking settings have been changed.==Οι ρυθμίσεις δικτύωσης διακομιστή μεσολάβησης έχουν αλλάξει.
+Transparent Proxy Support is:==Η υποστήριξη διαφανούς διακομιστή μεσολάβησης είναι:
+Always Fresh is:==Το Always Fresh είναι:
+Send via header is:==Η αποστολή μέσω κεφαλίδας είναι:
+Send X-Forwarded-For header is:==Η κεφαλίδα Send X-Forwarded-For είναι:
+Your message forwarding settings have been changed.==Οι ρυθμίσεις προώθησης μηνυμάτων σας έχουν αλλάξει.
+Message Forwarding Support is:==Η υποστήριξη προώθησης μηνυμάτων είναι:
+Message Forwarding Command:==Εντολή προώθησης μηνυμάτων:
+Recipient Address:==Διεύθυνση παραλήπτη:
+Invalid IP-Number filter:==Μη έγκυρο IP-Φίλτρο αριθμών:
+Your crawler settings have been changed.==Οι ρυθμίσεις του προγράμματος ανίχνευσης έχουν αλλάξει.
+Generic Settings:==Γενικές ρυθμίσεις:
+Crawler timeout:==Χρονικό όριο ανίχνευσης:
+http Crawler Settings:==http Ρυθμίσεις ανιχνευτή:
+Maximum HTTP Filesize:==Μέγιστο HTTP μέγεθος αρχείου:
+ftp Crawler Settings:==Ρυθμίσεις ανιχνευτή ftp:
+Maximum FTP Filesize:==Μέγιστο FTP μέγεθος αρχείου:
+smb Crawler Settings:==Ρυθμίσεις ανιχνευτή smb:
+Maximum SMB Filesize:==Μέγιστο SMB μέγεθος αρχείου:
+Maximum file Filesize:==Μέγιστο μέγεθος αρχείου:
+Invalid crawler timeout value:==Μη έγκυρη τιμή χρονικού ορίου ανίχνευσης:
+Invalid maximum file size for http crawler:==Μη έγκυρο μέγιστο μέγεθος αρχείου για το πρόγραμμα ανίχνευσης http:
+Invalid maximum file size for ftp crawler:==Μη έγκυρο μέγιστο μέγεθος αρχείου για το πρόγραμμα ανίχνευσης ftp:
+HTTPS port is now:==Η θύρα HTTPS είναι τώρα:
+the change will take effect after restart.==η αλλαγή θα τεθεί σε ισχύ μετά την επανεκκίνηση.
+URL Proxy settings have been saved.==URL Οι ρυθμίσεις διακομιστή μεσολάβησης έχουν αποθηκευτεί.
+Debug/Analysis settings have been saved.==Οι ρυθμίσεις εντοπισμού σφαλμάτων/Analysis έχουν αποθηκευτεί.
+Referrer policy settings have been saved.==Οι ρυθμίσεις πολιτικής παραπομπής έχουν αποθηκευτεί.
+The ports are now configured as follows (active on next start).==Οι θύρες έχουν πλέον διαμορφωθεί ως εξής (ενεργές στην επόμενη εκκίνηση).
+HTTP port==Θύρα HTTP
+HTTPS port==Θύρα HTTPS
+Shutdown port==Θύρα τερματισμού λειτουργίας
+Compression settings have been saved.==Οι ρυθμίσεις συμπίεσης έχουν αποθηκευτεί.
+HTTP client settings have been saved.==Οι ρυθμίσεις πελάτη HTTP έχουν αποθηκευτεί.
+Your need to restart YaCy to activate the changes.==Πρέπει να κάνετε επανεκκίνηση του YaCy για να ενεργοποιήσετε τις αλλαγές.
+#-----------------------------
+
+#File: Settings_Crawler.inc
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+Crawler Settings==Ρυθμίσεις ανιχνευτή
+Generic Crawler Settings:==Γενικές ρυθμίσεις ανιχνευτή:
+Timeout:==Timeout:
+HTTP Crawler Settings:==HTTP Ρυθμίσεις ανιχνευτή:
+Maximum Filesize:==Μέγιστο μέγεθος αρχείου:
+Please note that if the crawler uses content compression, this limit is used to check the compressed content size.==Λάβετε υπόψη ότι εάν ο ανιχνευτής χρησιμοποιεί συμπίεση περιεχομένου, αυτό το όριο χρησιμοποιείται για τον έλεγχο του μεγέθους του συμπιεσμένου περιεχομένου.
+FTP Crawler Settings:==Ρυθμίσεις προγράμματος ανίχνευσης FTP:
+SMB Crawler Settings:==Ρυθμίσεις προγράμματος ανίχνευσης SMB:
+Local File Crawler Settings:==Ρυθμίσεις τοπικού προγράμματος ανίχνευσης αρχείων:
+Changes will take effect immediately.==Οι αλλαγές θα τεθούν σε ισχύ αμέσως.
+#-----------------------------
+
+#File: Settings_Debug.inc
+#---------------------------
+"Extensible Markup Language"=="Επεκτάσιμη γλώσσα σήμανσης"
+"Distributed Hash Table"=="Κατανεμημένος πίνακας κατακερματισμού"
+"Reverse Word Index"=="Ευρετήριο αντίστροφης λέξης"
+"Submit"=="Υποτάσσομαι"
+Debug/Analysis Settings==Εντοπισμός σφαλμάτων/Analysis Ρυθμίσεις
+Be careful with these advanced settings, they can deeply affect the search process! You probably don't need to modify them for normal use.==Να είστε προσεκτικοί με αυτές τις προηγμένες ρυθμίσεις, μπορούν να επηρεάσουν βαθιά τη διαδικασία αναζήτησης! Μάλλον δεν χρειάζεται να τα τροποποιήσετε για κανονική χρήση.
+Solr communication==επικοινωνία Solr
+Enable remote Solr binary responses==Ενεργοποίηση απομακρυσμένων Solr δυαδικών αποκρίσεων
+When checked (default), responses from remote Solr index instances are transferred using an efficient binary data format.==Όταν είναι επιλεγμένο (προεπιλογή), οι απαντήσεις από απομακρυσμένες περιπτώσεις ευρετηρίου Solr μεταφέρονται χρησιμοποιώντας μια αποτελεσματική μορφή δυαδικών δεδομένων.
+When unchecked, responses are transferred as XML,==Όταν δεν είναι επιλεγμένο, οι απαντήσεις μεταφέρονται ως XML,
+which can be captured and parsed by any external XML aware tool for debug/analysis.==που μπορεί να καταγραφεί και να αναλυθεί από οποιοδήποτε εξωτερικό XML εργαλείο που γνωρίζει για εντοπισμό σφαλμάτων/analysis.
+Search data sources==Αναζήτηση πηγών δεδομένων
+By default all data sources are enabled to obtain search results,==Από προεπιλογή, όλες οι πηγές δεδομένων είναι ενεργοποιημένες για τη λήψη αποτελεσμάτων αναζήτησης,
+but you can here disable one or more ones to check the behavior of the process.==αλλά μπορείτε εδώ να απενεργοποιήσετε ένα ή περισσότερα για να ελέγξετε τη συμπεριφορά της διαδικασίας.
+Local DHT/RWI==Τοπικό DHT/RWI
+Local Solr index==Τοπικό ευρετήριο Solr
+Remote DHT/RWI==Απομακρυσμένο DHT/RWI
+Remote Solr indexes==Απομακρυσμένα ευρετήρια Solr
+Search testing tweaks==Τροποποιήσεις δοκιμών αναζήτησης
+Override DHT peers selection by local only==Παράκαμψη DHT επιλογής ομοτίμων μόνο από τοπικό
+When checked, the remote DHT peers selection is overridden and only the local peer is selected to provide remote DHT search results.==Όταν είναι επιλεγμένο, η απομακρυσμένη επιλογή ομότιμων DHT παρακάμπτεται και επιλέγεται μόνο ο τοπικός ομότιμος για την παροχή απομακρυσμένων DHT αποτελεσμάτων αναζήτησης.
+Override Solr peers selection by local only==Παράκαμψη επιλογής ομότιμων Solr μόνο κατά τοπικό
+When checked, the remote Solr peers selection is overridden and only this peer is selected to provide remote Solr search results.==Όταν είναι επιλεγμένο, η απομακρυσμένη επιλογή ομότιμων Solr παρακάμπτεται και επιλέγεται μόνο αυτή η ομότιμη για να παρέχει απομακρυσμένα Solr αποτελέσματα αναζήτησης.
+Ranking information==Πληροφορίες κατάταξης
+Show search results scores==Εμφάνιση βαθμολογιών αποτελεσμάτων αναζήτησης
+When checked, the raw ranking score value is displayed for each text search result in the HTML results page.==Όταν είναι επιλεγμένο, η μη επεξεργασμένη τιμή βαθμολογίας κατάταξης εμφανίζεται για κάθε αποτέλεσμα αναζήτησης κειμένου στη σελίδα αποτελεσμάτων HTML.
+Text snippets statistics==Στατιστικά αποσπασμάτων κειμένου
+Enable text snippets statistics==Ενεργοποίηση στατιστικών αποσπασμάτων κειμένου
+Changes will take effect immediately.==Οι αλλαγές θα τεθούν σε ισχύ αμέσως.
+#-----------------------------
+
+#File: Settings_HttpClient.inc
+#---------------------------
+"Transport Layer Security"=="Ασφάλεια επιπέδου μεταφοράς"
+"Server Name Indication"=="Ένδειξη ονόματος διακομιστή"
+"Submit"=="Υποτάσσομαι"
+HTTP client settings==HTTP ρυθμίσεις πελάτη
+You can configure here some advanced settings of the clients used by YaCy to handle outgoing HTTP connections.==Μπορείτε να διαμορφώσετε εδώ ορισμένες προηγμένες ρυθμίσεις των πελατών που χρησιμοποιούνται από YaCy για να χειρίζονται εξερχόμενες συνδέσεις HTTP.
+About Server Name Indication (SNI):==Σχετικά με την ένδειξη ονόματος διακομιστή (SNI):
+this extension to the TLS 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==αυτή η επέκταση στο πρωτόκολλο TLS πρέπει να είναι ενεργοποιημένη για τη φόρτωση ορισμένων διευθύνσεων URL https (για ιστότοπους που αναπτύσσονται με διαφορετικά πιστοποιητικά και ονόματα κεντρικών υπολογιστών στην ίδια κοινόχρηστη διεύθυνση IP), διαφορετικά η φόρτωση αποτυγχάνει με σφάλματα όπως π.χ.
+Received fatal alert: handshake_failure==Λήψη μοιραίας ειδοποίησης: handshake_failure
+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==Ωστόσο, μπορεί να χρειαστεί να το απενεργοποιήσετε για να φορτωθούν ορισμένες διευθύνσεις URL https που εξυπηρετούνται από παλιούς και εσφαλμένα διαμορφωμένους διακομιστές ιστού, διαφορετικά η φόρτωση αποτυγχάνει με εξαίρεση
+javax.net.ssl.SSLProtocolException: "handshake alert: unrecognized_name"==javax.net.ssl.SSLProtocolException: "handshake alert: unrecognized_name"
+Controlling SNI extension activation can also be done with the JVM option==Ο έλεγχος της ενεργοποίησης της επέκτασης SNI μπορεί επίσης να γίνει με την επιλογή JVM
+jsse.enableSNIExtension==jsse.enableSNIExtension
+, 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).==, αλλά σε αυτήν την περίπτωση απαιτείται επανεκκίνηση διακομιστή όταν θέλετε να τροποποιήσετε τη ρύθμιση και δεν είναι προσαρμόσιμη ανά πελάτη http (γενικά ή για απομακρυσμένο Solr).
+General HTTP client==Γενικός πελάτης HTTP
+Configuration settings for the main HTTP client, used notably to crawl websites and communicate with other YaCy peers.==Ρυθμίσεις διαμόρφωσης για τον κύριο πελάτη HTTP, που χρησιμοποιούνται κυρίως για την ανίχνευση ιστοτόπων και την επικοινωνία με άλλους YaCy ομότιμους.
+Enable SNI extension to TLS==Ενεργοποίηση SNI επέκτασης σε TLS
+Remote Solr HTTP client==Απομακρυσμένος πελάτης Solr HTTP
+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).==Ρυθμίσεις διαμόρφωσης για το συγκεκριμένο πρόγραμμα-πελάτη HTTP που είναι αφιερωμένο σε επικοινωνίες με απομακρυσμένους διακομιστές Solr (βρίσκονται σε άλλους YaCy ομοτίμους ή ανήκουν τελικά σε αυτόν όταν έχει ρυθμιστεί να χρησιμοποιεί απομακρυσμένο ευρετήριο Solr).
+Changes will take effect immediately.==Οι αλλαγές θα τεθούν σε ισχύ αμέσως.
+#-----------------------------
+
+#File: Settings_MessageForwarding.inc
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+Message Forwarding==Προώθηση μηνυμάτων
+With this settings you can activate or deactivate forwarding of yacy-messages via email.==Με αυτές τις ρυθμίσεις μπορείτε να ενεργοποιήσετε ή να απενεργοποιήσετε την προώθηση των μηνυμάτων yacy μέσω email.
+Enable message forwarding==Ενεργοποίηση προώθησης μηνυμάτων
+Enabling/Disabling message forwarding via email.==Ενεργοποίηση/Disabling προώθησης μηνυμάτων μέσω email.
+Forwarding Command==Εντολή προώθησης
+The command-line program that should be used to forward the message.==Το πρόγραμμα γραμμής εντολών που πρέπει να χρησιμοποιηθεί για την προώθηση του μηνύματος.
+e.g.:==π.χ.:
+Forwarding To==Προώθηση σε
+The recipient email-address.==Η διεύθυνση email του παραλήπτη.
+Changes will take effect immediately.==Οι αλλαγές θα τεθούν σε ισχύ αμέσως.
+#-----------------------------
+
+#File: Settings_Proxy.inc
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+Remote Proxy (optional)==Απομακρυσμένος διακομιστής μεσολάβησης (προαιρετικό)
+YaCy can use another proxy to connect to the internet. You can enter the address for the remote proxy here:==Ο YaCy μπορεί να χρησιμοποιήσει άλλο διακομιστή μεσολάβησης για να συνδεθεί στο διαδίκτυο. Μπορείτε να εισαγάγετε τη διεύθυνση για τον απομακρυσμένο διακομιστή μεσολάβησης εδώ:
+Use remote proxy==Χρησιμοποιήστε απομακρυσμένο διακομιστή μεσολάβησης
+Enables the usage of the remote proxy by yacy==Ενεργοποιεί τη χρήση του απομακρυσμένου διακομιστή μεσολάβησης από το yacy
+Use remote proxy for HTTPS==Χρήση απομακρυσμένου διακομιστή μεσολάβησης για HTTPS
+Specifies if YaCy should forward ssl connections to the remote proxy.==Καθορίζει εάν ο YaCy θα πρέπει να προωθήσει τις συνδέσεις ssl στον απομακρυσμένο διακομιστή μεσολάβησης.
+Remote proxy host==Απομακρυσμένος διακομιστής μεσολάβησης
+The ip address or domain name of the remote proxy==Η διεύθυνση IP ή το όνομα τομέα του απομακρυσμένου διακομιστή μεσολάβησης
+Remote proxy port==Θύρα απομακρυσμένου διακομιστή μεσολάβησης
+the port of the remote proxy==τη θύρα του απομακρυσμένου διακομιστή μεσολάβησης
+Remote proxy user==Χρήστης απομακρυσμένου διακομιστή μεσολάβησης
+Remote proxy password==Κωδικός απομακρυσμένου διακομιστή μεσολάβησης
+No-proxy addresses==Διευθύνσεις χωρίς πληρεξούσιο
+IP addresses for which the remote proxy should not be used==IP διευθύνσεις για τις οποίες δεν πρέπει να χρησιμοποιείται ο απομακρυσμένος διακομιστής μεσολάβησης
+Changes will take effect immediately.==Οι αλλαγές θα τεθούν σε ισχύ αμέσως.
+#-----------------------------
+
+#File: Settings_ProxyAccess.inc
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+"change"=="αλλαγή"
+Proxy Settings==Ρυθμίσεις διακομιστή μεσολάβησης
+Transparent Proxy==Διαφανής πληρεξούσιος
+With this you can specify if YaCy can be used as transparent proxy.==Με αυτό μπορείτε να καθορίσετε εάν ο YaCy μπορεί να χρησιμοποιηθεί ως διαφανής διακομιστής μεσολάβησης.
+Hint: On linux you can configure your firewall to transparently redirect all http traffic through yacy using this iptables rule:==Συμβουλή: Στο linux μπορείτε να διαμορφώσετε το τείχος προστασίας σας ώστε να ανακατευθύνει με διαφάνεια όλη την επισκεψιμότητα http μέσω του yacy χρησιμοποιώντας αυτόν τον κανόνα iptables:
+Always Fresh==Πάντα φρέσκο
+If unchecked, the proxy will act using Cache Fresh / Cache Stale rules. If checked, the cache is always fresh which means==Εάν δεν είναι επιλεγμένο, ο διακομιστής μεσολάβησης θα ενεργήσει χρησιμοποιώντας κανόνες Cache Fresh / Cache Stale. Εάν επιλεγεί, η κρυφή μνήμη είναι πάντα φρέσκια που σημαίνει
+that a page is never loaded again if it was already stored in the cache. However, if the page does not exist in the cache, it will be loaded in any case.==ότι μια σελίδα δεν φορτώνεται ποτέ ξανά εάν ήταν ήδη αποθηκευμένη στην κρυφή μνήμη. Ωστόσο, εάν η σελίδα δεν υπάρχει στην κρυφή μνήμη, θα φορτωθεί σε κάθε περίπτωση.
+Send "Via" Header==Αποστολή κεφαλίδας "Μέσω".
+http header according to RFC 2616 Sect 14.45.==Κεφαλίδα http σύμφωνα με το RFC 2616, Ενότητα 14.45.
+Send "X-Forwarded-For" Header==Στείλτε την κεφαλίδα "X-Forwarded-For".
+Specifies if the proxy should send the X-Forwarded-For http header.==Καθορίζει εάν ο διακομιστής μεσολάβησης θα πρέπει να στείλει την κεφαλίδα X-Forwarded-For http.
+Proxy Access Settings==Ρυθμίσεις πρόσβασης διακομιστή μεσολάβησης
+These settings configure the access method to your own http proxy and server.==Αυτές οι ρυθμίσεις διαμορφώνουν τη μέθοδο πρόσβασης στον δικό σας διακομιστή μεσολάβησης http και διακομιστή.
+All traffic is routed through one single port, for both proxy and server.==Όλη η κίνηση δρομολογείται μέσω μιας ενιαίας θύρας, τόσο για διακομιστή μεσολάβησης όσο και για διακομιστή.
+HTTPS Server Port:==HTTPS Θύρα διακομιστή:
+Server Access Restrictions==Περιορισμοί πρόσβασης διακομιστή
+You can restrict the access to this proxy/server using a two-stage security barrier:==Μπορείτε να περιορίσετε την πρόσβαση σε αυτόν τον διακομιστή μεσολάβησης/server χρησιμοποιώντας ένα φράγμα ασφαλείας δύο σταδίων:
+define an access domain with a list of granted client IP-numbers or with wildcards==ορίστε έναν τομέα πρόσβασης με μια λίστα παραχωρημένων IP-αριθμών πελάτη ή με χαρακτήρες μπαλαντέρ
+define an user account with an user:password - pair==ορίστε έναν λογαριασμό χρήστη με user:password - pair
+This is the account that restricts access to the proxy function.==Αυτός είναι ο λογαριασμός που περιορίζει την πρόσβαση στη λειτουργία διακομιστή μεσολάβησης.
+You probably don't want to share the proxy to the internet, so you should set the==Πιθανότατα δεν θέλετε να κάνετε κοινή χρήση του διακομιστή μεσολάβησης στο Διαδίκτυο, επομένως θα πρέπει να ρυθμίσετε το
+IP-Number Access Domain to a pattern that corresponds to you local intranet.==IP-Αριθμήστε τον τομέα πρόσβασης σε ένα μοτίβο που αντιστοιχεί στο τοπικό σας intranet.
+The default setting should be right in most cases. If you want, you can also set a proxy account==Η προεπιλεγμένη ρύθμιση θα πρέπει να είναι σωστή στις περισσότερες περιπτώσεις. Εάν θέλετε, μπορείτε επίσης να ορίσετε έναν λογαριασμό διακομιστή μεσολάβησης
+so that every proxy user must authenticate first, but this is rather unusual.==έτσι ώστε κάθε χρήστης μεσολάβησης πρέπει πρώτα να κάνει έλεγχο ταυτότητας, αλλά αυτό είναι μάλλον ασυνήθιστο.
+IP-Number filter==IP-Φίλτρο αριθμών
+Accounts==Λογαριασμοί
+#-----------------------------
+
+#File: Settings_Referrer.inc
+#---------------------------
+"'Referer' section from the standard IETF specification"=="Ενότητα «Παραπομπή» από την τυπική προδιαγραφή IETF"
+"Link types section at W3C HTML specification"=="Ενότητα τύπων συνδέσμων στην προδιαγραφή W3C HTML"
+"Submit"=="Υποτάσσομαι"
+Referrer Policy Settings==Ρυθμίσεις πολιτικής παραπομπής
+When loading pages and navigating through links, a web browser sends some information about the origin of the request,==Κατά τη φόρτωση σελίδων και την πλοήγηση μέσω συνδέσμων, ένα πρόγραμμα περιήγησης Ιστού στέλνει ορισμένες πληροφορίες σχετικά με την προέλευση του αιτήματος,
+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.==Οι ιστότοποι που επισκέπτεστε μπορούν να επεξεργαστούν αυτές τις πληροφορίες όπως θέλουν, επομένως αυτό μπορεί να αποτελέσει πρόβλημα απορρήτου, για παράδειγμα όταν προέρχεται από μια σελίδα που περιέχει όρους αναζήτησης στο URL της.
+This page offers some configuration settings to instruct your browser how it should fill this referrer information.==Αυτή η σελίδα προσφέρει ορισμένες ρυθμίσεις διαμόρφωσης για να καθοδηγήσει το πρόγραμμα περιήγησής σας πώς πρέπει να συμπληρώσει αυτές τις πληροφορίες παραπομπής.
+Beware that every browser behaves differently: some settings may be unsupported by your particular browser and therefore ignored.==Προσέξτε ότι κάθε πρόγραμμα περιήγησης συμπεριφέρεται διαφορετικά: ορισμένες ρυθμίσεις ενδέχεται να μην υποστηρίζονται από το συγκεκριμένο πρόγραμμα περιήγησής σας και επομένως να αγνοούνται.
+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.==Εάν ανησυχείτε πραγματικά για το απόρρητο, ελέγξτε τι πραγματικά αποστέλλεται από το πρόγραμμα περιήγησής σας χρησιμοποιώντας την ενσωματωμένη κονσόλα δικτύου εργαλείων προγραμματιστή ή με τον αναλυτή κίνησης δικτύου της επιλογής σας.
+Global policy==Παγκόσμια πολιτική
+This referrer policy applies for every page on this peer. It is set by the "meta" HTML tag.==Αυτή η πολιτική παραπομπής ισχύει για κάθε σελίδα σε αυτό το peer. Ορίζεται από την ετικέτα "meta" HTML.
+Values are sorted by decreasing privacy level.==Οι τιμές ταξινομούνται με μείωση του επιπέδου απορρήτου.
+no-referrer==χωρίς παραπομπή
+Highest privacy setting: referrer information should never be sent, even when navigating on this peer internal links.==Υψηλότερη ρύθμιση απορρήτου: οι πληροφορίες παραπομπής δεν πρέπει ποτέ να αποστέλλονται, ακόμη και κατά την πλοήγηση σε αυτούς τους εσωτερικούς συνδέσμους ομότιμους.
+Be careful with this: some websites might reject requests with no referrer.==Να είστε προσεκτικοί με αυτό: ορισμένοι ιστότοποι ενδέχεται να απορρίψουν αιτήματα χωρίς παραπομπή.
+same-origin==ίδιας καταγωγής
+Peer internal links: referrer information should be stripped from any private data and contain only this peer host name.==Εσωτερικοί σύνδεσμοι ομότιμων: οι πληροφορίες παραπομπής θα πρέπει να αφαιρεθούν από τυχόν ιδιωτικά δεδομένα και να περιέχουν μόνο αυτό το όνομα ομότιμου κεντρικού υπολογιστή.
+External links: referrer information should never be sent.==Εξωτερικοί σύνδεσμοι: δεν πρέπει ποτέ να αποστέλλονται πληροφορίες παραπομπής.
+strict-origin==αυστηρής καταγωγής
+Peer internal and external links: referrer information should be stripped from any private data and contain only this peer host name.==Εσωτερικοί και εξωτερικοί σύνδεσμοι ομοτίμων: οι πληροφορίες παραπομπής θα πρέπει να αφαιρούνται από τυχόν ιδιωτικά δεδομένα και να περιέχουν μόνο αυτό το όνομα ομότιμου κεντρικού υπολογιστή.
+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.==Περιορισμός: όταν ένας σύνδεσμος υποβαθμίζεται από μια ασφαλή σύνδεση TLS (https) σε αυτό το peer σε έναν μη ασφαλή στόχο (http), δεν πρέπει να αποστέλλονται καθόλου πληροφορίες παραπομπής.
+origin==προέλευση
+strict-origin-when-cross-origin==αυστηρή-προέλευση-όταν-διασταυρούμενη-προέλευση
+Peer internal links: referrer information should contain full URLs.==Εσωτερικοί σύνδεσμοι ομοτίμων: οι πληροφορίες παραπομπής πρέπει να περιέχουν πλήρεις διευθύνσεις URL.
+External links: referrer information should be stripped from any private data and contain only this peer host name.==Εξωτερικοί σύνδεσμοι: οι πληροφορίες παραπομπής θα πρέπει να αφαιρεθούν από τυχόν ιδιωτικά δεδομένα και να περιέχουν μόνο αυτό το όνομα ομότιμου κεντρικού υπολογιστή.
+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.==Περιορισμός: όταν ένας εξωτερικός σύνδεσμος υποβαθμίζεται από μια ασφαλή σύνδεση TLS (https) σε αυτό το peer σε έναν μη ασφαλή στόχο (http), δεν πρέπει να αποστέλλονται καθόλου πληροφορίες παραπομπής.
+origin-when-cross-origin==προέλευση-όταν-διασταυρούμενη καταγωγή
+no-referrer-when-downgrade==no-referrer-when-downgrade
+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).==Οι πληροφορίες παραπομπής θα πρέπει να περιέχουν πλήρεις διευθύνσεις URL, εκτός εάν ένας σύνδεσμος υποβαθμίζεται από μια ασφαλή σύνδεση TLS (https) σε αυτό το peer σε έναν μη ασφαλή στόχο (http).
+empty value==κενή τιμή
+Default browser behavior: it should correspond to "no-referrer-when-downgrade".==Προεπιλεγμένη συμπεριφορά προγράμματος περιήγησης: θα πρέπει να αντιστοιχεί στο "no-referrer-when-downgrade".
+unsafe-url==unsafe-url
+Unsafe setting: referrer information should always contain full URLs.==Μη ασφαλής ρύθμιση: οι πληροφορίες παραπομπής πρέπει πάντα να περιέχουν πλήρεις διευθύνσεις URL.
+Custom setting: probably manually edited, be sure this value is the desired one.==Προσαρμοσμένη ρύθμιση: πιθανώς επεξεργάστηκε χειροκίνητα, βεβαιωθείτε ότι αυτή η τιμή είναι η επιθυμητή.
+Search results links==Σύνδεσμοι αποτελεσμάτων αναζήτησης
+Add the "noreferrer" link type to search results links==Προσθέστε τον τύπο συνδέσμου "noreferrer" στους συνδέσμους αποτελεσμάτων αναζήτησης
+When checked, this overrides the global referrer policy and adds the standard "noreferrer"==Όταν είναι επιλεγμένο, αυτό παρακάμπτει την πολιτική καθολικής παραπομπής και προσθέτει το τυπικό "noreferrer"
+thus instructing the browser that it should not send any referrer information at all when visiting them.==δίνοντας έτσι εντολή στο πρόγραμμα περιήγησης ότι δεν πρέπει να στέλνει καθόλου πληροφορίες παραπομπής όταν τους επισκέπτεται.
+It is a standard HTML5 attribute value,==Είναι μια τυπική τιμή χαρακτηριστικού HTML5,
+supported by many more browsers than the meta tag: if you want a higher level of privacy but use an old or incompatible browser,==υποστηρίζεται από πολλά περισσότερα προγράμματα περιήγησης από τη μετα-ετικέτα: εάν θέλετε υψηλότερο επίπεδο απορρήτου αλλά χρησιμοποιείτε ένα παλιό ή μη συμβατό πρόγραμμα περιήγησης,
+this can be a valuable option.==αυτό μπορεί να είναι μια πολύτιμη επιλογή.
+Changes will take effect immediately.==Οι αλλαγές θα τεθούν σε ισχύ αμέσως.
+#-----------------------------
+
+#File: Settings_Seed.inc
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+"Retry Uploading"=="Δοκιμάστε ξανά τη μεταφόρτωση"
+Seed Upload Settings==Ρυθμίσεις μεταφόρτωσης σπόρων
+With these settings you can configure if you have an account on a public accessible==Με αυτές τις ρυθμίσεις μπορείτε να διαμορφώσετε εάν έχετε λογαριασμό σε δημόσιο προσβάσιμο
+server where you can host a seed-list file.==διακομιστή όπου μπορείτε να φιλοξενήσετε ένα αρχείο λίστας σποράς.
+General Settings:==Γενικές ρυθμίσεις:
+If you enable one of the available uploading methods, you will become a principal peer.==Εάν ενεργοποιήσετε μία από τις διαθέσιμες μεθόδους μεταφόρτωσης, θα γίνετε κύριος ομότιμος.
+Your peer will then upload the seed-bootstrap information periodically,==Στη συνέχεια, ο ομότιμος σας θα ανεβάζει περιοδικά τις πληροφορίες του seed-bootstrap,
+but only if there have been changes to the seed-list.==αλλά μόνο εάν έχουν γίνει αλλαγές στη λίστα σποράς.
+Upload Method==Μέθοδος μεταφόρτωσης
+Here you can specify which upload method should be used. Select 'none' to deactivate uploading.==Εδώ μπορείτε να καθορίσετε ποια μέθοδος μεταφόρτωσης θα πρέπει να χρησιμοποιηθεί. Επιλέξτε «κανένα» για να απενεργοποιήσετε τη μεταφόρτωση.
+URL==URL
+The URL that can be used to retrieve the uploaded seed file, like==Το URL που μπορεί να χρησιμοποιηθεί για την ανάκτηση του μεταφορτωμένου αρχικού αρχείου, όπως
+http://www.<my-host>.net/yacy/seed.txt'==http://www.<my-host>.net/yacy/seed.txt'
+#-----------------------------
+
+#File: Settings_Seed_UploadFile.inc
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+Store into filesystem:==Αποθήκευση στο σύστημα αρχείων:
+You must configure this if you want to store the seed-list file onto the file system.==Πρέπει να το ρυθμίσετε εάν θέλετε να αποθηκεύσετε το αρχείο της λίστας σποράς στο σύστημα αρχείων.
+File Location:==Τοποθεσία αρχείου:
+Here you can specify the path within the filesystem where the seed-list file should be stored.==Εδώ μπορείτε να καθορίσετε τη διαδρομή εντός του συστήματος αρχείων όπου θα πρέπει να αποθηκευτεί το αρχείο λίστας σποράς.
+current:==ρεύμα:
+#-----------------------------
+
+#File: Settings_Seed_UploadFtp.inc
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+Uploading via FTP:==Μεταφόρτωση μέσω FTP:
+This is the account for a FTP server where you can host a seed-list file.==Αυτός είναι ο λογαριασμός για έναν διακομιστή FTP όπου μπορείτε να φιλοξενήσετε ένα αρχείο αρχικής λίστας.
+If you set this, you will become a principal peer.==Εάν το ορίσετε αυτό, θα γίνετε κύριος ομότιμος.
+Your peer will then upload the seed-bootstrap information periodically,==Στη συνέχεια, ο ομότιμος σας θα ανεβάζει περιοδικά τις πληροφορίες του seed-bootstrap,
+but only if there had been changes to the seed-list.==αλλά μόνο εάν είχαν γίνει αλλαγές στον κατάλογο σποράς.
+Server==Υπηρέτης
+The host where you have a FTP account, like 'ftp.<my-host>.net'==Ο κεντρικός υπολογιστής στον οποίο έχετε λογαριασμό FTP, όπως "ftp.<my-host>.net"
+Path==Μονοπάτι
+The remote path on the FTP server, like 'yacy/seed.txt'. Missing sub-directories are NOT created automatically.==Η απομακρυσμένη διαδρομή στον διακομιστή FTP, όπως "yacy/seed.txt'. Οι υποκατάλογοι που λείπουν ΔΕΝ δημιουργούνται αυτόματα.
+Username==Όνομα χρήστη
+Your log-in at the FTP server==Η σύνδεσή σας στον διακομιστή FTP
+Password==Σύνθημα
+The password==Ο κωδικός πρόσβασης
+#-----------------------------
+
+#File: Settings_Seed_UploadScp.inc
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+Uploading via SCP:==Μεταφόρτωση μέσω SCP:
+This is the account for a server where you are able to login via ssh.==Αυτός είναι ο λογαριασμός ενός διακομιστή όπου μπορείτε να συνδεθείτε μέσω ssh.
+Server==Υπηρέτης
+The host where you have an account, like 'my.host.net'==Ο κεντρικός υπολογιστής στον οποίο έχετε λογαριασμό, όπως "my.host.net"
+Server Port==Διακομιστής Θύρα
+The sshd port of the host, like '22'==Η θύρα sshd του κεντρικού υπολογιστή, όπως "22"
+Path==Μονοπάτι
+The remote path on the server, like '~/yacy/seed.txt'. Missing sub-directories are NOT created automatically.==Η απομακρυσμένη διαδρομή στον διακομιστή, όπως "~/yacy/seed.txt'. Οι υποκατάλογοι που λείπουν ΔΕΝ δημιουργούνται αυτόματα.
+Username==Όνομα χρήστη
+Your log-in at the server==Η σύνδεσή σας στο διακομιστή
+Password==Σύνθημα
+The password==Ο κωδικός πρόσβασης
+#-----------------------------
+
+#File: Settings_ServerAccess.inc
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+Server Access Settings==Ρυθμίσεις πρόσβασης διακομιστή
+IP-Number filter:==IP-Φίλτρο αριθμών:
+(requires restart)==(απαιτείται επανεκκίνηση)
+Here you can restrict access to the server. By default, the access is not limited,==Εδώ μπορείτε να περιορίσετε την πρόσβαση στον διακομιστή. Από προεπιλογή, η πρόσβαση δεν είναι περιορισμένη,
+because this function is needed to spawn the p2p index-sharing function.==επειδή αυτή η συνάρτηση είναι απαραίτητη για την αναπαραγωγή της συνάρτησης κοινής χρήσης ευρετηρίου p2p.
+If you block access to your server (setting anything else than '*'), then you will also be blocked==Εάν αποκλείσετε την πρόσβαση στον διακομιστή σας (ορίζοντας οτιδήποτε άλλο εκτός από το '*'), τότε θα αποκλειστείτε επίσης
+from using other peers' indexes for search service.==από τη χρήση ευρετηρίων άλλων ομοτίμων για την υπηρεσία αναζήτησης.
+However, blocking access may be correct in enterprise environments where you only want to index your==Ωστόσο, ο αποκλεισμός της πρόσβασης μπορεί να είναι σωστός σε εταιρικά περιβάλλοντα όπου θέλετε μόνο να δημιουργήσετε ευρετήριο
+company's own web pages.==ιστοσελίδες της ίδιας της εταιρείας.
+Filter have to be entered as IP, IP range or using CIDR notation separated by comma (e.g. 192.168.1.1,2001:db8==Το φίλτρο πρέπει να εισαχθεί ως IP, IP εύρος ή χρησιμοποιώντας συμβολισμό CIDR διαχωρισμένο με κόμμα (π.χ. 192.168.1.1,2001:db8
+ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)==ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)
+further details on format see Jetty==περισσότερες λεπτομέρειες σχετικά με τη μορφή βλ. Jetty
+staticIP (optional):==staticIP (προαιρετικό):
+The staticIP can help that your peer can be reached by other peers in case that your==Το staticIP μπορεί να βοηθήσει ώστε ο συνομήλικός σας να είναι προσβάσιμος από άλλους συνομηλίκους σε περίπτωση που
+peer is behind a firewall or proxy. You can create a tunnel through the firewall/proxy==το peer βρίσκεται πίσω από ένα τείχος προστασίας ή διακομιστή μεσολάβησης. Μπορείτε να δημιουργήσετε ένα τούνελ μέσω του τείχους προστασίας/proxy
+(look out for 'tunneling through https proxy with connect command') and create==(προσέξτε για 'tunneling μέσω διακομιστή μεσολάβησης https με εντολή σύνδεσης') και δημιουργήστε
+an access point for incoming connections.==ένα σημείο πρόσβασης για εισερχόμενες συνδέσεις.
+This access address can be set here (either as IP number or domain name).==Αυτή η διεύθυνση πρόσβασης μπορεί να οριστεί εδώ (είτε ως IP αριθμός είτε ως όνομα τομέα).
+If the address of outgoing connections is equal to the address of incoming connections,==Εάν η διεύθυνση των εξερχόμενων συνδέσεων είναι ίση με τη διεύθυνση των εισερχόμενων συνδέσεων,
+you don't need to set anything here, please leave it blank.==δεν χρειάζεται να ορίσετε τίποτα εδώ, αφήστε το κενό.
+If the value you enter here does not match with this IP,==Εάν η τιμή που εισάγετε εδώ δεν ταιριάζει με αυτήν IP,
+you will not be able to access the server pages anymore.==δεν θα μπορείτε πλέον να έχετε πρόσβαση στις σελίδες του διακομιστή.
+publicPort (optional):==publicPort (προαιρετικό):
+The publicPort can help that your peer can be reached by other peers in case that your==Το publicPort μπορεί να βοηθήσει ώστε να μπορούν να προσεγγίσουν άλλους συνομηλίκους σας σε περίπτωση που
+peer is behind a reverse proxy.==ο ομότιμος βρίσκεται πίσω από έναν αντίστροφο διακομιστή μεσολάβησης.
+If the port used to access YaCy is the same port the application is listening on,==Εάν η θύρα που χρησιμοποιείται για την πρόσβαση στο YaCy είναι η ίδια θύρα στην οποία ακούει η εφαρμογή,
+fileHost:==Φιλοξενητής:
+Set this to avoid error-messages like 'proxy use not allowed / granted' on accessing your Peer by its hostname.==Ρυθμίστε αυτό για να αποφύγετε μηνύματα λάθους όπως "δεν επιτρέπεται / παραχωρείται η χρήση διακομιστή μεσολάβησης" κατά την πρόσβαση στο Peer σας με το όνομα κεντρικού υπολογιστή του.
+Virtual host for httpdFileServlet access for example http://FILEHOST/ shall access the file servlet and==Ο εικονικός κεντρικός υπολογιστής για πρόσβαση στο httpdFileServlet, για παράδειγμα http://FILEHOST/ θα έχει πρόσβαση στο servlet αρχείου και
+return the defaultFile at rootPath either way, http://FILEHOST/ denotes the same as http://localhost:<port>/==επιστρέψτε το προεπιλεγμένο αρχείο στο rootPath με κάθε τρόπο, το http://FILEHOST/ σημαίνει το ίδιο με το http://localhost:<port>/
+for the preconfigured value 'localpeer', the URL is: http://localpeer/.==για την προρυθμισμένη τιμή "localpeer", το URL είναι: http://localpeer/.
+Server Port Settings==Ρυθμίσεις θύρας διακομιστή
+Server port:==Θύρα διακομιστή:
+This is the main port for all http communication (default is 8090). A change requires a restart.==Αυτή είναι η κύρια θύρα για όλες τις επικοινωνίες http (η προεπιλογή είναι 8090). Μια αλλαγή απαιτεί επανεκκίνηση.
+Server ssl port:==Θύρα ssl διακομιστή:
+This is the port to connect via https (default is 8443). A change requires a restart.==Αυτή είναι η θύρα για σύνδεση μέσω https (η προεπιλογή είναι 8443). Μια αλλαγή απαιτεί επανεκκίνηση.
+Shutdown port:==Θύρα τερματισμού λειτουργίας:
+This is the local port on the loopback address (127.0.0.1 or :1) to listen for a shutdown signal to stop the YaCy server (-1 disables the shutdown port, recommended default is 8005). A change requires a restart.==Αυτή είναι η τοπική θύρα στη διεύθυνση loopback (127.0.0.1 ή :1) για να ακούσετε ένα σήμα τερματισμού λειτουργίας για να σταματήσει ο διακομιστής YaCy (-1 απενεργοποιεί τη θύρα τερματισμού λειτουργίας, η προτεινόμενη προεπιλογή είναι 8005). Μια αλλαγή απαιτεί επανεκκίνηση.
+Compression settings==Ρυθμίσεις συμπίεσης
+Compress responses with gzip==Συμπίεση απαντήσεων με gzip
+When checked (default), HTTP responses can be compressed using gzip.==Όταν είναι επιλεγμένο (προεπιλογή), οι απαντήσεις HTTP μπορούν να συμπιεστούν χρησιμοποιώντας gzip.
+The requesting user-agent (a web browser, another YaCy peer or any other tool) uses the header 'Accept-Encoding' to tell whether it accepts gzip compression or not.==Ο παράγοντας χρήστη που ζητά (ένα πρόγραμμα περιήγησης ιστού, ένα άλλο YaCy peer ή οποιοδήποτε άλλο εργαλείο) χρησιμοποιεί την κεφαλίδα 'Accept-Encoding' για να πει εάν δέχεται συμπίεση gzip ή όχι.
+This adds some processing overhead, but can significantly reduce the amount of bytes transmitted over the network.==Αυτό προσθέτει κάποια επιβάρυνση επεξεργασίας, αλλά μπορεί να μειώσει σημαντικά την ποσότητα των byte που μεταδίδονται μέσω του δικτύου.
+Changes need a server restart.==Οι αλλαγές απαιτούν επανεκκίνηση διακομιστή.
+#-----------------------------
+
+#File: Settings_UrlProxyAccess.inc
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+URL Proxy Settings==URL Ρυθμίσεις διακομιστή μεσολάβησης
+With this settings you can activate or deactivate URL proxy.==Με αυτές τις ρυθμίσεις μπορείτε να ενεργοποιήσετε ή να απενεργοποιήσετε τον διακομιστή μεσολάβησης URL.
+Service call: http://localhost:8090/proxy.html?url=parameter, where parameter is the url of an external web page.==Κλήση υπηρεσίας: http://localhost:8090/proxy.html?url=parameter, όπου παράμετρος είναι το url μιας εξωτερικής ιστοσελίδας.
+URL proxy:==URL διακομιστής μεσολάβησης:
+Enabled==Ενεργοποιημένο
+Globally enables or disables URL proxy via http://yourpeer:yourport/proxy.html?url=http://externalurl/==Καθολικά ενεργοποιεί ή απενεργοποιεί τον διακομιστή μεσολάβησης URL μέσω http://yourpeer:yourport/proxy.html?url=http://externalurl/
+Show search results via URL proxy:==Εμφάνιση αποτελεσμάτων αναζήτησης μέσω διακομιστή μεσολάβησης URL:
+Enables or disables URL proxy for all search results. If enabled, all search results will be tunneled through URL proxy.==Ενεργοποιεί ή απενεργοποιεί τον διακομιστή μεσολάβησης URL για όλα τα αποτελέσματα αναζήτησης. Εάν είναι ενεργοποιημένο, όλα τα αποτελέσματα αναζήτησης θα διοχετεύονται μέσω του διακομιστή μεσολάβησης URL.
+Alternatively you may add this javascript to your browser favorites/short-cuts, which will reload the current browser address==Εναλλακτικά, μπορείτε να προσθέσετε αυτό το javascript στα αγαπημένα του προγράμματος περιήγησής σας/short-cuts, που θα φορτώσει ξανά την τρέχουσα διεύθυνση του προγράμματος περιήγησης
+via the YaCy proxy servlet.==μέσω του διακομιστή διακομιστή μεσολάβησης YaCy.
+or right-click this link and add to favorites:==ή κάντε δεξί κλικ σε αυτόν τον σύνδεσμο και προσθέστε στα αγαπημένα:
+Restrict URL proxy use:==Περιορισμός URL χρήσης διακομιστή μεσολάβησης:
+Define client filter. Default: 127.0.0.1,0:0:0:0:0:0:0:1.==Ορισμός φίλτρου πελάτη. Προεπιλογή: 127.0.0.1,0:0:0:0:0:0:0:1.
+URL substitution:==URL αντικατάσταση:
+Define URL substitution rules which allow navigating in proxy environment. Possible values: all, domainlist. Default: domainlist.==Ορίστε κανόνες αντικατάστασης URL που επιτρέπουν την πλοήγηση σε περιβάλλον διακομιστή μεσολάβησης. Πιθανές τιμές: all, domainlist. Προεπιλογή: κατάλογος τομέα.
+#-----------------------------
+
+#File: Settings_p.html
+#---------------------------
+Advanced Settings==Προηγμένες ρυθμίσεις
+If you want to restore all settings to the default values,==Εάν θέλετε να επαναφέρετε όλες τις ρυθμίσεις στις προεπιλεγμένες τιμές,
+but forgot your administration password, you must stop the proxy,==αλλά ξέχασα τον κωδικό πρόσβασης διαχείρισης, πρέπει να σταματήσετε τον διακομιστή μεσολάβησης,
+delete the file 'DATA/SETTINGS/yacy.conf' in the YaCy application root folder and start YaCy again.==διαγράψτε το αρχείο 'DATA/SETTINGS/yacy.conf' στον ριζικό φάκελο της εφαρμογής YaCy και ξεκινήστε ξανά το YaCy.
+Server Access Settings==Ρυθμίσεις πρόσβασης διακομιστή
+Referrer Policy Settings==Ρυθμίσεις πολιτικής παραπομπής
+Crawler Settings==Ρυθμίσεις ανιχνευτή
+Seed Upload Settings==Ρυθμίσεις μεταφόρτωσης σπόρων
+Message Forwarding (optional)==Προώθηση μηνυμάτων (προαιρετικό)
+Transparent Proxy Access Settings==Διαφανείς ρυθμίσεις πρόσβασης διακομιστή μεσολάβησης
+URL/Web Proxy Access Settings==URL/Web Ρυθμίσεις πρόσβασης διακομιστή μεσολάβησης
+Remote Proxy (optional)==Απομακρυσμένος διακομιστής μεσολάβησης (προαιρετικό)
+Debug/Analysis Settings==Εντοπισμός σφαλμάτων/Analysis Ρυθμίσεις
+HTTP client Settings==HTTP Ρυθμίσεις πελάτη
+#-----------------------------
+
+#File: Status.html
+#---------------------------
+"Fork me on GitHub"=="Περάστε με στο GitHub"
+"YaCy Websearch"=="YaCy Αναζήτηση στον Ιστό"
+"PerformanceGraph"=="Γράφημα Απόδοσης"
+"banner"=="σημαία"
+"bad"=="κακός"
+"idea"=="ιδέα"
+"Update YaCy"=="Ενημέρωση YaCy"
+"lock icon"=="εικονίδιο κλειδαριάς"
+"good"=="καλός"
+Log-in as administrator to see full status==Συνδεθείτε ως διαχειριστής για να δείτε την πλήρη κατάσταση
+Welcome to YaCy!==Καλώς ορίσατε στο YaCy!
+Your settings are _not_ protected!==Οι ρυθμίσεις σας _δεν_ προστατεύονται!
+and set an administration password.==και ορίστε έναν κωδικό πρόσβασης διαχείρισης.
+You have not published your peer seed yet. This happens automatically, just wait.==Δεν έχετε δημοσιεύσει ακόμα το peer seed σας. Αυτό συμβαίνει αυτόματα, απλά περιμένετε.
+Your network configuration is in private mode. Your peer seed will not be published.==Η διαμόρφωση του δικτύου σας είναι σε ιδιωτική λειτουργία. Ο ομότιμος σπόρος σας δεν θα δημοσιευτεί.
+Access is unrestricted from localhost (this includes administration features).==Η πρόσβαση είναι απεριόριστη από τον localhost (αυτό περιλαμβάνει λειτουργίες διαχείρισης).
+The peer must go online to get a peer address.==Ο ομότιμος πρέπει να συνδεθεί στο διαδίκτυο για να λάβει μια ομότιμη διεύθυνση.
+You cannot be reached from outside.==Δεν είναι δυνατή η πρόσβαση από έξω.
+A possible reason is that you are behind a firewall, NAT or Router.==Ένας πιθανός λόγος είναι ότι βρίσκεστε πίσω από ένα τείχος προστασίας, NAT ή Router.
+global index on your own search page.==παγκόσμιο ευρετήριο στη δική σας σελίδα αναζήτησης.
+We encourage you to open your firewall for the port you configured (usually: 8090),==Σας συνιστούμε να ανοίξετε το τείχος προστασίας για τη θύρα που ρυθμίσατε (συνήθως: 8090),
+or to set up a 'virtual server' in your router settings (often called DMZ).==ή για να ρυθμίσετε έναν «εικονικό διακομιστή» στις ρυθμίσεις του δρομολογητή σας (που συχνά ονομάζεται DMZ).
+Please be fair, contribute your own index to the global index.==Να είστε δίκαιοι, συνεισφέρετε το δικό σας ευρετήριο στον παγκόσμιο δείκτη.
+it as soon as possible and restart YaCy.==το συντομότερο δυνατό και επανεκκινήστε το YaCy.
+Crawling is paused! If the crawling was paused automatically, please check your disk space.==Η ανίχνευση έχει διακοπεί! Εάν η ανίχνευση διακόπηκε αυτόματα, ελέγξτε το χώρο στο δίσκο σας.
+You can download a more recent version of YaCy. Click here to install this update and restart YaCy:==Μπορείτε να κατεβάσετε μια πιο πρόσφατη έκδοση του YaCy. Κάντε κλικ εδώ για να εγκαταστήσετε αυτήν την ενημέρωση και να επανεκκινήσετε το YaCy:
+You are running a server in senior mode and you support the global internet index,==Εκτελείτε έναν διακομιστή σε λειτουργία ανώτερου επιπέδου και υποστηρίζετε το παγκόσμιο ευρετήριο διαδικτύου,
+You have a principal peer because you publish your seed-list to a public accessible server==Έχετε έναν κύριο ομότιμο, επειδή δημοσιεύετε τη λίστα αρχικών στοιχείων σας σε έναν δημόσιο προσβάσιμο διακομιστή
+If you need professional support, please write to==Εάν χρειάζεστε επαγγελματική υποστήριξη, παρακαλούμε γράψτε στο
+support@yacy.net==support@yacy.net
+#-----------------------------
+
+#File: Status_p.inc
+#---------------------------
+System Status==Κατάσταση συστήματος
+System==Σύστημα
+Unknown==Αγνωστος
+Protection==Προστασία
+Default password is not changed==Ο προεπιλεγμένος κωδικός πρόσβασης δεν αλλάζει
+[Configure]==[Διαμόρφωση]
+password-protected==προστατεύεται με κωδικό πρόσβασης
+Address==Διεύθυνση
+peer address not assigned==δεν έχει εκχωρηθεί η ομότιμη διεύθυνση
+Port Forwarding Host==Κεντρικός υπολογιστής προώθησης λιμένων
+broken==σπασμένος
+connected==συνδεδεμένος
+Proxy==Πληρεξούσιο
+Transparent==Διαφανής
+on==επί
+off==μακριά από
+URL==URL
+Remote:==Μακρινός:
+not used==δεν χρησιμοποιείται
+Yes==Ναί
+No==Οχι
+Auto-popup on start-up==Αυτόματο αναδυόμενο παράθυρο κατά την εκκίνηση
+Tray-Icon==Δίσκος-Εικονίδιο
+Experimental==Πειραματικός
+Memory Usage==Χρήση Μνήμης
+RAM used:==RAM που χρησιμοποιείται:
+RAM max:==Μέγιστο RAM:
+DISK used:==DISK που χρησιμοποιείται:
+DISK free:==Χωρίς Δίσκο:
+Incoming Connections==Εισερχόμενες συνδέσεις
+Queues==Ουρές
+Local Crawl==Τοπική ανίχνευση
+(paused)==(σε παύση)
+Remote triggered Crawl==Η απομακρυσμένη ενεργοποίηση ανίχνευσης
+Pre-Queueing==Προ-ουρά
+Seed server==Διακομιστής Seed
+Disabled.==Απενεργοποιημένο.
+#-----------------------------
+
+#File: Steering.html
+#---------------------------
+"Kaskelix"=="Κασκελίξ"
+"Restart"=="Επανεκκίνηση"
+"Shutdown"=="Κλείσιμο"
+No action submitted==Δεν υποβλήθηκε καμία ενέργεια
+Re-Start==Επανεκκίνηση
+Shutdown==Κλείσιμο
+Your system is not protected by a password==Το σύστημά σας δεν προστατεύεται από κωδικό πρόσβασης
+You don't have the correct access right to perform this task.==Δεν έχετε το σωστό δικαίωμα πρόσβασης για να εκτελέσετε αυτήν την εργασία.
+Please log in.==Παρακαλώ συνδεθείτε.
+See you soon!==Τα λέμε σύντομα!
+Application will terminate after working off all scheduled tasks.==Η εφαρμογή θα τερματιστεί αφού ολοκληρωθούν όλες οι προγραμματισμένες εργασίες.
+Please send us feed-back!==Στείλτε μας σχόλια!
+We don't track YaCy users, YaCy does not send 'home-pings', we do not even know how many people use YaCy as their private search engine.==Δεν παρακολουθούμε YaCy χρήστες, ο YaCy δεν στέλνει "home-ping", δεν γνωρίζουμε καν πόσα άτομα χρησιμοποιούν το YaCy ως ιδιωτική μηχανή αναζήτησης.
+Therefore we like to ask you: do you like YaCy? Will you use it again... if not, why? Is it possible that we change a bit to suit your needs?==Γι' αυτό θα θέλαμε να σας ρωτήσουμε: σας αρέσει YaCy; Θα το ξαναχρησιμοποιήσετε... αν όχι γιατί; Είναι δυνατόν να αλλάξουμε λίγο για να ταιριάξουμε τις ανάγκες σας;
+Please send us feed-back about your experience with an==Στείλτε μας σχόλια σχετικά με την εμπειρία σας με ένα
+or a==ή α
+Professional Support==Επαγγελματική Υποστήριξη
+Just a moment, please!==Μια στιγμή, παρακαλώ!
+Then YaCy will restart.==Στη συνέχεια, το YaCy θα επανεκκινήσει.
+If you can't reach YaCy's interface after 5 minutes restart failed.==Εάν δεν μπορείτε να μεταβείτε στη διεπαφή του YaCy μετά από 5 λεπτά, η επανεκκίνηση απέτυχε.
+YaCy will be restarted after installation.==Το YaCy θα επανεκκινηθεί μετά την εγκατάσταση.
+The file you are trying to install is not located in the release directory.==Το αρχείο που προσπαθείτε να εγκαταστήσετε δεν βρίσκεται στον κατάλογο έκδοσης.
+You are in a development environment or the file you are trying to install is empty.==Βρίσκεστε σε περιβάλλον ανάπτυξης ή το αρχείο που προσπαθείτε να εγκαταστήσετε είναι κενό.
+#-----------------------------
+
+#File: Supporter.html
+#---------------------------
+"YaCy Supporter"=="YaCy Υποστηρικτής"
+"bookmark"=="σελιδοδείκτη"
+"Add to bookmarks"=="Προσθήκη στους σελιδοδείκτες"
+"positive vote"=="θετική ψήφο"
+"Give positive vote"=="Δώστε θετική ψήφο"
+"negative vote"=="αρνητική ψήφο"
+"Give negative vote"=="Δώστε αρνητική ψήφο"
+Supporter==Υποστηρικτής
+Supporter are switched off for users without authorization==Το Supporter είναι απενεργοποιημένο για χρήστες χωρίς εξουσιοδότηση
+#-----------------------------
+
+#File: Surftips.html
+#---------------------------
+"YaCy Surftips"=="YaCy Surftips"
+"bookmark"=="σελιδοδείκτη"
+"Add to bookmarks"=="Προσθήκη στους σελιδοδείκτες"
+"positive vote"=="θετική ψήφο"
+"Give positive vote"=="Δώστε θετική ψήφο"
+"negative vote"=="αρνητική ψήφο"
+"Give negative vote"=="Δώστε αρνητική ψήφο"
+"authentication required"=="απαιτείται έλεγχος ταυτότητας"
+Surftips==Surftips
+Surftips are switched off for users without authorization==Τα Surftips είναι απενεργοποιημένα για χρήστες χωρίς εξουσιοδότηση
+YaCy Supporters==YaCy Υποστηρικτές
+a list of home pages of yacy users==μια λίστα με τις αρχικές σελίδες των χρηστών yacy
+Show surftips to everyone==Εμφάνιση surftips σε όλους
+Hide surftips for users without authorization==Απόκρυψη surftip για χρήστες χωρίς εξουσιοδότηση
+#-----------------------------
+
+#File: Table_RobotsTxt_p.html
+#---------------------------
+"robots.txt Table"=="robots.txt Πίνακας"
+"API"=="API"
+The information that is presented on this page can also be retrieved as XML.==Οι πληροφορίες που παρουσιάζονται σε αυτήν τη σελίδα μπορούν επίσης να ανακτηθούν ως XML.
+Click the API icon to see the XML.==Κάντε κλικ στο εικονίδιο API για να δείτε το XML.
+robots.txt table==πίνακας robots.txt
+#-----------------------------
+
+#File: Tables_p.html
+#---------------------------
+"Tables"=="Πίνακες"
+"Search"=="Ερευνα"
+"Edit Selected Row"=="Επεξεργασία επιλεγμένης σειράς"
+"Add a new Row"=="Προσθέστε μια νέα σειρά"
+"Delete Selected Rows"=="Διαγραφή επιλεγμένων σειρών"
+"Delete Table"=="Διαγραφή πίνακα"
+"Commit"=="Διαπράττω"
+Table Administration==Διαχείριση πίνακα
+Table Selection==Επιλογή πίνακα
+Select Table:==Επιλέξτε πίνακα:
+show max.==εμφάνιση μέγ.
+all==όλοι
+entries,==καταχωρήσεις,
+reverse:==αντίστροφο:
+search rows for==αναζήτηση σειρών για
+PK==PK
+Row Editor==Επεξεργαστής σειράς
+Primary Key==Πρωτεύον κλειδί
+#-----------------------------
+
+#File: Threaddump_p.html
+#---------------------------
+"Single Threaddump"=="Single Threaddump"
+"Multiple Dump Statistic"=="Στατιστική πολλαπλών απορρίψεων"
+YaCy Debugging: Thread Dump==YaCy Εντοπισμός σφαλμάτων: Εντοπισμός νήματος
+Threaddump==Threaddump
+#-----------------------------
+
+#File: ToolsConfig_p.html
+#---------------------------
+Tools==Εργαλεία
+Add superpowers to the YaCy Chat. Tools may be disabled by setting maxCallsPerTurn to 0.==Προσθέστε υπερδυνάμεις στη συνομιλία YaCy. Τα εργαλεία μπορούν να απενεργοποιηθούν ορίζοντας maxCallsPerTurn σε 0.
+Tool settings were saved.==Οι ρυθμίσεις του εργαλείου αποθηκεύτηκαν.
+Basic Tools==Βασικά Εργαλεία
+maxCallsPerTurn==maxCallsPerTurn
+disable==καθιστώ ανίκανο
+Visualization Tools==Εργαλεία Οπτικοποίησης
+Data Retrieval Tools==Εργαλεία ανάκτησης δεδομένων
+Save Tools Configuration==Αποθήκευση διαμόρφωσης εργαλείων
+#-----------------------------
+
+#File: Trails.html
+#---------------------------
+CyTag Trails==Διαδρομές CyTag
+#-----------------------------
+
+#File: TransNews_p.html
+#---------------------------
+"Publish"=="Δημοσιεύω"
+"negative vote"=="αρνητική ψήφο"
+"positive vote"=="θετική ψήφο"
+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 its own local translation.==Ο απομακρυσμένος ομότιμος μπορεί να ψηφίσει για τη μετάφρασή σας και να την προσθέσει στη δική του τοπική μετάφραση.
+File:==Αρχείο:
+Originator==Δημιουργός
+English:==Αγγλικός:
+existing==υπάρχον
+Translation:==Μετάφραση:
+Vote on this translation. If you vote positive the translation is added to your local translation list.==Ψηφίστε για αυτήν τη μετάφραση. Εάν ψηφίσετε θετικά, η μετάφραση προστίθεται στην τοπική σας λίστα μεταφράσεων.
+#-----------------------------
+
+#File: Translator_p.html
+#---------------------------
+"Save translation"=="Αποθήκευση μετάφρασης"
+Translation Editor==Επιμελητής μετάφρασης
+Translate untranslated text of the user interface (current language). The modified translation file is stored in DATA/LOCALE directory.==Μετάφραση μη μεταφρασμένου κειμένου της διεπαφής χρήστη (τρέχουσα γλώσσα). Το τροποποιημένο αρχείο μετάφρασης αποθηκεύεται στον κατάλογο DATA/LOCALE.
+UI Translation==Μετάφραση διεπαφής χρήστη
+Source File==Αρχείο πηγής
+view it==δείτε το
+filter untranslated==φίλτρο αμετάφραστο
+Source Text==Πηγαίο Κείμενο
+#-----------------------------
+
+#File: User.html
+#---------------------------
+"login"=="σύνδεση"
+"logout"=="αποσύνδεση"
+"red bar"=="κόκκινη μπάρα"
+"green bar"=="πράσινο μπαρ"
+"Change"=="Αλλαγή"
+User Page==Σελίδα χρήστη
+You are not logged in.==Δεν είστε συνδεδεμένοι.
+Username:==Όνομα χρήστη:
+Password:==Σύνθημα:
+(Identified by==(Προσδιορίστηκε από
+IP==IP
+Username/Password==Όνομα χρήστη/Password
+Cookie==Κουλουράκι
+old Password==παλιός κωδικός πρόσβασης
+new Password==νέος κωδικός πρόσβασης
+new Password(repetition)==νέος κωδικός πρόσβασης (επανάληψη)
+You are currently logged in as admin.==Αυτήν τη στιγμή είστε συνδεδεμένος ως διαχειριστής.
+(after logout you will be prompted for your password again. simply click "cancel")==(μετά την αποσύνδεση θα σας ζητηθεί ξανά ο κωδικός πρόσβασής σας. απλά κάντε κλικ στο "ακύρωση")
+Password was changed.==Ο κωδικός πρόσβασης άλλαξε.
+Old Password is wrong.==Ο παλιός κωδικός είναι λάθος.
+New Password and its repetition do not match.==Ο νέος κωδικός πρόσβασης και η επανάληψή του δεν ταιριάζουν.
+New Password is empty.==Ο νέος κωδικός πρόσβασης είναι κενός.
+#-----------------------------
+
+#File: VFS.html
+#---------------------------
+"File system browser"=="Πρόγραμμα περιήγησης συστήματος αρχείων"
+"Root contents"=="Περιεχόμενα ρίζας"
+Virtual File System==Εικονικό σύστημα αρχείων
+User storage in the browser cache with file-system-like navigation.==Αποθήκευση χρήστη στην προσωρινή μνήμη του προγράμματος περιήγησης με πλοήγηση που μοιάζει με σύστημα αρχείων.
+New Folder==Νέος φάκελος
+Upload File==Μεταφόρτωση αρχείου
+No files yet. Upload a file or create a folder.==Δεν υπάρχουν ακόμα αρχεία. Ανεβάστε ένα αρχείο ή δημιουργήστε έναν φάκελο.
+Preview==Πρεμιέρα
+Edit file==Επεξεργασία αρχείου
+Discard==Απορρίπτω
+Save==Εκτός
+#-----------------------------
+
+#File: ViewFile.html
+#---------------------------
+"API"=="API"
+"Show Metadata"=="Εμφάνιση Μεταδεδομένων"
+"Browse Host"=="Περιήγηση στον κεντρικό υπολογιστή"
+"Show Snippet"=="Εμφάνιση αποσπάσματος"
+"Show"=="Επίδειξη"
+"action"=="δράση"
+See the page info about the url.==Δείτε τις πληροφορίες της σελίδας σχετικά με το url.
+View URL Content==Προβολή περιεχομένου URL
+Get URL Viewer==Αποκτήστε URL Viewer
+URL:==URL:
+Search in Document:==Αναζήτηση στο έγγραφο:
+URL Metadata==URL Μεταδεδομένα
+Hash:==Χασίσι:
+In Metadata:==Στα Μεταδεδομένα:
+no==όχι
+yes==ναι
+In Cache:==Στην προσωρινή μνήμη:
+First Seen:==Πρώτη εμφάνιση:
+Word Count:==Καταμέτρηση λέξεων:
+Description:==Περιγραφή:
+Size:==Μέγεθος:
+MimeType:==MimeType:
+Collections:==Συλλογές:
+View as==Προβολή ως
+Original from Web==Πρωτότυπο από το Web
+Original from Cache==Πρωτότυπο από την Cache
+Plain Text==Απλό κείμενο
+Parsed Text==Αναλυμένο κείμενο
+Parsed Sentences==Αναλυμένες προτάσεις
+Parsed Tokens/Words==Αναλυμένα διακριτικά/Words
+Link List==Λίστα συνδέσμων
+Schema Fields==Πεδία Σχήματος
+Citation Report==Αναφορά παραπομπής
+Unable to find URL Entry in DB==Δεν είναι δυνατή η εύρεση της καταχώρισης URL στο DB
+Invalid URL==Μη έγκυρο URL
+Unable to download resource content.==Δεν είναι δυνατή η λήψη περιεχομένου πόρων.
+Unable to parse resource content.==Δεν είναι δυνατή η ανάλυση του περιεχομένου πόρων.
+Unsupported protocol.==Μη υποστηριζόμενο πρωτόκολλο.
+Snippet==Απόσπασμα
+Headline==Επικεφαλίδα
+Teaser Text==Κείμενο Teaser
+Original Content from Web==Πρωτότυπο περιεχόμενο από τον Ιστό
+Parsed Content==Αναλυμένο περιεχόμενο
+dc:title==dc:title
+dc:creator==dc:creator
+dc:subject==dc:subject
+dc:description==dc:περιγραφή
+dc:publisher==dc:publisher
+dc:format==dc:μορφή
+dc:identifier==dc:identifier
+dc:source==dc:πηγή
+geo:lat & geo:long==geo:lat & geo:long
+nr==αρ
+type==τύπος
+name==όνομα
+link==σύνδεσμος
+text==κείμενο
+rel==σχετ
+Parsed Tokens==Αναλυμένα Tokens
+CitationReport==CitationReport
+#-----------------------------
+
+#File: ViewLog_p.html
+#---------------------------
+"refresh"=="φρεσκάρω"
+Server Log==Αρχείο καταγραφής διακομιστή
+reversed order==αντίστροφη σειρά
+regex==regex
+terms==όροι
+Invalid regular expression filter.==Μη έγκυρο φίλτρο τυπικής έκφρασης.
+#-----------------------------
+
+#File: ViewProfile.html
+#---------------------------
+"vCard"=="vCard"
+"rdf:foaf"=="rdf:foaf"
+"Onlinestatus"=="Κατάσταση διαδικτύου"
+Local Peer Profile:==Τοπικό προφίλ ομοτίμων:
+Remote Peer Profile:==Απομακρυσμένο προφίλ ομοτίμων:
+Wrong access of this page==Λανθασμένη πρόσβαση σε αυτήν τη σελίδα
+The requested peer is unknown or a potential peer.==Ο ομότιμος που ζητήθηκε είναι άγνωστος ή πιθανός ομότιμος.
+The profile can't be fetched.==Δεν είναι δυνατή η ανάκτηση του προφίλ.
+Name==Ονομα
+Nick Name==Nick Name
+Homepage==Αρχική σελίδα
+eMail==e-mail
+ICQ==ICQ
+Jabber==Κουβεντολόι
+Yahoo!==Yahoo!
+MSN==MSN
+Skype==Skype
+Comment==Σχόλιο
+vCard==vCard
+#-----------------------------
+
+#File: Vocabulary_p.html
+#---------------------------
+"API"=="API"
+"View"=="Θέα"
+"Uniform Resource Locator"=="Ενιαίος εντοπιστής πόρων"
+"Standard CSV field delimiter"=="Τυπικός οριοθέτης πεδίου CSV"
+"Create"=="Δημιουργώ"
+"Submit"=="Υποτάσσομαι"
+The information that is presented on this page can also be retrieved as XML==Οι πληροφορίες που παρουσιάζονται σε αυτήν τη σελίδα μπορούν επίσης να ανακτηθούν ως XML
+Click the API icon to see the RDF Ontology definition for this vocabulary.==Κάντε κλικ στο εικονίδιο API για να δείτε τον ορισμό της οντολογίας RDF για αυτό το λεξιλόγιο.
+Vocabulary Administration==Διοίκηση λεξιλογίου
+Vocabularies can be used to produce a search navigation. A vocabulary must be created before content is indexed.==Τα λεξιλόγια μπορούν να χρησιμοποιηθούν για την παραγωγή μιας πλοήγησης αναζήτησης. Πρέπει να δημιουργηθεί ένα λεξιλόγιο πριν από την ευρετηρίαση του περιεχομένου.
+The vocabulary is used to annotate the indexed content with a reference to the object that is denoted by the term of the vocabulary.==Το λεξιλόγιο χρησιμοποιείται για να σχολιάσει το περιεχόμενο του ευρετηρίου με αναφορά στο αντικείμενο που υποδηλώνεται με τον όρο του λεξιλογίου.
+The object can be denoted by a url stub that, combined with the term, becomes the url for the object.==Το αντικείμενο μπορεί να υποδηλωθεί με ένα στέλεχος διεύθυνσης url που, σε συνδυασμό με τον όρο, γίνεται το url για το αντικείμενο.
+Vocabulary Selection==Επιλογή λεξιλογίου
+Vocabulary Name==Λεξιλογικό Όνομα
+Vocabulary Production==Παραγωγή λεξιλογίου
+Please provide a CSV file path or URL.==Καταχωρίστε μια διαδρομή αρχείου CSV ή URL.
+Empty Vocabulary==Κενό λεξιλόγιο
+Auto-Discover==Αυτόματη Ανακάλυψη
+from file name==από το όνομα αρχείου
+from page title==από τον τίτλο της σελίδας
+from page title (split)==από τον τίτλο της σελίδας (διαίρεση)
+from page author==από τον συγγραφέα της σελίδας
+Objectspace==Χώρος αντικειμένων
+It is possible to produce a vocabulary out of the existing search index. This is done using a given 'objectspace' which you can enter as a URL Stub.==Είναι δυνατό να δημιουργηθεί ένα λεξιλόγιο από το υπάρχον ευρετήριο αναζήτησης. Αυτό γίνεται χρησιμοποιώντας ένα δεδομένο "αντικειμενικό χώρο" που μπορείτε να εισαγάγετε ως URL Stub.
+This stub is used to find all matching URLs. If the remaining path from the matching URLs then denotes a single file, the file name is used as vocabulary term.==Αυτό το στέλεχος χρησιμοποιείται για την εύρεση όλων των διευθύνσεων URL που ταιριάζουν. Εάν η υπόλοιπη διαδρομή από τα αντίστοιχα URL υποδηλώνει ένα μεμονωμένο αρχείο, το όνομα αρχείου χρησιμοποιείται ως όρος λεξιλογίου.
+This works best with wikis. Try to use a wiki url as objectspace path.==Αυτό λειτουργεί καλύτερα με τα wiki. Προσπαθήστε να χρησιμοποιήσετε μια διεύθυνση url wiki ως διαδρομή χώρου αντικειμένου.
+Import from a csv file==Εισαγωγή από αρχείο csv
+File Path or URL==Διαδρομή αρχείου ή URL
+Start line==Γραμμή εκκίνησης
+(first has index 0)==(το πρώτο έχει δείκτη 0)
+Column for Literals==Στήλη για Literals
+Synonyms==Συνώνυμα
+no Synonyms==όχι Συνώνυμα
+Auto-Enrich with Synonyms from Stemming Library==Αυτόματος εμπλουτισμός με συνώνυμα από τη βιβλιοθήκη Stemming
+Read Column==Διαβάστε τη στήλη
+Column for Object Link (optional)==Στήλη για Σύνδεσμος αντικειμένου (προαιρετικό)
+(first has index 0, if unused set -1)==(το πρώτο έχει δείκτη 0, αν δεν χρησιμοποιείται έχει οριστεί -1)
+Charset of Import File==Σύνολο γραφημάτων αρχείου εισαγωγής
+Column separator==Διαχωριστής στηλών
+Comma ','==κόμμα ','
+Semicolon ';'==ερωτηματικό ";"
+Vocabulary Editor==Επεξεργαστής λεξιλογίου
+File==Αρχείο
+[automatically generated, not stored, cannot be edited]==[δημιουργείται αυτόματα, δεν αποθηκεύεται, δεν είναι δυνατή η επεξεργασία]
+Size==Μέγεθος
+Namespace==Χώρος ονομάτων
+Predicate==Κατηγορούμενο
+Prefix==Πρόθεμα
+Is Facet?==Είναι το Facet;
+(If checked, this vocabulary is used for search facets. Not feasible for large vocabularies!)==(Εάν επιλεγεί, αυτό το λεξιλόγιο χρησιμοποιείται για όψεις αναζήτησης. Δεν είναι εφικτό για μεγάλα λεξιλόγια!)
+Match terms from==Αντιστοίχιση όρων από
+Cleartext==Καθαρό κείμενο
+Linked data/Semantic web annotations==Συνδεδεμένα δεδομένα/Semantic σχολιασμοί ιστού
+Modify==Τροποποιώ
+Delete==Διαγραφή
+Literal==Κατά γράμμα
+Object Link==Σύνδεσμος αντικειμένου
+add==προσθέτω
+clear table (remove all terms)==διαγραφή πίνακα (κατάργηση όλων των όρων)
+delete vocabulary==διαγράψτε το λεξιλόγιο
+#-----------------------------
+
+#File: WatchWebStructure_p.html
+#---------------------------
+"API"=="API"
+"minus"=="πλην"
+"plus"=="συν"
+"change"=="αλλαγή"
+"WebStructurePicture"=="WebStructurePicture"
+The data that is visualized here can also be retrieved in a XML file, which lists the reference relation between the domains.==Τα δεδομένα που απεικονίζονται εδώ μπορούν επίσης να ανακτηθούν σε ένα αρχείο XML, το οποίο παραθέτει τη σχέση αναφοράς μεταξύ των τομέων.
+With a GET-property 'about' you get only reference relations about the host that you give in the argument field for 'about'.==Με μια ιδιότητα GET "σχετικά" λαμβάνετε μόνο σχέσεις αναφοράς για τον κεντρικό υπολογιστή που δίνετε στο πεδίο ορίσματος για "σχετικά".
+With a GET-property 'latest' you get a list of references that had been computed during the current run-time of YaCy, and with each next call only an update to the next list of references.==Με μια ιδιότητα GET "πιο πρόσφατη" λαμβάνετε μια λίστα αναφορών που είχαν υπολογιστεί κατά τον τρέχοντα χρόνο εκτέλεσης του YaCy και με κάθε επόμενη κλήση μόνο μια ενημέρωση στην επόμενη λίστα αναφορών.
+Click the API icon to see the XML file.==Κάντε κλικ στο εικονίδιο API για να δείτε το αρχείο XML.
+Web Structure==Δομή Ιστού
+Host List==Λίστα κεντρικού υπολογιστή
+host==πλήθος
+depth==βάθος
+nodes==κόμβους
+time==φορά
+size==μέγεθος
+Background==Φόντο
+Color==Χρώμα
+Text==Κείμενο
+Line==Γραμμή
+Pivot Dot==Pivot Dot
+Other Dot==Άλλο Dot
+Dot-end==Τελική άκρη
+#-----------------------------
+
+#File: Wiki.html
+#---------------------------
+"all"=="όλοι"
+"admin"=="διαχειριστής"
+"Submit"=="Υποτάσσομαι"
+"Preview"=="Πρεμιέρα"
+"Discard"=="Απορρίπτω"
+"Show"=="Επίδειξη"
+"Compare"=="Συγκρίνω"
+(only granted to admin)==(χορηγείται μόνο σε διαχειριστή)
+Index -==Ευρετήριο -
+Grant Write Access to==Παραχωρήστε πρόσβαση εγγραφής σε
+Edit==Τροποποίηση
+Author:==Συγγραφέας:
+Text:==Κείμενο:
+Preview==Πρεμιέρα
+No changes have been submitted so far!==Δεν έχουν υποβληθεί αλλαγές μέχρι στιγμής!
+Index==Δείκτης
+Subject==Θέμα
+Change Date==Αλλαγή ημερομηνίας
+Last Author==Τελευταίος συγγραφέας
+Start Page==Αρχική Σελίδα
+Versions==εκδόσεις
+Compare version from==Συγκρίνετε την έκδοση από
+with version from==με έκδοση από
+Error==Σφάλμα
+You can use==Μπορείτε να χρησιμοποιήσετε
+Changes will be published as announcement on YaCyNews==Οι αλλαγές θα δημοσιευτούν ως ανακοίνωση στο YaCyNews
+#-----------------------------
+
+#File: WikiHelp.html
+#---------------------------
+Wiki-Code==Wiki-Code
+This table contains a short description of the tags that can be used in the Wiki and several other servlets==Αυτός ο πίνακας περιέχει μια σύντομη περιγραφή των ετικετών που μπορούν να χρησιμοποιηθούν στο Wiki και σε πολλούς άλλους servlets
+of YaCy. For a more detailed description visit the==από YaCy. Για πιο λεπτομερή περιγραφή επισκεφθείτε το
+Code==Κώδικας
+Description==Περιγραφή
+These tags create headlines. If a page has three or more headlines, a table of content will be created automatically. Headlines of level 1 will be ignored in the table of content.==Αυτές οι ετικέτες δημιουργούν τίτλους. Εάν μια σελίδα έχει τρεις ή περισσότερες επικεφαλίδες, θα δημιουργηθεί αυτόματα ένας πίνακας περιεχομένου. Οι τίτλοι του επιπέδου 1 θα αγνοηθούν στον πίνακα περιεχομένου.
+''text'' '''text''' '''''text'''''==''κείμενο' '''κείμενο''' '''''κείμενο'''''
+These tags create stressed texts. The first pair emphasizes the text (most browsers will display it in italics),==Αυτές οι ετικέτες δημιουργούν τονισμένα κείμενα. Το πρώτο ζεύγος δίνει έμφαση στο κείμενο (τα περισσότερα προγράμματα περιήγησης θα το εμφανίζουν με πλάγιους χαρακτήρες),
+the second one emphasizes it more strongly (i.e. bold) and the last tags create a combination of both.==το δεύτερο το τονίζει πιο έντονα (δηλαδή με έντονη γραφή) και οι τελευταίες ετικέτες δημιουργούν έναν συνδυασμό και των δύο.
+<s>text</s>==<s>text</s>
+Text will be displayed==Το κείμενο θα εμφανιστεί
+struck through==χτύπησε
+<u>text</u>==<u>text</u>
+underlined==υπογραμμίστηκε
+text==κείμενο
+Lines will be indented. This tag is supposed to mark citations, but may as well be used for styling purposes.==Οι γραμμές θα έχουν εσοχές. Αυτή η ετικέτα υποτίθεται ότι επισημαίνει παραπομπές, αλλά μπορεί επίσης να χρησιμοποιηθεί για σκοπούς styling.
+These tags create a numbered list.==Αυτές οι ετικέτες δημιουργούν μια αριθμημένη λίστα.
+These tags create an unnumbered list.==Αυτές οι ετικέτες δημιουργούν μια λίστα χωρίς αρίθμηση.
+;word 1:definition 1==;λέξη 1: ορισμός 1
+;word 2:definition 2==;λέξη 2:ορισμός 2
+;;word 3:definition 3==;;λέξη 3: ορισμός 3
+;word 4:definition 4==;λέξη 4:ορισμός 4
+These tags create a definition list.==Αυτές οι ετικέτες δημιουργούν μια λίστα ορισμών.
+This tag creates a horizontal line.==Αυτή η ετικέτα δημιουργεί μια οριζόντια γραμμή.
+[[pagename]]==[[όνομα σελίδας]]
+[[pagename|description]]==[[όνομα σελίδας|περιγραφή]]
+This tag creates links to other pages of the wiki.==Αυτή η ετικέτα δημιουργεί συνδέσμους προς άλλες σελίδες του wiki.
+[url]==[url]
+[url description]==[περιγραφή url]
+This tag creates links to external websites.==Αυτή η ετικέτα δημιουργεί συνδέσμους προς εξωτερικούς ιστότοπους.
+[[Image:url]]==[[Image:url]]
+[[Image:url|alt text]]==[[Εικόνα:url|εναλλακτικό κείμενο]]
+[[Image:url|align|alt text]]==[[Image:url|align|alt text]]
+This tag displays an image, it can be aligned left, right or center.==Αυτή η ετικέτα εμφανίζει μια εικόνα, μπορεί να ευθυγραμμιστεί αριστερά, δεξιά ή στο κέντρο.
+[[Youtube:id]]==[[Youtube:id]]
+[[Vimeo:id]]==[[Vimeo:id]]
+This tag displays a Youtube or Vimeo video with the id specified and fixed width 425 pixels and height 350 pixels.==Αυτή η ετικέτα εμφανίζει ένα βίντεο Youtube ή Vimeo με καθορισμένο αναγνωριστικό και σταθερό πλάτος 425 pixel και ύψος 350 pixel.
+i.e. use [[Youtube:QZsWG4-7Qfk]] to embed this video: https://www.youtube.com/watch?v=QZsWG4-7Qfk==π.χ. χρησιμοποιήστε το [[Youtube:QZsWG4-7Qfk]] για να ενσωματώσετε αυτό το βίντεο: https://www.youtube.com/watch?v=QZsWG4-7Qfk
+i.e. use [[Vimeo:32200946]] to embed this video: http://vimeo.com/32200946==δηλαδή χρησιμοποιήστε το [[Vimeo:32200946]] για να ενσωματώσετε αυτό το βίντεο: http://vimeo.com/32200946
+||row 1, col 1||row 1, col 2==||σειρά 1, στήλη 1||σειρά 1, στήλη 2
+||row 2, col 1||row 2, col 2==||σειρά 2, στήλη 1||σειρά 2, στήλη 2
+These tags create a table, whereas the first marks the beginning of the table, the second starts==Αυτές οι ετικέτες δημιουργούν έναν πίνακα, ενώ η πρώτη σηματοδοτεί την αρχή του πίνακα, η δεύτερη ξεκινά
+a new line, the third and fourth each create a new cell in the line. The last displayed tag==μια νέα γραμμή, η τρίτη και η τέταρτη κάθε μια δημιουργούν ένα νέο κελί στη γραμμή. Η τελευταία εμφανιζόμενη ετικέτα
+closes the table.==κλείνει το τραπέζι.
+<pre> text </pre>==<pre> κείμενο </pre>
+A text between these tags will keep all the spaces and linebreaks in it. Great for ASCII-art and program code.==Ένα κείμενο μεταξύ αυτών των ετικετών θα διατηρήσει όλα τα κενά και τις αλλαγές γραμμής σε αυτό. Ιδανικό για ASCII-art και κώδικα προγράμματος.
+text text text==text text text
+If a line starts with a space, it will be displayed in a non-proportional font.==Εάν μια γραμμή ξεκινά με κενό, θα εμφανίζεται με μη αναλογική γραμματοσειρά.
+#-----------------------------
+
+#File: YaCySearchPluginFF.html
+#---------------------------
+"YaCy-Logo"=="YaCy-Λογότυπο"
+YaCy Firefox Search-Plugin Installation:==YaCy Εγκατάσταση πρόσθετου αναζήτησης Firefox:
+Simply click on the link shown below to integrate the YaCy Firefox Search-Plugin into your browser.==Απλώς κάντε κλικ στον σύνδεσμο που εμφανίζεται παρακάτω για να ενσωματώσετε την προσθήκη YaCy Firefox Search-Plugin στο πρόγραμμα περιήγησής σας.
+In Mozilla Firefox, you can the Search-Plugin via the search box on the toolbar. In Mozilla (Seamonkey) you can access the Search-Plugin via the Sidebar or the Location Bar.==Στο Mozilla Firefox, μπορείτε να βρείτε την προσθήκη αναζήτησης μέσω του πλαισίου αναζήτησης στη γραμμή εργαλείων. Στο Mozilla (Seamonkey) μπορείτε να αποκτήσετε πρόσβαση στην προσθήκη αναζήτησης μέσω της πλευρικής γραμμής ή της γραμμής τοποθεσίας.
+Install the YaCy search plugin.==Εγκαταστήστε την προσθήκη αναζήτησης YaCy.
+#-----------------------------
+
+#File: api/citation.html
+#---------------------------
+Similar documents from different hosts:==Παρόμοια έγγραφα από διαφορετικούς κεντρικούς υπολογιστές:
+List of==Λίστα των
+Cited==Αναφέρεται
+filter cited sentences==φιλτράρετε τις αναφερόμενες προτάσεις
+filter off==φιλτράρισμα
+List of other web pages with citations==Λίστα άλλων ιστοσελίδων με παραπομπές
+#-----------------------------
+
+#File: api/push_p.html
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+File Upload==Μεταφόρτωση αρχείου
+This form can be used to upload a file and assign it to an url.==Αυτή η φόρμα μπορεί να χρησιμοποιηθεί για να ανεβάσετε ένα αρχείο και να το αντιστοιχίσετε σε μια διεύθυνση url.
+Example usage is the direct attachment of a content management system to YaCy to push newly changed files directly to the YaCy indexer.==Παράδειγμα χρήσης είναι η απευθείας προσάρτηση ενός συστήματος διαχείρισης περιεχομένου στο YaCy για να προωθήσει τα πρόσφατα τροποποιημένα αρχεία απευθείας στο ευρετήριο YaCy.
+File Count==Πλήθος αρχείων
+synchronous==σύγχρονος
+commit==διαπράττω
+Files to process:==Αρχεία προς επεξεργασία:
+File Number==Αριθμός αρχείου
+Data==Δεδομένα
+URL==URL
+Collection==Συλλογή
+Last-Modified==Τελευταία Τροποποίηση
+Content-Type==Περιεχόμενο-Τύπος
+The following attributes are only used for media type content==Τα ακόλουθα χαρακτηριστικά χρησιμοποιούνται μόνο για περιεχόμενο τύπου πολυμέσων
+Media-Title==Media-Title
+Media-Keywords ()==Μέσα-Λέξεις-κλειδιά ()
+Result for the recently submitted file(s). You can also submit the same form using the servlet push_p.json to get push confirmations in json format.==Αποτέλεσμα για τα πρόσφατα υποβληθέντα αρχεία. Μπορείτε επίσης να υποβάλετε την ίδια φόρμα χρησιμοποιώντας το servlet push_p.json για να λάβετε επιβεβαιώσεις push σε μορφή json.
+count==κόμης
+successall==επιτυχία
+false==ψευδής
+true==αληθής
+countsuccess==μετράει την επιτυχία
+countfail==αποτυχία
+Item==Είδος
+Success==Επιτυχία
+Message==Μήνυμα
+fail==αποτυγχάνω
+ok==Εντάξει
+If you want to push again files, use this form to pre-define a number of upload forms:==Εάν θέλετε να προωθήσετε ξανά αρχεία, χρησιμοποιήστε αυτήν τη φόρμα για να προκαθορίσετε έναν αριθμό φορμών μεταφόρτωσης:
+#-----------------------------
+
+#File: api/share.html
+#---------------------------
+"Submit"=="Υποτάσσομαι"
+File Share==Κοινή χρήση αρχείου
+This form can be used to share a (index) file==Αυτή η φόρμα μπορεί να χρησιμοποιηθεί για την κοινή χρήση ενός αρχείου (ευρετηρίου).
+Files to process:==Αρχεία προς επεξεργασία:
+Result for the recently submitted file(s). You can also submit the same form using the servlet share.json to get push confirmations in json format.==Αποτέλεσμα για τα πρόσφατα υποβληθέντα αρχεία. Μπορείτε επίσης να υποβάλετε την ίδια φόρμα χρησιμοποιώντας το servlet share.json για να λάβετε επιβεβαιώσεις push σε μορφή json.
+successall==επιτυχία
+false==ψευδής
+true==αληθής
+countsuccess==μετράει την επιτυχία
+countfail==αποτυχία
+Item==Είδος
+URL==URL
+Success==Επιτυχία
+Message==Μήνυμα
+fail==αποτυγχάνω
+ok==Εντάξει
+If you want to push again files, use this form to pre-define a number of upload forms:==Εάν θέλετε να προωθήσετε ξανά αρχεία, χρησιμοποιήστε αυτήν τη φόρμα για να προκαθορίσετε έναν αριθμό φορμών μεταφόρτωσης:
+#-----------------------------
+
+#File: api/table_p.html
+#---------------------------
+"Table"=="Τραπέζι"
+"Edit Table"=="Επεξεργασία πίνακα"
+PK==PK
+#-----------------------------
+
+#File: api/yacydoc.html
+#---------------------------
+"API"=="API"
+This search result can also be retrieved as XML.==Αυτό το αποτέλεσμα αναζήτησης μπορεί επίσης να ανακτηθεί ως XML.
+Click the API icon to see an example call to the search rss API.==Κάντε κλικ στο εικονίδιο API για να δείτε ένα παράδειγμα κλήσης στην αναζήτηση rss API.
+Title==Τίτλος
+Author==Συγγραφέας
+Description==Περιγραφή
+Subject==Θέμα
+Publisher==Εκδότης
+Contributor==Συνεισφέρων
+Date==Ημερομηνία
+Type==Τύπος
+YaCy Identifier==YaCy Αναγνωριστικό
+Identifier==Αναγνωριστικό
+Language==Γλώσσα
+Collections==Συλλογές
+Load Date==Ημερομηνία φόρτωσης
+Referrer Identifier==Αναγνωριστικό παραπομπής
+Referrer URL==Παραπομπή URL
+Document size==Μέγεθος εγγράφου
+Number of Words==Αριθμός Λέξεων
+Inbound Links (anchors)==Εισερχόμενοι σύνδεσμοι (αγκυρώσεις)
+Outbound Links (anchors)==Εξερχόμενοι σύνδεσμοι (αγκυρώσεις)
+Incoming Links (citation)==Εισερχόμενοι σύνδεσμοι (αναφορά)
+Location==Τοποθεσία
+#-----------------------------
+
+#File: compare_yacy.html
+#---------------------------
+"Compare"=="Συγκρίνω"
+Websearch Comparison==Σύγκριση αναζήτησης στο Web
+Left Search Engine==Αριστερά μηχανή αναζήτησης
+Right Search Engine==Σωστή μηχανή αναζήτησης
+Search Result==Αποτέλεσμα αναζήτησης
+loading....==φόρτωση....
+#-----------------------------
+
+#File: env/grafics/donate.html
+#---------------------------
+"Donate!"=="Προσφέρω!"
+Please support our work on YaCy!==Υποστηρίξτε την εργασία μας στο YaCy!
+Github Sponsors==Χορηγοί Github
+beneficial: 5 €==επωφελής: 5 €
+generous: 25 €==γενναιόδωρος: 25 €
+gracious: 50 €==ευγενικό: 50 €
+#-----------------------------
+
+#File: env/templates/header.template
+#---------------------------
+"YaCy"=="YaCy"
+"Search..."=="Ερευνα..."
+"Restart"=="Επανεκκίνηση"
+"Shutdown"=="Κλείσιμο"
+"Community"=="Κοινότητα"
+"Help"=="Βοήθεια"
+"Chat"=="Κουβέντα"
+"Search"=="Ερευνα"
+Administration==Διαχείριση
+Toggle navigation==Εναλλαγή πλοήγησης
+Re-Start==Επανεκκίνηση
+Shutdown==Κλείσιμο
+Forum==Δικαστήριο
+Help==Βοήθεια
+About This Page==Σχετικά με αυτήν τη σελίδα
+JavaScript information==JavaScript πληροφορίες
+external YaCy Tutorials==external YaCy Tutorials
+external Download YaCy==external Λήψη YaCy
+external Community (Web Forums)==external Κοινότητα (Φόρουμ Ιστού)
+external Git Repository==external Git Repository
+Sponsor==Ανάδοχος
+YaCy is free software, so we need the help of many to support the development. You can help by joining a sponsoring plan:==Το YaCy είναι δωρεάν λογισμικό, επομένως χρειαζόμαστε τη βοήθεια πολλών για να υποστηρίξουμε την ανάπτυξη._ You μπορείτε να βοηθήσετε συμμετέχοντας σε ένα σχέδιο χορηγίας:
+externalbecome a Github Sponsor==externalγίνετε χορηγός Github
+externalbecome a YaCy Patreon==externalγίνετε YaCy Patreon
+Please help! We need financial help to move on with the development!==Παρακαλώ βοηθήστε! Χρειαζόμαστε οικονομική βοήθεια για να προχωρήσουμε στην ανάπτυξη!
+Chat==Κουβέντα
+Search==Ερευνα
+First Steps==Πρώτα Βήματα
+Use Case & Account==Χρησιμοποιήστε τον λογαριασμό Case &
+Grab a whole site==Πάρτε έναν ολόκληρο ιστότοπο
+Monitoring==Παρακολούθηση
+System Status==Κατάσταση συστήματος
+Peer-to-Peer Network==Ομότιμο Δίκτυο
+Index Browser==Πρόγραμμα περιήγησης ευρετηρίου
+Network Access==Πρόσβαση στο δίκτυο
+Crawler Monitor==Crawler Monitor
+Production==Παραγωγή
+Crawler==Ερπετό
+AI Lab==AI Lab
+Automation==Αυτοματοποίηση
+YaCy Packs & Import/Export==YaCy Πακέτα & Εισαγωγή/Export
+Content Semantic==Σημασιολογία Περιεχομένου
+Target Analysis==Ανάλυση Στόχων
+Index Administration==Διαχείριση Ευρετηρίου
+System Administration==Διαχείριση συστήματος
+Filter & Blacklists==Φιλτράρισμα μαύρων λιστών &
+RAM/Disk Usage & Updates==RAM/Disk Χρήση & Ενημερώσεις
+Search Portal Integration==Ενσωμάτωση πύλης αναζήτησης
+Portal Configuration==Διαμόρφωση πύλης
+Portal Design==Σχεδιασμός Πύλης
+Ranking and Heuristics==Κατάταξη και Ευρετική
+#-----------------------------
+
+#File: env/templates/simpleSearchHeader.template
+#---------------------------
+"Log in to use extended search features"=="Συνδεθείτε για να χρησιμοποιήσετε εκτεταμένες δυνατότητες αναζήτησης"
+"Search Interfaces"=="Διεπαφές αναζήτησης"
+"Help"=="Βοήθεια"
+"Administration"=="Διαχείριση"
+Toggle navigation==Εναλλαγή πλοήγησης
+Log in==Συνδεθείτε
+Search Interfaces==Διεπαφές αναζήτησης
+==
+Web Search==Αναζήτηση στον Ιστό
+File Search==Αναζήτηση αρχείων
+Compare Search==Συγκρίνετε την Αναζήτηση
+Chat==Κουβέντα
+URL Viewer==URL Προβολή
+Example Calls to the Search API:==Παραδείγματα κλήσεων στην Αναζήτηση API:
+API YaCy JSON==API YaCy JSON
+API YaCy RSS/Opensearch==API YaCy RSS/Opensearch
+API Solr RSS/Opensearch==API Solr RSS/Opensearch
+API Solr Default Core / JSON==API Solr Προεπιλεγμένος πυρήνας / JSON
+API Solr Default Core / XML==API Solr Προεπιλεγμένος πυρήνας / XML
+API Solr Webgraph Core / XML==API Solr Webgraph Core / XML
+About This Page==Σχετικά με αυτήν τη σελίδα
+YaCy Tutorials==YaCy Σεμινάρια
+JavaScript information==JavaScript πληροφορίες
+external Download YaCy==external Λήψη YaCy
+external Community (Web Forums)==external Κοινότητα (Φόρουμ Ιστού)
+external Git Repository==external Git Repository
+external Bugtracker==external Bugtracker
+Administration »==Διαχείριση »
+#-----------------------------
+
+#File: env/templates/simpleheader.template
+#---------------------------
+"Help"=="Βοήθεια"
+Toggle navigation==Εναλλαγή πλοήγησης
+Search Interfaces==Διεπαφές αναζήτησης
+Web Search==Αναζήτηση στον Ιστό
+File Search==Αναζήτηση αρχείων
+Compare Search==Συγκρίνετε την Αναζήτηση
+Chat==Κουβέντα
+URL Viewer==URL Προβολή
+Example Calls to the Search API:==Παραδείγματα κλήσεων στην Αναζήτηση API:
+API YaCy JSON==API YaCy JSON
+API YaCy RSS/Opensearch==API YaCy RSS/Opensearch
+API Solr RSS/Opensearch==API Solr RSS/Opensearch
+API Solr Default Core / JSON==API Solr Προεπιλεγμένος πυρήνας / JSON
+API Solr Default Core / XML==API Solr Προεπιλεγμένος πυρήνας / XML
+API Solr Webgraph Core / XML==API Solr Webgraph Core / XML
+About This Page==Σχετικά με αυτήν τη σελίδα
+YaCy Tutorials==YaCy Σεμινάρια
+JavaScript information==JavaScript πληροφορίες
+external Download YaCy==external Λήψη YaCy
+external Community (Web Forums)==external Κοινότητα (Φόρουμ Ιστού)
+external Git Repository==external Git Repository
+external Bugtracker==external Bugtracker
+Administration »==Διαχείριση »
+#-----------------------------
+
+#File: env/templates/submenuAI.template
+#---------------------------
+AI Lab==AI Lab
+LLM Selection==LLM Επιλογή
+RAG Config==RAG Διαμόρφωση
+Tools Config==Εργαλεία Διαμόρφωση
+Log Reports==Αναφορές καταγραφής
+AI Shield==AI Shield
+Chat==Κουβέντα
+#-----------------------------
+
+#File: env/templates/submenuAccessTracker.template
+#---------------------------
+Access Tracker==Access Tracker
+Server Access==Πρόσβαση διακομιστή
+Access Grid==Πλέγμα πρόσβασης
+Incoming Requests Overview==Επισκόπηση εισερχόμενων αιτημάτων
+Incoming Requests Details==Λεπτομέρειες εισερχόμενων αιτημάτων
+All Connections==Όλες οι Συνδέσεις
+Local Search==Τοπική αναζήτηση
+Log==Κούτσουρο
+Host Tracker==Host Tracker
+Access Rate Limitations==Περιορισμοί ποσοστού πρόσβασης
+Remote Search==Απομακρυσμένη αναζήτηση
+Cookie Menu==Μενού cookie
+Incoming Cookies==Εισερχόμενα Cookies
+Outgoing Cookies==Εξερχόμενα Cookies
+#-----------------------------
+
+#File: env/templates/submenuBlacklist.template
+#---------------------------
+Filter & Blacklists==Φιλτράρισμα μαύρων λιστών &
+Blacklist Administration==Διαχείριση μαύρης λίστας
+Blacklist Cleaner==Καθαριστικό μαύρης λίστας
+Blacklist Test==Δοκιμή μαύρης λίστας
+Import/Export==Εισαγωγή/Export
+#-----------------------------
+
+#File: env/templates/submenuComputation.template
+#---------------------------
+Application Status==Κατάσταση εφαρμογής
+System==Σύστημα
+Status==Κατάσταση
+Processes==Διαδικασίες
+Server Log==Αρχείο καταγραφής διακομιστή
+Log Reports==Αναφορές καταγραφής
+Thread Dump==Απόρριψη νήματος
+Concurrent Indexing==Ταυτόχρονη ευρετηρίαση
+Memory Usage==Χρήση Μνήμης
+Search Sequence==Ακολουθία αναζήτησης
+Messages==Μηνύματα
+Overview==Επισκόπηση
+Incoming News==Εισερχόμενα Ειδήσεις
+Processed News==Επεξεργασμένα Ειδήσεις
+Outgoing News==Εξερχόμενες Ειδήσεις
+Published News==Δημοσιεύτηκαν Ειδήσεις
+Community Data==Δεδομένα Κοινότητας
+Surftips==Surftips
+Local Peer Wiki==Τοπικό ομότιμο Wiki
+Bookmarks==Σελιδοδείκτες
+#-----------------------------
+
+#File: env/templates/submenuConfig.template
+#---------------------------
+System Administration==Διαχείριση συστήματος
+Advanced Settings==Προηγμένες ρυθμίσεις
+Performance Settings of Busy Queues==Ρυθμίσεις απόδοσης των κατειλημμένων ουρών
+Viewer and administration for database tables==Προβολή και διαχείριση πινάκων βάσεων δεδομένων
+Advanced Properties==Προηγμένες ιδιότητες
+UI Translations==Μεταφράσεις διεπαφής χρήστη
+#-----------------------------
+
+#File: env/templates/submenuCrawlMonitor.template
+#---------------------------
+Web Crawler==Web Crawler
+Processing Monitor==Επεξεργασία Monitor
+Crawler==Ερπετό
+Loader==Φορτωτής
+Rejected URLs==Διευθύνσεις URL που απορρίφθηκαν
+Queues==Ουρές
+Local==Τοπικός
+Global==Καθολικός
+Remote==Μακρινός
+No-Load==Χωρίς Φορτίο
+Crawler Steering==Διεύθυνση ερπυστριοφόρου
+Scheduler and Profile Editor==Προγραμματιστής και Επεξεργαστής Προφίλ
+robots.txt Monitor==Οθόνη robots.txt
+Crawl Results==Αποτελέσματα ανίχνευσης
+Overview==Επισκόπηση
+(1) Receipts==(1) Αποδείξεις
+(2) Queries==(2) Ερωτήματα
+(3) DHT Transfer==(3) DHT Μεταφορά
+(4) Proxy Use==(4) Χρήση διακομιστή μεσολάβησης
+(5) Local Crawling==(5) Τοπική ανίχνευση
+(6) Global Crawling==(6) Παγκόσμια ανίχνευση
+(7) Pack Import==(7) Εισαγωγή συσκευασίας
+#-----------------------------
+
+#File: env/templates/submenuCrawler.template
+#---------------------------
+Load Web Pages==Φόρτωση ιστοσελίδων
+Site Crawling==Ανίχνευση ιστότοπου
+Parser Configuration==Διαμόρφωση Parser
+#-----------------------------
+
+#File: env/templates/submenuDesign.template
+#---------------------------
+Design==Σχέδιο
+Appearance==Εμφάνιση
+Language==Γλώσσα
+Search Page Layout==Αναζήτηση διάταξης σελίδας
+#-----------------------------
+
+#File: env/templates/submenuIndexControl.template
+#---------------------------
+Index Administration==Διαχείριση Ευρετηρίου
+URL Database Administration==URL Διαχείριση βάσης δεδομένων
+Index Deletion==Διαγραφή ευρετηρίου
+Index Sources & Targets==Πηγές ευρετηρίου & Στόχοι
+Solr Schema Editor==Solr Επεξεργαστής σχήματος
+Field Re-Indexing==Εκ νέου ευρετηρίαση πεδίου
+Reverse Word Index==Ευρετήριο αντίστροφης λέξης
+Content Analysis==Ανάλυση Περιεχομένου
+#-----------------------------
+
+#File: env/templates/submenuIndexCreate.template
+#---------------------------
+Advanced Crawler==Advanced Crawler
+Crawler/Spider==Crawler/Spider
+Crawl Start (Expert)==Έναρξη ανίχνευσης (Ειδικός)
+Crawling of MediaWikis==Ανίχνευση του MediaWikis
+Crawling of phpBB3 Forums==Ανίχνευση φόρουμ phpBB3
+Network Harvesting==Συγκομιδή Δικτύου
+Network Scanner==Δικτυακός σαρωτής
+Remote Crawling==Απομακρυσμένη ανίχνευση
+Scraping Proxy==Scraping Proxy
+Autocrawl==Autocrawl
+#-----------------------------
+
+#File: env/templates/submenuIndexImport.template
+#---------------------------
+Content Export / Import==Εξαγωγή / Εισαγωγή περιεχομένου
+YaCy Packs==YaCy Πακέτα
+Pack Generator==Γεννήτρια πακέτων
+Pack Downloader==Πρόγραμμα λήψης πακέτων
+Pack Manager==Διαχειριστής πακέτων
+Export==Εξαγωγή
+Index Export==Δείκτης Εξαγωγή
+Solr Dump Export/Import==Solr Dump Export/Import
+Import==Εισαγωγή
+RSS==RSS
+OAI-PMH==ΟΑΙ-ΠΜΗ
+WARC==WARC
+ZIM==ΖΙΜ
+JsonList==JsonList
+Database Reader==Αναγνώστης βάσης δεδομένων
+phpBB3 Database==Βάση δεδομένων phpBB3
+MediaWiki Dump==Χωματερή MediaWiki
+#-----------------------------
+
+#File: env/templates/submenuMaintenance.template
+#---------------------------
+RAM/Disk Usage & Updates==RAM/Disk Χρήση & Ενημερώσεις
+Performance==Εκτέλεση
+Web Cache==Web Cache
+Download System Update==Κατεβάστε την ενημέρωση συστήματος
+#-----------------------------
+
+#File: env/templates/submenuPortalConfiguration.template
+#---------------------------
+Portal Configuration==Διαμόρφωση πύλης
+Generic Search Portal==Πύλη γενικής αναζήτησης
+Search Box Anywhere==Πλαίσιο αναζήτησης οπουδήποτε
+User Profile==Προφίλ χρήστη
+Local robots.txt==Τοπικά robots.txt
+#-----------------------------
+
+#File: env/templates/submenuPublication.template
+#---------------------------
+Publication==Δημοσίευση
+Wiki==Wiki
+Blog==Ιστολόγιο
+#-----------------------------
+
+#File: env/templates/submenuRanking.template
+#---------------------------
+Ranking and Heuristics==Κατάταξη και Ευρετική
+Solr Ranking Config==Solr Διαμόρφωση κατάταξης
+RWI Ranking Config==RWI Διαμόρφωση κατάταξης
+Heuristics==Ευρετική
+#-----------------------------
+
+#File: env/templates/submenuSemantic.template
+#---------------------------
+Content Semantic==Σημασιολογία Περιεχομένου
+Automated Annotation==Αυτοματοποιημένος σχολιασμός
+Auto-Annotation Vocabulary Editor==Επεξεργαστής λεξιλογίου Auto-Anotation
+Knowledge Loader==Φορτωτή γνώσης
+#-----------------------------
+
+#File: env/templates/submenuTargetAnalysis.template
+#---------------------------
+Target Analysis==Ανάλυση Στόχων
+Mass Crawl Check==Έλεγχος μαζικής ανίχνευσης
+Regex Test==Τεστ Regex
+#-----------------------------
+
+#File: env/templates/submenuUseCaseAccount.template
+#---------------------------
+Use Case & Accounts==Χρήση λογαριασμών υπόθεσης &
+Basic Configuration==Βασική διαμόρφωση
+Accounts==Λογαριασμοί
+Network Configuration==Διαμόρφωση δικτύου
+#-----------------------------
+
+#File: env/templates/submenuWebStructure.template
+#---------------------------
+Web Visualization==Οπτικοποίηση Ιστού
+Index Browser==Πρόγραμμα περιήγησης ευρετηρίου
+Web Structure==Δομή Ιστού
+Image Collage==Κολάζ εικόνων
+#-----------------------------
+
+#File: goto_p.html
+#---------------------------
+forwarding==προώθηση
+forward to remote peer==προώθηση σε απομακρυσμένο ομότιμο
+#-----------------------------
+
+#File: index.html
+#---------------------------
+"Extend media search results (images, videos or applications specific) to pages including such medias (provides generally more results, but eventually less relevant)."=="Επεκτείνετε τα αποτελέσματα αναζήτησης πολυμέσων (εικόνες, βίντεο ή συγκεκριμένες εφαρμογές) σε σελίδες που περιλαμβάνουν τέτοια μέσα (παρέχει γενικά περισσότερα αποτελέσματα, αλλά τελικά λιγότερο σχετικά)."
+"Strictly limit media search results (images, videos or applications specific) to indexed documents matching exactly the desired content domain."=="Περιορίστε αυστηρά τα αποτελέσματα αναζήτησης πολυμέσων (εικόνες, βίντεο ή συγκεκριμένες εφαρμογές) σε έγγραφα με ευρετήριο που αντιστοιχούν ακριβώς στον επιθυμητό τομέα περιεχομένου."
+"Reference alpha-2 language codes list"=="Λίστα κωδικών γλωσσών άλφα-2 αναφοράς"
+Search==Ερευνα
+Text==Κείμενο
+Images==εικόνες
+Audio==Ήχος
+Video==Βίντεο
+Applications==Εφαρμογές
+more options...==περισσότερες επιλογές...
+Results per page==Αποτελέσματα ανά σελίδα
+Resource==Πόρος
+the peer-to-peer network==το δίκτυο peer-to-peer
+only the local index==μόνο ο τοπικός δείκτης
+Prefer mask==Προτιμήστε τη μάσκα
+restrict on==περιορίζουν σε
+show all==δείξε όλα
+Constraints:==Περιορισμοί:
+only index pages==μόνο σελίδες ευρετηρίου
+Media search==Αναζήτηση πολυμέσων
+Extended==Εκτεταμένη
+Strict==Αυστηρός
+Query Operators==Χειριστές ερωτημάτων
+restrictions==περιορισμούς
+inurl:<phrase>==inurl:<phrase>
+only urls with the <phrase> in the url==μόνο url με <phrase> στο url
+inlink:<phrase>==inlink:<phrase>
+only urls with the <phrase> within outbound links of the document==μόνο url με την <phrase> εντός εξερχόμενων συνδέσμων του εγγράφου
+filetype:<ext>==τύπος αρχείου:<ext>
+only urls with extension <ext>==μόνο url με επέκταση <ext>
+site:<host>==ιστότοπος:<host>
+only urls from host <host>==μόνο url από τον κεντρικό υπολογιστή <host>
+author:<author>==συγγραφέας:<author>
+only pages with as-author-annotated <author>==μόνο σελίδες με σχολιασμούς ως συγγραφέας <author>
+tld:<tld>==tld:<tld>
+only pages from top-level-domains <tld>==μόνο σελίδες από τομείς ανώτατου επιπέδου <tld>
+on:<date>==στις:<date>
+only pages with <date> in content==μόνο σελίδες με <date> σε περιεχόμενο
+from:<date1> to:<date2>==από:<date1> έως:<date2>
+only pages with a date between <date1> and <date2> in content==μόνο σελίδες με ημερομηνία μεταξύ <date1> και <date2> στο περιεχόμενο
+keyword:<phrase>==λέξη-κλειδί:<phrase>
+only pages with keyword anotation containing <phrase>==μόνο σελίδες με σχολιασμό λέξης-κλειδιού που περιέχει <phrase>
+/http==/http
+only resources from http or https servers==μόνο πόροι από διακομιστές http ή https
+/ftp==/ftp
+/smb==/smb
+/file==/file
+spatial restrictions==χωρικούς περιορισμούς
+/location==/location
+only documents having location metadata (geographical coordinates)==μόνο έγγραφα με μεταδεδομένα τοποθεσίας (γεωγραφικές συντεταγμένες)
+/radius/<latitude>/<longitude>/<distance>==/radius/<latitude>/<longitude>/<distance>
+only documents within a square zone embracing a circle of given radius (in decimal degrees) around the specified latitude and longitude (in decimal degrees)==μόνο έγγραφα εντός μιας τετράγωνης ζώνης που περιλαμβάνει έναν κύκλο δεδομένης ακτίνας (σε δεκαδικούς βαθμούς) γύρω από το καθορισμένο γεωγραφικό πλάτος και μήκος (σε δεκαδικούς βαθμούς)
+ranking modifier==τροποποιητής κατάταξης
+/date==/date
+sort by date (latest first)==ταξινόμηση κατά ημερομηνία (πρώτα η τελευταία)
+/near==/near
+multiple words shall appear near==θα εμφανιστούν πολλές λέξεις κοντά
+"" (doublequotes)=="" (διπλά εισαγωγικά)
+/language/<lang>==/language/<lang>
+heuristics==ευρετικές
+/heuristic==/heuristic
+add search results from external opensearch systems==προσθέστε αποτελέσματα αναζήτησης από εξωτερικά συστήματα ανοιχτής αναζήτησης
+Search Navigation==Αναζήτηση πλοήγησης
+keyboard shortcuts==συντομεύσεις πληκτρολογίου
+next result page==επόμενη σελίδα αποτελεσμάτων
+previous result page==προηγούμενη σελίδα αποτελεσμάτων
+automatic result retrieval==αυτόματη ανάκτηση αποτελεσμάτων
+browser integration==ενσωμάτωση προγράμματος περιήγησης
+after searching, click-open on the default search engine in the upper right search field of your browser and select 'Add "YaCy Search.."'==μετά την αναζήτηση, κάντε κλικ-άνοιγμα στην προεπιλεγμένη μηχανή αναζήτησης στο επάνω δεξιό πεδίο αναζήτησης του προγράμματος περιήγησής σας και επιλέξτε "Προσθήκη "YaCy Αναζήτηση.."
+search as rss feed==αναζήτηση ως τροφοδοσία rss
+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" στη διεύθυνση url του αποτελέσματος αναζήτησης με ".json"
+#-----------------------------
+
+#File: jslicense.html
+#---------------------------
+YaCy JavaScript license information==YaCy JavaScript στοιχεία άδειας
+YaCy JavaScript files license information==YaCy JavaScript αρχείο πληροφοριών άδειας χρήσης
+Script==Γραφή
+License==Αδεια
+Source==Πηγή
+#-----------------------------
+
+#File: portalsearch/yacy-portalsearch.html
+#---------------------------
+YaCy Bookmarks==YaCy Σελιδοδείκτες
+YaCy Portalsearch:==YaCy Αναζήτηση πύλης:
+#-----------------------------
+
+#File: processing/domaingraph/applet/index.html
+#---------------------------
+"Download Java Plug-in"=="Λήψη της προσθήκης Java"
+"Processing.org"=="Processing.org"
+domaingraph : Built with Processing==domaingraph : Κατασκευάστηκε με επεξεργασία
+This browser does not have a Java Plug-in.==Αυτό το πρόγραμμα περιήγησης δεν διαθέτει Java Plug-in.
+Get the latest Java Plug-in here.==Αποκτήστε την πιο πρόσφατη προσθήκη Java εδώ.
+Built with Processing==Κατασκευάστηκε με Επεξεργασία
+#-----------------------------
+
+#File: proxymsg/authfail.inc
+#---------------------------
+"login"=="σύνδεση"
+Your Username/Password is wrong.==Το όνομα χρήστη σας/Password είναι λάθος.
+Username==Όνομα χρήστη
+Password==Σύνθημα
+#-----------------------------
+
+#File: proxymsg/error.html
+#---------------------------
+YaCy: Error Message==YaCy: Μήνυμα σφάλματος
+YaCy==YaCy
+request:==αίτηση:
+unspecified error==απροσδιόριστο σφάλμα
+not-yet-assigned error==δεν έχει εκχωρηθεί ακόμη σφάλμα
+You don't have an active internet connection. Please go online.==Δεν έχετε ενεργή σύνδεση στο διαδίκτυο. Παρακαλώ συνδεθείτε στο διαδίκτυο.
+Could not load resource. The file is not available.==Δεν ήταν δυνατή η φόρτωση του πόρου. Το αρχείο δεν είναι διαθέσιμο.
+#-----------------------------
+
+#File: proxymsg/proxylimits.inc
+#---------------------------
+Your Account is disabled for surfing.==Ο λογαριασμός σας είναι απενεργοποιημένος για σερφάρισμα.
+#-----------------------------
+
+#File: proxymsg/unknownHost.inc
+#---------------------------
+Did you mean:==Μήπως εννοούσες:
+#-----------------------------
+
+#File: proxymsg/urlproxyheader.html
+#---------------------------
+"add bookmark"=="προσθήκη σελιδοδείκτη"
+YaCy stop proxy==YaCy διακομιστή μεσολάβησης
+(Warning: secure target viewed over normal http)==(Προειδοποίηση: ο ασφαλής στόχος προβλήθηκε σε κανονικό http)
+#-----------------------------
+
+#File: rct_p.html
+#---------------------------
+"retrieve"=="ανακτώ"
+remote crawl fetch test==δοκιμή λήψης απομακρυσμένης ανίχνευσης
+Retrieve remote crawl url list==Ανάκτηση λίστας url απομακρυσμένης ανίχνευσης
+Target Peer:==Ομότιμος στόχος:
+select==επιλέγω
+#-----------------------------
+
+#File: rssTerminal.html
+#---------------------------
+rss terminal==τερματικό rss
+#-----------------------------
+
+#File: sharedBlacklist_p.html
+#---------------------------
+"select all"=="επιλέξτε όλα"
+"deselect all"=="αποεπιλογή όλων"
+"add"=="προσθέτω"
+Add Items to Blacklist==Προσθήκη αντικειμένων στη μαύρη λίστα
+Unable to store the items into the blacklist file:==Δεν είναι δυνατή η αποθήκευση των στοιχείων στο αρχείο μαύρης λίστας:
+File Error! Unable to fetch data from file.==Σφάλμα αρχείου! Δεν είναι δυνατή η ανάκτηση δεδομένων από το αρχείο.
+YaCy-Peer "==YaCy-Ομότιμος "
+" not found.==Το " δεν βρέθηκε.
+URL "==URL "
+" not found or empty list.==" δεν βρέθηκε ή κενή λίστα.
+Wrong Invocation! Please invoke with sharedBlacklist.html?name=PeerName==Λάθος επίκληση! Επίκληση με sharedBlacklist.html?name=PeerName
+Parse Error! An error occured while parsing XML data. Please check if the XML is valid.==Σφάλμα ανάλυσης! Παρουσιάστηκε σφάλμα κατά την ανάλυση των δεδομένων XML. Ελέγξτε εάν το XML είναι έγκυρο.
+Blacklist source:==Πηγή μαύρης λίστας:
+Blacklist target:==Στόχος της μαύρης λίστας:
+Blacklist item==Στοιχείο μαύρης λίστας
+#-----------------------------
+
+#File: terminal_p.html
+#---------------------------
+"YaCy"=="YaCy"
+"Download Java Plug-in"=="Λήψη της προσθήκης Java"
+"PerformanceGraph"=="Γράφημα Απόδοσης"
+"WebStructurePicture"=="WebStructurePicture"
+"The yacy Network"=="Το δίκτυο yacy"
+YaCy System Terminal Monitor==YaCy Παρακολούθηση τερματικού συστήματος
+<Search Form>==<Φόρμα αναζήτησης>
+<Crawl Start>==<Έναρξη ανίχνευσης>
+<Status Page>==<Σελίδα κατάστασης>
+<Shutdown>==<Τερματισμός>
+Event Terminal==Τερματικό εκδηλώσεων
+Image Terminal==Τερματικό εικόνας
+Domain Monitor==Παρακολούθηση τομέα
+This browser does not have a Java Plug-in.==Αυτό το πρόγραμμα περιήγησης δεν διαθέτει Java Plug-in.
+Get the latest Java Plug-in here.==Αποκτήστε την πιο πρόσφατη προσθήκη Java εδώ.
+Resource Monitor==Παρακολούθηση πόρων
+Network Monitor==Παρακολούθηση δικτύου
+#-----------------------------
+
+#File: yacychat.html
+#---------------------------
+"Attach search results by default"=="Επισυνάψτε τα αποτελέσματα αναζήτησης από προεπιλογή"
+"Search"=="Ερευνα"
+"Attach a file"=="Επισυνάψτε ένα αρχείο"
+"Send"=="Στέλνω"
+"Clear chat"=="Εκκαθάριση συνομιλίας"
+"Download chat"=="Λήψη συνομιλίας"
+"Upload chat"=="Μεταφόρτωση συνομιλίας"
+"Show system prompt"=="Εμφάνιση προτροπής συστήματος"
+YaCy Chat==YaCy Συζήτηση
+This Chat is private. YaCy does not keep any history — only your browser remembers the current conversation.==Αυτή η συνομιλία είναι ιδιωτική. Το YaCy δεν διατηρεί ιστορικό — μόνο το πρόγραμμα περιήγησής σας θυμάται την τρέχουσα συνομιλία.
+Default Dialog Augmentation:==Προεπιλεγμένη επαύξηση διαλόγου:
+no search, allow attachments==χωρίς αναζήτηση, επιτρέπονται τα συνημμένα
+use local search==χρησιμοποιήστε τοπική αναζήτηση
+use global search==χρησιμοποιήστε την παγκόσμια αναζήτηση
+User==Μεταχειριζόμενος
+Attach Search Results==Επισυνάψτε τα αποτελέσματα αναζήτησης
+Attach PNG/JPG or text (.txt/.md/.tex)==Επισυνάψτε PNG/JPG ή κείμενο (.txt/.md/.tex)
+Clear Chat==Εκκαθάριση συνομιλίας
+Download Chat==Κατεβάστε το Chat
+Upload Chat==Μεταφόρτωση συνομιλίας
+Show System==Εμφάνιση συστήματος
+#-----------------------------
+
+#File: yacyinteractive.html
+#---------------------------
+"Search..."=="Ερευνα..."
+"Search"=="Ερευνα"
+YaCy Interactive Search==YaCy Διαδραστική αναζήτηση
+Click the API icon to see an example call to the search rss API.==Κάντε κλικ στο εικονίδιο API για να δείτε ένα παράδειγμα κλήσης στην αναζήτηση rss API.
+loading from local index...==φόρτωση από τοπικό ευρετήριο...
+onkeyup="xmlhttpPost(); return false;"==onkeyup="xmlhttpPost(); return false;"
+#-----------------------------
+
+#File: yacysearch.html
+#---------------------------
+"Refresh sorting. Depending on their rank, some results fetched in background may then appear on this page."=="Ανανέωση ταξινόμησης. Ανάλογα με την κατάταξή τους, ορισμένα αποτελέσματα που λαμβάνονται στο παρασκήνιο ενδέχεται στη συνέχεια να εμφανιστούν σε αυτήν τη σελίδα."
+"YaCy server is fetching results from available data sources."=="Ο διακομιστής YaCy ανακτά αποτελέσματα από διαθέσιμες πηγές δεδομένων."
+"Show anyway links to images that could not be rendered"=="Εμφάνιση ούτως ή άλλως συνδέσμων προς εικόνες που δεν ήταν δυνατή η απόδοση"
+"Hide links to images that could not be rendered"=="Απόκρυψη συνδέσμων σε εικόνες που δεν ήταν δυνατή η απόδοση"
+"Play all"=="Παίξτε όλα"
+"Stop all"=="Σταματήστε όλα"
+Click the RSS icon to see this search result as RSS message stream.==Κάντε κλικ στο εικονίδιο RSS για να δείτε αυτό το αποτέλεσμα αναζήτησης ως ροή μηνυμάτων RSS.
+Use the RSS search result format to add static searches to your RSS reader, if you use one.==Χρησιμοποιήστε τη μορφή αποτελεσμάτων αναζήτησης RSS για να προσθέσετε στατικές αναζητήσεις στον αναγνώστη RSS, εάν χρησιμοποιείτε έναν.
+search==έρευνα
+No Results.==Κανένα αποτέλεσμα.
+No Results. (length of search words must be at least 1 character)==Κανένα αποτέλεσμα. (το μήκος των λέξεων αναζήτησης πρέπει να είναι τουλάχιστον 1 χαρακτήρα)
+You are not allowed to search the web with this peer.==Δεν επιτρέπεται να κάνετε αναζήτηση στον ιστό με αυτόν τον ομότιμο.
+You have reached the maximum allowed number of accesses to this search page within ten minutes.==Έχετε φτάσει τον μέγιστο επιτρεπόμενο αριθμό προσβάσεων σε αυτήν τη σελίδα αναζήτησης μέσα σε δέκα λεπτά.
+Please try again later or log in as administrator or as a user with extended search right.==Δοκιμάστε ξανά αργότερα ή συνδεθείτε ως διαχειριστής ή ως χρήστης με εκτεταμένο δικαίωμα αναζήτησης.
+You have reached the maximum allowed number of accesses to this search page within one minute.==Έχετε συμπληρώσει τον μέγιστο επιτρεπόμενο αριθμό προσβάσεων σε αυτήν τη σελίδα αναζήτησης μέσα σε ένα λεπτό.
+You have reached the maximum allowed number of accesses to this search page within three seconds.==Έχετε φτάσει τον μέγιστο επιτρεπόμενο αριθμό προσβάσεων σε αυτήν τη σελίδα αναζήτησης μέσα σε τρία δευτερόλεπτα.
+Did you mean:==Μήπως εννοούσες:
+Location -- click on map to enlarge==Τοποθεσία -- κάντε κλικ στον χάρτη για μεγέθυνση
+Failed to render 0 thumbnail(s).==Αποτυχία απόδοσης 0 μικρογραφιών.
+Show==Επίδειξη
+Hide==Κρύβω
+Media==Μέσα ενημέρωσης
+URL==URL
+Player==Παίχτης
+#-----------------------------
+
+#File: yacysearch_location.html
+#---------------------------
+"API"=="API"
+"search"=="έρευνα"
+The information that is presented on this page can also be retrieved as XML==Οι πληροφορίες που παρουσιάζονται σε αυτήν τη σελίδα μπορούν επίσης να ανακτηθούν ως XML
+Click the API icon to see the XML.==Κάντε κλικ στο εικονίδιο API για να δείτε το XML.
+search==έρευνα
+#-----------------------------
+
+#File: yacysearchitem.html
+#---------------------------
+"bookmark"=="σελιδοδείκτη"
+"recommend"=="συνιστώ"
+"delete"=="διαγράφω"
+"blacklist host"=="οικοδεσπότης μαύρης λίστας"
+"Show all"=="Εμφάνιση όλων"
+"Last known modification date"=="Τελευταία γνωστή ημερομηνία τροποποίησης"
+"Browse index"=="Περιήγηση στο ευρετήριο"
+"Raw ranking score value"=="Ακατέργαστη τιμή βαθμολογίας κατάταξης"
+Tags:==Ετικέτες:
+Metadata==Μεταδεδομένα
+Parser==Αναλυτής
+Citations==Αναφορές
+Pictures==Εικόνες
+Cache==Κρύπτη
+View via proxy==Προβολή μέσω διακομιστή μεσολάβησης
+Not supported==Δεν υποστηρίζεται
+#-----------------------------
+
+#File: yacysearchpagination.html
+#---------------------------
+"Previous page"=="Προηγούμενη σελίδα"
+"Next page"=="Επόμενη σελίδα"
+«==«
+»==»
+#-----------------------------
+
+#File: yacysearchtrailer.html
+#---------------------------
+"global"=="καθολικός"
+"local"=="τοπικός"
+"Use the default ranking profile (customizable), ordering results by score."=="Χρησιμοποιήστε το προεπιλεγμένο προφίλ κατάταξης (προσαρμόσιμο), ταξινομώντας τα αποτελέσματα ανά βαθμολογία."
+"Use the 'Date' ranking profile, ordering results by default on each document last modification date."=="Χρησιμοποιήστε το προφίλ κατάταξης «Ημερομηνία», ταξινομώντας τα αποτελέσματα από προεπιλογή σε κάθε ημερομηνία τελευταίας τροποποίησης του εγγράφου."
+"text"=="κείμενο"
+"image"=="εικών"
+"audio"=="ήχου"
+"video"=="βίντεο"
+"app"=="εφαρμογή"
+"false"=="ψευδής"
+"Extend media search results to pages including such medias (provides generally more results, but eventually less relevant)"=="Επέκταση των αποτελεσμάτων αναζήτησης πολυμέσων σε σελίδες που περιλαμβάνουν τέτοια μέσα (παρέχει γενικά περισσότερα αποτελέσματα, αλλά τελικά λιγότερο σχετικά)"
+"true"=="αληθής"
+"Strictly limit media search results to indexed documents matching exactly the desired content domain."=="Περιορίστε αυστηρά τα αποτελέσματα αναζήτησης πολυμέσων σε έγγραφα με ευρετήριο που αντιστοιχούν ακριβώς στον επιθυμητό τομέα περιεχομένου."
+"earthsearchlogo"=="λογότυπο earthsearch"
+"Sorted by descending counts"=="Ταξινόμηση κατά φθίνουσα μέτρηση"
+"Sorted by ascending counts"=="Ταξινόμηση κατά αύξουσα μέτρηση"
+"Sorted by descending labels"=="Ταξινόμηση κατά φθίνουσες ετικέτες"
+"Sorted by ascending labels"=="Ταξινόμηση κατά αύξουσες ετικέτες"
+"click to expand facet"=="κάντε κλικ για ανάπτυξη πτυχής"
+Peer-to-Peer==Peer-to-Peer
+Stealth Mode==Λειτουργία Stealth
+Privacy==Μυστικότητα
+Stealth Mode==Stealth Mode
+Context Ranking==Κατάταξη περιβάλλοντος
+Sort by Date==Ταξινόμηση κατά Ημερομηνία
+Documents==Εγγραφα
+Images==εικόνες
+Audio==Ήχος
+Video==Βίντεο
+Apps==Εφαρμογές
+Extended==Εκτεταμένη
+Strict==Αυστηρός
+Location==Τοποθεσία
+#-----------------------------
diff --git a/locales/es.lng b/locales/es.lng
index 06a2b14bb..675ad2250 100644
--- a/locales/es.lng
+++ b/locales/es.lng
@@ -15,146 +15,263 @@
#File: ConfigLanguage_p.html
#---------------------------
-# Only part 1.
-# Contributors are in chronological order, not how much they did absolutely.
-# Thank you for your help!
-default(english)==Español
-==Iván Hernández Cazorla
-==Iván Hernández Cazorla
-==Jesús E.
+Author(s) (chronological)==Autor(es) (crónicos)
+Available Languages==Idiomas disponibles
+Current language==Idioma actual
+Send additions to maintainer==Enviar adiciones al encargado
+default(english)==default(inglés)
+Language selection==Selección de idioma
+You can change the language of the YaCy-webinterface with translation files.==Puede cambiar el idioma de la interfaz web de YaCy con archivos de traducción.
+Download Language File==Descargar archivo de idioma
+Supported formats are the internal language file (extension .lng) or XLIFF (extension .xlf) format.==Los formatos admitidos son el archivo de idioma interno (extensión .lng) o el formato XLIFF (extensión .xlf).
+Install new language from URL==Instalar nuevo idioma desde la URL
+Use this language==Usa este idioma
+"Use"=="Usa"
+"Delete"=="Desinstalar"
+"Install"=="Instalar"
+Error saving the language file.==Error al guardar el archivo de idioma.
+Make sure that you only download data from trustworthy sources. The new language file==Asegúrese de que sólo descargue datos de fuentes confiables. El nuevo archivo de idioma
+might overwrite existing data if a file of the same name exists already.==podría sobrescribir los datos existentes si ya existe un archivo con el mismo nombre.
#-----------------------------
#File: AccessGrid_p.html
#---------------------------
-YaCy Network Access==Acceso a la red YaCy
+Server Access Grid==Rejilla de acceso al servidor
+This images shows incoming connections to your YaCy peer and outgoing connections from your peer to other peers and web servers==Estas imágenes muestran conexiones entrantes a sus conexiones de par y salida YaCy desde su par a otros pares y servidores web
+"YaCy Access Grid"=="Rejilla de acceso YaCy"
#-----------------------------
#File: AccessTracker_p.html
#---------------------------
-Access Tracker==Rastreador de acceso
Server Access Overview==Información general de acceso al servidor
->Host<==>Host<
->Path<==>Ruta<
-Date<==Fecha<
+This is a list of requests (max. 1000) to the local http server within the last hour.==Esta es una lista de peticiones (máx.1000) al servidor http local en la última hora.
+Access Count During==Contar el acceso durante
last Second==el último segundo
last Minute==el último minuto
last 10 Minutes==los últimos 10 minutos
last Hour==la última hora
->Host==>Host
-Total:==Total:
-Success:==Exitos:
+The following hosts are registered as source for brute-force requests to protected pages==Los siguientes hosts están registrados como fuente para solicitudes de fuerza bruta a páginas protegidas
+Access Times==Tiempos de acceso
+Server Access Details==Detalles de acceso al servidor
+Local Search Log==Registro de búsqueda local
+Local Search Host Tracker==Localizador de hosts de búsqueda local
+Remote Search Log==Registro de búsqueda remoto
+Remote Search Host Tracker==crawler de host de búsqueda remota
+This is a list of searches that had been requested from this' peer search interface==Esta es una lista de búsquedas que se habían solicitado desde esta 'interfaz de búsqueda de pares
+Requesting Host==Solicitando host
Offset==Offset
Expected Results==Resultados esperados
Returned Results==Resultados devueltos
+Used Time (ms)==Tiempo usado (ms)
+URL fetch (ms)==URL get (ms)
+Snippet comp (ms)==Snippet comp (ms)
Query==Consulta
->User Agent<==>User agent<
+Search Word Hashes==Buscar palabras hashes
Queries Per Last Hour==Consultas durante la última hora
+Access Dates==Fechas de acceso
+This is a list of searches that had been requested from remote peer search interface==Esta es una lista de búsquedas que se habían solicitado desde la interfaz remota de búsqueda de pares
+Count==Contar
+Date==Fecha
+Path==Ruta
+Host==Servidor
+User Agent==Agente de usuario
+Known Results==Resultados conocidos
+Peer Name==Nombre del par
+Top Search Words (last 7 Days)==Palabras principales de búsqueda (últimos días de7)
#-----------------------------
#File: Settings_UrlProxyAccess.inc
#---------------------------
+With this settings you can activate or deactivate URL proxy.==Con esta configuración puede activar o desactivar el proxy URL.
URL proxy:==URL del proxy:
->Enabled<==>Activado<
+Show search results via URL proxy:==Mostrar los resultados de la búsqueda a través del proxy URL:
+Enables or disables URL proxy for all search results. If enabled, all search results will be tunneled through URL proxy.==Activa o deshabilita el proxyURLpara todos los resultados de búsqueda. Si está activado, todos los resultados de búsqueda serán tunelizados a través del proxyURL.
+Restrict URL proxy use:==Restringir el uso del proxy URL:
+URL substitution:==Sustitución de URL:
+Define URL substitution rules which allow navigating in proxy environment. Possible values: all, domainlist. Default: domainlist.==Defina reglas de sustitución de URL que permiten navegar en el entorno proxy. Valores posibles: all, domainlist. Predeterminado: domainlist.
"Submit"=="Enviar"
->Enabled<==>Activado<
+Enabled==Activado
+Define client filter. Default: 127.0.0.1,0:0:0:0:0:0:0:1.==Define client filter. Default: 127.0.0.1,0:0:0:0:0:0:0:1.
+Globally enables or disables URL proxy via http://yourpeer:yourport/proxy.html?url=http://externalurl/==Habilita o deshabilita globalmente el proxy URL mediante http://yourpeer:yourport/proxy.html?url=http://externalurl/
+Service call: http://localhost:8090/proxy.html?url=parameter, where parameter is the url of an external web page.==Llamada de servicio: http://localhost:8090/proxy.html?url=parameter, donde parameter es la URL de una pagina web externa.
+URL Proxy Settings==URL Proxy Settings
+Alternatively you may add this javascript to your browser favorites/short-cuts, which will reload the current browser address==Alternativamente puede añadir este javascript a su navegador favorito/short-cuts, que recargará la dirección actual del navegador
+or right-click this link and add to favorites:==o haga clic con el botón derecho en este enlace y agregue a los favoritos:
+via the YaCy proxy servlet.==a través del servidor proxy YaCy.
#-----------------------------
#File: Autocrawl_p.html
#---------------------------
+Autocralwer Configuration==Configuración de Autocralwer
+You need to restart for some settings to be applied==Necesita reiniciar para que se apliquen algunas configuraciones
+Enable Autocrawler:==Habilitar Autorawler:
+Deep crawl every Nth document:==crawler profundamente cada documento Nth:
+Warning: if this is bigger than "Rows to fetch" only shallow crawls will run.==Advertencia: si esto es más grande que "Rows to fetch" sólo se correrán gatas poco profundas.
+Rows to fetch at once:==Filas a buscar a la vez:
+Recrawl only older than # days:==Recluta sólo más de # días:
+Get hosts by query:==Obtener hosts por consulta:
+Can be any valid Solr query.==Puede ser cualquier consulta válida de Solr.
+Shallow crawl depth (0 to 2):==Profundidad de crawl superficial (0 a 2):
+Deep crawl depth (1 to 5):==Profundidad de crawl profundo (1 a 5):
+Index text:==Texto del índice:
+Index media:==Medios de Índice:
"Save"=="Guardar"
+Autocrawler==Autocrawler
+Autocrawler automatically selects and adds tasks to the local crawl queue. This will work best when there are already quite a few domains in the index.==Autocrawler selecciona automáticamente tareas y las añade a la cola de crawl local. Funciona mejor cuando el índice ya contiene bastantes dominios.
#-----------------------------
#File: Blacklist_p.html
#---------------------------
-Blacklist Manager==Gestione blacklist
-Blacklist==Blacklist
-This function provides an URL filter to the proxy; any blacklisted URL is blocked==Questa funzione fornisce al proxy un filtro per le URL; le URL nella blacklist non vengono caricate
-from being loaded. You can define several blacklists and activate them separately.== Puoi definire diverse blacklist e acctivarle separatamente.
-You may also provide your blacklist to other peers by sharing them; in return you may==Puoi fornire la tua blacklist agli altri peers rendendola condivisa; in ritorno puoi
-collect blacklist entries from other peers.==collezionare le entrate nelle blacklist degli altri peers.
-No blacklist selected==Nessuna blacklist selezionata
-"select"=="Seleccionar"
+Blacklist Administration==Administración de Blacklist
+This function provides an URL filter to the proxy; any blacklisted URL is blocked==Esta función proporciona un filtro de URLs al proxy; cualquier URL incluida en la lista negra queda bloqueada
+from being loaded. You can define several blacklists and activate them separately.==para que no se cargue. Puede definir varias listas negras y activarlas por separado.
+You may also provide your blacklist to other peers by sharing them; in return you may==También puede compartir su lista negra con otros pares; a cambio puede
+collect blacklist entries from other peers.==recopilar entradas de listas negras de otros pares.
+Active list:==Lista activa:
+No blacklist selected==No se ha seleccionado ninguna lista negra
+Select list to edit:==Seleccione la lista a editar:
+Create new list:==Crear una nueva lista:
"create"=="crear"
"Save"=="Guardar"
-Delete this list==Borrar esta lista
-Edit list==Editar lista
-These are the domain name / path patterns in this blacklist:==Estos son los patrones de nombre de dominio/ruta en blacklist:
->regular expression<==>expresión regular<
-domain.net/fullpath<==dominio.net/rutacompleta<
->domain.net/*<==>dominio.net/*<
-*.domain.net/*<==*.dominio.net/*<
-*.sub.domain.net/*<==*.sub.dominio.net/*<
-sub.domain.*/*<==sub.dominio.*/*<
-domain.*/*<==dominio.*/*<
-(slow)==(lento)
-was removed from blacklist==remover desde el blacklist
-was added to the blacklist==agregar al blacklist
+Blacklist Pattern==Patrón de lista negra
+Edit selected pattern(s)==Editar los patrones seleccionados
+Delete selected pattern(s)==Borrar los patrones seleccionados
+Move selected pattern(s) to==Mover los patrones seleccionados a
+Add new pattern:==Añádase un nuevo patrón:
+Show entries:==Mostrar entradas:
+Entries per page:==Entradas por página:
"set"=="asignar"
+Edit existing pattern(s):==Editar patrón(s) existente(s):
+"Save URL pattern(s)"=="Guardar los patrones URL"
+"Delete this list"=="Borrar esta lista"
+"Share/don't share this list"=="Compartir/don't compartir esta lista"
+A legal name is made up from a letter, digit, minus, plus or underscore as the first character==Un nombre legal se compone de una letra, dígito, menos, plus o subrayado como el primer carácter
+Activate this list for ...==Activar esta lista para...
+An error occurred while editing the following entries. Please check syntax.==Ocurrió un error al editar las siguientes entradas. Compruebe la sintaxis.
+An error occurred while moving entries to the target list.==Se produjo un error al mover las entradas a la lista de destino.
+domain.*/*==domain.*/*
+domain.net/*==domain.net/*
+domain.net/fullpath==domain.net/fullpath
+followed by letters, digits, minus, plus, underscores or dots.==seguido de letras, dígitos, menos, más, subrayados o puntos.
+not shared==no compartido
+shared==compartido
+sub.domain.*/*==sub.domain.*/*
+"Add URL pattern"=="Add URL pattern"
#-----------------------------
#File: BlacklistCleaner_p.html
#---------------------------
+Blacklist Cleaner==Limpiador de lista negra
+Here you can remove or edit illegal or double blacklist-entries.==Aquí puede eliminar o editar entradas ilegales o dobles listas negras.
+Check list==Lista de verificación
+"Check"=="Check"
+Allow regular expressions in host part of blacklist entries.==Permitir expresiones regulares en la parte anfitriona de las entradas de la lista negra.
+The blacklist-cleaner only works for the following blacklist-engines up to now:==El limpiador de lista negra sólo funciona para los siguientes motores de lista negra hasta ahora:
+Two wildcards in host-part==Dos comodines en la parte anfitriona
+Path is invalid Regex==La ruta no es válida Regex
+Wildcard not on begin or end==Comodín no al principio ni al final
+Host contains illegal chars==Host contiene caracteres ilegales
+Double==Doble
+"Change Selected"=="Cambio seleccionado"
+"Delete Selected"=="Borrar seleccionado"
+No Blacklist selected==No se ha seleccionado ninguna lista negra
+or==o
+Either subdomain==Cualquiera de los subdominios
+Host is invalid Regex==El host no es válido Regex
+wildcard==comodín
#-----------------------------
#File: BlacklistImpExp_p.html
#---------------------------
-Blacklist Import==Importación de lista negra
+Used Blacklist engine:==Motor Blacklist usado:
Import blacklist items from...==Importar elementos de la lista negra desde...
other YaCy peers:==otros pares YaCy:
-URL:==URL:
-plain text file:<==archivo de texto plano:<
+"Load new blacklist items"=="Cargar nuevos artículos de la lista negra"
XML file:==archivo XML:
-This file will not contain any additional information==Este archivo no contendrá información adicional
+Upload a regular text file which contains one blacklist entry per line.==Sube un archivo de texto regular que contiene una entrada de lista negra por línea.
+Upload an XML file which contains one or more blacklists.==Cargue un archivo XML que contenga una o más listas negras.
+Export blacklist items to...==Exportar elementos de la lista negra a...
+Here you can export a blacklist as an XML file. This file will contain additional==Aquí puede exportar una lista negra como un archivo XML. Este archivo contendrá adicional
+information about which cases a blacklist is activated for.==información sobre para qué casos se activa una lista negra.
+"Export list as XML"=="Lista de exportación como XML"
+Here you can export a blacklist as a regular text file with one blacklist entry per line.==Aquí puede exportar una lista negra como un archivo de texto regular con una entrada de lista negra por línea.
"Export list as text"=="Exportar lista como texto"
+This file will not contain any additional information.==Este archivo no contendrá ninguna información adicional.
+all==todos
+plain text file:==archivo de texto plano:
+Blacklist Import==Importación de lista negra
+URL:==URL:
#-----------------------------
#File: BlacklistTest_p.html
#---------------------------
Blacklist Test==Prueba de lista negra
+Used Blacklist engine:==Motor Blacklist usado:
Test list:==Lista de prueba:
"Test"=="Prueba"
+It is blocked for the following cases:==Está bloqueado en los siguientes casos:
+Search==Buscar
+Surftips==Surftips
+The tested URL was not valid.==El URL probado no era válido.
+is not blocked==no está bloqueado
Crawling==Crawling
DHT==DHT
+News==Noticias
Proxy==Proxy
-Search==Buscar
#-----------------------------
#File: Blog.html
#---------------------------
-by==por
->delete==>borrar
-Edit<==Editar<
+Blog-Home==Blog-Home
Author:==Autor:
Subject:==Título:
-Text:==Texto:
-here.==aquí.
+Comments:==Observaciones:
+deactivated==desactivado
+moderated==moderado
"Submit"=="Enviar"
->Preview==>Previsualizar
+"Preview"=="Previsualizar"
+"Discard"=="Descartar"
+No changes have been submitted so far!==¡Hasta ahora no se han presentado cambios!
Access denied==Acceso denegado
-Are you sure==¿Estás seguro?
-that you want to delete==de que quieres borrarla?:
+To edit or create blog-entries you need to be logged in as Admin or User who has Blog rights.==Para editar o crear entradas de blog es necesario iniciar sesión como administrador o usuario que tiene derechos de Blog.
+Confirm deletion==Confirmar la eliminación
+Import was successful!==¡La importación tuvo éxito!
+Import failed, maybe the supplied file was no valid blog-backup?==Importar falló, tal vez el archivo suministrado no era una copia de seguridad válida del blog?
+Please select the XML-file you want to import:==Seleccione el archivo XML que desea importar:
+Edit==Editar
+Preview==Vista previa
+"RSS"=="RSS"
+"No, leave it."=="No, conservarlo."
+"Yes, delete it."=="Sí, eliminarlo."
+<< previous entries==<< entradas anteriores
+Are you sure...==¿Estás seguro...?
+XML-Import==XML-Import
+activated==activado
+next entries >>==entradas siguientes>>
+Text:==Texto:
+"Import"=="Importar"
#-----------------------------
#File: BlogComments.html
#---------------------------
-by==por
-Login==Iniciar sesión
-delete==borrar
-allow==permitir
+Blog-Home==Blog-Home
Author:==Autor:
Subject:==Título:
-You can use==Puedes utilizar
-here.==aquí.
"Submit"=="Enviar"
"Preview"=="Previsualizar"
+"Discard"=="Descartar"
+Comments:==Observaciones:
+<< previous entries==<< entradas anteriores
+next entries >>==entradas siguientes>>
+Comment on this Blog==Comentar sobre este Blog
+Comments are not allowed for this posting!==Los comentarios no están permitidos para esta publicación!
+Text:==Texto:
#-----------------------------
#File: Bookmarks.html
#---------------------------
-#YaCy '#[clientname]#': Bookmarks==YaCy '#[clientname]#': Marcadores
-
Bookmarks==
Marcadores
-Bookmarks (==Marcadores (
-Login==Iniciar sesión
+The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.==La lista de marcadores también se puede recuperar como fuenteRSS. Esto también se puede hacer cuando se selecciona una etiqueta específica.
+Click the API icon to load the RSS from the current selection.==Haga clic en el icono APIpara cargar elRSSde la selección actual.
List Bookmarks==Lista de marcadores
Add Bookmark==Añadir marcador
Import Bookmarks==Importar marcadores
@@ -162,35 +279,62 @@ Import XML Bookmarks==Importar marcadores en XML
Import HTML Bookmarks==Importar marcadores en HTML
"import"=="importar"
Default Tags:==Etiquetas por defecto:
-imported==importado
Edit Bookmark==Editar Marcador
-URL:==URL:
Title:==Título:
Description:==Descripción:
+Folder (/folder/subfolder):==Carpeta (/folder/subfolder):
Tags (comma separated):==Etiquetas (separadas por comas):
->Public:==>Público:
-yes==sì
+yes==sí
no==no
+Bookmark is a newsfeed==Marcador es una fuente de noticias
"create"=="crear"
-"edit"=="editar"
File:==Archivo:
-import as Public==importar como Público
"private bookmark"=="marcador privado"
"public bookmark"=="marcador público"
-Tagged with==Etiquetado con
Edit==Editar
Delete==Eliminar
Folders==Directorios
+Bookmark Folder==Carpeta del marcador
+Bookmark List==Lista de marcadores
+previous page==página anterior
+next page==página siguiente
+Show==Mostrar
+Bookmarks per page.==Marcadores por página.
+start autosearch of new bookmarks==iniciar búsqueda automática de nuevos marcadores
+This starts a search of new or modified bookmarks since startup==Esto comienza una búsqueda de marcadores nuevos o modificados desde el inicio
+in folder "search" with "query=<original_search_term>"==en la carpeta "buscar" con "query=<original_search_term>"
+Every peer online will be ask for results.==Todos los pares en línea pedirán resultados.
+"API"=="API"
+"Save"=="Guardar"
+Info==Información
+search==buscar
+"RSS"=="RSS"
+"start it"=="comienza"
+"stop it"=="Basta"
+Auto Search==Búsqueda automática
+Bookmarks==Marcadores
+Bookmarks (RSS)==Marcadores (RSS)
+Bookmarks (XBEL)==Marcadores (XBEL)
+Bookmarks (XML)==Marcadores (XML)
+Query:==Consulta:
+Tagged with |==Etiquetado con
+autosearch queue:==cola de búsqueda automática:
+current query:==consulta actual:
+import as Public:==importación como público:
+received results:==resultados recibidos:
+Login==Iniciar sesión
+Public:==Público:
Tags==Etiquetas
-next áage==siguiente página
-All==Todo
+URL:==URL:
#-----------------------------
#File: Collage.html
#---------------------------
+Image Collage==Collage de imágenes
+Private Queue==Cola privada
+Public Queue==Cola pública
#-----------------------------
-
#File: compare_yacy.html
#---------------------------
Websearch Comparison==Comparación de búsqueda web
@@ -198,1036 +342,2692 @@ Left Search Engine==Motor de búsqueda izquierdo
Right Search Engine==Motor de búsqueda derecho
"Compare"=="Comparar"
Search Result==Resultado de búsqueda
+loading....==cargando...
#-----------------------------
#File: ConfigAccounts_p.html
#---------------------------
User Accounts==Cuenta de usuario
User Administration==Administración de Usuario
-User created:==Usuario creado:
-User changed:==Usuario modificado:
Generic error.==Error generico.
Passwords do not match.==Las contraseñas no coinciden.
+Username too short. Username must be >= 4 Characters.==Nombre de usuario demasiado corto. El nombre de usuario debe ser>=4Caracteres.
Admin Account==Cuenta de administrador
Access from localhost without account==Acceder desde el localhost sin cuenta
Access to your peer from your own computer (localhost access) is granted with administrator rights. No need to configure an administration account.==El acceso a su nodo desde su propia computadora (acceso localhost) se otorga con derechos de administrador. No es necesario configurar una cuenta de administración.
-This setting is convenient but less secure than using a qualified admin account.==Esta configuración es conveniente pero menos segura que usar una cuenta de administrador calificada.
-Please use with care, notably when you browse untrusted and potentially malicious websites while running your YaCy peer on the same computer.==Úselo con cuidado, especialmente cuando navega por sitios web no confiables y potencialmente maliciosos mientras ejecuta su nodo YaCy en la misma computadora.
Access only with qualified account==Acceso solo con cuenta calificada
This is required if you want a remote access to your peer, but it also hardens access controls on administration operations of your peer.==Esto es necesario si desea un acceso remoto a su nodo, pero también fortalece los controles de acceso en las operaciones de administración de su nodo.
Peer User:==Usuario del Nodo
New Peer Password:==Nueva contraseña del Nodo:
Repeat Peer Password:==Repita la contraseña del Nodo:
"Define Administrator"=="Definir Administrador"
-==
-Set Access Rules==Establecer reglas de acceso
-Protection of all pages: if set to on, access to all pages need authorization; if off, only pages with "_p" extension are protected.==Protección de todas las páginas: si está activada, el acceso a todas las páginas necesita autorización; Si está desactivado, solo las páginas con extensión "_p" están protegidas.
Select user==Seleccionar usuario
New user==Nuevo usuario
-Edit User==Editar usuario
-Delete User==Eliminar usuario
-Edit current user:==Editar usuario actual:
-Username==Nombre de usuario
-Password==Contraseña
Repeat password==Repite la contraseña
First name==Nombre
Last name==Apellido
Address==Dirección
-Rights==Privilegios
+Timelimit==Plazo
Time used==Tiempo utilizado
-Save User==Guardar usuario
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==ADVERTENCIAEsta instancia YaCy e puede administrar con la cuenta "admin" y la contraseña predeterminada "yacy".
+Password==Contraseña
+Rights:==Derechos:
+Username==Nombre de Usuario
+"Delete User"=="Borrar usuario"
+"Edit User"=="Editar usuario"
+"Save User"=="Guardar usuario"
+"Set Access Rules"=="Establecer reglas de acceso"
+Access Rules==Reglas de acceso
+Change the password as soon as possible!==¡Cambie la contraseña tan pronto como sea posible!
+Please use with care, notably when you browse untrusted and potentially malicious websites while running your YaCy peer on the same computer.==Úselo con cuidado, especialmente cuando navega por sitios web no confiables y potencialmente maliciosos mientras ejecuta su nodo YaCy en la misma computadora.
+Protection of all pages: if set to on, access to all pages need authorization; if off, only pages with "_p" extension are protected.==Protección de todas las páginas: si está activada, el acceso a todas las páginas necesita autorización; Si está desactivado, solo las páginas con extensión "_p" están protegidas.
+This setting is convenient but less secure than using a qualified admin account.==Esta configuración es conveniente pero menos segura que usar una cuenta de administrador calificada.
+Username already used (not allowed).==Nombre de usuario ya utilizado (no permitido).
#-----------------------------
#File: ConfigAppearance_p.html
#---------------------------
Appearance and Integration==Apariencia e integración
+You can change the appearance of the YaCy interface with skins.==Puede cambiar el aspecto de la interfaz YaCy con pieles.
+The selected skin and language also affects the appearance of the search page.==La piel y el lenguaje seleccionados también afectan a la apariencia de la página de búsqueda.
+change the appearance of the search page here.==cambiar la apariencia de la página de búsqueda aquí.
Skin Selection==Seleccione Tema
Current skin==Tema actual
Available Skins==Temas disponibles
"Use"=="Usar"
"Delete"=="Eliminar"
->Skin Color Definition<==>Definir el color del Tema<
->Background<==>Sfondo<
->Text<==>Texto<
->Legend<==>Leyenda<
->Border Line<==>Borde Línea<
->Search URL==>Buscar URL
+The generic skin 'generic_pd' can be configured here with custom colors:==La piel genérica 'generic_pd' se puede configurar aquí con colores personalizados:
"Set Colors"=="Establecer colores"
->Skin Download<==>Descargar Temas<
-Skins can be installed from download locations==Los Temas se pueden instalar desde ubicaciones de descarga
Install new skin from URL==Instalar nuevo Tema desde URL
Use this skin==Activar tema subido
"Install"=="Instalar"
Make sure that you only download data from trustworthy sources. The new Skin file==Asegúrese de que solo descarga datos de fuentes confiables. El nuevo archivo de Tema
might overwrite existing data if a file of the same name exists already.==podría sobrescribir los datos existentes si ya existe un archivo con el mismo nombre.
->Unable to get URL:==>No se puede obtener la URL:
Error saving the skin.==Error al guardar el tema.
+Text==Texto
+Background==Antecedentes
+Border Line==Borde Line
+Legend==Leyenda
+Search Headline==Buscar Headline
+Search URL==Buscar URL
+Search URL + hover==Buscar URL +
+Sign 'bad'==Firma 'malo'
+Sign 'good'==Firma 'bueno'
+Sign 'other'==Firma 'otro'
+Skin Color Definition==Definición del color de la piel
+Skin Download==Descarga de piel
+Skins can be installed from download locations:==Las pieles se pueden instalar desde las ubicaciones de descarga:
+Table Bottom==Cuadro
+Table Header==Cuadro Header
+Table Item==Cuadro Elemento
+Table Item 2==Cuadro Elemento 2
+Select one of the default skins. After selection it might be required to reload the web page while holding the shift key to refresh cached style files.==Seleccione una de las skins predeterminadas.Después de la selección puede ser necesario recargar la página web mientras se mantiene la tecla de cambio para actualizar los archivos de estilo en caché.
#-----------------------------
#File: ConfigBasic.html
#---------------------------
-Access Configuration==Configuración de acceso
+Your port has changed. Please wait 10 seconds.==Your port has changed. Please wait 10 seconds.
+Deutsch==Alemán
+Browser==Navegador
Basic Configuration==Configuración básica
Your YaCy Peer needs some basic information to operate properly==Tu Nodo YaCy necesita información básica para funcionar correctamente
-Select a language for the interface==Seleccione un idioma para la interfaz
English==Inglés
-Deutsch==Alemán
Français==Francés
-汉语/漢語==Chino
-Русский==Ruso
-Українська==Ucranio
-हिन्दी==Hindú
-日本語==Japonés
Use Case: what do you want to do with YaCy:==Modo de uso: ¿qué quieres hacer con YaCy?
Community-based web search==Búsqueda web basada en la comunidad
Join and support the global network 'freeworld', search the web with an uncensored user-owned search network==Únase y apoye la red global 'freeworld', busque en la web con una red de búsqueda sin censura controlado por el usuario
-Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.==Su instalación de YaCy se comporta de manera independiente de otros pares y usted define su propio índice web al iniciar su propio rastreo web. Esto se puede usar para buscar en sus propias páginas web o para definir un portal de búsqueda orientado a temas.
Search portal for your own web pages==Portal de búsqueda para sus propias páginas web
-Your peer cannot be reached from outside==Su nodo no puede ser alcanzado desde el exterior
-which is not fatal, but would be good for the YaCy network==lo cual no es grave, pero sería bueno para la red YaCy
-please open your firewall for this port and/or set a virtual server option in your router to allow connections on this port==por favor abra su firewall para este puerto y/o configure una opción de servidor virtual en su enrutador para permitir conexiones en este puerto
-Opening a router port is not a YaCy-specific task;==Abrir un puerto de enrutador no es una tarea específica de YaCy;
-you can see instruction videos everywhere in the internet, just search for Open Ports on a <our-router-type> Router and add your router type as search term.==Puede ver videos de instrucciones en cualquier lugar de Internet, solo busque Open Ports on a <our-router-type> Router y agregue su tipo de enrutador como término de búsqueda.
-However: if you fail to open a router port, you can nevertheless use YaCy with full functionality, the only function that is missing is on the side of the other YaCy users because they cannot see your peer.==Sin embargo: si no puede abrir un puerto de enrutador, puede usar YaCy con funcionalidad completa, la única función que falta está en el lado de los otros usuarios de YaCy porque no pueden ver a su nodo.
+Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.==Su instalación de YaCy funciona independientemente de otros pares y usted define su propio índice web iniciando su propio crawl web. Esto puede usarse para buscar en sus propias páginas web o para definir un portal de búsqueda temático.
Intranet Indexing==Indización de Intranet
-Create a search portal for your intranet or web pages or your (shared) file system.==Cree un portal de búsqueda para su intranet o páginas web o su sistema de archivos (compartido).
-URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form==Las URL pueden utilizarse con http/https/ftp y un nombre de dominio local o IP, o con una URL del formulario
-or smb:==o smb:
+Your peer name has not been customized; please set your own peer name==El nombre de su par no se ha personalizado; defina un nombre propio para el par
You may change your peer name==Puedes cambiar tu nombre de Nodo
Peer Name:==Nombre de Nodo:
-Your peer can be reached by other peers==Tu nodo puede ser contactado por otros compañeros
+Your peer can be reached by other peers==Otros pares pueden acceder a su par
Peer Port:==Puerto del nodo:
-with SSL== con SSL
-https enabled==https habilitado
-on port==en el puerto
Configure your router for YaCy using UPnP:==Configure su enrutador para YaCy usando UPnP:
Configuration was not successful. This may take a moment.==La configuración no fue exitosa. Esto puede tomar un momento.
-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 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 what the other peers are doing==monitorear en la página de la red lo que hacen los otros compañeros
Your Peer name is a default name; please set an individual peer name.==Tu nombre de Nodo es un nombre predeterminado; por favor, establezca un nombre de nodo individual.
-This is needed if you want to fully participate in the YaCy network.==Esto es necesario si desea participar plenamente en la red de YaCy.
+"Active : translated pages are available"=="Activo: las páginas traducidas están disponibles"
+"Click to generate translated pages"=="Haga clic para generar páginas traducidas"
+"Set Configuration"=="Configuración del conjunto"
+"Use the browser preferred language if available"=="Utilice el idioma preferido del navegador si está disponible"
+"Usecase Freeworld"=="Usecase Freeworld"
+"Usecase Intranet"=="Usecase Intranet"
+"Usecase Portal"=="Portal de la usuaria"
+"ok"=="Ok"
+"warning"=="Advertencia"
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==ADVERTENCIAEsta instancia YaCy e puede administrar con la cuenta "admin" y la contraseña predeterminada "yacy".
+Can not leave from Intranet Indexing : one or more remote Solr instances are attached and may contain private documents indexed.==No se puede salir de la Indización Intranet: una o más instancias Solr remotas se adjuntan y pueden contener documentos privados indexados.
+Create a search portal for your intranet or web pages or your (shared) file system. URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form file:///<path> or smb://<server>/<path>==Crear un portal de búsqueda para su intranet o páginas web o su sistema de archivos (compartido).URLsse puede utilizar con http/https/ftpy un nombre de dominio local o IP, o con un URL del formulariofile:///<path>osmb://<server>/<path>
+Español==Español
+Greek==Griego
+Italiano==Italiano
+One or more remote Solr instances are attached and may contain indexed public documents irrelevant to your local domain.==Se adjuntan una o más instancias Solr remotas y pueden contener documentos públicos indizados irrelevantes para su dominio local.
+One or more remote Solr instances are attached.==Se adjuntan una o más instancias Solr remotas.
+Select a language for the interface:==Seleccione un idioma para la interfaz:
+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 recommended.==Usted no abrió un puerto en su firewall o su router no reenvía el puerto del servidor a su par. Esto es necesario si desea participar plenamente en la red YaCy. También puede utilizar su par sin abrirlo, pero esto no se recomienda.
+Your Browser will reload the YaCy UI with the new port in 5 seconds...==Su navegador recargará la interfaz de usuario YaCy con el nuevo puerto en segundos5...
+Your basic configuration is complete! You can now (for example):==¡Su configuración básica está completa! Ahora puede (por ejemplo):
+with SSL (https enabled==conSSL(https activados)
#-----------------------------
#File: ConfigHeuristics_p.html
#---------------------------
-(new link)==(nuevo link)
->Title<==Título
->Comment<==Comentario
+Heuristics Configuration==Configuración de heurística
+The search result was discovered by a heuristic, but the link was already known by YaCy==El resultado de la búsqueda fue descubierto por un heurístico, pero el enlace ya era conocido por YaCy
+The search result was discovered by a heuristic, not previously known by YaCy==El resultado de la búsqueda fue descubierto por un heurístico, no conocido previamente por YaCy
+'site'-operator: instant shallow crawl==«sitio»-operador: crawl superficial instantáneo
+When a search is made using a 'site'-operator (like: 'download site:yacy.net') then the host of the site-operator is instantly crawled with a host-restricted depth-1 crawl.==Cuando se realiza una búsqueda con el operador site (por ejemplo: 'download site:yacy.net'), el host indicado por el operador se crawlea inmediatamente con un crawl de profundidad 1 limitado a ese host.
+That means: right after the search request the portal page of the host is loaded and every page that is linked on this page that points to a page on the same host.==Esto significa que justo después de la solicitud de búsqueda se carga la página principal del host y cada página enlazada desde ella que apunte al mismo host.
+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).==Como este crawl instantáneo debe respetar robots.txt y un tiempo mínimo de acceso entre dos páginas consecutivas, esta heurística es bastante lenta, pero puede descubrir todos los resultados deseados en una segunda búsqueda tras una breve pausa de algunos segundos.
+search-result: shallow crawl on all displayed search results==resultado de búsqueda: crawl superficial de todos los resultados mostrados
+When a search is made then all displayed result links are crawled with a depth-1 crawl.==Cuando se realiza una búsqueda, todos los enlaces de resultados mostrados se crawlean con un crawl de profundidad 1.
+This means: right after the search request every page is loaded and every page that is linked on this page.==Esto significa que justo después de la solicitud de búsqueda se carga cada página y cada página enlazada desde ella.
+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).==Si marca 'añadir como tarea de crawl global', las páginas a crawlear se añaden a la cola de crawl global (los pares remotos pueden recoger páginas para crawlear).
+Default is to add the links to the local crawl queue (your peer crawls the linked pages).==De forma predeterminada, los enlaces se añaden a la cola de crawl local (su par crawlea las páginas enlazadas).
+add as global crawl job==agregar como trabajo de crawl global
+opensearch load external search result list from active systems below==OpenSearch carga listas externas de resultados de búsqueda desde los sistemas activos siguientes
+When using this heuristic, then every new search request line is used for a call to listed opensearch systems.==Cuando se utiliza esta heurística, entonces cada nueva línea de solicitud de búsqueda se utiliza para una llamada a los sistemas de búsqueda abierta listados.
+20 results are taken from remote system and loaded simultaneously, parsed and indexed immediately.==Se toman 20 resultados del sistema remoto, se cargan simultáneamente, se analizan y se indexan de inmediato.
+Available/Active Opensearch System==Available/Active Opensearch System
"add"=="agregar"
"Save"=="guardar"
+"reset to default list"=="restablecer a la lista predeterminada"
+With the button "discover from index" you can search within the metadata of your local index (Web Structure Index) to find systems which support the Opensearch specification.==Con el botón "descubrir desde el índice" puede buscar dentro de los metadatos de su índice local (Índice de Estructura Web) para encontrar sistemas compatibles con la especificación Opensearch.
+The task is started in the background. It may take some minutes before new entries appear (after refreshing the page).==La tarea se inicia en segundo plano. Puede tomar unos minutos antes de que aparezcan nuevas entradas (después de refrescar la página).
+"switch Solr fields on"=="conmutar los campos Solr"
+Active==Activa
+Comment==Comentario
+Title==Título
+new==nuevo
+"heuristic:<name> (new link)"=="heurístico:<nombre>(nuevo enlace)"
+"heuristic:<name> (redundant)"=="heurístico:<nombre>(redundante)"
+) below the favicon left from the search result entry:==) debajo de la favicon izquierda de la entrada del resultado de la búsqueda:
+The success of heuristics are marked with an image (==El éxito de la heurística se marca con una imagen (
+Url==Url
+When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content. This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==Cuando se utiliza una heurística de búsqueda, los enlaces resultantes no se utilizan directamente como resultado de la búsqueda, pero las páginas cargadas se indexan y almacenan como otros contenidos. Esto asegura que las listas negras se pueden utilizar y que la palabra buscada realmente aparece en la página que fue descubierta por la heurística.
+delete==borrar
+"discover from index"=="descubrir desde el índice"
#-----------------------------
#File: ConfigHTCache_p.html
#---------------------------
+Hypertext Cache Configuration==Configuración de cache de hipertexto
+The HTCache stores content retrieved by the HTTP and FTP protocol. Documents from smb:// and file:// locations are not cached.==El HTCache almacena contenido recuperado por el protocoloHTTPyFTP. Los documentos desmb://yfile://no están en caché.
+The cache is a rotating cache: if it is full, then the oldest entries are deleted and new one can fill the space.==La caché es una caché giratoria: si está llena, entonces se eliminan las entradas más antiguas y se puede llenar el espacio con una nueva.
HTCache Configuration==Configuración de HTCache
The path where the cache is stored==La ruta donde se almacena el caché
The current size of the cache==El tamaño actual de la caché
->#[actualCacheSize]# MB for #[actualCacheDocCount]# files, #[docSizeAverage]# KB / file in average==> #[actualCacheSize]# MB para #[actualCacheDocCount]# archivos, #[docSizeAverage]# KB / archivo en promedio
The maximum size of the cache==El tamaño máximo de la caché
"Set"=="Establecer"
+Cleanup==Limpieza
Cache Deletion==Eliminación de caché
Delete HTTP & FTP Cache==Elimina cache HTTP & FTP
Delete robots.txt Cache==Eliminar Caché de robots.txt
"Delete"=="Eliminar"
-#-----------------------------
-
-#File: ConfigLanguage_p.html
-#---------------------------
-Language selection==Selección de idioma
-You can change the language of the YaCy-webinterface with translation files.==Puede cambiar el idioma de la interfaz web de YaCy con archivos de traducción.
-Current language==Idioma actual
-Author(s) (chronological)==Autor(es) (orden cronológico)
-Send additions to maintainer==Enviar adiciones al mantenedor
-Available Languages==Idiomas disponibles
-Download Language File==Descargar archivo de idioma
-Supported formats are the internal language file (extension .lng) or XLIFF (extension .xlf) format.==Los formatos admitidos son el archivo de idioma interno (extensión .lng) o el formato XLIFF (extensión .xlf).
-Install new language from URL==Instalar nuevo idioma desde la URL
-Use this language==Usa este idioma
-"Use"=="Usa"
-"Delete"=="Desinstalar"
-"Install"=="Instalar"
-Unable to get URL:==No se puede obtener la URL:
-Error saving the language file.==Error al guardar el archivo de idioma.
-Simple Editor==Editor simple
-to add untranslated text==agregar texto sin traducir
+MB==MB
+"A cache hit occurs when the requested data can be found in a cache."=="Un éxito de cache ocurre cuando los datos solicitados se pueden encontrar en una cache."
+"Concurrent access timeout info"=="Información de tiempo de espera de acceso concurrente"
+Beyond this limit, the crawler or proxy falls back to regular remote resource loading.==Más allá de este límite, el crawler o proxy cae de nuevo a la carga regular de recursos remotos.
+The maximum time to wait for acquiring a synchronization lock on concurrent get/store cache operations.==El tiempo máximo para esperar a la adquisición de un bloqueo de sincronización en concurrente obtener operaciones de caché/store.
+Cache hits==Golpes de cache
+Compression level==Nivel de compresión
+Concurrent access timeout==Tiempo de espera de acceso concurrente
+milliseconds==milisegundos
#-----------------------------
#File: ConfigNetwork_p.html
#---------------------------
Network Configuration==Configuración de la Red
No changes were made!==¡No se hicieron cambios!
-Accepted Changes==Cambios Aceptados
-DHT==DHT
+Global Search in P2P configuration is only allowed, if index receive is switched on. You have a P2P configuration, but are not allowed to search other peers.==La búsqueda global en la configuraciónP2Psolo está permitida, si el índice recibe activado. Tiene una configuraciónP2P, pero no está permitido buscar en otros pares.
+Network and Domain Specification==Especificación de red y dominio
+YaCy can operate a computing grid of YaCy peers or as a stand-alone node.==YaCy puede operar una red informática de pares YaCy o como un nodo independiente.
+To control that all participants within a web indexing domain have access to the same domain,==Para controlar que todos los participantes dentro de un dominio de indexación web tengan acceso al mismo dominio,
+this network definition must be equal to all members of the same YaCy network.==esta definición de red debe ser igual a todos los miembros de la misma red YaCy.
+Network Definition==Definición de red
+Network Nick==Network Nick
+Long Description==Descripción larga
+Indexing Domain==Dominio de indización
"Change Network"=="Cambiar red"
+Distributed Computing Network for Domain==Red de computación distribuida para el dominio
+Enable Peer-to-Peer Mode to participate in the global YaCy network,==Habilitar el modo Peer-to-Peer para participar en la red global YaCy,
+or if you want your own separate search cluster with or without connection to the global network.==o si desea su propio cluster de búsqueda independiente con o sin conexión a la red global.
+Enable 'Robinson Mode' for a completely independent search engine instance,==Habilitar 'Modo Robinson' para una instancia completamente independiente del motor de búsqueda,
+without any data exchange between your peer and other peers.==sin ningún intercambio de datos entre sus pares y otros pares.
Peer-to-Peer Mode==Modo de Nodo a Nodo
->Index Distribution==>Distribución del índice
->Index Receive==>Índice de recepción
-pages per minute==páginas por minuto
->Robinson Mode==>Modo Robinson
+disabled during crawling==deshabilitado durante el crawl
+disabled during indexing==desactivado durante la indización
+accept transmitted URLs that match your blacklist==aceptar transmitido URLsque coincida con su lista negra
+Index data is not distributed, but remote crawl requests are distributed and accepted==Los datos del índice no se distribuyen, pero las solicitudes de crawl remoto se distribuyen y aceptan
+List of .yacy or .yacyh - domains of the cluster: (comma-separated)==Lista de.yacy o.yacyh - dominios del cluster: (separados por comas)
+If you leave the field empty, no peer asks your peer. If you fill in a '*', your peer is always asked.==Si dejas el campo vacío, ningún par pregunta a tu par. Si rellenas un '*', siempre se te pregunta a tu par.
"Save"=="Guardar"
+Accepted Changes.==Cambios aceptados.
+DHT==DHT
+Enter custom URL...==Enter custom URL...
+Outgoing communications encryption==Encriptación de comunicaciones salientes
+Protocol operations encryption==Encriptación de operaciones de protocolo
+Remote Network Definition URL==Definición de red remota URL
+deny remote search==negar la búsqueda remota
+"Secure Sockets Layer"=="Secure Sockets Layer"
+"Transport Layer Security"=="Seguridad de la capa de transporte"
+Accept remote Index Transmissions.==Aceptar transmisiones de índice remotas.
+For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration.==Para la operación P2P, se debe establecer al menos la distribución DHT o DHT recibir (o ambos). Así se ha definido una configuración Robinson.
+For Robinson Mode, index distribution and receive is switched off.==Para el modo Robinson, la distribución de índices y recibir está desactivada.
+If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers.==Si tu par se ejecuta en 'Modo Robinson', ejecutas YaCy como un motor de búsqueda para tu propio portal de búsqueda sin intercambio de datos con otros pares.
+In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster.==En el caso del agrupamiento de Robinson puede haber aceptación de solicitudes de crawl remoto de pares de ese grupo.
+Inapplicable Setting Combination:==Combinación de ajuste inaplicable:
+Index Distribution==Distribución del índice
+Index Receive==Índice Recibir
+Peer Tags==Etiquetas de pares
+Please describe your search portal with some keywords (comma-separated).==Por favor, describa su portal de búsqueda con algunas palabras clave (separadas por coma).
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Tenga en cuenta que, contrariamente a lo estrictamenteTLS, los certificados no se validan contra las autoridades de certificados de confianza (CA), lo que permite a los pares de YaCy utilizar certificados autofirmados.
+Prefer HTTPS for outgoing connexions to remote peers.==Prefiere HTTPS para conexiones salientes a pares remotos.
+Private Peer==Personal privado
+Public Cluster==Clúster público
+Public Peer==Public Peer
+Robinson Mode==Modo Robinson
+Search requests are spread over all peers of the cluster, and answered from all peers of the cluster.==Las solicitudes de búsqueda se reparten entre todos los pares del cluster y se contestan entre todos los pares del cluster.
+There is no index receive and no index distribution between your peer and any other peer.==No hay índice de recepción y no hay distribución de índice entre su par y cualquier otro par.
+This enables automated, DHT-ruled Index Transmission to other peers.==Esto permite la transmisión automática del índice DHT a otros pares.
+This works only if you have a senior peer. The DHT-rules do not work without this function.==Esto sólo funciona si tiene un par senior. Las reglasDHTno funcionan sin esta función.
+When TLS/SSL is enabled on remote peers, it should be used to encrypt outgoing communications with them (for operations such as network presence, index transfer, remote crawl...).==Cuando TLS/SSL está habilitado en pares remotos, debe usarse para cifrar las comunicaciones salientes con ellos (para operaciones como presencia de red, transferencia de índice, crawl remoto...).
+When you allow access from the YaCy network, your data is recognized using keywords.==Cuando permite el acceso desde la red YaCy, sus datos se reconocen utilizando palabras clave.
+You are visible to other peers and contact them to distribute your presence.==Usted es visible para otros pares y contacta con ellos para distribuir su presencia.
+Your peer does not accept any outside index data, but responds on all remote search requests.==Su par no acepta ningún dato de índice externo, pero responde en todas las solicitudes de búsqueda remotas.
+Your peer is part of a public cluster within the YaCy network.==Su par es parte de un clúster público dentro de la red YaCy.
+Your search engine will not contact any other peer, and will reject every request.==Su motor de búsqueda no se pondrá en contacto con ningún otro par, y rechazará cada solicitud.
+allow==permitir
+enabled==activado
+reject==rechazar
#-----------------------------
#File: ConfigParser_p.html
#---------------------------
Parser Configuration==Configuración del analizador
-> enable/disable<==> ativado/desactivado<
->Extension<==>Extensión<
->Mime-Type<==>Tipo MIME<
+Content Parser Settings==Configuración del analizador de contenido
+With this settings you can activate or deactivate parsing of additional content-types based on their MIME-types.==Con esta configuración puede activar o desactivar el análisis de tipos de contenido adicionales basados en sus tipos MIME.
+For a detailed description of the various MIME-types take a look at==Para una descripción detallada de los diversos tipos MIME eche un vistazo a
"Submit"=="Enviar"
+Extension==Extensión
+Mime-Type==Tipo Mime
#-----------------------------
#File: ConfigPortal_p.html
#---------------------------
-Greeting Line<==Mensaje de bienvenida<
-URL of Home Page<==URL de la Página de Inicio<
+Integration of a Search Portal==Integración de un portal de búsqueda
+If you like to integrate YaCy as portal for your web pages, you may want to change icons and messages on the search page.==Si desea integrar YaCy como portal para sus páginas web, puede cambiar iconos y mensajes en la página de búsqueda.
+and a link to a home page that is reached when the 'corporate identity'-images are clicked.==y un enlace a una página de inicio que se alcanza cuando se hace clic en las imágenes de 'identidad corporativa'.
Enable Search for Everyone?==¿Habilitar búsqueda para todos?
Search is available for everyone==La búsqueda está disponible para todos
Only the administrator is allowed to search==Solo el administrador tiene permitido buscar
-Pattern:<==Modelo:<
->Exclude Hosts<==>Excluir Hosts<
+Snippet Fetch Strategy & Link Verification==Snippet Estrategia de obtención&Verificación de enlaces
+Speed up search results with this option! (use CACHEONLY or FALSE to switch off verification)==¡Acelere los resultados de búsqueda con esta opción! (use CACHEONLY o FALSE para desactivar la verificación)
+NOCACHE: no use of web cache, load all snippets online==NOCACHE: ningún uso de caché web, cargar todos los fragmentos en línea
+IFFRESH: use the cache if the cache exists and is fresh otherwise load online==IFFRESH: utilizar la caché si la caché existe y está fresca de lo contrario cargar en línea
+IFEXIST: use the cache if the cache exist or load online==IFEXIST: use la caché si la caché existe o cargue en línea
+If verification fails, delete index reference==Si falla la verificación, suprímase la referencia del índice
+CACHEONLY: never go online, use all content from cache. If no cache entry exist, consider content nevertheless as available and show result without snippet==CACHEONLY: nunca vaya en línea, utilice todo el contenido de la caché. Si no existe ninguna entrada de caché, considere el contenido como disponible y muestre el resultado sin fragmentos
+FALSE: no link verification and not snippet generation: all search results are valid without verification==FALSE: no hay verificación de enlaces y no generación de fragmentos: todos los resultados de búsqueda son válidos sin verificación
+Greedy Learning Mode==Modo de aprendizaje avaricioso
+Show Navigation Bar on Search Page?==Mostrar la barra de navegación en la página de búsqueda?
+Show Navigation Top-Menu==Mostrar el menú superior de navegación
+no link to YaCy Menu (admin must navigate to /Status.html manually)==sin enlace al menu YaCy (el administrador debe navegar manualmente a /Status.html)
+Show Advanced Search Options on Search Page?==Mostrar opciones de búsqueda avanzada en la página de búsqueda?
+do not show Advanced Search==no mostrar Búsqueda avanzada
+Default maximum number of results per page==Número máximo predeterminado de resultados por página
+Default index.html Page (by forwarder)==Pagina index.html predeterminada (por redireccionador)
+Target for Click on Search Results==Objetivo para hacer clic en los resultados de búsqueda
+"_blank" (new window)==«_blank» (nueva ventana)
+"_self" (same window)==«_self» (misma ventana)
+"_parent" (the parent frame of a frameset)=="_parent" (el marco padre de un conjunto de marcos)
+"_top" (top of all frames)==«_top» (parte superior de todos los marcos)
+"searchresult" (a default custom page name for search results)=="resultado de búsqueda" (un nombre de página personalizado predeterminado para los resultados de búsqueda)
+Special Target as Exception for an URL-Pattern==Objetivo especial como excepción para un URL-Patrón
+Exclude Hosts==Excluir hosts
+List of hosts that shall be excluded from search results by default but can be included using the site:<host> operator:==Lista de hosts que deben ser excluidos de los resultados de búsqueda por defecto pero pueden ser incluidos usando el sitio:<host Operador>:
+'About' Column (shown in a column alongside with the search result page)==Columna "Acerca de" (mostrada en una columna junto a con la página de resultados de búsqueda)
+(Content)==(Contenido)
+"Change Search Page"=="Cambiar página de búsqueda"
+"Set to Default Values"=="Configurar a valores predeterminados"
+Remote results resorting==Recurrir a resultados remotos
+Automated results resorting with JavaScript makes the browser load the full result set of each search request.==El recurso automatizado de resultados con JavaScript hace que el navegador cargue el conjunto completo de resultados de cada solicitud de búsqueda.
+This may lead to high system loads on the server.==Esto puede llevar a cargas altas del sistema en el servidor.
+Remote search encryption==Cifrado de búsqueda remota
+When SSL/TLS is enabled on remote peers, https should be used to encrypt data exchanged with them when performing peer-to-peer searches.==CuandoSSL/TLSestá habilitado en pares remotos, https debe usarse para cifrar los datos intercambiados con ellos cuando se realizan búsquedas entre pares.
+Prefer https for search queries on remote peers.==Prefiere https para consultas de búsqueda en pares remotos.
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Tenga en cuenta que, contrariamente a lo estrictamenteTLS, los certificados no se validan contra las autoridades de certificados de confianza (CA), lo que permite a los pares de YaCy utilizar certificados autofirmados.
+Index remote results==Índice de resultados remotos
+Limit size of indexed remote results==Tamaño límite de los resultados remotos indexados
+Media Search==Búsqueda de medios de comunicación
+or extended to pages including such medias (provide generally more results, but eventually less relevant).==o extendida a páginas que incluyan dichos medios (proporcionar generalmente más resultados, pero eventualmente menos relevantes).
+The search page can be integrated in your own web pages with an iframe. Simply use the following code:==La página de búsqueda se puede integrar en sus propias páginas web con un iframe. Simplemente utilice el siguiente código:
+This would look like:==Esto se vería como:
+For a search page with a small header, use this code:==Para una página de búsqueda con un encabezado pequeño, use este código:
+A third option is the interactive search. Use this code:==Una tercera opción es la búsqueda interactiva. Use este código:
+"Detailed statistics"=="Estadísticas detalladas"
+"Remote results resorting can be triggered once the 'Refresh sorting' button (near the 'Search' button) becomes available."=="El recurso de resultados remotos se puede activar una vez que el botón 'Refrescar la clasificación' (cerca del botón 'Buscar') esté disponible."
+"This usually improves ranking accuracy, but doesn't work well for users who have Javascript disabled, are using screen readers, or are on slow computers."=="Esto generalmente mejora la precisión de clasificación, pero no funciona bien para los usuarios que tienen Javascript deshabilitado, están usando lectores de pantalla o están en computadoras lentas"."
+"idea"=="idea"
+(Headline)==
+Alternative text for Corporate Images==Texto alternativo para imágenes corporativas
+Automated, with JavaScript in the browser.==Automatizado, con JavaScript en el navegador.
+Control whether media search results are as default strictly limited to indexed documents matching exactly the desired content domain (images, videos or applications specific),==Controle si los resultados de búsqueda de medios son por defecto estrictamente limitados a documentos indexados que coincidan exactamente con el dominio de contenido deseado (imágenes, vídeos o aplicaciones específicas),
+Counts by origin :==Cuenta por origen:
+Default Pop-Up Page==Página emergente predeterminada
+Extended==Extendida
+Greeting Line==Línea de saludos
+Interactive Search Page==Página de búsqueda interactiva
+On demand, server-side==Bajo demanda, lado del servidor
+Pattern:==Patrón:
+Search Front Page==Buscar en la primera página
+Search Page (small header)==Página de búsqueda (pequeña cabecera)
+Show Advanced Search Options on index.html==Mostrar opciones de búsqueda avanzada en index.html
+Status Page==Estado de la página
+Strict==Estricto
+The search page may be customized. You can change the 'corporate identity'-images, the greeting line==La página de búsqueda puede ser personalizada. Puede cambiar las imágenes de identidad corporativa, la línea de saludo
+URL of Home Page==URL de la página principal
+URL of a Large Corporate Image==URL de una imagen corporativa grande
+URL of a Small Corporate Image==URL de una imagen corporativa pequeña
+add remote search results to the local index ( default=on, it is recommended to enable this option ! )==añadir resultados de búsqueda remotos al índice local(default=on, se recomienda habilitar esta opción !)
+maximum allowed size in kbytes for each remote search result to be added to the local index (for example, a 1000kbytes limit might be useful if you are running YaCy with a low memory setup)==tamaño máximo permitido en kbytes para cada resultado de búsqueda remota que se añadirá al índice local (por ejemplo, un límite de 1000kbytes podría ser útil si está ejecutando YaCy con una configuración de memoria baja)
#-----------------------------
#File: ConfigProfile_p.html
#---------------------------
Your Personal Profile==Tu perfil personal
You can create a personal profile here, which can be seen by other YaCy-members==Puede crear un perfil personal aquí, que puede ser visto por otros miembros de YaCy
-Name==Nombre
-Nick Name==Nickname
-eMail==email
+Comment==Comentario
+"Save"=="Guardar"
ICQ==ICQ
Jabber==Jabber
-Yahoo!==Yahoo!
MSN==MSN
+Name==Nombre
+Nick Name==Nickname
Skype==Skype
-Comment==Comentario
-"Save"=="Guardar"
-You can use <==Puedes usar <
-> here.==> aquí.
+Yahoo!==Yahoo!
+eMail==email
#-----------------------------
#File: ConfigProperties_p.html
#---------------------------
Advanced Config==Configuración avanzada
+Here are all configuration options from YaCy.==Aquí están todas las opciones de configuración de YaCy.
+You can change anything, but some options need a restart, and some options can crash YaCy, if wrong values are used.==Puede cambiar cualquier cosa, pero algunas opciones necesitan un reinicio, y algunas opciones pueden bloquear YaCy, si se utilizan valores incorrectos.
+For explanation please look into defaults/yacy.init==For explanation please look into defaults/yacy.init
"Save"=="Guardar"
+"Clear"=="Despejado"
#-----------------------------
#File: ConfigRobotsTxt_p.html
#---------------------------
+Exclude Web-Spiders==Excluir Web-Spiders
+Here you can set up a robots.txt for all webcrawlers that try to access the webinterface of your peer.==Aquí puedes configurar un robots.txt para todos los webcrawlers que intentan acceder a la interfaz web de tu par.
+It disallows crawlers to access webpages or even entire domains.==Impide que los crawlers accedan a páginas web o incluso a dominios completos.
+Deny access to==Negar el acceso a
+Entire Peer==Peer entero
+Status page==Situación de la página
+Network pages==Páginas de red
+Surftips==Surftips
+News pages==Páginas de noticias
Blog==Blog
Wiki==Wiki
+Public bookmarks==Marcadores públicos
Home Page==Homepage
+File Share==Compartir archivo
+"Save restrictions"=="Guardar restricciones"
+failed==Falló
+Deletion of==Supresión de
+Unable to access the local file:==No se puede acceder al archivo local:
+htroot/robots.txt==htroot/robots.txt
+robots.txt==robots.txt
+Impressum==Impressum
+is a voluntary agreement most search-engines (including YaCy) follow.==es un acuerdo voluntario que siguen la mayoría de los motores de búsqueda, incluido YaCy.
#-----------------------------
#File: ConfigSearchBox.html
#---------------------------
+Integration of a Search Box==Integración de un cuadro de búsqueda
+We give information how to integrate a search box on any web page that==Damos información sobre cómo integrar un cuadro de búsqueda en cualquier página web que
+calls the normal YaCy search window.==llama a la ventana de búsqueda YaCy normal.
+Simply use the following code:==Simplemente use el siguiente código:
"Search"=="Buscar"
+This would look like:==Esto se vería como:
+This does not use a style sheet file to make the integration into another web page with a different style sheet easier.==Esto no utiliza un archivo de hoja de estilo para hacer la integración en otra página web con una hoja de estilo diferente más fácil.
+You would need to change the following items:==Tendría que cambiar los siguientes elementos:
+Replace the given colors #eeeeee (box background) and #cccccc (box border)==Reemplazar los colores dados #eeeeee (fondo de la caja) y #cccccc (frontera de la caja)
+Replace the word "MySearch" with your own message==Reemplaza la palabra "MySearch" con tu propio mensaje
+MySearch==MySearch
#-----------------------------
#File: ConfigSearchPage_p.html
#---------------------------
-==
-Search Page<==Página de búsqueda<
->Appearance<==>Apariencia<
->Page Template<==>Plantilla de página<
->Administration<==>Administración<
->Web Search<==>Búsqueda Web<
->File Search<==>Búsqueda de archivos<
->Help / YaCy Wiki<==>Ayuda / Wiki de YaCy<
-"Search"=="Buscar"
->Text<==>Texto<
->Images<==>Imágenes<
->Audio<==>Audio<
->Video<==>Vídeo<
->Applications<==>Aplicaciones<
->more options<==>más opciones<
->Tag<==>Tag<
->Topics<==Temas
->Cloud<==>Nube<
->Protocol<==>Protocolo<
->Filetype<==>Tipo de archivo<
->Provider<==>Proveedor<
->Language<==>Idioma<
->Author<==>Autor<
->Vocabulary<==>Vocabulario<
-42 kbyte<==42 KB<
->Metadata<==>Metadata<
->Parser<==>Parser<
->Citation<==Citación
->Pictures<==>Imágenes<
->Cache<==>Cache<
+Date Navigation==Navegación de la fecha
+Below is a generic template of the search result page. Mark the check boxes for features you would like to be displayed.==A continuación se muestra una plantilla genérica de la página de resultados de búsqueda. Marque las casillas de verificación para las características que desea mostrar.
+Add Navigators==Añadir Navegadores
+max. items==max. items
+Description and text snippet of the search result==Descripción y fragmento de texto del resultado de la búsqueda
+http://url-of-the-search-result.net==http://url-of-the-search-result.net
+(remaining can then be expanded)==(El resto se puede ampliar)
+Max. tags initially displayed==Max. tags initially displayed
+Maximum range (in days)==Rango máximo (en días)
+Show websites favicon==Mostrar sitios web favicon
+Not showing websites favicon can help you save some CPU time and network bandwidth.==No mostrar sitios web favicon puede ayudarle a ahorrar tiempo de CPU y ancho de banda de la red.
+View via Proxy==Ver a través de proxy
+For this option URL proxy must be enabled.==Para esta opción se debe habilitar el proxy URL.
+Ranking: 1.12195955E9==Ranking: 1.12195955E9
+menu: System Administration > Advanced Settings==menu: System Administration > Advanced Settings
+show search results on map==mostrar los resultados de la búsqueda en el mapa
"Save Settings"=="Guardar configuración"
"Set Default Values"=="Establecer valores por defecto"
+"Add navigator"=="Añadir navegador"
+"Browse index"=="Índice de navegación"
+"Date"=="Fecha"
+"Delete navigator"=="Borrar navegador"
+"Raw ranking score value"=="Valor de puntuación de ranking en bruto"
+"Size"=="Tamaño"
+"Top navigation bar"=="Barra de navegación superior"
+"Enable login link/status"=="Habilitar el enlace de acceso/status"
+"Help"=="Ayuda"
+"Last known modification date"=="Última fecha de modificación conocida"
+"Log in to use extended search features"=="Iniciar sesión para usar funciones de búsqueda extendidas"
+"Maximum days number in the histogram. Beware that a large value may trigger high CPU loads both on the server and on the browser with large result sets."=="Número máximo de días en el histograma. Tenga cuidado de que un gran valor puede desencadenar cargas de CPU altas tanto en el servidor como en el navegador con grandes conjuntos de resultados."
+"Protocols"=="Protocolos"
+"Sorted by ascending counts"=="Ordenado por los conteos ascendentes"
+"Sorted by ascending labels"=="Ordenado por etiquetas ascendentes"
+"Sorted by descending counts"=="Ordenado por los conteos descendentes"
+"Sorted by descending labels"=="Ordenado por etiquetas descendentes"
+"Tag cloud"=="Tag cloud"
+"Website favicon"=="Sitio web favicon"
+"You are authenticated as userName"=="Usted está autenticado como usuarioName"
+"earthsearchlogo"=="Investigación de la Tierra"
+"info"=="info"
+"search..."=="buscar... "
+42 kbyte==42 kbyte
+Administration »==Administración »
+Applications==Aplicaciones
+Ascending counts==Conteos ascendentes
+Ascending labels==Etiquetas ascendentes
+Audio==Archivo de Audio
+Cache==cache
+Citation==Citación
+Cloud==Nube
+Descending counts==Conteos descendentes
+Descending labels==Etiquetas descendentes
+Images==Imágenes
+Location==Zona
+Log in==Iniciar sesión
+Menu: System Administration > Advanced Settings > Debug/Analysis Settings==Menu: System Administration > Advanced Settings > Debug/Analysis Settings
+Metadata==Metadatos
+Page Template==Plantilla de página
+Parser==Parser
+Pictures==Imágenes
+Search Interfaces==Interfaz de búsqueda
+Search Result Page Layout Configuration==Configuración del diseño de la página de resultados de búsqueda
+Sort by==Ordenar por
+Tag==Etiqueta
+Tags==Etiquetas
+Text==Texto
+Title of Result==Título del resultado
+Toggle navigation==Conmutar la navegación
+Topics==Temas
+Video==Archivo de Vídeo
+Vocabulary==Vocabulario
+append==añadir
+file==archivo
+ftp==ftp
+http==http
+https==https
+keyword==palabra clave
+keyword2==keyword2
+keyword3==keyword3
+more options==más opciones
+search==buscar
+smb==smb
+subject==Asunto
+userName==usuarioName
#-----------------------------
-
#File: ConfigUpdate_p.html
#---------------------------
Manual System Update==Actualización manual del sistema
Current installed Release==Versión actual instalada
-Available Releases==Versiones disponibles
->changelog<==>changelog<
-> and <==> y <
-> RSS feed<==> feed RSS<
(unsigned)==(no firmado)
(signed)==(firmado)
"Download Release"=="Descargar versión"
"Check for new Release"=="Comprobar si hay nuevas versiones"
Downloaded Releases==Versiones descargadas
+No downloaded releases available for deployment.==No hay versiones descargadas disponibles para su despliegue.
+no automated installation on development environments==no hay instalación automatizada en entornos de desarrollo
"Install Release"=="Instalar versión"
"Delete Release"=="Eliminar versión"
Automatic Update==Actualización automática
+check for new releases, download if available and restart with downloaded release==comprobar nuevas versiones, descargar si está disponible y reiniciar con la versión descargada
"Check + Download + Install Release Now"=="Comprobar + Descargar + Instalar versión"
No more recent release found.==No se ha encontrado ningúna versión más reciente.
Release will be installed. Please wait.==La versión será instalada. Por favor espera.
-You installed YaCy with a package manager.==Has instalado YaCy con un gestor de paquetes.
-To update YaCy, use the package manager:==Para actualizar YaCy, use el administrador de paquetes:
+Omitting update because this is a development environment.==Omitir la actualización porque se trata de un entorno de desarrollo.
Automated System Update==Actualización automatizada del sistema
manual update==actualización manual
+no automatic look-up, updates can be made manually using this interface (see options above)==no hay búsqueda automática, las actualizaciones se pueden hacer manualmente usando esta interfaz (ver opciones arriba)
automatic update==actualizacion automática
+updates are made within fixed cycles:==las actualizaciones se realizan en ciclos fijos:
Time between lookup==Tiempo entre búsquedas
hours==horas
+Release blacklist==Lista negra de liberación
Release type==Tipo de versión
only main releases==solo versiones estables
any release including developer releases==cualquier versión incluyendo versiones de desarrollo
+Signed autoupdate:==Autoactualización firmada:
only accept signed files==solo acepta archivos firmados
"Submit"=="Enviar"
Accepted Changes.==Cambios aceptados.
System Update Statistics==Estadísticas de actualización del sistema
Last System Lookup==Último sistema de búsqueda
never==nunca
+Last Release Download==Descarga de la última versión
+Last Deploy==Último despliegue
+(no signature)==(sin firma)
+Omitting update because an error occurred while trying to deploy the release.==Omitir la actualización porque se produjo un error al intentar implementar la versión.
+System Update==Actualización del sistema
+automatic update: add the following line to /etc/crontab 0 6 * * * root apt-get update && apt-get -y --force-yes install yacy==actualización automática: añadir la siguiente línea a/etc/crontab 06* * * actualización apt-get raíz&&apt-get -y --force-yes instalar yacy
+manual update: apt-get update && apt-get install yacy==actualización manualupdate: apt-get&&apt-get install yacy
+(regex on release number strings)==(regex en cadenas de número de lanzamiento)
+If you see this message this means that your operation system is not supported.==Si ve este mensaje, esto significa que su sistema operativo no está soportado.
+This servlet can only be used on operating systems that are currently supported for deploy functions.==Este servlet sólo se puede utilizar en sistemas operativos que actualmente están soportados para funciones de implementación.
+You installed YaCy with a package manager. To update YaCy, use the package manager:==Ha instalado YaCy con un gestor de paquetes. Para actualizar YaCy, utilice el gestor de paquetes:
#-----------------------------
#File: Connections_p.html
#---------------------------
Incoming Connections==Conexiones entrantes
-Showing #[numActiveRunning]# active, #[numActivePending]# pending connections from a max. of #[numMax]# allowed incoming connections.==Mostrando #[numActiveRunning]# activo, #[numActivePending]# pendiente de conexiones de un máximo. of #[numMax]# permitió conexiones entrantes.
-Protocol==Protocolo
Duration==Duración
Source IP[:Port]==IP origen[:Port]
Dest. IP[:Port]==IP destino.[:Port]
-Command==Comando
-Used==Usado
-Close==Cerrar
-Waiting for new request nr.==Esperando nueva solicitud nr.
Outgoing Connections==Conexiones salientes
-Duration==Duración
+Command==Comando
ID==ID
+Protocol==Protocolo
+Server Connection Tracking==Seguimiento de la conexión del servidor
+Up-Bytes==Up-Bytes
#-----------------------------
-
#File: CookieMonitorIncoming_p.html
#---------------------------
+Cookie Monitor: Incoming Cookies==Cookie Monitor: Incoming Cookies
This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:==Esta es una lista de cookies que un servidor web ha enviado a los clientes del proxy de YaCy:
-Date==Fecha
-Cookies==Cookie
+Sending Host==Enviando host
+Receiving Client==Cliente receptor
"Enable Cookie Monitoring"=="Habilitar monitoreo de cookies"
"Disable Cookie Monitoring"=="Deshabilitar el monitoreo de cookies"
+Cookie==Cookie
+Date==Fecha
#-----------------------------
#File: CookieMonitorOutgoing_p.html
#---------------------------
-Outgoing Cookies Monitor==Monitor de cookies salientes
-Date==Fecha
-Cookie==Cookie
+Cookie Monitor: Outgoing Cookies==Cookie Monitor: Outgoing Cookies
+This is a list of cookies that browsers using the YaCy proxy sent to webservers:==Esta es una lista de cookies que los navegadores utilizan el proxy YaCy enviado a servidores web:
+Receiving Host==Recibiendo host
+Sending Client==Enviar cliente
"Enable Cookie Monitoring"=="Habilitar monitoreo de cookies"
"Disable Cookie Monitoring"=="Deshabilitar el monitoreo de cookies"
+Cookie==Cookie
+Date==Fecha
#-----------------------------
#File: CrawlCheck_p.html
#---------------------------
+Crawl Check==Comprobación de crawl
+This pages gives you an analysis about the possible success for a web crawl on given addresses.==Estas páginas le dan un análisis sobre el posible éxito de un crawl web en determinadas direcciones.
+List of possible crawl start URLs==Lista de posibles URLs de inicio de crawl
"Check given urls"=="Comprobar las URLs"
->Analysis<==>Análisis<
->URL<==>URL<
->Access<==>Acceso<
->Robots<==>Robots<
+URL==URL
+Access==Acceso
+Analysis==Análisis
+Crawl-Delay==Delay-Crawl
+Robots==Robots
+Sitemap==Mapa del sitio
#-----------------------------
#File: Crawler_p.html
#---------------------------
-Crawler==Crawler
+Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db==Error con la gestión de perfiles. Por favor, detenga YaCy, elimine el archivoDATA/PLASMADB/crawlProfiles0.db
and restart.==y reiniciar.
-Error:==Error:
-filter. ::==filtro. ::
-Crawling of==Rastreo de
-failed. Reason:==ha fallado. Razón:
-started.==Activado.
-Please wait some seconds,==Por favor espere unos segundos,
->Size==>Tamaño
->Progress<==>Progreso<
->Index Size<==>Tamaño del índice<
->Documents<==>Documentos<
+Application not yet initialized. Sorry. Please wait some seconds and repeat==Aplicación aún no inicializada. Lo siento. Por favor, espere unos segundos y repita
+Size==Tamaño
+"set"=="asignar"
+Seg- ments==Seg-
+Citations (reverse link index)==Citaciones (índice de enlace reverso)
+RWIs (P2P Chunks)==RWI (P2P Chunks)
+Crawler==Crawler
+Crawled Pages==Páginas crawleadas
+Crawler PPM==Crawler PPM
+Name==Nombre
+Queue==Cola
+Running==En ejecución
+Status==Estado
+Terminate All==Terminar todo
+pending:==pendiente:
+(Please enable JavaScript to automatically update this page!)==(Por favor, active JavaScript para actualizar automáticamente esta página!)
+Click on this API button to see an XML with information about the crawler status==Haga clic en este botón de APIpara ver un XML con información sobre el estado del crawler
Local Crawler==Crawler Local
+Limit Crawler==Limitar el crawler
Remote Crawler==Crawler Remoto
+No-Load Crawler==Sin carretilla
Speed / PPM (Pages Per Minute)==Velocidad / PPM (Páginas por minuto)
Database==Base de datos
Entries==Entradas
+Indicator==Indicador
+Level==Nivel
+Postprocessing Progress==Progresos en el procesamiento posterior
+Traffic (Crawler)==Tráfico (Crawler)
+"API"=="API"
+"Latency Factor"=="Factor de Letencia"
+"Max same Host in queue"=="Max mismo host en la cola"
+"Pages Per Minute"=="Páginas por minuto"
+"Set PPM to the default maximum value"=="Configurar PPM al valor máximo predeterminado"
+"Set PPM to the default minimum value"=="Configurar PPM al valor mínimo predeterminado"
+LF==LF
+MH==MH
+PPM==PPM
+Could not parse the Solr filter query :==No se pudo analizar la consulta del filtro Solr:
+Count==Contar
+Index Size==Tamaño del índice
+Load==Carga
+MB==MB
+No embedded local Solr index is connected. This is required to use a Solr query filter.==No está conectado ningún índice Solr local. Esto es necesario para usar un filtro de consulta Solr.
+Progress==Progresos
+Queues==Colas
+The Solr filter query syntax is not valid :==La sintaxis de consulta del filtro Solr no es válida:
+You asked for remote indexing, but remote crawl results won't be added to the local index as the remote crawler is currently disabled on this peer.==Usted pidió indexación remota, pero los resultados de crawl remoto no se añadirán al índice local ya que el crawler remoto está actualmente desactivado en este par.
+filter.==filtro.
+it may take some seconds until the first result appears there.
==puede tomar algunos segundos hasta que el primer resultado aparece allí.
+the request.==la solicitud.
+"Terminate"=="Terminado"
+"hide graphic"=="Ocultar gráfico"
+"show link structure"=="mostrar la estructura del enlace"
#-----------------------------
#File: CrawlProfileEditor_p.html
#---------------------------
-Status==Estado
-Start URL==URL de inicio
-no::yes==no::sì
+Crawl Profile Editor==Editor de perfiles de crawl
+Crawl profiles hold information about a crawl process that is currently ongoing.==Los perfiles de Crawl contienen información sobre un proceso de crawl que actualmente está en curso.
+Crawl Profile List==Lista de perfiles de crawl
+Crawl Thread==Hilo de discusión de crawl
+Must Match==Debe coincidir
+Must Not Match==No debe coincidir
+Fill Proxy Cache==Llenar cache proxy
+Local Text Indexing==Indización de texto local
+Local Media Indexing==Indización de medios locales
+Remote Indexing==Indización remota
Running==En ejecución
"Terminate"=="Terminado"
Finished==Completado
"Delete"=="Eliminado"
+"Delete finished crawls"=="Elimina los gateos terminados"
Select the profile to edit==Seleccione el perfil para editar
"Edit profile"=="Editar perfil"
-Edit Profile==Editar perfil
"Submit changes"=="Enviar cambios"
+Collections==Recaudación
+Crawler Steering==Control del crawler
+Depth==Profundidad
+false==falso
+no==no
+true==verdadero
+yes==sí
+Crawl Scheduler==Programador de crawl
+Max Page Per Domain==Página máxima por dominio
+Recrawl if older than==Recrawl si es mayor que
+Scheduled Crawls can be modified in this table==Las jaulas programadas se pueden modificar en esta tabla
+Accept '?' URLs==¿Aceptar '?'URLs
+Domain Counter Content==Contenido del contador de dominios
+Status==Estado
#-----------------------------
#File: CrawlResults.html
#---------------------------
-Crawl Results<==Resultados de rastreo<
->Crawl Results Overview<==>Resumen de resultados de rastreo<
-Domain==Dominio
-URLs=URL
+These are monitoring pages for the different indexing queues.==Estas son páginas de monitoreo para las diferentes colas de indexación.
+YaCy knows 5 different ways to acquire web indexes. The details of these processes (1-5) are described within the submenu's listed==YaCy abe5diferentes maneras de adquirir índices web. Los detalles de estos procesos (1-5) se describen dentro del submenú listado
+above which also will show you a table with indexing results so far. The information in these tables is considered as private,==Por encima de la cual también se mostrará una tabla con los resultados de indexación hasta ahora. La información en estos cuadros se considera como privada,
+so you need to log-in with your administration password.==por lo que necesita iniciar sesión con su contraseña de administración.
+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==Caso (6) es un monitor del generador de recibo local, el caso opuesto de (1). Contiene también un monitor de resultados de indexación, pero no se considera privado
+since it shows crawl requests from other peers.==porque muestra solicitudes de crawl de otros pares.
+Case (7) occurs if pack files are imported==El caso (7) ocurre si se importan archivos de pack
+The image above illustrates the data flow initiated by web index acquisition.==La imagen anterior ilustra el flujo de datos iniciado por la adquisición de índices web.
+Some processes occur double to document the complex index migration structure.==Algunos procesos ocurren dos veces para documentar la compleja estructura de migración del índice.
+(1) Results of Remote Crawl Receipts==(1) Resultados de los recibos a distancia
+This is the list of web pages that this peer initiated to crawl,==Esta es la lista de páginas web cuyo crawl inició este par,
+but had been crawled by other peers.==pero que fueron crawleadas por otros pares.
+This is the 'mirror'-case of process (6).==Este es el caso 'espejo' del proceso (6).
+Every page that a remote peer indexes upon this peer's request is reported back and can be monitored here.==Cada página que un par remoto indexa a petición de este par es reportada de nuevo y puede ser monitoreada aquí.
+(2) Results for Result of Search Queries==(2) Resultados de las consultas de búsqueda
+This index transfer was initiated by your peer by doing a search query.==Esta transferencia de índice fue iniciada por su par haciendo una consulta de búsqueda.
+The index was crawled and contributed by other peers.==El índice fue rastreado y contribuido por otros pares.
+Use Case: This list fills up if you do a search query on the 'Search Page'==UseCase:Esta lista se llena si hace una consulta de búsqueda en la 'página de búsqueda'
+(3) Results for Index Transfer==(3) Resultados de la Transferencia de Índice
+The url fetch was initiated and executed by other peers.==La búsqueda de la url fue iniciada y ejecutada por otros pares.
+These links here have been transmitted to you because your peer is the most appropriate for storage according to==Estos enlaces aquí han sido transmitidos a usted porque su par es el más apropiado para el almacenamiento de acuerdo a
+the logic of the Global Distributed Hash Table.==la lógica de la Tabla de Hash Distribuido Global.
+Use Case: This list may fill if you check the 'Index Receive'-flag on the 'Index Control' page==UseCase:Esta lista puede llenarse si comprueba la bandera 'Index Receive' en la página 'Index Control'
+(4) Results for Proxy Indexing==(4) Resultados de la Indización de proxy
+These web pages had been indexed as result of your proxy usage.==Estas páginas web habían sido indexadas como resultado de su uso de proxy.
+such pages are detected by Cookie-Use or POST-Parameters (either in URL or as HTTP protocol)==tales páginas son detectadas por Cookie-Uso o POST-Parámetros (ya sea en URL o como protocolo HTTP)
+and automatically excluded from indexing.==y automáticamente excluidos de la indexación.
+Use Case: You must use YaCy as proxy to fill up this table.==UseCase:Debe utilizar YaCy como proxy para llenar esta tabla.
+Set the proxy settings of your browser to the same port as given==Configure la configuración del proxy de su navegador en el mismo puerto dado
+on the 'Settings'-page in the 'Proxy and Administration Port' field.==en la página 'Configuración' en el campo 'proxy and Administration Port'.
+(5) Results for Local Crawling==(5) Resultados para el calado local
+These web pages had been crawled by your own crawl task.==Estas páginas web fueron crawleadas por su propia tarea de crawl.
+Use Case: start a crawl by setting a crawl start point on the 'Index Create' page.==UseCase:inicie un crawl estableciendo un punto de inicio de crawl en la página "Crear índice".
+(6) Results for Global Crawling==(6) Resultados para el cultivo mundial
+These pages had been indexed by your peer, but the crawl was initiated by a remote peer.==Estas páginas habían sido indexadas por tu par, pero el crawl fue iniciado por un par remoto.
+This is the 'mirror'-case of process (1).==Este es el caso 'espejo' del proceso (1).
+The stack is empty.==La pila está vacía.
+(7) Results from pack import==(7) Resultados de la importación del envase
+These records had been imported from pack files in DATA/PACKS/load==These records had been imported from pack files in DATA/PACKS/load
"delete all"=="eliminar todo"
->Title==>Título
-URL==URL
+"clear list"=="lista clara"
"delete"=="Eliminar"
+Collection==Recogida
+Title==Título
+URLs==URLs
+"An illustration how yacy works"=="Una ilustración de cómo funciona el yacy"
+No personal or protected page is indexed;==Ninguna página personal o protegida es indexada;
+Country==País
+Crawl Results Overview==Vista general de resultados de crawl
+Executor==Ejecutador
+IP of Host==IP of Host
+Modified==Modificado
+No remote crawl results can currently been added to the local index as the remote crawler is disabled on this peer.==Actualmente no se pueden añadir resultados de crawl remoto al índice local ya que el crawler remoto está desactivado en este par.
+The remote crawler is currently disabled==El crawler remoto está actualmente desactivado
+Words==Palabras
+no title==sin título
+Blacklist to use==Lista negra a usar
+Domain==Dominio
+Initiator==Iniciador
+URL==URL
+"del & blacklist"=="del & lista negra"
#-----------------------------
#File: CrawlStartExpert.html
#---------------------------
+Expert Crawl Start==Expert Crawl Start
+Start Crawling Job:==Comiencen a trabajar en el Crawling:
+You can define URLs as start points for Web page crawling and start crawling here.==Puede definir URLs como puntos de inicio para el crawl web e iniciar el crawl aquí.
+"Crawling" means that YaCy will download the given website, extract all links in it and then download the content behind these links.=="Crawling" significa que YaCy descargará el sitio web dado, extraerá todos los enlaces en él y luego descargará el contenido detrás de estos enlaces.
+This is repeated as long as specified under "Crawling Depth".==Esto se repite siempre y cuando se especifique en "Profundidad de calado".
+A Crawl Job consist of one or more start point, crawl limitations and document freshness rules.==Un trabajo de Crawl consiste en uno o más puntos de inicio, limitaciones de crawl y reglas de frescura de documentos.
One Start URL or a list of URLs: (must start with http:// https:// ftp:// smb:// file://)==Una URL de inicio o una lista de URL: (debe comenzar con http:// https:// ftp:// smb:// file://)
+Define the start-url(s) here. You can submit more than one URL, each line one URL please.==Definir el inicio-url(s) aquí. Puede enviar más de un URL, cada línea URL por favor.
+Each of these URLs are the root for a crawl start, existing start URLs are always re-loaded.==Cada uno de estos URLsson la raíz para un inicio de crawl, inicio existente URLssiempre se vuelven a cargar.
+Other already visited URLs are sorted out as "double", if they are not allowed using the re-crawl option.==Otros URLsya visitados se clasifican como "doble", si no se les permite usar la opción de re-crawl.
+From Link-List of URL==De la lista de enlaces de URL
+From Sitemap==Desde el mapa
+From File (enter a path within your local file system)==Desde Archivo (introduzca una ruta dentro de su sistema de archivos local)
+A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==Un crawl web realiza una doble verificación en todos los enlaces encontrados en Internet contra la base de datos interna. Si la misma url se encuentra de nuevo,
+then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,==entonces la url se trata como doble cuando se comprueba la opción 'no dobles'. Una url puede ser cargada de nuevo cuando ha alcanzado una edad específica,
+Use filter==Usar filtro
+Restrict to start domain(s)==Restricción para iniciar dominio(s)
+Restrict to sub-path(s)==Restricción a sub-ruta(s)
+You can also use an automatic domain-restriction to fully crawl a single domain.==También puede utilizar una restricción automática de dominio para crawler completamente un único dominio.
+Page-Count==Conteo de páginas
+You can limit the maximum number of pages that are fetched and indexed from a single domain with this option.==Puede limitar el número máximo de páginas que se obtienen e indexan desde un solo dominio con esta opción.
+You can combine this limitation with the 'Auto-Dom-Filter', so that the limit is applied to all the domains within==Puede combinar esta limitación con el 'Auto-Dom-Filter', para que el límite se aplique a todos los dominios dentro de
+the given depth. Domains outside the given depth are then sorted-out anyway.==la profundidad dada. Los dominios fuera de la profundidad dada se ordenan de todos modos.
+Store to Web Cache==Almacenar en cache web
+This option is used by default for proxy prefetch, but is not needed for explicit crawling.==Esta opción se utiliza por defecto para prefetch proxy, pero no es necesario para el crawl explícito.
+A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled.==A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled.
+However, there are sometimes web pages with static content that==Sin embargo, a veces hay páginas web con contenido estático que
+is accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.==is accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.
+Following frames is NOT done by Gxxg1e, but we do by default to have a richer content. 'nofollow' in robots metadata can be overridden; this does not affect obeying of the robots.txt which is never ignored.==Los siguientes fotogramas NO son hechos por Gxxg1e, pero por defecto lo hacemos para tener un contenido más rico. "nofollow" en robots metadatos se puede anular; esto no afecta a la obediencia de larobots.txtque nunca se ignora.
+Accept URLs with query-part ('?'):==Aceptar URLscon la parte de consulta ('?'):
+Obey html-robots-noindex:==Obedecer html-robots-noindex:
+Policy for usage of Web Cache==Política para el uso de Web Cache
+The caching policy states when to use the cache during crawling:==La política de almacenamiento en cache indica cuándo usar la cache durante el crawl:
+no cache==no hay cache
+if fresh==si fresco
+if exist==si existe
+cache only==cache solamente
+These are limitations on the crawl stacker. The filters will be applied before a web page is loaded.==Estas son limitaciones en el apilador de crawl. Los filtros se aplicarán antes de que se cargue una página web.
+This defines how often the Crawler will follow links (of links..) embedded in websites.==Esto define con qué frecuencia el Crawler seguirá enlaces (de enlaces..) incrustados en sitios web.
+0 means that only the page you enter under "Starting Point" will be added==0significa que sólo se añadirá la página que introduzca bajo "Punto de inicio"
+to the index. 2-4 is good for normal indexing. Values over 8 are not useful, since a depth-8 crawl will==al índice.2-4es bueno para la indexación normal. Los valores sobre8no son útiles, ya que un crawl de profundidad-8
+index approximately 25.600.000.000 pages, maybe this is the whole WWW.==índice aproximadamente25.600.000.000páginas, tal vez esto es todo el WWW.
+also all linked non-parsable documents==también todos los documentos vinculados no analizables
+Unlimited crawl depth for URLs matching with==Profundidad de crawl ilimitada para URLs que coincidan con
+Maximum Pages per Domain==Páginas máximas por dominio
+misc. Constraints==misc. Constraints
+Filter on URLs==Filtro en URLs
+Must-Match List for Country Codes==Lista obligatoria para códigos de país
+Crawls can be restricted to specific countries. This uses the country code that can be computed from==Los crawls se pueden restringir a países específicos. Esto utiliza el código del país que se puede calcular a partir de
+the IP of the server that hosts the page. The filter is not a regular expressions but a list of country codes, separated by comma.==la IP del servidor que aloja la página. El filtro no es una expresión regular sino una lista de códigos de país, separados por comas.
+no country code restriction==ninguna restricción del código del país
+Document Filter==Filtro de documento
+These are limitations on index feeder. The filters will be applied after a web page was loaded.==Estas son limitaciones en el alimentador de índices. Los filtros se aplicarán después de que se haya cargado una página web.
+These are limitations on parts of a document. The filter will be applied after a web page was loaded.==Estas son limitaciones en partes de un documento. El filtro se aplicará después de que se haya cargado una página web.
+that must not match with the URLs to allow that the content of the url is indexed.==queno debe coincidir concon el URLspara permitir que el contenido de la url se indice.
+(must not be empty)==(No debe estar vacío)
+Clean-Up before Crawl Start==Limpiar antes de que comiencen los crawl
+Delete only old==Borrar sólo antiguo
+Delete sub-path==Suprímase el subcamino
+For each host in the start url list, delete all documents (in the given subpath) from that host.==Para cada host en la lista de url de inicio, elimine todos los documentos (en el subpath dado) de ese host.
+Do not delete any document before the crawl is started.==No borre ningún documento antes de iniciar el crawl.
+Treat documents that are loaded==Tratar los documentos que están cargados
+After a crawl was done in the past, document may become stale and eventually they are also deleted on the target host.==Después de que se hizo un crawl en el pasado, el documento puede volverse rancio y eventualmente también se eliminan en el host de destino.
+To remove old files from the search index it is not sufficient to just consider them for re-load but it may be necessary==Para eliminar los archivos antiguos del índice de búsqueda no es suficiente considerarlos sólo para volver a cargar, pero puede ser necesario
+to delete them because they simply do not exist any more. Use this in combination with re-crawl while this time should be longer.==para eliminarlos porque simplemente ya no existen. Utilice esto en combinación con un nuevo crawl mientras que este tiempo debe ser más largo.
+Double-Check Rules==Reglas de doble comprobación
+No Doubles==No hay dobles
+to use that check the 're-load' option.==para usar la opción 'recargar'.
+Never load any page that is already known. Only the start-url may be loaded again.==Nunca cargue ninguna página que ya se conozca. Sólo se puede volver a cargar la start-url.
+Robot Behaviour==Comportamiento del robot
+Use Special User Agent and robot identification==Utilizar el Agente de Usuario Especial y la identificación del robot
+(like the Google Search Appliance aka GSA) the user must be able to crawl all web pages that are granted to such commercial platforms.==(como el Google Search Appliance aka GSA) el usuario debe ser capaz de crawler todas las páginas web que se conceden a dichas plataformas comerciales.
+Because YaCy can be used as replacement for commercial search appliances==Debido a que YaCy e puede utilizar como reemplazo de los aparatos de búsqueda comercial
+Not having this option would be a strong handicap for professional usage of this software. Therefore you are able to select==No tener esta opción sería una gran desventaja para el uso profesional de este software. Por lo tanto, usted es capaz de seleccionar
+alternative user agents here which have different crawl timings and also identify itself with another user agent and obey the corresponding robots rule.==agentes usuarios alternativos aquí que tienen diferentes tiempos de crawl y también se identifican con otro agente de usuario y obedecen la regla de robots correspondiente.
index text==indizar texto
index media==índice de medios
+This enables indexing of the webpages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the==Esto permite la indexación de las páginas web que el crawler descargará. Esto debe ser activado por defecto, a menos que desee crawler sólo para llenar el
+Document Cache without indexing.==Document Cache sin indexar.
+Do Remote Indexing==Indización remota
+Describe your intention to start this global crawl (optional)==Describa su intención de iniciar este crawl global (opcional)
+This message will appear in the 'Other Peer Crawl Start' table of other peers.==Este mensaje aparecerá en la tabla 'Other Peer Crawl Start' de otros pares.
+If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Si se marca, el crawler contactará con otros pares y los usará como indexadores remotos para su crawl.
+If you need your crawling results locally, you should switch this off.==Si necesita localmente los resultados de su crawl, debe desactivar esta opción.
+Only senior and principal peers can initiate or receive remote crawls.==Solo los pares senior y principal pueden iniciar o recibir crawls remotos.
+so they can omit starting a crawl with the same start point.==para que puedan omitir el inicio de un crawl con el mismo punto de partida.
+A crawl result can be tagged with names which are candidates for a collection request.==Un resultado de crawl se puede etiquetar con nombres que son candidatos para una solicitud de recogida.
+"Start New Crawl Job"=="Iniciar un nuevo trabajo de crawl"
+Always cross check file extension against Content-Type header==Siempre revise la extensión del archivo contra el encabezado Tipo de contenido
+Check this option to be sure to get fresh search results including newly crawled documents. Beware that it will also interrupt any refreshing/resorting of search results currently requested from browser-side.==Marque esta opción para asegurarse de obtener resultados de búsqueda frescos, incluyendo documentos recién rastreados. Tenga cuidado de que también interrumpirá cualquier refrescante/resortingde resultados de búsqueda actualmente solicitados desde el lado del navegador.
+Clean up search events cache==Limpiar la cache de eventos de búsqueda
+Click on this API button to see a documentation of the POST request parameter for crawl starts.==Haga clic en este botón APIpara ver una documentación del parámetro POST request para inicios de crawl.
+Do not load URLs with an unsupported file extension==No cargue URLscon una extensión de archivo no soportada
+Each parsed document is checked against the given Solr query before being added to the index.==Cada documento analizado se comprueba con la consulta Solr dada antes de ser añadido al índice.
+Example: to allow loading only links from pages on example.org domain, set the must-match filter to '.*example.org.*'.==Ejemplo: para permitir cargar sólo enlaces de páginas en el dominio example.org, establezca el filtro que debe coincidir con '.*example.org.*'.
+Example: to allow only urls that contain the word 'science', set the must-match filter to '.*science.*'.==Ejemplo: para permitir solamente urls que contengan la palabra 'ciencia', establezca el filtro de necesidad en '.*ciencia.*'.
+Filter on Document Media Type (aka MIME type)==Filtro en el tipo de medio de documento (alias tipo MIME)
+Indeed, for some web resources the actual Media Type is not consistent with the URL file extension. Here are some examples:==De hecho, en algunos recursos web el tipo de medio real no coincide con la extensión de archivo de la URL. Estos son algunos ejemplos:
+Media Type detection==Detección de tipo de medio
+Not loading URLs with unsupported file extension is faster but less accurate.==No cargar URLs con extensión de archivo no admitida es más rápido, pero menos preciso.
+Obey html-robots-nofollow:==Obedecer html-robots-nofollow:
+Remote crawl results won't be added to the local index as the remote crawler is disabled on this peer.==Los resultados de crawl remoto no se añadirán al índice local ya que el crawler remoto está desactivado en este par.
+The embedded local Solr index must be connected to use this kind of filter.==El índice Solr local integrado debe estar conectado para usar este tipo de filtro.
+The time zone is required when the parser detects a date in the crawled web page. Content can be searched with the on: - modifier which==La zona horaria es necesaria cuando el parser detecta una fecha en la página web crawleada. El contenido puede buscarse con el modificador on:, que
+Time zone offsets for locations east of UTC must be negative; offsets for zones west of UTC must be positve.==Los desfases de la zona horaria para los lugares al este de UTC deben ser negativos; los desfases para las zonas al oeste de UTC deben ser positivos.
+You can use class names to enrich the terms of a vocabulary based on the text content that appears on web pages. Please write the names of classes into the matrix.==Puede usar nombres de clases para enriquecer los términos de un vocabulario basándose en el contenido textual que aparece en las páginas web. Escriba los nombres de las clases en la matriz.
+from dates without time zones to UTC, this offset must be given here. The offset is given in minutes;==para fechas sin zona horaria a UTC, este desfase debe indicarse aquí. El desfase se expresa en minutos;
+requires also a time zone when a query is made. To normalize all given dates, the date is stored in UTC time zone. To get the right offset==también requiere una zona horaria cuando se realiza una consulta. Para normalizar todas las fechas indicadas, la fecha se guarda en la zona horaria UTC. Para obtener el desfase correcto
+Filter on Content of Document (all visible text, including camel-case-tokenized url and title)==Filtrar en el contenido del documento (todo texto visible, incluyendo url tokenizada con caja de camello y título)
+"API"=="API"
+"Clean up search events cache info"=="Limpiar la información de cache de eventos de búsqueda"
+"Media Type checking info"=="Información de verificación del tipo de medios"
+"Media Type filter info"=="Información del filtro de Tipo de Medios"
+"Show all links"=="Mostrar todos los enlaces"
+"Solr query filter info"==" Información del filtro de consulta Solr"
+"empty"=="vacío"
+"info"=="info"
+cache only: never go online, use all content from cache. If no cache exist, treat content as unavailable==caché sólo: nunca ir en línea, utilizar todo el contenido de la caché. Si no existe caché, tratar el contenido como no disponible
+if exist: use the cache if the cache exist. Do no check freshness. Otherwise use online source;==si existe: utilice la caché si la caché existe. No compruebe la frescura. De lo contrario, utilice la fuente en línea;
+if fresh: use the cache if the cache exists and is fresh using the proxy-fresh rules;==si fresco: utilice la caché si la caché existe y está fresca utilizando las reglas de proxy-fresh;
+no cache: never use the cache, all content from fresh internet source;==no caché: nunca utilice la caché, todo el contenido de la fuente de Internet fresca;
+A YaCyNews message will be created to inform all peers about a global crawl,==Un mensaje YaCyNews será creado para informar a todos los pares sobre un crawl global,
+Add Crawl result to collection (important for Index Pack generation)==Añadir el resultado de Crawl a la colección (importante para la generación de Index Pack)
+Class==Clase
+Content Filter==Filtro de contenido
+Crawl Job==Trabajo de crawl
+Crawler Filter==Filtro de crawler
+Crawling Depth==Profundidad de calado
+Do not use underline '_' in collection name, use '-' instead. When useful, add a language code to the collection name, e.g. 'top-100-en'.==No utilice el subrayado '_' en el nombre de la colección, use '-' en su lugar. Cuando sea útil, agregue un código de idioma al nombre de la colección, por ejemplo 'top-100-en'.
+Document Cache==cache del documento
+Enrich Vocabulary==Enriquecer el vocabulario
+Evaluate by default==Evaluar por defecto
+Filter div or nav class names==Filtrar nombres de clases div o nav
+Ignore all words in document by default until a CSS class as listed below appears, then evaluate all==Ignorar todas las palabras en el documento por defecto hasta que aparezca una clase CSS como se indica a continuación, a continuación, evaluar todos
+Ignore by default==Ignorar por defecto
+Index Attributes==Atributos del índice
+Indexing==Indización
+Load Filter on IPs==Filtro de carga en IPs
+Load Filter on URL origin of links==Filtro de carga en origen URL de enlaces
+Load Filter on URLs==Filtro de carga en URLs
+No Deletion==Sin supresión
+No Indexing when Canonical present and Canonical != URL==No hay indización cuando Canonical presente y Canonical !=URL
+Re-load==Recargar
+Scraping Fields==Campos de desguace
+Start Point==Punto de inicio
+Time Zone Offset==Desplazamiento de la zona horaria
+Use==Uso
+Use all words in document by default until a CSS class as listed below appears; then ignore all==Use todas las palabras en el documento por defecto hasta que aparezca una clase CSS como se indica a continuación; luego ignore todo
+Vocabulary==Vocabulario
+You can choose to:==Puede elegir:
+ago as stale and delete them before the crawl is started.==hace como rancio y eliminarlos antes de que se inicie el crawl.
+ago as stale and load them again. If they are younger, they are ignored.==ago as stale and load them again. If they are younger, they are ignored.
+comma-separated list of <div> or <nav> element class names which should be filtered out/in according to switch above.==lista separada por comas de nombres de clase de elementos<div>o<nav>que deben ser filtrados/insegún el cambio anterior.
+must-match==must-match
+must-not-match==must-no-match
+that must match with the document Media Type (also known as MIME Type) to allow the URL to be indexed.==quedebe coincidir concon el tipo de medio de documento (también conocido como tipo MIME) para permitir que el URLsea indexado.
#-----------------------------
#File: CrawlStartScanner_p.html
#---------------------------
Network Scanner==Network Scanner
-Please wait...==Espere por favor...
-Time-Out<==Timeout<
->ftp==>FTP
->smb==>SMB
->http==>HTTP
->https==>HTTPS
->Scheduler<==>Scheduler<
->minutes<==>minutos<
->hours<==>horas<
->days<==>días<
+YaCy can scan a network segment for available http, ftp and smb server.==YaCy puede escanear un segmento de red para el servidor disponible http, ftp y smb.
+You must first select a IP range and then, after this range is scanned,==Primero debe seleccionar un rango IP y luego, después de que este rango sea escaneado,
+it is possible to select servers that had been found for a full-site crawl.==es posible seleccionar los servidores que se habían encontrado para un crawl de sitio completo.
+Scan Range==Rango de exploración
+Scan sub-range with given host==Escanea el sub-rango con el host dado
+Do not use intranet scan results, you are not in an intranet environment!==No utilice los resultados del escaneo intranet, ¡no está en un entorno intranet!
+All known hosts in the search index (/31 subnet recommended!)==Todos los hosts conocidos en el índice de búsqueda (/31subnet recomendado!)
+accumulate scan results with access type "granted" into scan cache (do not delete old scan result)==acumular resultados de escaneo con el tipo de acceso "concedido" en cache de escaneo (no eliminar el resultado de escaneo antiguo)
+run only a scan==ejecutar sólo un escaneo
+scan and add all sites with granted access automatically. This disables the scan cache accumulation.==escanear y añadir todos los sitios con acceso concedido automáticamente. Esto deshabilita la acumulación de caché de escaneo.
+again and add new sites automatically to indexer.==de nuevo y añadir nuevos sitios automáticamente al indexador.
+Sites that do not appear during a scheduled scan period will be excluded from search results.==Los sitios que no aparezcan durante un período de exploración programado serán excluidos de los resultados de búsqueda.
"Scan"=="Scan"
+Scheduler==Scheduler
+days==días
+ftp==ftp
+hours==horas
+http==http
+https==https
+minutes==minutos
+smb==smb
+ Look every==
+/16 (65024 addresses)==/16(direcciones65024)
+/20 (4064 addresses)==/20(direcciones4064)
+/24 (254 addresses)==/24(direcciones254)
+/31 (only the given host(s))==/31(sólo los hosts dados)
+Scan Cache==Escanea cache
+Scan the network==Escanea la red
+Service Type==Tipo de servicio
+ms==ms
+Subnet==Subred
+Time-Out==Tiempo muerto
#-----------------------------
#File: CrawlStartSite.html
#---------------------------
->Site Crawling<==>Rastreo de sitios<
Site Crawler:==Rastreador de sitios:
-Start URL (must start with==URL de inicio (debe comenzar con
->Site Crawl Start<==>Inizia crawling sito<
->Site<==>Sitio<
->Scheduler<==>Scheduler<
->minutes<==>minutos<
->hours<==>horas<
->days<==>días<
->Path<==>Ruta<
->Limitation<==>Limitación<
-not more than <==no más que <
->documents<==>documentos<
-allow <==permitir <
-Collection<==Colección<
->Start<==>Iniciar<
-"Start New Crawl"=="Iniciar nuevo rastreo"
-Hints<==Sugerencias<
->Crawl Speed Limitation<==>Limitar la velocidad de rastreo<
+Download all web pages from a given domain or base URL.==Descargue todas las páginas web de un dominio dado o base URL.
+Link-List of URL==Lista de enlaces de URL
+load all files in domain==cargar todos los archivos en el dominio
+load only files in a sub-path of given url==cargar sólo archivos en un sub-path de url dado
+"Start New Crawl"=="Iniciar nuevo crawl"
+A second crawl for a different host increases the throughput to a maximum of 240 documents per minute since the crawler balances the load over all hosts.==Un segundo crawl para un host diferente aumenta el rendimiento a un máximo de documentos240por minuto ya que el crawler equilibra la carga sobre todos los hosts.
+A 'shallow crawl' which is not limited to a single host (or site)==Un 'regateo de baratijas' que no se limita a un solo host (o sitio)
+can extend the pages per minute (ppm) rate to unlimited documents per minute when the number of target hosts is high.==puede extender la tasa de páginas por minuto (ppm) a documentos ilimitados por minuto cuando el número de hosts de destino es alto.
+"Show all links"=="Mostrar todos los enlaces"
+"empty"=="vacío"
+Collection==Recogida
+Path==Ruta
+Crawl Speed Limitation==Limitación de la velocidad de los crawl
+High Speed Crawling==crawl de alta velocidad
+Hints==Consejos
+Limitation==Limitación
+No more that four pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.==No más de cuatro páginas se cargan desde el mismo host en un segundo (no más que el documento120por minuto) para limitar la carga en el servidor de destino.
+Scheduler Steering==Dirección del planificador
+Site==Sitio
+Start==Comienzo
+Target Balancer==Balanceador de objetivos
+documents==documentos
+Site Crawl Start==Inicio del crawl de sitio
+Site Crawling==Crawl de sitio
+Sitemap URL==Sitemap URL
+not more than==no más de
+Start URL (must start with http:// https:// ftp:// smb:// file://)==URL inicial (debe empezar por http:// https:// ftp:// smb:// file://)
#-----------------------------
#File: Help.html
#---------------------------
-YaCy: Help==YaCy: Ayuda
YaCy: Tutorial==YaCy: Tutorial
twitter this video==twittea este video
-Download from Vimeo==Descargar desde vimeo
More Tutorials==Más tutoriales
+To learn how to do that, watch one of the demonstration videos below:==Para aprender a hacer eso, vea uno de los videos de demostración a continuación:
+You are using the administration interface of your own search engine. You can create your own search index with YaCy.==Usted está utilizando la interfaz de administración de su propio motor de búsqueda. Puede crear su propio índice de búsqueda con YaCy.
+Tutorial==Tutorial
#-----------------------------
#File: IndexBrowser_p.html
#---------------------------
->all hosts<==>todos los hosts<
-> or <==> o <
-Host/URL:==Host/URL:
"Delete Subpath"=="Eliminar Subruta"
->Host List<==>Lista de Host<
+Count Colors:==Contar colores:
Documents without Errors==Documentos sin errores
->Path<==>Ruta<
-Administration Options==Opciones de Administración
-==
+Pending in Crawler==Pendiente en Crawler
+link, detected from context==enlace, detectado desde el contexto
+load & index==cargar el índice&
Administration Options==Opciones de Administración
Delete all==Eliminar todo
->Load Errors<==>Errores de carga<
from index==desde index
"Delete Load Errors"=="Elimina los errores de carga"
+Metadata==Metadatos
+Path==Ruta
+URLs==URLs
+indexed==indizados
+Host List==Lista de máquinas
+"Directory"=="Directorio"
+Add to blacklist==Añadir a la lista negra
+Crawler Excludes==Crawler Excluye
+Host Analysis==Análisis del host
+Load Errors==Errores de carga
+excluded==excluidos
+failed==Falló
+linked==vinculado
+loading==carga
+pending==pendiente
+stored==almacenados
+Browse Host==Examinar el host
+Host/URL==Host/URL
+Index Browser==Navegador de índices
+"Re-load load-failure docs (404s etc)"=="Recargar documentos de fallo de carga (404s, etc)"
#-----------------------------
#File: index.html
#---------------------------
-==
-YaCy '#[clientname]#': Search Page==YaCy '#[clientname]#': Página de búsqueda
-kiosk mode==Modo kiosco
-"Search"=="Buscar"
-Text==Texto
Images==Imágenes
-Audio==Archivo de Audio
Video==Archivo de Vídeo
Applications==Aplicaciones
more options...==más opciones...
-advanced parameters==parámetros avanzados
-Max. number of results==Nº máximo de resultados
Results per page==Resultados por página
Resource==Recursos
-global==global
->local==>local
-"authentication required"=="autentificación requerida"
-Disable search function for users without authorization==Deshabilitar la función de búsqueda para usuarios no autorizados
-Enable web search to everyone==Habilitar la búsqueda web para todos
-the peer-to-peer network==la red peer-to-peer
+restrict on==restricciones a
+show all==Mostrar todo
+Prefer mask==Prefiere máscara
+only index pages==sólo páginas de índice
+the peer-to-peer network==la red par-to-par
+only the local index==sólo el índice local
Query Operators==Operadores de Consulta
restrictions==restricciones
+only urls with the <phrase> in the url==sólo urls con la frase< en la url
+only urls with the <phrase> within outbound links of the document==sólo urls con la frase< dentro de los enlaces salientes del documento
only resources from http or https servers==recursos solo desde servidores http o https
-only resources from ftp servers==recursos solo desde servidores ftp
ranking modifier==modificadores de ranking
-sort by date==ordenar por fecha
-latest first==Más reciente
-doublequotes==doble comillas
-prefer given language==idioma preferido
+multiple words shall appear near==varias palabras aparecerán cerca
+heuristics==heurística
+add search results from external opensearch systems==añadir resultados de búsqueda de sistemas externos de búsqueda abierta
+Search Navigation==Navegación de búsqueda
keyboard shortcuts==Atajos de teclado
-See an==Ver un
->example==>ejemplo
+next result page==siguiente página de resultados
+previous result page==página de resultados anteriores
+automatic result retrieval==recuperación automática de resultados
+browser integration==integración del navegador
+after searching, click-open on the default search engine in the upper right search field of your browser and select 'Add "YaCy Search.."'==después de buscar, haga clic en abrir en el motor de búsqueda predeterminado en el campo de búsqueda superior derecha de su navegador y seleccione 'Añadir "YaCySearch.."'
+search as rss feed==búsqueda como fuente rss
+json search results==json resultados de la búsqueda
+for ajax developers: get the search rss feed and replace the '.rss' extension in the search result url with '.json'==para desarrolladores de ajax: obtener el feed rss de búsqueda y reemplazar la extensión '.rss' en la url de resultados de búsqueda con '.json'
+Constraints:==Limitaciones:
+only urls with extension <ext>==sólo urls con extensión<ext>
+only urls from host <host>==sólo urls del anfitrión<host>
+only pages with as-author-annotated <author>==sólo páginas con<autor anotado como autor>
+only pages from top-level-domains <tld>==sólo páginas de dominios de nivel superior<tld>
+only pages with <date> in content==sólo páginas con<fecha>en contenido
+only pages with a date between <date1> and <date2> in content==sólo páginas con una fecha entre<date1>y<date2>en contenido
+only pages with keyword anotation containing <phrase>==sólo páginas con anotación de palabras clave que contiene<frase>
+only documents having location metadata (geographical coordinates)==solo documentos con metadatos de ubicación (coordenadas geográficas)
+only documents within a square zone embracing a circle of given radius (in decimal degrees) around the specified latitude and longitude (in decimal degrees)==solo documentos dentro de una zona cuadrada que abarque un círculo de radio dado (en grados decimales) alrededor de la latitud y longitud especificadas (en grados decimales)
+sort by date (latest first)==ordenar por fecha (último primero)
+"" (doublequotes)=="" (doble cotización)
+/language/<lang>==/language/<lang>
+Text==Texto
+Audio==Archivo de Audio
+spatial restrictions==restricciones espaciales
+"Extend media search results (images, videos or applications specific) to pages including such medias (provides generally more results, but eventually less relevant)."=="Extender los resultados de búsqueda de medios (imágenes, vídeos o aplicaciones específicas) a páginas que incluyan dichos medios (provee generalmente más resultados, pero eventualmente menos relevantes)."
+"Reference alpha-2 language codes list"=="Lista de referencia de códigos de idioma alpha-2"
+"Strictly limit media search results (images, videos or applications specific) to indexed documents matching exactly the desired content domain."=="Limite estrictamente los resultados de búsqueda de medios (imágenes, vídeos o aplicaciones específicas) a documentos indexados que coincidan exactamente con el dominio de contenido deseado"."
+/date==/date
+/file==/file
+/ftp==/ftp
+/heuristic==/heuristic
+/http==/http
+/location==/location
+/near==/near
+/radius/<latitude>/<longitude>/<distance>==/radius/<latitud>/<longitud>/<distancia>
+/smb==/smb
+Extended==Extendida
+Media search==Búsqueda en los medios de comunicación
+Search==Buscar
+Strict==Estricto
+author:<author>==autor:<autor>
+filetype:<ext>==filetype:<ext>
+from:<date1> to:<date2>==desde:<date1>hasta:<date2>
+inlink:<phrase>==inlink:<frase>
+inurl:<phrase>==inurl:<phrase>
+keyword:<phrase>==palabra clave:<frase>
+on:<date>==on:<date>
+site:<host>==site:<host>
+tld:<tld>==tld:<tld>
#-----------------------------
#File: IndexControlRWIs_p.html
#---------------------------
-document type==tipo de documento
-
Marques-pages
Add Bookmark== Ajouter aux marques-pages
Import XML Bookmarks==Importer des marque-pages à partir d'un fichier XML
Edit Bookmark==éditer les marque-pages
-#URL:==URL:
Title:==Titre:
Description:==Description:
Tags (comma separated):==Tags (séparés par des virgules):
@@ -272,33 +258,60 @@ Public:==Publique:
yes==oui
no==non
"create"=="créer"
-"edit"=="modifier"
File:==Fichier:
-import as Public== importer en public
"private bookmark"=="marque-page privé"
"public bookmark"=="marque-page public"
-Tagged with==Marqué par
Edit==éditer
Delete==Supprimer
Bookmark List==Liste des marque-pages
previous page==page précédente
next page==page suivante
-All==Tous
Show==Montrer
Bookmarks per page.==Marque-pages par page.
+"API"=="API"
+"RSS"=="RSS"
+"Save"=="Enregistrer"
+"import"=="importer"
+"start it"=="Commence-le."
+"stop it"=="Arrête."
+Auto Search==Recherche automatique
+Bookmark Folder==Dossier des signets
+Bookmark is a newsfeed==Signet est un flux de nouvelles
+Bookmarks==Signets
+Bookmarks (RSS)==Signets (RSS)
+Bookmarks (XBEL)==Signets (XBEL)
+Bookmarks (XML)==Signets (XML)
+Click the API icon to load the RSS from the current selection.==Cliquez sur l'icône API pour charger le RSS à partir de la sélection actuelle.
+Default Tags:==Étiquettes par défaut:
+Every peer online will be ask for results.==Tous les pairs en ligne seront invités à obtenir des résultats.
+Folder (/folder/subfolder):==Dossier (/folder/subfolder):
+Folders==Dossiers
+Import Bookmarks==Importer des signets
+Import HTML Bookmarks==Importer des signets HTML
+Info==Info
+List Bookmarks==Liste des signets
+Login==Connexion
+Query:==Requête :
+Tagged with |==Tagué avec:
+Tags==Tags
+The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.==La liste des signets peut également être récupérée sous forme de flux RSS. Cela peut également être fait lorsque vous sélectionnez une balise spécifique.
+This starts a search of new or modified bookmarks since startup==Cela démarre une recherche de signets nouveaux ou modifiés depuis le démarrage
+autosearch queue:==file d'attente de recherche automatique :
+current query:==requête actuelle :
+import as Public:==importation en tant que public:
+in folder "search" with "query=<original_search_term>"==dans le dossier "recherche" avec "query= < original_search_term >"
+received results:==résultats reçus:
+search==recherche
+start autosearch of new bookmarks==démarrer la recherche automatique de nouveaux signets
#-----------------------------
#File: ConfigAccounts_p.html
#---------------------------
User Accounts==Comptes utilisateurs
User Administration==Gestion des utilisateurs
-User created:==Utilisateur créé:
-User changed:==Utilisateur modifié:
Generic error.==Erreur générique.
Passwords do not match.==Les mots de passe ne correspondent pas.
Username too short. Username must be >= 4 Characters.==Nom d'utilisateur trop court. Un nom d'utilisateur doit comporter plus de 4 caractères.
-No password is set for the administration account.==Aucun mot de passe n'est défini pour le compte administrateur.
-Please define a password for the admin account.==Veuillez définir un mot de passe pour le compte admin.
Admin Account==Compte admin
Access from localhost without account==Accès sans compte à partir d'un navigateur local
Access to your peer from your own computer (localhost access) is granted with administrator rights. No need to configure an administration account.==L'accès à votre nœud depuis votre propre ordinateur (accès local) vous est donné avec des droits d'aministrateur. La création d'un compte administrateur n'est pas nécessaire.
@@ -312,144 +325,130 @@ Repeat Peer Password:==Entrer à nouveau le mot de passe du nœud:
"Define Administrator"=="Définir l'administrateur"
Select user==Choisir un utilisateur
New user==Nouvel utilisateur
-Edit User==Modifier l'utilisateur
-Delete User==Supprimer l'utilisateur
-Edit current user:==Modifier l'utilisateur courant:
-Username==Nom d'utilisateur
-Password==Mot de passe
Repeat password==Entrer à nouveau le mot de passe
First name==Prénom
Last name==Nom
Address==Adresse
-Rights==Droits
Timelimit==Limite de temps
Time used==Temps utilisé
-Save User==Sauvegarder l'utilisateur
->Access Rules<==>Règles d'accès<
Protection of all pages: if set to on, access to all pages need authorization; if off, only pages with "_p" extension are protected.==Protection de toutes les pages: lorsqu'activé, l'accès à n'importe quelle page nécessite une authentification; lorsque désactivé, seules les pages avec l'extension "_p" sont protégées.
-Set Access Rules==Définir les règles d'accès
+"Delete User"=="Supprimer l' utilisateur"
+"Edit User"=="Modifier l' utilisateur"
+"Save User"=="Enregistrer l' utilisateur"
+"Set Access Rules"=="Définir les règles d'accès"
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==AVERTISSEMENT Cette instance YaCy peut être administrée avec le compte "admin" et le mot de passe par défaut "yacy".
+Access Rules==Règles d'accès
+Change the password as soon as possible!==Changez le mot de passe dès que possible !
+Password==Mot de passe
+Rights:==Droits :
+Username==Nom d'utilisateur
+Username already used (not allowed).==Nom d'utilisateur déjà utilisé (non autorisé).
#-----------------------------
#File: ConfigAppearance_p.html
+Text==Texte
#---------------------------
Appearance and Integration==Apparence et intégration
You can change the appearance of the YaCy interface with skins.==Vous pouvez personnaliser l'interface YaCy avec des thèmes.
The selected skin and language also affects the appearance of the search page.==Le thème et la langue sélectionnés affectent aussi l'aspect de la page de recherche.
-If you create a search portal with YaCy then you can==Si vous utilisez YaCy pour créer un portail de recherche vous pouvez alors
change the appearance of the search page here.==modifier l'aspect de la page de recherche ici.
Skin Selection==Sélection du thème
-Select one of the default skins, download new skins, or create your own skin.==Sélectionnez l'un des thèmes par défaut, téléchargez de nouveaux thèmes ou créez le vôtre.
Current skin==Thème actuel
Available Skins==Thèmes disponibles
"Use"=="Utiliser"
"Delete"=="Supprimer"
->Skin Color Definition<==>Définition des couleurs du thème<
The generic skin 'generic_pd' can be configured here with custom colors:==Le thème générique 'generic_pd' peut être configuré avec des couleurs personnalisées :
->Background<==>Arrière-plan<
->Text<==>Texte<
->Legend<==>Légende<
->Table Header<==>En-tête de tableau<
->Table Item<==>Élément de tableau<
->Table Item 2<==>Élément de tableau bis<
->Table Bottom<==>Bas de tableau<
->Border Line<==>Bordure<
->Sign 'bad'<==>Symbole 'mauvais'<
->Sign 'good'<==>Symbole 'bon'<
->Sign 'other'<==>Symbole 'autre'<
->Search Headline<==>Manchette de la recherche<
->Search URL==>URL de recherche
"Set Colors"=="Appliquer"
->Skin Download<==>Téléchargement de thème<
-Skins can be installed from download locations==Les thèmes peuvent être installés depuis des URLs de téléchargement
Install new skin from URL==Installer un thème depuis l'URL
Use this skin==Utiliser ce thème
"Install"=="Installer"
Make sure that you only download data from trustworthy sources. The new Skin file==Assurez-vous de télécharger uniquement depuis des sources de confiance. Le nouveau fichier de thème
might overwrite existing data if a file of the same name exists already.==pourrait écraser des données si un fichier du même nom existe déjà.
->Unable to get URL:==>Impossible d'ouvrir l'URL :
Error saving the skin.==Erreur lors de la sauvegarde du thème
+Background==Arrière-plan
+Border Line==Ligne de bordure
+Legend==Légende
+Search Headline==Titre de recherche
+Search URL==URL de recherche
+Search URL + hover==URL de recherche + survol
+Select one of the default skins. After selection it might be required to reload the web page while holding the shift key to refresh cached style files.==Sélectionnez l'un des skins par défaut. Après la sélection, il peut être nécessaire de recharger la page web en maintenant la touche Maj enfoncée pour actualiser les fichiers de style mis en cache.
+Sign 'bad'==Indicateur 'mauvais'
+Sign 'good'==Indicateur 'bon'
+Sign 'other'==Indicateur 'autre'
+Skin Color Definition==Définition de la couleur de la peau
+Skin Download==Téléchargement de Skin
+Skins can be installed from download locations:==Skins peut être installé à partir des sites de téléchargement:
+Table Bottom==Bas du tableau
+Table Header==En-tête du tableau
+Table Item==Elément du tableau
+Table Item 2==Elément de tableau 2
#-----------------------------
#File: ConfigBasic.html
#---------------------------
-Access Configuration==Configuration de l'accès
Basic Configuration==Configuration de base
Your port has changed. Please wait 10 seconds.== Votre port a été modifié. Veuillez patienter 10 secondes.
-Your browser will be redirected to the new location in 5 seconds.==Votre navigateur va être redirigé vers la nouvelle new adresse dans 5 secondes.
-The peer port was changed successfully.==Le port de votre noeud a été modifié avec succès.
Your YaCy Peer needs some basic information to operate properly==Votre noeud YaCy nécessite quelques informations de base afin de fonctionner correctement.
-Select a language for the interface==Sélectionnez une langue pour l'interface
Use Case: what do you want to do with YaCy:==Mode d'utilisation: que voulez-vous faire avec YaCy?
Community-based web search==Recherche communautaire sur le Web
Join and support the global network 'freeworld', search the web with an uncensored user-owned search network==Rejoignez et soutenez le réseau global 'freeworld', effectuez des recherches sur le Web à l'aide d'un réseau de recherche non censuré appartenant aux utilisateurs.
Search portal for your own web pages==Portail de recherche pour vos propres pages web
-Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.==Votre installation YaCy se comporte indépendamment des autres pairs et vous pouvez définir votre propre index en lançant votre propre balayage du Web. Cela peut servir à rechercher vos propres pages web ou à construire un portail de recherche thématique.
-Files may also be shared with the YaCy server, assign a path here:==Le serveur YaCy peut aussi être utilisé pour le partage de fichiers. Définissez un chemin ici:
-This path can be accessed at ==Ce chemin est accessible sous
-Use that path as crawl start point.== Utilisez ce chemin comme point de démarrage du balayage.
+Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.==Votre installation YaCy fonctionne indépendamment des autres pairs et vous définissez votre propre index web en lançant votre propre crawl web. Cela peut servir à rechercher dans vos propres pages web ou à définir un portail de recherche thématique.
Intranet Indexing==Indexation d'intranet
-Create a search portal for your intranet or web pages or your (shared) file system.==Créer un portail de recherche pour votre intranet, vos pages web ou votre système de fichiers (partagés).
-URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form==Les URL peuvent être utilisées avec les protocoles http/https/ftp et un nom de domaine local, ou avec une URL de la forme
-or smb:==ou smb:
Your peer name has not been customized; please set your own peer name==Le nom de votre noeud YaCy n'a pas été personnalisé. Veuillez choisir votre propre nom de noeud YaCy.
-You have a nice peer name==Vous avez un joli nom de noeud
You may change your peer name==Vous pouvez modifier le nom de votre noeud
Peer Name:==Nom du noeud:
-Your peer cannot be reached from outside==Votre noeud ne peut être atteint depuis l'extérieur
-which is not fatal, but would be good for the YaCy network==ce qui n'est pas trop grave, mais qu'il soit accessible serait mieux pour le réseau YaCy
-please open your firewall for this port and/or set a virtual server option in your router to allow connections on this port==Veuillez configurer votre pare-feu pour ouvrir ce port et/ou mettre en place un serveur virtuel sur votre routeur pour autoriser les connexions à ce port
-Opening a router port is not a YaCy-specific task;==Ouvrir un port sur un routeur n'est pas une opération spécifique à YaCy.
-you can see instruction videos everywhere in the internet, just search for Open Ports on a <our-router-type> Router and add your router type as search term.==Des vidéos montrant la marche à suivre sont disponibles partout sur le web, cherchez par exemple Ouvrir des ports sur un routeur <type_de_routeur> en ajoutant votre type de routeur comme mot-clé recherché.
-you can see instruction videos everywhere in the internet, just search for ==Des vidéos montrant la marche à suivre sont disponibles partout sur le web, cherchez par exemple
-However: if you fail to open a router port, you can nevertheless use YaCy with full functionality, the only function that is missing is on the side of the other YaCy users because they cannot see your peer.==Cependant, vous pourrez profiter de toutes les fonctionnalités de YaCy même si vous ne parvenez pas à ouvrir un port sur votre routeur. L'unique fonction manquante se situera du côté des autres utilisateurs de YaCy car ils ne pourront pas voir votre noeud.
Your peer can be reached by other peers==Votre noeud est joignable par les autres nœuds du réseau
Peer Port:==Port logiciel du noeud:
-Set by system property==Configuré via la propriété système
-with SSL==avec SSL
-https enabled==https activé
-on port==sur le port
Configure your router for YaCy using UPnP:==Configurer votre routeur pour YaCy en utilisant UPnP:
Configuration was not successful. This may take a moment.== Échec de la configuration. Cela peut prendre un moment.
-Set Configuration==Sauver la configuration
What you should do next:==Ce que vous devriez faire ensuite:
-Your basic configuration is complete! You can now (for example)==Votre configuration de base est complète! Vous pouvez maintenant (par exemple)
-just <==simplement <
-start an uncensored search==commencer une recherche non censurée
-start your own crawl and contribute to the global index, or create your own private web index==démarrer votre propre balayage et contribuer à l'index global, ou construire votre propre index du web
-set a personal peer profile (optional settings)==remplir un profil de noeud personnel (optionnel)
-monitor at the network page what the other peers are doing==consulter la page réseau et ce que font les autres pairs
-You did not set a user name and/or a password.==Vous n'avez pas saisi de nom d'utilisateur et/ou de mot de passe.
-Some pages are protected by passwords.==Certaines pages sont protégées par mot de passe.
-You should set a password at the Accounts Menu to secure your YaCy peer.::==Vous devriez définir un mot de passe via le menu Comptes pour sécuriser votre noeud YaCy.::
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 recommended.==Vous pouvez aussi utiliser votre pair sans l'ouvrir, mais cela n'est pas recommandé.
Deutsch==Allemand
+"Active : translated pages are available"=="Active: les pages traduites sont disponibles"
+"Click to generate translated pages"=="Cliquez pour générer des pages traduites"
+"Set Configuration"=="Définir la configuration"
+"Use the browser preferred language if available"=="Utilisez la langue préférée du navigateur si disponible"
+"Usecase Freeworld"=="Cas d'utilisation Freeworld"
+"Usecase Intranet"=="Intranet Usecase"
+"Usecase Portal"=="Portail Usecase"
+"ok"=="ok"
+"warning"=="avertissement"
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==AVERTISSEMENT Cette instance YaCy peut être administrée avec le compte "admin" et le mot de passe par défaut "yacy".
+Browser==Navigateur
+Can not leave from Intranet Indexing : one or more remote Solr instances are attached and may contain private documents indexed.==Impossible de quitter l'Intranet Indexing: une ou plusieurs instances Solr distantes sont jointes et peuvent contenir des documents privés indexés.
+Create a search portal for your intranet or web pages or your (shared) file system. URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form file:///<path> or smb://<server>/<path>==Créer un portail de recherche pour votre intranet, vos pages web ou votre système de fichiers partagé. Les URLs peuvent utiliser http/https/ftp avec un nom de domaine ou une adresse IP locale, ou une URL de la forme file:///<path> ou smb://<server>/<path>
+English==English
+Español==Español
+Français==Fran ç ais
+Greek==Greek
+Italiano==Italiano
+One or more remote Solr instances are attached and may contain indexed public documents irrelevant to your local domain.==Une ou plusieurs instances Solr distantes sont jointes et peuvent contenir des documents publics indexés non pertinents à votre domaine local.
+One or more remote Solr instances are attached.==Une ou plusieurs instances Solr distantes sont jointes.
+Select a language for the interface:==Sélectionnez une langue pour l'interface:
+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 recommended.==Vous n'avez pas ouvert de port dans votre pare-feu ou votre routeur ne transmet pas le port serveur à votre pair. Ceci est nécessaire si vous voulez participer pleinement au réseau YaCy. Vous pouvez également utiliser votre pair sans l'ouvrir, mais ce n'est pas recommandé.
+Your Browser will reload the YaCy UI with the new port in 5 seconds...==Votre navigateur rechargera l'interface utilisateur YaCy avec le nouveau port en 5 secondes...
+Your basic configuration is complete! You can now (for example):==Votre configuration de base est complète ! Vous pouvez maintenant (par exemple):
+with SSL (https enabled==avec SSL (https activés)
#-----------------------------
#File: Collage.html
#---------------------------
Private Queue==File d'attente privée
Public Queue==File d'attente publique
+Image Collage==Collage d'images
#-----------------------------
#File: ConfigHeuristics_p.html
+Comment==Commentaire
#---------------------------
Heuristics Configuration==Configuration des heuristiques
-A heuristic is an 'experience-based technique that help in problem solving, learning and discovery' (wikipedia).==Une heuristique est une 'méthode de calcul qui fournit rapidement une solution réalisable, pas nécessairement optimale ou exacte, pour un problème d'optimisation difficile' (wikipedia).
-The search heuristics that can be switched on here are techniques that help the discovery of possible search results based on link guessing, in-search crawling and requests to other search engines.==Les heuristiques de recherche qui peuvent être activées sont des techniques qui aident à obtenir des résultats de recherche supplémentaires en se basant sur la découverte de liens, l'indexation sur les recherches et les requêtes vers d'autres moteurs de recherche.
-When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content.==Lorsqu'une heuristique de recherche est utilisée, les liens obtenus ne sont pas utilisés directement comme résultats de recherche mais les pages chargées sont indexées et stockées comme les autres.
-This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==Cela permet de s'assurer que les listes noires peuvent être appliquées et que le mot recherché apparaît bien sur la page qui a été découverte par l'heuristique.
-The success of heuristics are marked with an image==Les résultats d'heuristiques sont marqués avec une image
-(new link)==(nouveau lien)
-below the favicon left from the search result entry:==en-dessous de l'icône située à gauche de chaque résultat de recherche:
The search result was discovered by a heuristic, but the link was already known by YaCy==Résultat de recherche trouvé par une heuristique; lien déjà connu de YaCy
The search result was discovered by a heuristic, not previously known by YaCy==Résultat de recherche trouvé par une heuristique, inconnu auparavant de YaCy
'site'-operator: instant shallow crawl==Opérateur 'site' : indexation superficielle immédiate
-When a search is made using a 'site'-operator (like: 'download site:yacy.net') then the host of the site-operator is instantly crawled with a host-restricted depth-1 crawl.==Lorsqu'une recherche est faite avec l'opérateur 'site' (exemple : 'download site:yacy.net'), alors l'hôte indiqué à droite de l'opérateur est immédiatement indexé avec une restriction sur l'hôte et une profondeur de -1.
+When a search is made using a 'site'-operator (like: 'download site:yacy.net') then the host of the site-operator is instantly crawled with a host-restricted depth-1 crawl.==Lorsqu'une recherche est faite avec l'opérateur 'site' (exemple : 'download site:yacy.net'), l'hôte indiqué par l'opérateur est immédiatement crawlé avec une profondeur 1 limitée à cet hôte.
That means: right after the search request the portal page of the host is loaded and every page that is linked on this page that points to a page on the same host.==Explication : juste après exécution de la requête de recherche, la page d'accueil de l'hôte est indexée ainsi que tous les liens pointant vers des pages sur ce même hôte.
-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).==Parceque cette indexation immédiate doit obéir aux règles des robots.txt et qu'il y a un délai minimal entre deux chargements de pages consécutifs, cette heuristique est assez lente, mais peut permettre de trouver tous les résultats souhaités lors d'une seconde recherche (après une pause de quelques sedondes).
+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).==Comme cette indexation immédiate doit respecter le fichier robots.txt et un délai minimal entre deux pages consécutives, cette heuristique est assez lente, mais elle peut découvrir tous les résultats recherchés lors d'une seconde recherche après une courte pause de quelques secondes.
search-result: shallow crawl on all displayed search results==Résultat de recherche : indexation superficielle sur tous les résultats affichés
When a search is made then all displayed result links are crawled with a depth-1 crawl.==Lorsqu'une recherche est effectuée, tous les résultats affichés sont indexés avec une profondeur de -1.
This means: right after the search request every page is loaded and every page that is linked on this page.==Explication : juste après exécution de la requête de recherche, toutes les pages de résultats sont indexées ainsi que tous les liens qu'elles contiennent.
@@ -459,39 +458,35 @@ 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 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<
->Title<==>Titre<
->Comment<==>Commentaire<
-Url (format opensearch==URL (format OpenSearch
-Url template syntax==Syntaxe de modèle d'URL
->delete<==>Supprimer<
->new<==>Nouveau<
"add"=="Ajouter"
"Save"=="Enregistrer"
"reset to default list"=="Réinitialiser (liste par défaut)"
-"discover from index" class=="Découvrir depuis l'index" class
-start background task, depending on index size this may run a long time==Démarre une tâche de fond, pouvant durer longtemps suivant la taille de l'index
With the button "discover from index" you can search within the metadata of your local index (Web Structure Index) to find systems which support the Opensearch specification.==Grâce au bouton "Découvrir depuis l'index", vous pouvez rechercher dans les méta-données de votre index (index Web Structure) pour trouver des hôtes supportant la norme OpenSearch.
The task is started in the background. It may take some minutes before new entries appear (after refreshing the page).==La tâche est démarrée en arrière-plan. Cela peut prendre quelques minutes avant que de nouvelles entrées apparaissent (après rafraîchissement de cette page).
-Alternatively you may==Vous pouvez également
->copy & paste a example config file<==>copier/coller un exemple de fichier de configuration<
-located in defaults/heuristicopensearch.conf to the DATA/SETTINGS directory.==de defaults/heuristicopensearch.conf vers le dossier DATA/SETTINGS.
-For the discover function the web graph option of the web structure index and the fields target_rel_s, target_protocol_s, target_urlstub_s have to be switched on in the webgraph Solr schema.==La fonction de découverte depuis l'index nécessite l'activation de l'index web graph et des champs target_rel_s, target_protocol_s, target_urlstub_s dans le schéma Solr webgraph.
"switch Solr fields on"=="Activer les champs Solr"
-('modify Solr Schema')==('Modifier le schéma Solr')
+"discover from index"=="découvrir à partir de l'index"
+"heuristic:<name> (new link)"=="heuristic:<name> (nouveau lien)"
+"heuristic:<name> (redundant)"=="heuristic:<name> (remboursement)"
+) below the favicon left from the search result entry:==) au-dessous du favicon gauche de l'entrée des résultats de la recherche:
+Active==Actif
+The success of heuristics are marked with an image (==Le succès de l'heuristique est marqué par une image (
+Title==Titre
+Url==URL
+When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content. This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==Lorsqu'une heuristique de recherche est utilisée, les liens résultants ne sont pas utilisés directement comme résultat de recherche, mais les pages chargées sont indexées et stockées comme d'autres contenus. Cela garantit que les listes noires peuvent être utilisées et que le mot recherché apparaît effectivement sur la page qui a été découverte par l'heuristique.
+delete==supprimer
+new==nouveau
#-----------------------------
#File: ConfigHTCache_p.html
+milliseconds==millisecondes
#---------------------------
Hypertext Cache Configuration==Configuration du Cache HyperTexte
The HTCache stores content retrieved by the HTTP and FTP protocol. Documents from smb:// and file:// locations are not cached.==Le Cache HT stocke les contenus obtenus par les protocoles HTTP et FTP. Les documents d'URLs smb:// et file:// ne sont pas mis en cache.
The cache is a rotating cache: if it is full, then the oldest entries are deleted and new one can fill the space.==Le cache est de type rotatif : lorsqu'il est plein, les entrées les plus anciennes sont supprimées et de nouvelles peuvent prendre la place.
HTCache Configuration==Configuration du Cache HT
-The path where the cache is stored==Chemin de sotckage du cache
+The path where the cache is stored==Chemin de stockage du cache
The current size of the cache==Taille actuelle du cache
->#[actualCacheSize]# MB for #[actualCacheDocCount]# files, #[docSizeAverage]# KB / file in average==>#[actualCacheSize]# Mo pour #[actualCacheDocCount]# fichiers, #[docSizeAverage]# Ko par fichier en moyenne
The maximum size of the cache==Taille maximale du cache
"Set"=="Appliquer"
Cleanup==Nettoyage
@@ -499,42 +494,51 @@ Cache Deletion==Nettoyage de cache
Delete HTTP & FTP Cache==Vider le cache HTTP & FTP
Delete robots.txt Cache==Vider le cache robots.txt
"Delete"=="Vider"
+"A cache hit occurs when the requested data can be found in a cache."=="Un accès au cache se produit lorsque les données demandées peuvent être trouvées dans un cache."
+"Concurrent access timeout info"=="Informations simultanées sur le délai d'accès"
+Beyond this limit, the crawler or proxy falls back to regular remote resource loading.==Au-delà de cette limite, le crawler ou le proxy revient au chargement distant normal des ressources.
+Cache hits==Accès au cache
+Compression level==Niveau de compression
+Concurrent access timeout==Délais d'accès concomitants
+MB==MB
+The maximum time to wait for acquiring a synchronization lock on concurrent get/store cache operations.==Temps maximal d'attente pour obtenir un verrou de synchronisation lors d'opérations concurrentes de lecture/écriture dans le cache.
#-----------------------------
#File: ConfigLanguage_p.html
+might overwrite existing data if a file of the same name exists already.==pourrait écraser des données si un fichier du même nom existe déjà.
#---------------------------
Language selection==Sélection de la langue
You can change the language of the YaCy-webinterface with translation files.==Vous pouvez changer de langue de l'interface web YaCy grace aux fichiers de traduction.
-Current language==Langue actuelle
-Languagefile Author(s) (chronological):==Auteur(s) des fichiers de langues (chronologique):
-Send additions to maintainer==Envoyez les ajouts à
-Available Languages==Langues disponibles
Install new language from URL==Télécharcher une nouvelle langue
Use this language==Utiliser cette langue:
"Use"=="Utiliser"
"Delete"=="Supprimer"
"Install"=="Installer"
-Unable to get URL:==Impossible d'installer le fichier de cette URL:
Error saving the language file.==Erreur en sauvegardant le fichier de langue.
+Author(s) (chronological)==Auteur(s) (chronologique)
+Available Languages==Langues disponibles
+Current language==Langue actuelle
+Download Language File==Télécharger le fichier Langue
+Make sure that you only download data from trustworthy sources. The new language file==Assurez-vous de ne télécharger que des données provenant de sources dignes de confiance.
+Send additions to maintainer==Envoyer des ajouts au responsable
+Supported formats are the internal language file (extension .lng) or XLIFF (extension .xlf) format.==Les formats pris en charge sont le fichier de langue interne (extension.lng) ou XLIFF (extension.xlf).
+default(english)==par défaut(en anglais)
#-----------------------------
#File: ConfigProfile_p.html
#---------------------------
Your Personal Profile==Votre profil personnel
You can create a personal profile here, which can be seen by other YaCy-members==Vous pouvez créer un profil personnel ici, qui pourra être consulté par les autres membres de YaCy
-or in the public using a FOAF RDF file.==ou de l'extérieur en utilisant un fichier FOAF RDF.
Name==Nom
Nick Name==Pseudo
-Homepage==Page d'accueil
eMail==courriel
-#ICQ==ICQ
-#Jabber==Jabber
-#Yahoo!==Yahoo!
-#MSN==MSN
Comment==Commentaire
"Save"=="Sauvegarder"
-You can use==Vous pouvez utiliser
-here.==ici.
+ICQ==ICQ
+Jabber==Jabber
+MSN==MSN
+Skype==Skype
+Yahoo!==Ouais !
#-----------------------------
#File: ConfigProperties_p.html
@@ -544,164 +548,188 @@ Here are all configuration options from YaCy.==Toutes les options de configurati
You can change anything, but some options need a restart, and some options can crash YaCy, if wrong values are used.==Vous pouvez tout changer, mais certaines options nécessitent un redémarrage et certaines autres peuvent provoquer l'arrêt de YaCy si elles sont mal choisies.
For explanation please look into defaults/yacy.init==Pour des explications, regardez dans le fichier « defaults/yacy.init ».
"Save"=="Sauvegarder"
+"Clear"=="Effacer"
#-----------------------------
#File: ConfigSearchPage_p.html
+Applications==Applications
+Audio==Audio
+Images==Images
+Text==Texte
+Toggle navigation==Activer la navigation
+Video==Vidéo
#---------------------------
-==
-Search Page<==Page de recherche<
->Search Result Page Layout Configuration<==>Agencement de la page de résultats de recherche<
Below is a generic template of the search result page. Mark the check boxes for features you would like to be displayed.==Ci-dessous se trouve un modèle générique de page de résultats de recherche. Cocher les cases des éléments que vous souhaitez voir s'afficher.
-To change colors and styles use the ==Pour modifier les couleurs et le style, utilisez le menu
->Appearance<==>Apparence graphique<
- menu for different skins.== pour avoir accès à différentes présélections de styles.
-Other portal settings can be adjusted in Generic Search Portal menu.==Les autres éléments de configuration du portail peuvent être définis dans le menu Generic Search Portal.
->Page Template<==>Modèle de page<
->Text<==>Texte<
->Video<==>Vidéo<
->more options<==>plus d'options<
->Topics<==>Sujets<
->Cloud<==>Nuage<
->Protocol<==>Protocole<
->Filetype<==>Type de fichier<
->Wiki Name Space<==>Espace de nommage Wiki<
->Language<==>Langue<
->Author<==>Auteur<
->Vocabulary<==>Ontologie<
->Provider<==>Hôte<
->Title of Result<==>Titre du résultat<
Description and text snippet of the search result==Description et extrait de texte du résultat de recherche
"Date"=="Date"
-42 kbyte<==42 ko<
"Size"=="Taille"
->Metadata<==>Méta-données<
->Parser<==>Analyseur d'URL<
->Citation<==>Citations<
->Pictures<==>Images<
"Browse index"=="Parcourir l'index"
For this option URL proxy must be enabled.==Pour cette option le proxy doit être activé.
max. items==nb. max. d'éléments
"Save Settings"=="Enregistrer"
"Set Default Values"=="Valeurs par défaut"
"Top navigation bar"=="Barre de navigation d'en-tête"
->Location<==>Lieu<
show search results on map==Montrer les résultats sur la carte
Date Navigation==Statistiques par dates
Maximum range (in days)==Période maximale (en jours)
-Maximum days number in the histogram. Beware that a large value may trigger high CPU loads both on the server and on the browser with large result sets.==Nombre maximum de jours de l'histogramme. Veuillez noter qu'une valeur élevée peut déclencher des charges CPU importantes tant sur le serveur que sur le navigateur lorsqu'il y a un grand nombre de résultats.
-keyword subject keyword2 keyword3==mot-clé sujet mot-clé2 mot-clé3
View via Proxy==Ouvrir via le proxy
"Raw ranking score value"=="Score de classement brut"
Ranking: 1.12195955E9==Score: 1.12195955E9
"Delete navigator"=="Supprimer le groupe"
Add Navigators==Ajout de groupes de navigation
"Add navigator"=="Ajouter le groupe"
->append==>Ajouter
+"Enable login link/status"=="Activer le lien de connexion /status"
+"Help"=="Aide"
+"Last known modification date"=="Dernière date de modification connue"
+"Log in to use extended search features"=="Connectez-vous pour utiliser les fonctions de recherche élargie"
+"Maximum days number in the histogram. Beware that a large value may trigger high CPU loads both on the server and on the browser with large result sets."=="Nombre maximum de jours dans l'histogramme. Attention qu'une grande valeur peut déclencher des charges CPU élevées à la fois sur le serveur et sur le navigateur avec de grands ensembles de résultats."
+"Protocols"=="Protocoles"
+"Sorted by ascending counts"=="Triées par des nombres ascendants"
+"Sorted by ascending labels"=="Triées par des étiquettes ascendantes"
+"Sorted by descending counts"=="Triées par nombres décroissants"
+"Sorted by descending labels"=="Triées par des étiquettes descendantes"
+"Tag cloud"=="Nuage d'étiquettes"
+"Website favicon"=="Favicon du site Web"
+"You are authenticated as userName"=="Vous êtes authentifié comme userName"
+"earthsearchlogo"=="earthsearchlogo"
+"info"=="info"
+"search..."=="rechercher..."
+(remaining can then be expanded)==(le maintien peut alors être élargi)
+42 kbyte==42 koctets
+Administration »==Administration »
+Ascending counts==Nombre croissant
+Ascending labels==Étiquettes ascendantes
+Cache==Cache
+Citation==Citation
+Cloud==Nuage
+Descending counts==Décomptes décroissants
+Descending labels==Étiquettes descendantes
+Location==Emplacement
+Log in==Connectez-vous
+Max. tags initially displayed==Nombre max. de tags affichés initialement
+Menu: System Administration > Advanced Settings > Debug/Analysis Settings==Menu : Administration système > Paramètres avancés > Paramètres de débogage/analyse
+Metadata==Métadonnées
+Not showing websites favicon can help you save some CPU time and network bandwidth.==Ne pas afficher les favicons des sites web peut économiser du temps CPU et de la bande passante réseau.
+Page Template==Modèle de page
+Parser==Parseur
+Pictures==Images
+Search Interfaces==Interfaces de recherche
+Search Result Page Layout Configuration==Configuration de la mise en page des résultats de recherche
+Show websites favicon==Afficher les favicons des sites web
+Sort by==Trier par
+Tag==Tag
+Tags==Tags
+Title of Result==Titre du résultat
+Topics==Sujets
+Vocabulary==Vocabulary
+append==ajouter
+file==fichier
+ftp==ftp
+http==http
+http://url-of-the-search-result.net==http://url-of-the-search-result.net
+https==https
+keyword==keyword
+keyword2==keyword2
+keyword3==keyword3
+menu: System Administration > Advanced Settings==menu: Administration du système > Paramètres avancés
+more options==plus d'options
+search==recherche
+smb==smb
+subject==subject
+userName==userName
#-----------------------------
#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 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
->Available Releases==>Versions disponibles
->changelog<==>journal des changements<
-> and <==> et <
-> RSS feed<==> flux RSS<
"Download Release"=="Télécharger cette version"
"Check for new Release"=="Vérifier si une nouvelle version est disponible"
->Downloaded Releases==>Versions téléchargées
No downloaded releases available for deployment.==Aucune version téléchargée disponible pour le déploiement.
no automated installation on development environments==no automated installation on development environments
"Install Release"=="Installer cette version"
"Delete Release"=="Supprimer cette version"
->Automatic Update==>Mise à jour automatique
check for new releases, download if available and restart with downloaded release==Vérifier s'il existe une version plus récente, la télécharger et redémarrer avec la nouvelle version
-Check + Download + Install Release Now==Vérifier + Télécharger + Installer Version Maintenant
->Download of release==>Téléchargement de la version
-finished. Restart Initiated.==terminé. Redémarrage amorcé.
No more recent release found.==Aucune version plus récente n'a été trouvée.
-Omitting update because==Le système n'a pas été mis à jour car
-this is a development environment.==ceci est un environnement de développement.
-download of release #[downloadedRelease]# failed.==le téléchargement de la version #[downloadedRelease]# a échoué.
->Automated System Update==>Mise à jour automatisée du système
manual update==Mise à jour manuelle
no automatic look-up, updates can be made manually using this interface (see options above)==pas de vérification automatique, les mises à jour peuvent être effectuées manuellement à l'aide de cette interface (voir les options ci-dessus)
automatic update==Mise à jour automatique
updates are made within fixed cycles:==updates are made within fixed cycles:
Time between lookup==Temps entre les vérifications
->hours<==>heures<
->Release blacklist==>Liste noire des versions
->Release type==>Type de version
(regex on release number strings)==(regex correspondant à la chaîne de caractère du numéro de version)
->only main releases==>uniquement les versions principales
->any release including developer releases==>toutes les versions, y compris celles en développement
Signed autoupdate:==Mise à jour automatique signée:
only accept signed files==accepter uniquement les fichiers signés
"Submit"=="Enregistrer"
->Accepted Changes==>Modifications acceptées
->System Update Statistics<==>Statistiques de mise à jour du système<
Last System Lookup==Dernière vérification
Last Release Download==Dernier téléchargement de version
Last Deploy==Dernier déploiement
You installed YaCy with a package manager. To update YaCy, use the package manager:==Vous avez installé YaCy à l'aide d'un gestionnaire de paquets. Pour mettre YaCy à jour, utiliser le gestionnaire de paquets:
-add the following line to==ajouter la ligne suivante à
-YaCy has been installed to the Program Files directory. Automatic update is not possible.==YaCy a été installé dans le répertoire Program Files. La mise à jour automatique est impossible.
-Download and install the latest version from the web page==Téléchargez et installez la dernière version sur la page
+"Check + Download + Install Release Now"=="Vérifier + Télécharger + Installer la version maintenant"
+(no signature)==(pas de signature)
+(signed)==(signé)
+(unsigned)==(non signé)
+Accepted Changes.==Changements acceptés.
+Automated System Update==Mise à jour automatisée du système
+Automatic Update==Mise à jour automatique
+Downloaded Releases==Releases téléchargées
+Omitting update because an error occurred while trying to deploy the release.==Éviter la mise à jour parce qu'une erreur s'est produite en essayant de déployer la version.
+Omitting update because this is a development environment.==Éviter la mise à jour parce qu'il s'agit d'un environnement de développement.
+Release blacklist==Relâcher la liste noire
+Release type==Type de sortie
+System Update==Mise à jour du système
+System Update Statistics==Statistiques de mise à jour du système
+any release including developer releases==toute version, y compris les versions du développeur
+automatic update: add the following line to /etc/crontab 0 6 * * * root apt-get update && apt-get -y --force-yes install yacy==mise à jour automatique : ajoutez la ligne suivante à /etc/crontab 0 6 * * * root apt-get update && apt-get -y --force-yes install yacy
+hours==heures
+manual update: apt-get update && apt-get install yacy==mise à jour manuelle : apt-get update && apt-get install yacy
+never==jamais
+only main releases==Seulement les principales versions
#---------------------------
#File: Connections_p.html
#---------------------------
-Connection Tracking==Etat de connexion
Incoming Connections==Connexions entrantes
-Showing #[numActiveRunning]# active, #[numActivePending]# pending connections from a max. of #[numMax]# allowed incoming connections.==Montrer #[numActiveRunning]# connexions actives et #[numActivePending]# connexions en attente d'un max. de #[numMax]# connexions entrantes autorisées.
Protocol==Protocole
Duration==Durée
Source IP[:Port]==Source-IP[:Port]
Dest. IP[:Port]==Dest.-IP[:Port]
Command==Commande
-Used==Utilisé
-Close==Fermer
-Waiting for new request nr.==Attente de la nouvelle requête n°
+ID==ID
+Outgoing Connections==Connexions sortantes
+Server Connection Tracking==Suivi de la connexion du serveur
+Up-Bytes==Up-Bytes
#-----------------------------
#File: CookieMonitorIncoming_p.html
#---------------------------
-Incoming Cookies Monitor==Surveillance des Cookies entrants
Cookie Monitor: Incoming Cookies==Surveillance de Cookie: Cookies entrants
-This is a list of cookies that browsers using the YaCy proxy sent to webservers:==Liste des coockies des explorateurs utilisant le proxy YaCy envoient aux serveurs web:
-Showing==Montrer
-entries from a total of==entrées sur un total de
-Cookies==Cookies
+"Disable Cookie Monitoring"=="Désactiver la surveillance des cookies"
+"Enable Cookie Monitoring"=="Activer la surveillance des cookies"
+Cookie==Cookie
+Date==Date
+Receiving Client==Client destinataire
+Sending Host==Envoi de l'hôte
+This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:==Voici une liste de cookies qu'un serveur web a envoyés aux clients du YaCy Proxy:
#-----------------------------
#File: CookieMonitorOutgoing_p.html
#---------------------------
-Outgoing Cookies Monitor==Surveillance des Cookies sortants
Cookie Monitor: Outgoing Cookies==Surveillance de Cookie: Cookies sortants
-This is a list of Cookies that a browser using the YaCy Proxy has sent to a web server:==Liste des coockies des explorateurs utilisant le proxy YaCy envoient aux serveurs web:
-Showing==Montrer
-entries from a total of==entrées sur un total de
-Cookies==Cookies
-#-----------------------------
-
-#File: Help.html
-#---------------------------
-YaCy: Help==YaCy: Aide
->Help==>aide
-
+"Disable Cookie Monitoring"=="Désactiver la surveillance des cookies"
+"Enable Cookie Monitoring"=="Activer la surveillance des cookies"
+Cookie==Cookie
+Date==Date
+Receiving Host==Accueil de l'hôte
+Sending Client==Envoi du client
+This is a list of cookies that browsers using the YaCy proxy sent to webservers:==Il s'agit d'une liste de cookies que les navigateurs utilisent le proxy YaCy envoyé aux serveurs web:
#-----------------------------
#File: index.html
+Search==Recherche
#---------------------------
-==
-YaCy '#[clientname]#': Search Page==YaCy '#[clientname]#': Page de recherche
-Search for #[former]#==Recherche pour #[former]#
-Search==Rechercher
Text==Texte
Images==Images
Audio==Audio
@@ -709,7 +737,6 @@ Video==Vidéo
Applications==Applications
more options...==plus d'options...
Results per page==Résultats par page
-order by:==trier par:
Resource==Origine
the peer-to-peer network==le réseau pair à pair
only the local index==seulement l'index local
@@ -718,455 +745,453 @@ show all==tout montrer
Constraints:==Contraintes:
only index pages==Pages d'index seulement
Query Operators==Opérateurs
-only urls with the <phrase> in the url==uniquement les urls contenant la <phrase>
-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 urls with the <phrase> in the url==uniquement les URLs contenant <phrase> dans l'URL
+only urls with the <phrase> within outbound links of the document==uniquement les URLs dont les liens sortants du document contiennent <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-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
-they are rare==ils sont rares
-crawl them yourself==balayez les vous-même
-only resources from smb servers==uniquement les ressources de serveurs samba
-Intranet Indexing==Indexage d'intranet
-must be selected==doit être sélectionné
-only files from a local file system==uniquement les fichiers locaux
spatial restrictions==contraintes spatiales
only documents having location metadata (geographical coordinates)==uniquement les documents ayant des méta-données de localisation (coordonnées géographiques)
-only documents within a square zone embracing a circle of given radius (in decimal degrees) around the specified latitude and longitude (in decimal degrees)==uniquement les documents situés dans une zone carrée englobant un cercle de rayon indiqué (en degrés décimaux) autour de la latitude et la longitude spécifiées (en degrés décimaux)
-ranking modifier==modificateur de classement
+only documents within a square zone embracing a circle of given radius (in decimal degrees) around the specified latitude and longitude (in decimal degrees)==uniquement les documents situés dans une zone carrée englobant un cercle de rayon indiqué (en degrés décimaux) autour de la latitude et la longitude spécifiées (en degrés décimaux)
sort by date (latest first)==trier par date (les plus récents en premier)
multiple words shall appear near==les mots recherchés doivent être dans une même expression
"" (doublequotes)=="" (guillemets)
-prefer given language==préférer le langage indiqué
-an ISO 639-1 2-letter code==code ISO 639-1 à 2 lettres
heuristics==heuristiques
add search results from external opensearch systems==ajouter les résultats de systèmes opensearch externes
Search Navigation==Navigation dans la recherche
keyboard shortcuts==raccourcis clavier
-Access key modifier + n==Combinaison "access key" + n
next result page==page de résultats suivante
-Access key modifier + p==Combinaison "access key" + p
previous result page==page de résultats précédente
automatic result retrieval==récupération automatique de résultats
browser integration==intégration navigateur
after searching, click-open on the default search engine in the upper right search field of your browser and select 'Add "YaCy Search.."'==après une recherche, cliquer sur le moteur de recherche par défaut dans le champ de recherche en haut à droite de votre navigateur et sélectionner 'Ajouter "YaCy ..."'
search as rss feed==rechercher comme flux RSS
-click on the red icon in the upper right after a search. this works good in combination with the '/date' ranking modifier. See an ==cliquer sur l'icône rouge dans le coin en haut à droite juste après une recherche. Fonctionne bien en combinaison avec le modificateur de classement '/date'. Voir un
-example==exemple
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'
+"Extend media search results (images, videos or applications specific) to pages including such medias (provides generally more results, but eventually less relevant)."=="Étendre les résultats de la recherche sur les médias (images, vidéos ou applications spécifiques) aux pages incluant ces supports (fournit généralement plus de résultats, mais éventuellement moins pertinents)."
+"Reference alpha-2 language codes list"=="Liste des codes de langue alpha-2 de référence"
+"Strictly limit media search results (images, videos or applications specific) to indexed documents matching exactly the desired content domain."=="Limiter strictement les résultats de recherche multimédia (images, vidéos ou applications spécifiques) aux documents indexés correspondant exactement au domaine de contenu souhaité."
+/date==/date
+/file==/file
+/ftp==/ftp
+/heuristic==/heuristic
+/http==/http
+/language/<lang>==/language/<lang>
+/location==/location
+/near==/near
+/radius/<latitude>/<longitude>/<distance>==/radius/<latitude>/<longitude>/<distance>
+/smb==/smb
+Extended==Étendu
+Media search==Recherche dans les médias
+Strict==Strict
+author:<author>==author:<author>
+filetype:<ext>==filetype:<ext>
+from:<date1> to:<date2>==from:<date1> to:<date2>
+inlink:<phrase>==inlink:<phrase>
+inurl:<phrase>==inurl:<phrase>
+keyword:<phrase>==keyword:<phrase>
+on:<date>==on:<date>
+only pages with <date> in content==Seulement pages avec < date > dans le contenu
+only pages with a date between <date1> and <date2> in content==Seulement pages avec une date entre < date1 > et < date2 > dans le contenu
+only pages with keyword anotation containing <phrase>==Seules les pages avec anotation de mot-clé contenant la phrase < >
+ranking modifier==modificateur de classement
+restrict on==restreignent
+restrictions==restrictions
+site:<host>==site:<host>
+tld:<tld>==tld:<tld>
#-----------------------------
#File: CrawlStartExpert.html
+Do Remote Indexing==Indexation distante
#---------------------------
-==
-Index Creation==Créer un index
Start Crawling Job:==Tâche de démarrage du crawl:
-You can define URLs as start points for Web page crawling and start crawling here. "Crawling" means that YaCy will download the given website, extract all links in it and then download the content behind these links. This is repeated as long as specified under "Crawling Depth".==Vous pouvez définir les URLs de départ et démarrer le crawl ici. Crawler signifie que YaCy téléchargera les sites de départ et extraira tous leurs liens ainsi que leur contenu. Cela sera répété jusqu'a ce que la "profondeur de crawl" soit atteinte.
-#Attribut==Attribut
-Value==Valeur
-Description==Description
-Crawling Depth:==Profondeur de crawl:
-This defines how often the Crawler will follow links embedded in websites.==Cela définit combien de fois de suite le crawler suivra les liens des pages.
-A minimum of 1 is recommended and means that the page you enter under "Starting Point" will be added to the index, but no linked content is indexed. 2-4 is good for normal indexing.==Un minimum de 1 est recommandé et signifie que la page de départ sera ajoutée à l'index, mais qu'aucun de ses liens ne sera indexé. 2-4 est une bonne valeur pour une indexation normale.
-Be careful with the depth. Consider a branching factor of average 20;==Soyer prudent avec la profondeur, considérez un facteur d'embranchement de 20 en moyenne;
-A prefetch-depth of 8 would index 25.600.000.000 pages, maybe this is the whole WWW.==Une profondeur de crawl de 8 indexera 25 milliards de pages, peut-être la totalité du web.
-Crawling Filter:==Filtre de crawl:
-This is an emacs-like regular expression that must match with the URLs which are used to be crawled.==C'est une expression régulière emacs qui doit correspondre avec les URLs parcourues par le crawleur.
-Use this i.e. to crawl a single domain. If you set this filter it makes sense to increase==Utilisez la par exemple pour crawler un seul domaine. Si vous paramétrez ce filtre, cela a un sens
-the crawling depth.==d'augmenter la profondeur de crawl.
-#Re-Crawl Option:==Re-Crawl Option:
-Use:==Utilisation:
-Interval:==intervalle:
-Year(s)==Année(s)
-Month(s)==Mois
-Day(s)==Jour(s)
-Hour(s)==Heure(s)
-Minute(s)==Minute(s)
-If you use this option, web pages that are already existent in your database are crawled and indexed again.==Si vous utilisez cette option, les pas web qui sont déja indexées seront parcourues et indexées une nouvelle fois.
-It depends on the age of the last crawl if this is done or not: if the last crawl is older than the given==Cela dépend de l'age du dernier crawl, si il a été fait ou non: si le dernier crawl est plus ancien que la date actuelle
-date, the page is crawled again, otherwise it is treated as 'double' and not loaded or indexed again.==, la page est analysée une nouvelle fois, autrement elle est traitée comme un doublon et ne sera plus ni chargée ni indexée.
-Auto-Dom-Filter:==Filtre Auto-Dom:
-Depth:==Profondeur:
-This option will automatically create a domain-filter which limits the crawl on domains the crawler==Cette option créera automatiquement un filtre de domaine qui limite le crawl au domaine du crawler
-will find on the given depth. You can use this option i.e. to crawl a page with bookmarks while==trouvera à la profondeur donnée. On peut par exemple utiliser cette option pour crawler une page avec des marques-pages
-restricting the crawl on only those domains that appear on the bookmark-page. The adequate depth==tout en limitant la recherche aux domaines de cette page. La profondeur adéquate
-for this example would be 1.==pour cet exemple sera 1.
-The default value 0 gives no restrictions.==La valeur par défaut 0 n'applique aucune limitation.
-Maximum Pages per Domain:==Maximum de pages par domaine:
-Page-Count:==Nombre de page:
-You can limit the maxmimum number of pages that are fetched and indexed from a single domain with this option.==Par cette option, vous pouvez limiter le nombre maximal de pages par domaine qui seront recherchées et indexées.
You can combine this limitation with the 'Auto-Dom-Filter', so that the limit is applied to all the domains within==Vous pouvez combiner cette option avec le filtre auto-dom, ainsi la limite est appliquée à tous les domaines à une
the given depth. Domains outside the given depth are then sorted-out anyway.==profondeur donnée. Les domaines au delà d'une certaine profondeur seront simplement exclus.
-Accept URLs with '?' / dynamic URLs:==Accepte les URLs avec '?' / URLs dynamiques:
-A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled. However, there are sometimes web pages with static content that==Un point d'intérogation est habituellement le signe d'un page dynamique. Les URLs pointant un contenu dynamique ne doivent habituellement pas être explorés. Comme toujours, il existe parfois des pages statiques qui
-is accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.==qui sont accédées par des URLs contenant des points d'interogation. Si vous avez un doute, n'activez pas cette fonction pour éviter les cral qui bouclent.
-Store to Proxy Cache:==Stocké dans le proxy-cache:
+is accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.==sont accessibles par des URLs contenant des points d'interrogation. En cas de doute, ne cochez pas cette option afin d'éviter les boucles de crawl.
This option is used by default for proxy prefetch, but is not needed for explicit crawling.==Cette option est utilisée par défaut par le proxy, mais n'est pas nécessaire pour un crawl pur.
-We recommend to leave this switched off unless you want to control the crawl results with the==Nous recommandons de la laisser désactivée a moins que souhaitiez controler les resultats du crawl avec
-Cache Monitor==le moniteur de cache.
-Do Local Indexing:==Indexation locale:
-index text:==Index texte:
-index media:==Index Media:
-This enables indexing of the wepages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the==Cela active l'activation des pages web que le crawler téléchargera. Cela doit être activé par défaut, a moins que vous vouliez seulement crawler pour remplir
-Proxy Cache without indexing.==le proxy-cache sans indexer.
-Do Remote Indexing:==Indexation distante:
-Describe your intention to start this global crawl (optional):==Décrivez pourquoi vous avez lancé ce crawlglobal (optionel):
-This message will appear in the 'Other Noeud Crawl Start' table of other peers.==Ce message apparaitra dans la table 'Autre noeud crawl start' des autres noeuds.
If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Si activé, le crawler contactera les autres noeuds et les utilisera comme indexeurs distants pour votre crawl.
If you need your crawling results locally, you should switch this off.==Si vous avez besoin de vos résultats de crawl localement, vous devez désactiver cette fonction.
Only senior and principal peers can initiate or receive remote crawls.==Seuls les noeuds senior et principal peuvent emettre ou recevoir des crawls distants.
-A YaCyNews message will be created to inform all peers about a global crawl, so they can omit starting a crawl with the same start point.==Un message sera envoyé à YaCyNews, pour informer les autres noeuds de ces crawls globaux, ainsi ils peuvent éviter de lancer un crawl avec le même point de départ.
-Exclude static Stop-Words==Exclure les mots-stops statiques
-This can be useful to circumvent that extremely common words are added to the database, i.e. "the", "he", "she", "it"... To exclude all words given in the file yacy.stopwords from indexing,==Cela peut être utile, pour éviter que les mots très communs soient ajoutés à la base de données, par exemple "le", "la", "les", "et", "il", "elle", ... Pour exclure tous les mots donnés dans le fichier yacy.stopwords de l'indexation,
-check this box.==activez cette case.
-Starting Point:==Point de départ:
-From File:==Du fichier:
-From URL:==De l'URL:
-Existing start URLs are re-crawled.==Le URLs de départ existantes seront recrawlées.
-Other already visited URLs are sorted out as "double",==Les autres URLs déjà visitées seront classées en doublons,
-A complete re-crawl will be available soon.==Un recrawl complet sera bientôt disponible.
-"Start New Crawl"=="Démarrer un nouvaux crawl"
-Distributed Indexing:==Indexation distribuée:
-Crawling and indexing can be done by remote peers.==Crawl et indexation peuvent être executés par les autres noeuds.
-Your peer can search and index for other peers and they can search for you.==Votre noeud peut chercher et indexer pour d'autres noeuds et ceux-ci peuvent le faire pour vous.
-Accept remote crawling requests and perform crawl at maximum load==Accepter les demandes de crawl distants et les exécuter au niveau de charge maximal
-Accept remote crawling requests and perform crawl at maximum of==Accepter les demandes de crawl distants et les exécuter jusqu'a un maximum de
-Pages Per Minute (minimum is 1, low system load usually at PPM = 30)==pages par minute (le minimum est 1, un système lent charge habituellement moins de 30 pages par minute)
-Do not accept remote crawling requests (please set this only if you cannot accept to crawl only one page per minute; see option above)==Ne pas accepter les demande de crawls distants (n'activez cela que si vous ne pas accepter de crawler seulement une page par minute; voir ci-dessus)
-"set"=="Enregistrer"
-Error:==Erreur:
-Application not yet initialized. Sorry. Please wait some seconds and repeat the request.==L'application n'est pas encore initialisée. Désolé. Attendez quelques secondes et répétez votre requète.
-Crawling of "#[crawlingURL]#" failed. Reason:==Crawl de "#[crawlingURL]#" non réussi. Raison:
-Error with file input==Erreur de fichier en entrée
-Set new prefetch depth to==Paramètrer une nouvelle profondeur de crawl de
-Crawling of "#[crawlingURL]#" started.==Crawl de "#[crawlingURL]#" démarré.
-You can monitor the crawling progress either by watching the URL queues==Vous pouvez surveiller l'avancement du crawl soit en regardant les URLs suivantes
-local queue==file locale
-global queue==file globale
-loader queue==file du chargeur
-indexing queue==file d'indexation
-or see the fill/process count of all queues on the==soit en regardant le remplissage des files d'attente sur la
->performance page.==>page de performance.
-Please wait some seconds, because the request is enqueued and delayed until the proxy/HTTP-server is idle for a certain time.==Attentez quelques secondes, la requête est en attente et retardée jusqu'à ce que le proxy/serveur-http devienne inoccupé un instant.
-The indexing results are presented on the==Les résultats d'indexation sont présentés sur la
-Index Monitor-page.==l'index de surveillance.
-It will take at least 30 seconds until the first result appears there. Please be patient, the crawling will pause each time you use the proxy or web server to ensure maximum availability.==Il se passera au moins 30 secondes avant que le premier résultat n'apparaisse ici. Soyez patient, le crawl se suspend chaque fois que vous utilisez le proxy ou le server web pour assurer une disponibilité maximal.
-If you crawl any un-wanted pages, you can delete them==Si vous crawler des pages non souhaitées, vous pouvez les supprimer
-here.==ici.
-Removed #[numEntries]# entries from crawl queue. This queue may fill again if the loading and indexing queue is not empty==#[numEntries]#entrées supprimées de la file d'attente de crawl. Cette file sera réalimentée si le file de chargement et d'indexation n'est pas vide.
-Crawling paused successfully.==Le crawl suspendu avec succès (pause).
-Continue crawling.==Poursuivre le crawl.
-"refresh"=="actualiser"
-"continue crawling"=="Poursuivre le crawl"
-"pause crawling"=="suspendre le crawl"
-Crawl Profile List:==Liste de profils de crawl:
-Crawl Thread==Type de crawl
-Start URL==Start URL
-Depth
==Profondeur
-Filter==Filtre
-MaxAge==Age Max.
-Auto Filter Depth==Profondeur de filtrage auto
-Auto Filter Content==Contenu de filtrage auto
-Max Page Per Domain==Max. de pages par domain
-Accept '?' URLs==Accepter les URL avec '?'
-Fill Proxy Cache==Remplir le proxy cache
-Local Indexing==Indexation locale
-Remote Indexing==Indexation distante
-Recently started remote crawls in progress:==Avancement des crawls distants récemment démarrés:
-Start Time==Temps de démarrage
-Noeud Name==Nom du noeud
-Start URL==URL de départ
-Intention/Description==Intention/Description
-Recently started remote crawls, finished:==Crawls distants récemments démarrés, terminés:
-Remote Crawling Noeuds:==Noeuds de crawl distants:
-No remote crawl peers availible.==Aucun noeud accessible aux crawls distants.
-peers available for remote crawling.==Noeuds accessible aux crawls distants.
-Idle Noeuds==Noeuds inactifs
-Busy Noeuds==Noeuds occupés
-#(withQuery)#no::yes#(/withQuery)#==#(withQuery)#non::oui#(/withQuery)#
-#(storeCache)#no::yes#(/storeCache)#==#(storeCache)#non::oui#(/storeCache)#
-#(localIndexing)#no::yes#(/localIndexing)#==#(localIndexing)#non::oui#(/localIndexing)#
-#(remoteIndexing)#no::yes#(/remoteIndexing)#==#(remoteIndexing)#non::oui#(/remoteIndexing)#
-#(crawlingQ)#no::yes#(/crawlingQ)#==#(crawlingQ)#non::oui#(/crawlingQ)#
-#{available}##[name]# (#[due]# seconds due) #{/available}#==#{available}##[name]# (#[due]# secondes ) #{/available}#
-#{busy}##[name]# (#[due]# seconds due) #{/busy}#==#{busy}##[name]# (#[due]# secondes due) #{/busy}#
+"API"=="API"
+"Clean up search events cache info"=="Nettoyer les informations du cache des événements de recherche"
+"Crawling" means that YaCy will download the given website, extract all links in it and then download the content behind these links.=="Crawling" signifie que YaCy va télécharger le site Web donné, extraire tous les liens dans lui et ensuite télécharger le contenu derrière ces liens.
+"Media Type checking info"=="Informations de vérification du type de média"
+"Media Type filter info"=="Type de média filtre info"
+"Show all links"=="Afficher tous les liens"
+"Solr query filter info"=="Informations sur le filtre de requête Solr"
+"Start New Crawl Job"=="Démarrer une nouvelle tâche de crawl"
+"empty"=="vide"
+"info"=="info"
+(like the Google Search Appliance aka GSA) the user must be able to crawl all web pages that are granted to such commercial platforms.==(comme Google Search Appliance, alias GSA) l'utilisateur doit pouvoir crawler toutes les pages web accessibles à de telles plateformes commerciales.
+(must not be empty)==(ne doit pas être vide)
+0 means that only the page you enter under "Starting Point" will be added==0 signifie que seule la page que vous entrez dans la rubrique "Point de départ" sera ajoutée
+cache only: never go online, use all content from cache. If no cache exist, treat content as unavailable==cache only : ne jamais aller en ligne, utiliser tout le contenu du cache. Si aucun cache n'existe, traiter le contenu comme indisponible
+if exist: use the cache if the cache exist. Do no check freshness. Otherwise use online source;==if exist : utiliser le cache s'il existe. Ne pas vérifier la fraîcheur. Sinon utiliser la source en ligne;
+if fresh: use the cache if the cache exists and is fresh using the proxy-fresh rules;==if fresh : utiliser le cache s'il existe et s'il est frais selon les règles proxy-fresh;
+no cache: never use the cache, all content from fresh internet source;==no cache : ne jamais utiliser le cache, charger tout le contenu depuis une source Internet fraîche;
+A YaCyNews message will be created to inform all peers about a global crawl,==Un message YaCyNews sera créé pour informer tous les pairs d'un crawl global,
+A Crawl Job consist of one or more start point, crawl limitations and document freshness rules.==Une tâche de crawl comprend un ou plusieurs points de départ, des limites de crawl et des règles de fraîcheur des documents.
+A crawl result can be tagged with names which are candidates for a collection request.==Un résultat de crawl peut être tagué avec des noms candidats pour une requête de collection.
+A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled.==Un point d'interrogation indique généralement une page dynamique. Les URLs pointant vers du contenu dynamique ne doivent généralement pas être crawlées.
+A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==Un crawl web effectue une double vérification de tous les liens trouvés sur Internet par rapport à la base interne. Si la même URL est retrouvée,
+Accept URLs with query-part ('?'):==Accepter les URL avec la partie requête ('?'):
+Add Crawl result to collection (important for Index Pack generation)==Ajouter le résultat du crawl à la collection (important pour la génération de packs d'index)
+After a crawl was done in the past, document may become stale and eventually they are also deleted on the target host.==Après un crawl effectué par le passé, des documents peuvent devenir obsolètes et éventuellement être supprimés sur l'hôte cible.
+Always cross check file extension against Content-Type header==Toujours vérifier l'extension de fichier par rapport à l'en-tête Content-Type
+Because YaCy can be used as replacement for commercial search appliances==Parce que YaCy peut être utilisé comme remplacement pour les appareils de recherche commerciaux
+Check this option to be sure to get fresh search results including newly crawled documents. Beware that it will also interrupt any refreshing/resorting of search results currently requested from browser-side.==Cochez cette option pour obtenir des résultats de recherche frais incluant les documents récemment crawlés. Notez qu'elle interrompra aussi toute actualisation ou tout retri de résultats actuellement demandé côté navigateur.
+Class==Classe
+Clean up search events cache==Nettoyer le cache des événements de recherche
+Clean-Up before Crawl Start==Nettoyage avant le démarrage
+Click on this API button to see a documentation of the POST request parameter for crawl starts.==Cliquez sur ce bouton API pour consulter la documentation des paramètres POST utilisés pour démarrer un crawl.
+Content Filter==Filtre de contenu
+Crawl Job==Tâche de crawl
+Crawler Filter==Filtre du crawler
+Crawling Depth==Profondeur de calibrage
+Crawls can be restricted to specific countries. This uses the country code that can be computed from==Les crawls peuvent être limités à des pays spécifiques. Ceci utilise le code pays qui peut être calculé à partir de
+Define the start-url(s) here. You can submit more than one URL, each line one URL please.==Définissez ici les URLs de départ. Vous pouvez soumettre plusieurs URLs, une URL par ligne.
+Delete only old==Supprimer seulement l'ancien
+Delete sub-path==Supprimer le sous-chemin
+Describe your intention to start this global crawl (optional)==Décrivez votre intention de lancer ce crawl global (facultatif)
+Do not delete any document before the crawl is started.==Ne supprimer aucun document avant le démarrage du crawl.
+Do not load URLs with an unsupported file extension==Ne chargez pas d'URL avec une extension de fichier non prise en charge
+Do not use underline '_' in collection name, use '-' instead. When useful, add a language code to the collection name, e.g. 'top-100-en'.==N'utilisez pas «_» dans le nom de la collection, utilisez plutôt «-». Lorsque cela est utile, ajoutez un code de langue au nom de la collection, par exemple «top-100-en».
+Document Cache==Cache-documents
+Document Cache without indexing.==Cache de documents sans indexation.
+Document Filter==Filtre de document
+Double-Check Rules==Règles de double contrôle
+Each of these URLs are the root for a crawl start, existing start URLs are always re-loaded.==Chacune de ces URLs sert de racine pour un démarrage de crawl ; les URLs de départ existantes sont toujours rechargées.
+Each parsed document is checked against the given Solr query before being added to the index.==Chaque document analysé est vérifié par rapport à la requête Solr donnée avant d'être ajouté à l'index.
+Enrich Vocabulary==Enrichir le vocabulaire
+Evaluate by default==Évaluer par défaut
+Example: to allow loading only links from pages on example.org domain, set the must-match filter to '.*example.org.*'.==Exemple: pour permettre le chargement uniquement de liens à partir de pages sur le domaine example.org, définissez le filtre must-match à '.*example.org.*'.
+Example: to allow only urls that contain the word 'science', set the must-match filter to '.*science.*'.==Exemple : pour autoriser uniquement les URLs contenant le mot 'science', réglez le filtre must-match sur '.*science.*'.
+Expert Crawl Start==Démarrage de l'expert
+Filter div or nav class names==Filtrer les noms de classe div ou nav
+Filter on Content of Document (all visible text, including camel-case-tokenized url and title)==Filtre sur le contenu du document (tout le texte visible, y compris l'URL et le titre tokenisés en camel-case)
+Filter on Document Media Type (aka MIME type)==Filtre sur le type de support de document (alias type MIME)
+Filter on URLs==Filtre sur les URL
+Following frames is NOT done by Gxxg1e, but we do by default to have a richer content. 'nofollow' in robots metadata can be overridden; this does not affect obeying of the robots.txt which is never ignored.==Les frames suivants ne sont PAS réalisés par Gxxg1e, mais nous faisons par défaut pour avoir un contenu plus riche. « nofollow » dans les métadonnées des robots peut être dépassé; cela n'affecte pas l'obéissance des robots.txt qui n'est jamais ignoré.
+For each host in the start url list, delete all documents (in the given subpath) from that host.==Pour chaque hôte de la liste des URLs de départ, supprimer tous les documents de cet hôte dans le sous-chemin indiqué.
+From File (enter a path within your local file system)==Depuis un fichier (entrer un chemin dans votre système de fichiers local)
+From Link-List of URL==À partir de la liste des liens de l'URL
+From Sitemap==À partir de Plan du site
+However, there are sometimes web pages with static content that==Cependant, il y a parfois des pages Web avec du contenu statique qui
+Ignore all words in document by default until a CSS class as listed below appears, then evaluate all==Ignorer tous les mots dans le document par défaut jusqu'à ce qu'une classe CSS comme indiqué ci-dessous apparaisse, puis évaluer tous
+Ignore by default==Ignorer par défaut
+Indeed, for some web resources the actual Media Type is not consistent with the URL file extension. Here are some examples:==En effet, pour certaines ressources web, le type de média actuel n'est pas compatible avec l'extension de fichier URL. Voici quelques exemples:
+Index Attributes==Attributs de l'index
+Indexing==Indexation
+Load Filter on IPs==Charger le filtre sur les IP
+Load Filter on URL origin of links==Charger le filtre sur l'origine URL des liens
+Load Filter on URLs==Charger le filtre sur les URL
+Maximum Pages per Domain==Pages maximales par domaine
+Media Type detection==Détection des types de médias
+Must-Match List for Country Codes==Liste des correctifs obligatoires pour les codes de pays
+Never load any page that is already known. Only the start-url may be loaded again.==Ne jamais charger une page déjà connue. Seule l'URL de départ peut être chargée à nouveau.
+No Deletion==Pas de suppression
+No Indexing when Canonical present and Canonical != URL==Pas d'indexation lorsque Canonical présent et Canonical != URL
+No Doubles==Pas de doublons
+Not having this option would be a strong handicap for professional usage of this software. Therefore you are able to select==Ne pas avoir cette option serait un fort handicap pour l'utilisation professionnelle de ce logiciel. Par conséquent, vous êtes en mesure de sélectionner
+Not loading URLs with unsupported file extension is faster but less accurate.==Ne pas charger des URL avec une extension de fichier non prise en charge est plus rapide mais moins précis.
+Obey html-robots-nofollow:==Obey html-robots-nofollow:
+Obey html-robots-noindex:==Obey html-robots-noindex:
+One Start URL or a list of URLs: (must start with http:// https:// ftp:// smb:// file://)==Une URL de départ ou une liste d'URLs : (doit commencer par http:// https:// ftp:// smb:// file://)
+Other already visited URLs are sorted out as "double", if they are not allowed using the re-crawl option.==Les autres URLs déjà visitées sont écartées comme doublons si elles ne sont pas autorisées par l'option de recrawl.
+Page-Count==Page-Count
+Policy for usage of Web Cache==Politique d'utilisation du cache web
+Re-load==Recharger
+Remote crawl results won't be added to the local index as the remote crawler is disabled on this peer.==Les résultats de crawl distant ne seront pas ajoutés à l'index local car le crawler distant est désactivé sur ce pair.
+Restrict to start domain(s)==Restriction au démarrage du(des) domaine(s)
+Restrict to sub-path(s)==Limiter au sous-chemin(s)
+Robot Behaviour==Comportement des robots
+Scraping Fields==Champs de scrapage
+Start Point==Point de départ
+Store to Web Cache==Stocker dans le cache web
+The caching policy states when to use the cache during crawling:==La politique de cache indique quand utiliser le cache pendant le crawl :
+The embedded local Solr index must be connected to use this kind of filter.==L'index local Solr intégré doit être connecté pour utiliser ce type de filtre.
+The time zone is required when the parser detects a date in the crawled web page. Content can be searched with the on: - modifier which==Le fuseau horaire est requis lorsque le parseur détecte une date dans la page web crawlée. Le contenu peut être recherché avec le modificateur on: qui
+These are limitations on index feeder. The filters will be applied after a web page was loaded.==Les filtres seront appliqués après le chargement d'une page Web.
+These are limitations on parts of a document. The filter will be applied after a web page was loaded.==Il s'agit de limitations sur des parties d'un document. Le filtre sera appliqué après le chargement d'une page Web.
+These are limitations on the crawl stacker. The filters will be applied before a web page is loaded.==Ce sont des limites appliquées au crawl stacker. Les filtres sont appliqués avant le chargement d'une page web.
+This defines how often the Crawler will follow links (of links..) embedded in websites.==Définit jusqu'à quelle profondeur le crawler suivra les liens intégrés dans les sites web.
+This enables indexing of the webpages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the==Cette option active l'indexation des pages web téléchargées par le crawler. Elle doit être activée par défaut, sauf si vous voulez crawler uniquement pour remplir le
+This is repeated as long as specified under "Crawling Depth".==Ceci est répété jusqu'à la profondeur indiquée sous "Profondeur de crawl".
+This message will appear in the 'Other Peer Crawl Start' table of other peers.==Ce message apparaîtra dans le tableau « Autre démarrage par les pairs » d'autres pairs.
+Time Zone Offset==Décalage des fuseaux horaires
+Time zone offsets for locations east of UTC must be negative; offsets for zones west of UTC must be positve.==Les décalages horaires des lieux à l'est d'UTC doivent être négatifs ; ceux des zones à l'ouest d'UTC doivent être positifs.
+To remove old files from the search index it is not sufficient to just consider them for re-load but it may be necessary==Pour supprimer les anciens fichiers de l'index de recherche, il ne suffit pas de les considérer pour un rechargement ; il peut aussi être nécessaire
+Treat documents that are loaded==Traiter les documents qui sont chargés
+Unlimited crawl depth for URLs matching with==Profondeur de crawl illimitée pour les URLs correspondant à
+Use==Utiliser
+Use Special User Agent and robot identification==Utiliser l'agent utilisateur spécial et l'identification du robot
+Use all words in document by default until a CSS class as listed below appears; then ignore all==Utilisez tous les mots dans le document par défaut jusqu'à ce qu'une classe CSS comme indiqué ci-dessous apparaisse; puis ignorez tous
+Use filter==Utiliser un filtre
+Vocabulary==Vocabulary
+You can also use an automatic domain-restriction to fully crawl a single domain.==Vous pouvez aussi utiliser une restriction automatique au domaine pour crawler entièrement un seul domaine.
+You can choose to:==Vous pouvez choisir:
+You can define URLs as start points for Web page crawling and start crawling here.==Vous pouvez définir ici des URLs comme points de départ du crawl web et lancer le crawl.
+You can limit the maximum number of pages that are fetched and indexed from a single domain with this option.==Vous pouvez limiter le nombre maximum de pages qui sont récupérées et indexées à partir d'un seul domaine avec cette option.
+You can use class names to enrich the terms of a vocabulary based on the text content that appears on web pages. Please write the names of classes into the matrix.==Vous pouvez utiliser les noms de classes pour enrichir les termes d'un vocabulaire basé sur le contenu texte qui apparaît sur les pages Web. Veuillez écrire les noms de classes dans la matrice.
+ago as stale and delete them before the crawl is started.==comme obsolètes et les supprimer avant le démarrage du crawl.
+ago as stale and load them again. If they are younger, they are ignored.==s'ils sont plus jeunes, ils sont ignorés.
+also all linked non-parsable documents==aussi tous les documents non-parsables liés
+alternative user agents here which have different crawl timings and also identify itself with another user agent and obey the corresponding robots rule.==des agents utilisateur alternatifs ayant des temporisations de crawl différentes, s'identifiant avec un autre agent utilisateur et respectant les règles robots correspondantes.
+cache only==cache uniquement
+comma-separated list of <div> or <nav> element class names which should be filtered out/in according to switch above.==Liste séparée par des virgules des noms de classes d'éléments < div > ou < nav > qui doivent être filtrés /in conformément au commutateur ci-dessus.
+from dates without time zones to UTC, this offset must be given here. The offset is given in minutes;==à partir des dates sans fuseau horaire jusqu'à UTC, ce décalage doit être donné ici. Le décalage est donné en minutes;
+if exist==si existant
+if fresh==si frais
+index approximately 25.600.000.000 pages, maybe this is the whole WWW.==index environ 25.600.000.000 pages, peut-être que c'est tout le WWW.
+index media==Index des supports
+index text==texte de l'index
+misc. Constraints==Misc. Contraintes
+must-match==must-match
+must-not-match==must-not-match
+no country code restriction==pas de restriction du code pays
+no cache==pas de cache
+requires also a time zone when a query is made. To normalize all given dates, the date is stored in UTC time zone. To get the right offset==nécessite également un fuseau horaire lorsqu'une requête est faite. Pour normaliser toutes les dates données, la date est stockée dans le fuseau horaire UTC. Pour obtenir le bon décalage
+so they can omit starting a crawl with the same start point.==afin qu'ils puissent éviter de démarrer un crawl avec le même point de départ.
+that must match with the document Media Type (also known as MIME Type) to allow the URL to be indexed.==qui doit correspondre au type de média du document (aussi appelé type MIME) pour permettre l'indexation de l'URL.
+that must not match with the URLs to allow that the content of the url is indexed.==qui ne doit pas correspondre aux URLs pour permettre l'indexation du contenu de l'URL.
+the IP of the server that hosts the page. The filter is not a regular expressions but a list of country codes, separated by comma.==l'IP du serveur qui héberge la page. Le filtre n'est pas une expression régulière mais une liste de codes de pays, séparés par des virgules.
+then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,==l'URL est alors considérée comme un doublon lorsque l'option 'pas de doublons' est cochée. Une URL peut être rechargée lorsqu'elle a atteint un âge donné,
+to delete them because they simply do not exist any more. Use this in combination with re-crawl while this time should be longer.==de les supprimer parce qu'ils n'existent tout simplement plus. Utilisez cette option avec le recrawl, avec un délai plus long.
+to the index. 2-4 is good for normal indexing. Values over 8 are not useful, since a depth-8 crawl will==à l'index. Une valeur de 2 à 4 convient pour une indexation normale. Les valeurs supérieures à 8 ne sont pas utiles, car un crawl de profondeur 8
+to use that check the 're-load' option.==Pour utiliser cette option, vérifiez l'option « recharger ».
#-----------------------------
#File: CrawlStartSite.html
+Path==Chemin
+Site Crawling==Balayage de sites
#---------------------------
->Crawl Start<==>Démarrer un balayage<
->Site Crawling<==>Balayage de site<
Site Crawler:==Balayeur de sites:
Download all web pages from a given domain or base URL.==Télécharger toutes les pages web d'un domaine donné ou d'une URL de base.
-Site Crawl Start==Démarrer un balayage de site
-Start URL (must start with==URL de départ (doit commencer par
+Site Crawl Start==Démarrer un crawl de site
Link-List of URL==Lien vers une liste d'URLs
Sitemap URL==URL d'un plan de site
->Path<==>Chemin<
load all files in domain==charger tous les fichiers du domaine
load only files in a sub-path of given url==charger uniquement les fichiers contenu dans un sous-chemin de l'URL donnée
->Limitation<==>Limite<
not more than==pas plus de
->Start<==>Démarrer<
-Start New Crawl==Démarrer un nouveau balayage
->Hints<==>Indications<
->Crawl Speed Limitation<==>Limite de vitesse du balayage<
-No more that two pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.==Afin de limiter la charge sur le serveur ciblé, pas plus de 2 pages ne sont chargées par seconde depuis le même hôte (pas plus de 120 documents par minute).
->Target Balancer<==>Répartisseur de charge<
-A second crawl for a different host increases the throughput to a maximum of 240 documents per minute ==Un second balayage sur un hôte différent augmente le débit jusqu'à un maximum de 240 documents par minute,
-since the crawler balances the load over all hosts.==puisque le balayeur équilibre la charge entre tous les hôtes.
->High Speed Crawling<==>Balayage à haute vitesse<
-A 'shallow crawl' which is not limited to a single host (or site)==Un "balayage superficiel" non limité à un seul hôte (ou site)
-can extend the pages per minute (ppm) rate to unlimited documents per minute ==peut augmenter le nombre de pages par minutes (ppm) jusqu'à récolter un nombre illimité de documents par minute
-when the number of target hosts is high.==lorsque le nombre d'hôtes ciblés est élevé.
-This can be done using the Expert Crawl Start servlet.==Cela peut être effectué au moyen de cette servlet: démarrer un balayage expert.
->Scheduler Steering<==>Commande du planificateur<
-The scheduler on crawls can be changed or removed using API Steering==Le planificateur de balayage peut être modifié ou supprimé au moyen de la commande de l'API
+A 'shallow crawl' which is not limited to a single host (or site)==Un "crawl superficiel" non limité à un seul hôte (ou site)
+"Show all links"=="Afficher tous les liens"
+"Start New Crawl"=="Démarrer un nouveau crawl"
+"empty"=="vide"
+A second crawl for a different host increases the throughput to a maximum of 240 documents per minute since the crawler balances the load over all hosts.==Un second crawl pour un autre hôte augmente le débit jusqu'à 240 documents par minute, car le crawler répartit la charge entre tous les hôtes.
+Collection==Collection
+Crawl Speed Limitation==Limitation de la vitesse de crawl
+High Speed Crawling==Crawling à grande vitesse
+Hints==Conseils
+Limitation==Limitation
+No more that four pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.==Plus que quatre pages sont chargées depuis le même hôte en une seconde (pas plus de 120 documents par minute) pour limiter la charge sur le serveur cible.
+Scheduler Steering==Direction des planificateurs
+Site==Site
+Start==Démarrer
+Start URL (must start with http:// https:// ftp:// smb:// file://)==URL de départ (doit commencer par http:// https:// ftp:// smb:// file://)
+Target Balancer==Équilibreur cible
+can extend the pages per minute (ppm) rate to unlimited documents per minute when the number of target hosts is high.==peut étendre le taux de pages par minute (ppm) aux documents illimités par minute lorsque le nombre d'hôtes cibles est élevé.
+documents==documents
#---------------------------
#File: IndexBrowser_p.html
+Path==Chemin
#---------------------------
-Browse the index of #[ucount]# documents.==Naviguer dans les #[ucount]# documents de l'index.
-Enter a host or an URL for a file list or view a list of==Saisir un nom de domaine ou une URL pour obtenir une liste de fichiers, ou visualiser la liste de
->all hosts<==>tous les domaines<
->only hosts with urls pending in the crawler<==>seulement ceux en cours d'indexation<
-> or <==> ou <
->only with load errors<==>seulement ceux ayant des erreurs de chargement<
Host/URL==Nom de domaine/URL
Browse Host==Explorer
"Delete Subpath"=="Supprimer la sous-arborescence"
-Browser for==Arborescence de
Index Browser==Explorateur d'index
"Re-load load-failure docs (404s etc)"=="Recharger les documents en erreur (404s etc.)"
-Confirm Deletion==Veuillez confirmer la suppression
->Host List<==>Liste de domaines<
Count Colors:==Couleurs :
Documents without Errors==Documents sans erreurs
Pending in Crawler==En attente d'indexation
-Crawler Excludes<==Exclus de l'indexation<
-Load Errors<==Erreurs de chargement<
-documents stored for host: #[hostsize]#==documents indexés pour le domaine: #[hostsize]#
-documents stored for subpath: #[subpathloadsize]#==documents indexés pour la sous-arborescence : #[subpathloadsize]#
-unloaded documents detected in subpath: #[subpathdetectedsize]#==documents non indexés détectés dans la sous-arborescence : #[subpathdetectedsize]#
->Path<==>Chemin<
->stored<==>indexé(s)<
->linked<==>lié(s)<
->pending<==>en attente d'indexation<
->excluded<==>exclus<
->failed<==>en échec<
-Show Metadata==Afficher les méta-données
link, detected from context==lien, détecté depuis le contexte
load & index==charger & indexer
->indexed<==>indexé<
->loading<==>en cours de chargement<
-Outbound Links, outgoing from #[host]# - Host List==Liens sortants, depuis #[host]# - Liste de domaines
-Inbound Links, incoming to #[host]# - Host List==Liens entrants, vers #[host]# - Liste de domaines
-==
-'number of documents about this date'=='Nombre de documents liés à cette date'
-"show link structure graph"=="Afficher le graphique d'arborescence de liens"
-Host has load error(s)==Erreur(s) de chargement sur ce domaine
Administration Options==Options d'administration
Delete all==Supprimer toutes les
->Load Errors<==>erreurs de chargement<
from index==de l'index
"Delete Load Errors"=="Supprimer"
+"Directory"=="Répertoire"
+Add to blacklist==Ajouter à la liste noire
+Crawler Excludes==Exclusions du crawler
+Host Analysis==Analyse de l'hôte
+Host List==Liste des hôtes
+Load Errors==Charger les erreurs
+Metadata==Métadonnées
+URLs==URLs
+excluded==exclu
+failed==échec
+indexed==indexé
+linked==lié
+loading==chargement
+pending==en attente
+stored==stocké
#-----------------------------
#File: IndexCreateLoaderQueue_p.html
#---------------------------
-Index Creation / Loader Queue==Création d'index / file de chargement
-Index Creation: Loader Queue==Création d'index: file de chargelent
The loader set is empty==La file de chargement est vide.
-There are #[num]# entries in the loader set:==Il y a #[num]# entrées dans la file de chargement:
Initiator==Initiateur
Depth==Profondeur
-#URL==URL
+Loader Queue==Requête du chargeur
+Status==État
+URL==URL
#-----------------------------
#File: IndexCreateQueues_p.html
+Depth==Profondeur
+Initiator==Initiateur
#---------------------------
-#Crawl Queue<==Crawl Queue<
-#Click on this API button to see an XML with information about the crawler latency and other statistics.==Click on this API button to see an XML with information about the crawler latency and other statistics.
This crawler queue is empty==Cette file d'attente est vide
Delete Entries:==Entrées supprimées:
"Delete"=="Supprimer"
->Count<==>Nombre<
->Initiator<==>Initiateur<
->Profile<==>Profil<
->Depth<==>Profondeur<
Modified Date==Date de modification
Anchor Name==Nom d'ancre
+"API"=="API"
+Click on this API button to see an XML with information about the crawler latency and other statistics.==Cliquez sur ce bouton API pour afficher un XML contenant la latence du crawler et d'autres statistiques.
+Count==Nombre
+Delta/ms==Delta/ms
+Host==Hôte
+Profile==Profil
+URL==URL
#-----------------------------
#File: IndexReIndexMonitor_p.html
+Query==Requête
#---------------------------
-Field Re-Indexing<==Ré-indexation de champ<
In case that an index schema of the embedded/local index has changed, all documents with missing field entries can be indexed again with a reindex job.==Lorsque le schéma de l'index embarqué/local a changé, tous les documents ayant des champs supprimés peuvent être ré-indexés via une tâche de ré-indexation.
"refresh page"=="Rafraîchir la page"
-Documents in current queue<==Documents de la file courante<
-Documents processed<==Documents traités<
current select query==Requête de sélection courante
"start reindex job now"=="Démarrer la tâche maintenant"
"stop reindexing"=="Arrêter la ré-indexation"
Remaining field list==Liste de champs restants
reindex documents containing these fields:==Ré-indexer les documents contenant ces champs :
-Re-Crawl Index Documents==Re-balayage et ré-indexation de documents
+Re-Crawl Index Documents==Recrawler les documents de l'index
Searches the local index and selects documents to add to the crawler (recrawl the document).==Recherche et sélectionne dans l'index local les documents à ajouter au balayeur (re-télécharge chaque document).
-This runs transparent as background job.==S'exécute en tant que tâche de fond.
-Documents are added to the crawler only if no other crawls are active==Les documents ne sont ajoutés au balayeur que si aucun autre balayage n'est actif,
and are added in small chunks.==et sont ajoutés par petits paquets.
"start recrawl job now"=="Démarrer la tâche maintenant"
"stop recrawl job"=="Arrêter la tâche"
to re-crawl documents selected with the given query.==pour re-balayer les documents sélectionnés avec la requête indiquée
-Re-Crawl Query Details==Détails du re-balayage
+Re-Crawl Query Details==Détails de la requête de recrawl
Documents to process==Documents à traiter
Current Query==Requête courante
Edit Solr Query==Modifier la requête Solr
-update==Appliquer
Include failed URLs==Inclure les URLs en échec
->Field<==>Champ<
->count<==>Nombre<
-Re-crawl works only with an embedded local Solr index!==Le re-balayage fonctionne seulement avec un index Solr local!
-Simulate==Simuler
-Check only how many documents would be selected for recrawl==Vérifier seulement combien de documents seraient sélectionnés pour être re-balayés
-"Browse metadata of the #[rows]# first selected documents"=="Parcourir les méta-données des #[rows]# premiers documents sélectionnés"
-document(s)#(/showSelectLink)# selected for recrawl.==document(s)#(/showSelectLink)# sélectionnés pour le re-balayage.
->Solr query <==>Requête Solr <
-Set defaults==Valeurs par défaut
+Re-crawl works only with an embedded local Solr index!==Le recrawl ne fonctionne qu'avec un index Solr local intégré !
"Reset to default values"=="Ré-initialiser avec les valeurs par défaut"
-Last #(/jobStatus)#Re-Crawl job report==Dernier #(/jobStatus)#Rapport de re-balayage
-Automatically refreshing==Rafraîchi automatiquement
-An error occurred while trying to refresh automatically==Une erreur est survenue lors du rafraîchissement automatique
The job terminated early due to an error when requesting the Solr index.==La tâche s'est terminée de façon précoce suite une erreur d'accès à l'index Solr.
->Status<==>Statut<
-"Running"=="En cours d'exécution"
-"Shutdown in progress"=="Arrêt en cours"
-"Terminated"=="Terminé"
-Running::Shutdown in progress::Terminated==En cours d'exécution::Arrêt en cours::Terminé
->Query<==>Requête<
->Start time<==>Moment de démarrage<
->End time<==>Moment d'arrêt<
-URLs added to the crawler queue for recrawl==URLs ajoutées à la file de balayage pour re-balayage
->Recrawled URLs<==>URLs re-balayées<
-URLs rejected for some reason by the crawl stacker or the crawler queue. Please check the logs for more details.==URLs rejetées par le contrôleur d'ajout ou la file de balayage. Veuillez consulter les logs pour plus de détails.
->Rejected URLs<==>URLs rejetées<
->Malformed URLs<==>URLs mal formées<
-"#[malformedUrlsDeletedCount]# deleted from the index"=="#[malformedUrlsDeletedCount]# supprimées de l'index"
-> Refresh<==> Rafraîchir<
+"An error occurred while trying to refresh automatically"=="Une erreur s'est produite en essayant de se rafraîchir automatiquement"
+"Automatically refreshing"=="Rénovation automatique"
+"Check only how many documents would be selected for recrawl"=="Vérifiez seulement combien de documents seront sélectionnés pour le recrawl"
+"Set defaults"=="Définir les valeurs par défaut"
+"Simulate"=="Simuler"
+"URLs added to the crawler queue for recrawl"=="URLs ajoutées à la file d'attente du crawler pour recrawl"
+"URLs rejected for some reason by the crawl stacker or the crawler queue. Please check the logs for more details."=="URLs rejetées pour une raison quelconque par le crawl stacker ou la file d'attente du crawler. Veuillez consulter les journaux pour plus de détails."
+"update"=="mettre à jour"
+An error occurred when trying to run the selection query.==Une erreur s'est produite lors de l'exécution de la requête de sélection.
+Delete URLs==Supprimer les URLs
+Delete urls==Supprimer les URLs
+Documents in current queue==Documents dans la file d'attente actuelle
+Documents processed==Documents traités
+End time==Heure de fin
+Field==Champ
+Field Re-Indexing==RéIndexation des champs
+Include failed urls==Inclure les URLs en échec
+Last==Dernier
+Malformed URLs==URLs déformées
+Re-Crawl job report==Rapport d'emploi de nouveau
+Recrawled URLs==URLs recrawlées
+Refresh==Actualiser
+Rejected URLs==URLs rejetées
+Running==En cours
+Shutdown in progress==Arrêt en cours
+Solr query==Résoudre la requête
+Start time==Heure de début
+Status==État
+Terminated==Terminé
+The Solr index is not connected. Please restart your peer.==L'index Solr n'est pas connecté. Veuillez redémarrer votre pair.
+This runs transparent as background job. Documents are added to the crawler only if no other crawls are active==Cette opération s'exécute de manière transparente en arrière-plan. Les documents ne sont ajoutés au crawler que si aucun autre crawl n'est actif
+count==nombre
+document(s)==document(s)
+selected for recrawl.==sélectionné pour recrawl.
#-----------------------------
#File: Messages_p.html
+Subject==Titre
#---------------------------
->Messages==>Message
->Date==>Date
->From==>De
->To==>A
->Subject==>Sujet
->Action==>Action
From:==De:
To:==A:
Date:==Date:
Subject:==Sujet:
reply==répondre
->delete==>supprimer
+"Compose"=="Composer"
+"RSS"=="RSS"
+Action==Action
+Action:==Action :
+Compose Message==Composer un message
+Date==Date
+From==De
+Message:==Message :
+Messages==Messages
+Send message to peer==Envoyer un message à un pair
+To==À
+delete==supprimer
+inbox==boîte de réception
+view==voir
#-----------------------------
#File: MessageSend_p.html
+Text:==Texte:
#---------------------------
Send message==Envoyer un message
+"Enter"=="Entrée"
+"Preview"=="Aperçu"
+Here is a copy of your message, so you can copy it to save it for further attempts:==Voici une copie de votre message, afin que vous puissiez le copier pour l'enregistrer pour d'autres tentatives:
+Message:==Message :
+Preview message==Prévisualiser le message
+Subject:==Sujet :
+The message has not been sent yet!==Le message n'a pas encore été envoyé!
+The peer does not respond. It was now removed from the peer-list.==Le pair ne répond pas. Il a maintenant été retiré de la liste des pairs.
+The peer is alive but cannot respond. Sorry.==Le pair est vivant mais ne peut pas répondre.
+The target peer is alive but did not receive your message. Sorry.==Le pair cible est vivant mais n'a pas reçu votre message. Désolé.
+Your Message==Votre message
+Your message has been sent. The target peer responded:==Votre message a été envoyé. Le groupe cible a répondu:
#-----------------------------
#File: Network.html
+Name==Nom
#---------------------------
-YaCy Search Network==Réseau de recherche YaCy
->YaCy Network<==>Réseau YaCy<
The information that is presented on this page can also be retrieved as XML.==Les informations présentées ici peuvent être obtenues au format XML.
Click the API icon to see the XML.==Cliquez sur l'icône API pour afficher le XML.
-To see a list of all APIs, please visit the API wiki page.==Vous trouverez ici la liste complète des APIs.
Network Overview==Aperçu du réseau
-Active Peers==Noeuds actifs
-Passive Peers==Noeuds passifs
-Potential Peers==Noeuds potentiels
-Active Peers in '#[networkName]#' Network==Noeuds actifs du réseau '#[networkName]#'
-Passive Peers in '#[networkName]#' Network==Noeuds passifs du réseau '#[networkName]#'
-Potential Peers in '#[networkName]#' Network==Noeuds potentiels du réseau '#[networkName]#'
-Manually contacting Noeud==Contacter un noeud manuellement
-ERROR: Unable to execute query.==ERREUR: Impossible d'exécuter la requête.
-is no valid regular expression, please enter a valid regular expression to search for a peername.==n'est pas une expression régulière valide. Pour rechercher un nom de noeud, veuillez entrer une expression régulière valide.
-no remote #[peertype]# peer for this list known==Aucun noeud distant #[peertype]# connu ou en ligne.
-Showing #[num]# entries from a total of #[total]# peers.==Voir #[num]# noeuds sur un total de #[total]#.
Search for a peername (RegExp allowed)==Chercher le nom d'un noeud (expressions régulières autorisées)
"Search"==Rechercher
-send Message==envoyer Message
-show Profile==voir Profil
-edit Wiki==éditer Wiki
-browse Blog==consulter Blog
-https supported==https supporté
->Name<==>Nom<
->Info<==>Info<
->PPM<==>PPM<
->QPH<==>QPH<
->Release<==>Version de YaCy<
Last Seen==Dernière connexion
-UTC Offset==Décalage UTC
->Location==>Lieu
->Uptime==>Temps de fonctionnement
->Links==>Liens
->RWIs==>RWIs
-URLs for Remote Crawl==URLs pour balayage à distance
+UTC Offset==UTC Décalage
Sent DHT Word Chunks==DHT Word Chunks envoyés
Sent URLs==URLs envoyées
Received DHT Word Chunks==DHT Word Chunks reçus
-Received URLs==URLs reçues
+Received URLs==URLs reçues
->Address==>Adresse
->Hash==>Hachage
->Age==>Âge
-Peer Ping==Ping du noeud
-Send message to peer #[fullname]#==Envoyer un message au noeud #[fullname]#
-View profile of peer #[fullname]#==Voir le profil du noeud #[fullname]#
-Read and edit wiki on peer #[fullname]#==Lire et éditer le wiki du noeud #[fullname]#
-Browse blog of peer #[fullname]#==Consulter le blog du noeud #[fullname]#
"Profile updated"=="Profil mis à jour"
"Wiki updated"=="Wiki mis à jour"
"Blog updated"=="Blog mis à jour"
-Contact: active==Contact: actif
-Contact: passive==Contact: passif
-Contact: offline==Contact: hors-ligne
-Seed download:== Téléchargement des seeds
-"Accept Crawl: no"=="Accepte le balayage: non"
-"Accept Crawl: yes"=="Accepte le balayage: oui"
+"Accept Crawl: no"=="Accepter le crawl : non"
+"Accept Crawl: yes"=="Accepter le crawl : oui"
"DHT Receive: no"=="Réception de la DHT: non"
"DHT Receive: yes"=="Réception de la DHT: oui"
-"Not a Node Candidate"=="Pas un noeud candidat"
-"Node Candidate"=="Noeud candidat"
-runtime:==Temps d'exécution:
->Network<==>Réseau<
->Online Peers<==>Noeuds en ligne<
Number of Documents==Nombre de documents
Indexing Speed: Pages Per Minute (PPM)==Vitesse d'indexation: pages par minute (PPM)
Query Frequency: Queries Per Hour (QPH)==Fréquence des requêtes: requêtes par heure (QPH)
->Last Hour<==>Cette dernière heure<
->Today<==>Aujourd'hui<
->Last Week<==>Cette dernière semaine<
->Last Month<==>Ce dernier mois<
->Now<==>Maintenant<
->Active<==>Actif<
->Passive<==>Passif<
->Potential<==>Potentiel<
->This Peer<==>Votre noeud<
"The YaCy Network"=="Le réseau YaCy"
-URLs for Remote Crawl==URLs pour balayage à distance
+URLs for Remote Crawl==URLs pour crawl distant
Known Seeds==Seeds connues
Connects per hour==Connections par heure
-Indexing PPM==Vitesse d'indexation (PPM)
QPH (remote)==QPH (distant)
"Type: Virgin"=="Type: Vierge"
@@ -1179,94 +1204,146 @@ junior peers==noeuds junior
red point==point rouge
this peer==votre noeud
grey waves==vagues grises
-crawling activity==activité due au balayages en cours
+crawling activity==activité de crawl en cours
green radiation==radiation verte
strong query activity==forte activité due aux requêtes
red lines==lignes rouges
->DHT-out<==>DHT sortante<
green lines==lignes vertes
->DHT-in<==>DHT entrante<
-You are in online mode, but probably no internet resource is available. Please check your internet connection.==Vous êtes en mode connecté, mais aucune ressource internet n'est disponible. Vérifiez votre connexion internet.
-You are either not in online mode or you do not use the proxy option.==Vous n'êtes pas en mode En Ligne ni n'utilisez l'option Proxy.
-'on-demand - mode', see=='Mode - A la demande', voir
-here==ici
-for an installation guide) or you can go online by activating the permanent online mode.==pour un guide d'installation) ou vous pouvez vous mettre en ligne en activant le mode en ligne permanent.
-To do this, press this button:==Pour cela, pressez ce bouton:
-"go online"=="Se connecter"
+"API"=="API"
+"Crawl enabled"=="Crawl activé"
+"Crawl"=="Crawl"
+"DHT Receive enabled"=="DHT Recevoir activé"
+"DHT receive enabled"=="La réception DHT est activée"
+"Junior direct"=="Junior direct"
+"Junior offline"=="Junior hors ligne"
+"Junior passive"=="Junior passif"
+"Junior"=="Junior"
+"Principal active"=="Principale activité"
+"Principal offline"=="Directeur hors ligne"
+"Principal passive"=="Principal passif"
+"Principal"=="Principal"
+"Senior direct"=="Senior direct"
+"Senior offline"=="Senior hors ligne"
+"Senior"=="Senior"
+"Type: Junior | Contact: direct"=="Type: Junior. Contact: direct."
+"Type: Junior | Contact: offline"=="Type: Junior. Contact: hors ligne"
+"Type: Junior | Contact: passive"=="Type: Junior. Contact: passif"
+"Type: Junior"=="Type: Junior"
+"Type: Principal | Contact: direct | Seed download: possible"=="Type : Principal | Contact : direct | téléchargement du seed : possible"
+"Type: Principal | Contact: offline | Seed download: ?"=="Type : Principal | Contact : hors ligne | téléchargement du seed : ?"
+"Type: Principal | Contact: passive | Seed download: possible"=="Type : Principal | Contact : passif | téléchargement du seed : possible"
+"Type: Principal"=="Type: Directeur"
+"Type: Senior | Contact: direct"=="Type: Aîné: Contact: direct"
+"Type: Senior | Contact: offline"=="Type: Senior.Contact: hors ligne"
+"Type: Senior | Contact: passive"=="Type: Aîné: Contact: passif"
+"Type: Senior"=="Type: Aîné"
+"Virgin"=="Vierge"
+"add Peer"=="ajouter Peer"
+"contact current peer from this peer"=="communiquer avec le pair actuel de ce pair"
+"crawl possible"=="crawl possible"
+"https supported"=="https pris en charge"
+"no DHT receive"=="aucun DHT ne reçoit"
+"no crawl"=="pas de crawl"
+"senior passive"=="senior passif"
+Count of Connected Senior Peers in the last two days, scale = 1h==Nombre de pairs seniors connectés au cours des deux derniers jours, échelle = 1h
+Count of all Active Peers Per Day in the last week, scale = 1d==Nombre de tous les pairs actifs par jour au cours de la dernière semaine, échelle = 1d
+Count of all Active Peers Per Month in the last 365d, scale = 30d==Nombre de tous les pairs actifs par mois sur les 365 derniers jours, échelle = 30d
+Count of all Active Peers Per Week in the last 30d, scale = 7d==Nombre de tous les pairs actifs par semaine sur les 30 derniers jours, échelle = 7d
+Active Senior==Aîné actif
+Active Principal and Senior Peers==Pairs principaux et seniors actifs
+Age==Âge
+Contacting current peer from another:==Communiquer avec un pair actuel d'un autre:
+DHT-in==DHT-in
+DHT-out==DHT-out
+Hash==Hash
+Indexing PPM==Indexation PPM
+Info==Info
+Junior (fragment)==Junior (fragment)
+Junior (fragment) Peers==Pairs juniors (fragment)
+Last Hour==Dernière heure
+Last Month==Dernier mois
+Last Week==Dernière semaine
+Links==Liens
+Location==Emplacement
+Manually contacting Peer==Contacter manuellement les pairs
+Network==Réseau
+Network History==Historique du réseau
+Now==Maintenant
+Online Peers==Les pairs en ligne
+PPM==PPM
+Passive Senior==Aîné passif
+Passive Senior Peers==Pairs seniors passifs
+Peer Hash==Hash des pairs
+Peer IP==IP par les pairs
+Peer Port==Port pairs
+QPH==QPH
+QPH (public local)==QPH (public local)
+RWIs==RWIs
+Received DHT Word Chunks==Chunks de mots DHT reçus
+Release==Version publiée
+Sent DHT Word Chunks==Envoi de morceaux de mots DHT
+This Peer==Ce pair
+Today==Aujourd'hui
+URLs for Remote Crawl==URLs pour crawl distant
+UTC==UTC
+Uptime==Temps de fonctionnement
+Version==Version
+YaCy Network==Réseau YaCy
+Your Peer:==Votre pair:
+con/h ==pour /h
+ip:port==ip:port
+send Message/ show Profile/ edit Wiki/ browse Blog==envoyer Message/ afficher Profil/ modifier Wiki/ parcourir Blog
+user agent ==agent utilisateur
#-----------------------------
#File: News.html
+Incoming News==Nouvelles entrantes
+Outgoing News==Nouvelles sortantes
+Processed News==Nouvelles traitées
+Published News==Nouvelles publiées
#---------------------------
-Network Menu==Menu réseau
-News Overview==Aperçu des nouvelles
-Incoming News==Nouvelles entrantes
-Processed News==Nouvelles traitées
-Outgoing News==Nouvelles sortantes
-Published News==Nouvelles publiées
-News Overview==Aperçu des nouvelles
This is the YaCyNews system (currently under testing).==Voici le système de nouvelles YaCy (actuellement en test).
The news service is controlled by several entry points:==Ce service de nouvelles est contrôlé par plusieurs points d'entrée:
A crawl start with activated remote indexing will automatically create a news entry.==Un crawl démarré avec la fonction de crawl distant crée automatiquement une entrée de nouvelles.
Other peers may use this information to prevent double-crawls from the same start point.==Les autre noeuds peuvent utiliser cette information pour éviter les doublons dans les points de départ de crawl.
A table with recently started crawls is presented on the Index Create - page==Une table avec les crawls récemment lancés est visible sur la page de création d'index.
-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
+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 menus:==Vous pouvez voir ces quatre menus:
-Incoming News (#[insize]#): latest news that arrived your peer.==Nouvelles entrantes(#[insize]#):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.
-Processed News (#[prsize]#): this is simply an archive of incoming news that you removed by processing.==Nouvelles lues (#[prsize]#): Ceci est une simple archive des nouvelles déja lues.
-Outgoing News (#[ousize]#): here your can see news entries that you have created. These news are currently broadcasted to other peers.==Nouvelles sortantes (#[ousize]#): Vous pouvez y lire les nouvelles que vous avez écrites vous même. Ces nouvelles sont diffusées immédiatement aux autres noeud.
you can stop the broadcast if you want.==vous pouvez suspendre la diffusion, si vous le souhaitez.
-Published News (#[pusize]#): your news that have been broadcasted sufficiently or that you have removed from the broadcast list.==Nouvelles publiées (#[pusize]#):Vos nouvelles qui ont été suffisamment diffusées ou que vous avez retirées de votre liste de diffusion.
Originator==Initiateur
Created==Créé
Category==Categorie
Received==Reçu
Distributed==Distribué
Attributes==Attributs
-Process Selected News==Traiter les nouvelles sélectionnées
-Delete Selected News==Supprimer les nouvelles sélectionnées
-Abort Publication of Selected News==Annuler la publication des nouvelles sélectionnées
-Delete Selected News==Supprimer les nouvelles sélectionées
-Process All News==Traiter toutes les nouvelles
-Delete All News==Supprimer toutes les nouvelles
-Abort Publication of All News==Annuler la publication de toutes les nouvelles
-Delete All News==Supprimer toutes les nouvelles
+"Incoming News"=="Nouvelles entrantes"
+"Outgoing News"=="Nouvelles sortantes"
+"Processed News"=="Nouvelles traitées"
+"Published News"=="Nouvelles publiées"
+Overview==Vue d'ensemble
+Publishing of added or modified translation for the user interface. Other peers may include it in their local translation list.==Publication de traduction ajoutée ou modifiée pour l'interface utilisateur. D'autres pairs peuvent l'inclure dans leur liste de traduction locale.
#-----------------------------
#File: Performance_p.html
#---------------------------
-==
Performance Settings==Paramètres de performance
Memory Settings==Mémoire
Memory reserved for JVM==Mémoire allouée à la JVM
MByte==Mégaoctets
"Set"=="Appliquer"
Resource Observer==Contrôle des ressources
-Memory state==État de la mémoire
->proper<==>sain<
->exhausted<==>espace libre insuffisant<
-Reset state==Réinitialiser l'état
-Manually reset to 'proper' state==Réinitialiser manuellement à l'état 'sain'
Enough memory is available for proper operation.==Il y a suffisamment de mémoire à disposition pour un fonctionnement correct.
Within the last eleven minutes, at least four operations have tried to request memory that would have reduced free space within the minimum required.==Durant les onze dernières minutes, au moins quatre opérations ont tenté d'obtenir une quantité de mémoire qui aurait réduit l'espace libre en-deçà du minimum requis.
Minimum required==Minimum requis
-Amount of memory (in Mebibytes) that should at least be free for proper operation==Quantité de mémoire minimale (en Mébioctets) qui devrait rester disponible pour un fonctionnement correct
-Disable DHT-in below.==Désactive la réception de DHT en-dessous.
Free space disk==Espace disque disponible
Steady-state minimum==Valeur nominale
-Amount of space (in Mebibytes) that should be kept free as steady state==Espace disque nominal (en Mébioctets) à laisser libre
-MiB==Mio
-Disable crawls when free space is below.==Désactive l'indexation lorsque l'espace disque disponible est inférieur.
Absolute minimum==Limite minimale stricte
-Amount of space (in Mebibytes) that should at least be kept free as hard limit==Quantité minimale d'espace disque (en Mébioctets) à laisser impérativement libre
-Disable DHT-in when free space is below.==Désactive la réception de DHT lorsque l'espace disque disponible est inférieur.
->Autoregulate<==>Réguler automatiquement<
when absolute minimum limit has been reached.==lorsque la limite minimale stricte est atteinte.
-The autoregulation task performs the following sequence of operations, stopping once free space disk is over the steady-state value==La fonction d'autorégulation exécute la séquence d'opérations suivante, stoppée dès que l'espace disque disponible est supérieur à la valeur nominale
delete old releases==supprime les paquets d'installation anciens
delete logs==supprime les journaux d'exécution
delete robots.txt table==supprime la table robots.txt
@@ -1277,256 +1354,246 @@ throw away large crawl queues==supprime les grandes files d'attente d'indexation
cut away too large RWIs==nettoie les entrées d'index distribué (RWI) trop grandes
Used space disk==Espace disque utilisé
Steady-state maximum==Valeur nominale
-Maximum amount of space (in Mebibytes) that should be used as steady state==Occupation nominale de l'espace disque (en Mébioctets)
-Disable crawls when used space is over.==Désactive l'indexation lorsque l'espace disque utilisé est supérieur.
Absolute maximum==Limite maximale stricte
-Maximum amount of space (in Mebibytes) that should be used as hard limit==Occupation maximale de l'espace disque (en Mébioctets) à respecter impérativement
-Disable DHT-in when used space is over.==Désactive la réception de DHT lorsque l'espace disque utilisé est supérieur.
when absolute maximum limit has been reached.==lorsque la limite maximale stricte est atteinte.
-The autoregulation task performs the following sequence of operations, stopping once used space disk is below the steady-state value==La fonction d'autorégulation exécute la séquence d'opérations suivante, stoppée dès que l'espace disque utilisé est inférieur à la valeur nominale
-> free space==> d'espace libre
-disable DHT-in below==Désactiver la réception de DHT en-dessous de
-Accepted change. This will take effect after restart of YaCy==Modification enregistrée. Elle sera effective après redémarrage de YaCy
-restart now==redémarrer maintenant
-Confirm Restart==Confirmer le redémarrage
refresh graph==Rafraîchir le graphique
-Save==Appliquer
Changes take effect immediately==Prise en compte immédiate
Online Caution Settings:==Mise en pause
This is the time that the crawler idles when the proxy is accessed, or a local or remote search is done.==Temps de mise en pause de l'indexeur lorsque le proxy est utilisé, ou qu'une recherche locale ou distante est effectuée.
The delay is extended by this time each time the proxy is accessed afterwards.==Le temps de pause est allongé de cette même valeur à chaque fois qu'une des fonctionnalités concernées est réutilisée pendant la pause.
This shall improve performance of the affected process (proxy or search).==Cela peut permettre d'améliorer les performances des fonctionnalités concernées (proxy ou recherche).
-(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 occurrence==Temps de pause de l'indexeur (en ms)
Local Search:==Recherche locale :
Remote Search:==Recherche distante :
"Enter New Parameters"=="Appliquer"
-Online Caution Settings==Mise en pause
+"Amount of memory (in Mebibytes) that should at least be free for proper operation"=="Quantité de mémoire (en Mebioctets) qui devrait au moins être libre pour un bon fonctionnement"
+"Amount of space (in Mebibytes) that should be kept free as steady state"=="Quantité d'espace (en Mebioctets) qui devrait être maintenu libre à l'état d'équilibre"
+"Amount of space (in Megabytes) that should at least be kept free as hard limit"=="Quantité d'espace (en mégaoctets) qui devrait au moins rester libre comme limite dure"
+"Distributed Hash Table"=="Tableau de répartition des cash"
+"Exhausted state info"=="Informations sur l'état épuisé"
+"Free space disk autoregulation info"=="Informations sur l'autorégulation du disque d'espace libre"
+"Java Virtual Machine"=="Java Virtual Machine"
+"Manually reset to 'proper' state"=="Réinitialiser manuellement à l'état 'proper'"
+"Maximum amount of space (in Mebibytes) that should be used as hard limit"=="Quantité maximale d'espace (en Mebioctets) qui devrait être utilisée comme limite dure"
+"Maximum amount of space (in Mebibytes) that should be used as steady state"=="Quantité maximale d'espace (en Mebioctets) qui devrait être utilisée comme état d'équilibre"
+"Mebibyte"=="Mebibyte"
+"PerformanceGraph"=="PerformanceGraph"
+"Proper state info"=="Informations sur l'état"
+"Random Access Memory"=="Mémoire d'accès aléatoire"
+"Reset state"=="Réinitialisation de l'état"
+"Restart now"=="Redémarrez maintenant"
+"Save"=="Enregistrer"
+"Used space disk autoregulation info"=="Informations sur l'autorégulation du disque d'espace utilisé"
+MiB free space. Disable DHT-in below.==MiB d'espace libre. Désactiver l'entrée DHT en dessous.
+MiB. Disable DHT-in when free space is below.==MiB. Désactiver l'entrée DHT lorsque l'espace libre est inférieur à ce seuil.
+MiB. Disable DHT-in when used space is over.==MiB. Désactiver l'entrée DHT lorsque l'espace utilisé dépasse ce seuil.
+MiB. Disable crawls when free space is below.==MiB. Désactiver les crawls lorsque l'espace libre est inférieur à ce seuil.
+MiB. Disable crawls when used space is over.==MiB. Désactiver les crawls lorsque l'espace utilisé dépasse ce seuil.
+RAM==RAM
+exhausted==épuisé
+Accepted change. This will take effect after restart of YaCy.==Modification acceptée. Elle prendra effet après le redémarrage de YaCy.
+Autoregulate==Autorégulation
+Memory state :==État de mémoire:
+Proxy:==Proxy:
+Restart now==Redémarrez maintenant
+The autoregulation task performs the following sequence of operations, stopping once free space disk is over the steady-state value :==La tâche d'autorégulation effectue la séquence d'opérations suivante, s'arrêtant une fois que le disque d'espace libre est au-dessus de la valeur de l'état d'équilibre:
+The autoregulation task performs the following sequence of operations, stopping once used space disk is below the steady-state value:==La tâche d'autorégulation effectue la séquence d'opérations suivante, s'arrêtant une fois le disque d'espace utilisé est en dessous de la valeur de l'état d'équilibre:
+proper==proper
#-----------------------------
#File: PerformanceQueues_p.html
+Description==Description
#---------------------------
Performance Settings of Queues and Processes==Paramètres de performance des files et des processus
Scheduled tasks overview and waiting time settings:==Aperçu des tâches programmées et paramètres d'attente:
Queue Size==Taille de file
->Total==>Totale
-Block Time==Temps de blocage
-Sleep Time==Temps de veille
-Exec Time==Temps d'execution
->Cycles==>Cycles
->Idle==>Inactif
->Busy==>Actif
Short Mem Cycles==Short Mem Cycles
->per Cycle==>par cycle
->per Busy-Cycle==par cycle inactif
->Memoy Use==>Usage mémoire
->Delay between==>Délai entre
->idle loops==>boucles inactives
->busy loops==>boucles actives
Minimum of Required Memory==Minimum de mémoire requis
Full Description==Description comlète
-Submit New Delay Values==Soumettre valeur de nouveau délai
-Reset To Default Values==Réinitialiser aux valeurs par défaut
Changes take effect immediately==Les modifications prendront effet immédiatement
Cache Settings:==Paramètres de cache:
-Words in RAM Cache:==Mots en mémoire cache:
This is the current size of the word caches.==C'est la taille actuelle du cache de mots.
-The smaller this number, the faster the shut-down procedure will be.==La procédure d'arrêt sera rapide si ce nombre est petit
-The maximum of this cache can be set below.==Le maximum de ce cache peut être paramétré ci-dessous.
Maximum URLs currently assigned to one cached word:==Nombre maximum d'URL actuellement assigné à un mot du cache:
This is the maximum size of URLs assigned to a single word cache entry.==C'est la taille maximal des URLs assignées à un seul mot du cache.
If this is a big number, it shows that the caching works efficiently.==Ce nombre est grand si le cache fonctionne efficacement.
-Maximum Age of Word in cache:==Age maximal des mots du cache:
-This is the maximum age of a word index that is in the RAM cache in minutes.==C'est l'age maximal d'un index de mot dans le cache en minute.
-Minimum Age of Word in cache:==Age minimal des mots du cache:
-This is the minimum age of a word index that is in the RAM cache in minutes.==C'est l'age minimum d'un index de mots qui est dans le cache en minutes
-Maximum number of Word Caches, low limit:==Nombre maximal de mots dans le cache, limite basse:
-Maximum number of Word Caches, high limit:==Nombre maximal de mots dans le cache, limite haute:
This is is the number of word indexes that shall be held in the==C'est le nombre d'index de mots qui doivent être gardés dans le
ram cache during indexing. When YaCy is shut down, this cache must be==cache mémoire pendant l'indexation. Quand YaCy est stoppé, ce cache doit
flushed to disc; this may last some minutes.==être transféré sur disque; cela peut durer quelques minutes.
-The low limit is valid for crawling tasks, the high limit is valid==La limite basse est valide pour les tâches de crawl, la limite haute est valide
-for search and DHT transmission tasks.==pour les tâches de recherche et de transmission de DHT.
-Enter New Cache Size==Entrer une nouvelle taille de cache
-Thread pool settings:==Paramètres du pool de threads:
maximum Active==max. actif
-maximum Idle==max. inactif
-minimum Idle==min. inactif
current Active==actif courrant
-current Idle==inactif courrant
-Enter new Threadpool Configuration==Entrer un nouvelle configuration du pool de thread
-Proxy Performance Settings:==Paramètres de performance du proxy:
-#Online Caution Delay==
-This is the time that the crawler idles when the proxy is accessed.==C'est le temps d'inactivité du crawler lorsque le proxy est accédé.
-The delay is extended by this time==Le délai normal est prolongé de cette durée
-each time the proxy is accessed afterwards. This shall improve performance of the proxy throughput.==chaque fois que le proxy est accédé. Cela améliore les performances de débit du proxy.
-current delta is==Depuis le dernier accés au proxy
-since last proxy access.==sont passés
-Enter New Parameters==Entrer de nouveaux paramètres
milliseconds==millisecondes
+"Enter New Cache Size"=="Saisissez une nouvelle taille de cache"
+"Enter new Threadpool Configuration"=="Saisissez une nouvelle configuration Threadpool"
+"Number of connection requests being blocked awaiting a free connection"=="Nombre de demandes de connexion bloquées en attendant une connexion libre"
+"Number of connections currently being used to execute requests."=="Nombre de connexions actuellement utilisées pour exécuter des requêtes."
+"Number of reusable idle connections"=="Nombre de connexions de ralenti réutilisables"
+"Re-set to default"=="Réinitialiser en fonction de la valeur par défaut"
+"Reverse Word Index"=="Index des mots inversés"
+"Submit New Delay Values"=="Soumettre de nouvelles valeurs de retard"
+"Submit New Values"=="Soumettre de nouvelles valeurs"
+"Total maximum number of simultaneously open connections in the pool"=="Nombre maximal total de connexions ouvertes simultanément dans le pool"
+"When the system load average is over the specified value, that type of remote search request is not used to fill search results."=="Lorsque la moyenne de charge du système dépasse la valeur spécifiée, ce type de requête de recherche à distance n'est pas utilisé pour remplir les résultats de recherche."
+RWI==RWI
+Active==Actif
+Busy Cycles==Cycles occupés
+Connection Pool==Pool de connexion
+Current statistics==Statistiques actuelles
+Delay between busy loops==Retard entre les boucles occupées
+Delay between idle loops==Retard entre les boucles de ralenti
+Exec Time per Busy-Cycle (millis)==Temps d'exercice par cycle occupé (millis)
+General==Général
+High CPU Cycles==Cycles de haut niveau du processeur
+Idle==Inactif
+Idle Cycles==Cycles Idle
+Maximum age of a word:==Âge maximal d'un mot:
+Maximum number of words in cache:==Nombre maximal de mots en cache:
+Maximum of System-Load==Maximum de la charge du système
+Maximum system load==Charge maximale du système
+Memory Use per Busy-Cycle (kbytes)==Mémoire Utiliser par cycle occupé (koctets)
+Minimum age of a word:==Âge minimum d'un mot:
+Outgoing connections pools settings :==Paramètres des piscines de connexions sortantes:
+Pending==En attente
+RAM Cache==Cache RAM
+Remote Solr servers==Serveurs Solr distants
+Remote search requests:==Demandes de recherche à distance:
+Search requests performed on remote peers Solr indexes==Requêtes de recherche effectuées sur des pairs distants Index Solr
+Search requests performed on remote peers distributed Reverse Word Index==Demandes de recherche effectuées sur des pairs distants distribués Inverse Word Index
+Sleep Time per Cycle (millis)==Temps de sommeil par cycle (millis)
+Solr==Solr
+The indexing cache speeds up the indexing process, the DHT cache holds indexes temporary for approval.==L'indexation du cache accélère le processus d'indexation, le cache DHT tient des index temporaires pour approbation.
+The maximum of this caches can be set below.==Le maximum de ces caches peut être défini ci-dessous.
+This is the maximum age of a word in an index in minutes.==C'est l'âge maximum d'un mot dans un index en minutes.
+This is the minimum age of a word in an index in minutes.==C'est l'âge minimum d'un mot dans un index en minutes.
+Thread==Thread
+Thread Pool==Pool de fils
+Thread Pool Settings:==Paramètres de la piscine de filetage:
+Total maximum==Maximum total
+Total Block Time==Durée totale du bloc
+Total Cycles==Total des cycles
+Total Exec Time==Durée totale de l'exercice
+Total Sleep Time==Temps total de sommeil
+Type==Type
+Words in RAM cache: (Size in KBytes)==Mots dans le cache RAM: (Taille en KBytes)
+kbytes==kbytes
+load==load
#-----------------------------
#File: PerformanceMemory_p.html
+Delete==Supprimer
+Size==Taille
+refresh graph==Rafraîchir le graphique
#---------------------------
-==
Performance Settings for Memory==Paramètre de performance pour la mémoire
Memory Usage==Utilisation mémoire
After Startup==Après démarrage
-After Initializations==Après initialisation
before GC==avant GC
after GC==après GC
->Now==>Maintenant
-before <==Avant <
-Next Startup==Après Démarrage
Description==Description
maximum memory that the JVM will attempt to use==mémoire maximale que la JVM utilisera
->Available<==>Disponible<
total available memory including free for the JVM within maximum==mémoire disponible totale incluant celle disponible pour la JVM jusqu'au maximum
->Total<==>Total<
total memory taken from the OS==mémoire allouée totale de l'OS.
->Free<==>Libre<
free memory in the JVM within total amount==mémoire disponible dans le maximum alloué à la JVM
->Used<==>Utilisée<
used memory in the JVM within total amount==mémoire utilisée dans le maximum alloué à la JVM
-Re-Configuration of Startup Paramenters:==Reconfiguration des paramètres de démarrage
-Changes take effect after re-start of YaCy==Les modifications prendront effet après le redémarrage de YaCy
-RAM Cache for Database Files:==Cache RAM pour les fichiers de base de données:
Chunk Size==Taille de bloc
-Memory Occupation==Occupation mémoire
-Needed ==Nécessaire
- DB Size==Taille de la DB
->Empty==>Vide
-High Prio==Prio. haute
-Medium Prio==Prio. moyenne
-Low Prio==Prio. basse
-Used Now==Utilisé maintenant
-Assigned Max==Max. assigné
-Default Max==Max. standard
-Good Max==Bon max.
-Best Max==Meilleur max.
-The Assortment Cluster stores most of the page indexes.==Le cluster d'assortiments stocke la plupart des index de pages.
-Flushing speed of the temporary RWI cache depends on the size of this file cache. Increasing the space of this==La vitesse de transfert du cache RWI temporaire dépends de la taille de ce fichier cache. Augmenter l'espace de ce
-cache will speed up crawls with a depth > 3.==le cache accélère les crawls avec une profondeur supérieure à 3.
-HTTP Response Header==Réponse HTTP
-The Response Header database stores the HTTP heades that other servers send when YaCy retrieves web pages==La base d'entêtes de réponses stocke les entêtes HTTP que les autres serveurs envoient lorsque YaCy retrouve les pages Web
-during proxy mode, when performing crawls or if it fetches pages for snippet generation.==durant le mode proxy en exécutant des crawl ou en parcourant les pages pour la génération d'extraits.
-Increasing this cache will be most important for a fast proxy mode.==Augmenter ce cache est important pour avoir un mode proxy rapide.
-'loaded' URLs==URLs chargées
-This is the database that holds the hash/url - relation and properties regarding the url like load date and server date.==C'est la base de données qui maintient la relation hachage/url et les propriétés concernant l'URL comme la date de chargement et la date du serveur.
-This cache is very important for a fast search process.==Ce cache est très important pour un processus de recherche rapide.
-Increasing the cache size will result in more search results and less IO during DHT transfer.==Augmenter la taille du cache augmente le nombre de résultats de recherche et diminue le nombre d'E/S pendant le transfert de DHT.
-'noticed' URLs==URLs 'remarquées'
-A noticed URL is one that was discovered during crawling but was not loaded yet.==Une URL remarquée est celle qui est découverte pendant le crawl et qui n'était pas déjà chargée.
-Increasing the cache size will result in faster double-check during URL recognition when doing crawls.==Augmenter la taille du cache accélère le double contrôle pendant la reconnaisance d'URL des crawls.
-'error' URLs==URLs 'en erreur'
-URLs that cannot be loaded are stored in this database. It is also used for double-checked during crawling.==URLs qui ne peuvent pas être chargés dans la base de données.
-Increasing the cache size will most probably speed up crawling slightly, but not significantly.==Augmenter ce cache accélère légèrement le crawl, mais pas significativement.
-DHT Control==Contrôle DHT
-This is simply the cache for the seed-dbs==C'est simplement le cache pour le seed-dbs
-active, passive, potential==actif, passif, potentiel
-This cache is divided into three equal parts.==Ce cache est divisé en trois parts égales
-Increasing this cache may speed up many functions, but we need to test this to see the effects.==Augmenter ce cache accélère beaucoup de fonctions, mais nous devons tester ses effets.
->Messages==>Messages
-The Message cache for peer-to-peer messages. Less important.==Le cache de message des messages pair à pair. Moins important.
-The YaCy-Wiki uses a database to store its pages.==Le wiki YaCy utilise une base de données pour stocker ses pages.
-This cache is divided in two parts, one for the wiki database and one for its backup.==Ce cache est divisé en deux parties, une pour le wiki et l'autre pour son backup.
-Increasing this cache may speed up access to the wiki pages.==Augmenter ce cache accélère les pages wiki.
-#The News-DB stores property-lists for news that are included in seeds.==Die News-DB speichert Eigenschaftslisten für News die in Seeds enthalten sind.
-Increasing this cache may speed up the peer-ping.==Augmenter ce cache accélère le ping d'un peer.
-The robots.txt DB stores downloaded records from robots.txt files.==La DB robots.txt stocke les enregistrements téléchargés des fichiers de robots.txt.
-Increasing this cache may speed up validation if crawling of the URL is allowed.==Augmenter ce cache accélère la validation si le crawl des URLs est autorisé.
-Crawl Profiles==Profiles de crawl
-The profile database stores properties for each crawl that is started on the local peer.==La base de profiles stocke les propriétés de chaque crawl lancé sur le pair local.
-Increasing this cache may speed up crawling, but not much space is needed, so the effect may be low.==Augmenter ce cache accélère le crawl, mais il utilise peu d'espace, l'effet sera faible.
->Totals==>Totaux
-Sum of memory amounts==Somme des quantités de mémoire
-Re-Configuration:==Reconfiguration:
-"Set"=="Enregistrer"
-these custom values==ces valeurs utilisateur
-all default values==toutes les valeurs standard
-all recom- mended values==toutes les valeurs recommandées
-all optimum values==toutes les valeurs optimal
-Write Cache Object Allocation:==Ecrire le cache d'allocatin d'objet
-now alive in write cache==Maintenant active dans la mémoire du cache d'écriture
-#currently held in write buffer heap==Actuellement entrain d'écrire le tampon
+"PerformanceGraph"=="PerformanceGraph"
+(ARC)==(ARC)
+After Initializations after GC==Après les initialisations après GC
+After Initializations before GC==Après les initialisations avant GC
+Available==Disponible
+DNSCache/Hit==DNSCache/Hit
+DNSCache/Miss==DNSCache/Miss
+DNSNoCache==DNSNoCache
+Free==Libre
+HashBlacklistedCache==HashBlacklistedCache
+Hit==Succès
+Insert==Insertion
+Key==Clé
+Max==Max
+Miss==Échec
+Needed Memory==Mémoire nécessaire
+Now==Maintenant
+Object Index Caches==Caches de l'index des objets
+Other Caching Structures==Autres structures de mise en cache
+Search Event Cache==Recherche Event Cache
+Table==Tableau
+Table RAM Index==Index de la RAM du tableau
+Total==Total
+Type==Type
+Used==Utilisé
+Used Memory==Mémoire utilisée
+Value==Valeur
+simulate short memory status==simuler l'état de mémoire courte
+use Standard Memory Strategy==utiliser la stratégie de mémoire standard
#-----------------------------
#File: PerformanceSearch_p.html
+Comment==Commentaire
+Query==Requête
#---------------------------
-Performance Settings of Search Sequence==Paramètres de performances des séquences de recherche
-Timing Settings of Search Sequence==Paramètres de timing des séquences de recherche
-Settings for local search profile:==Paramètres des prfils de recherche locaux:
-Entity==Entitée
-#Collection==
-Join==Joindre
-Pre-Sort==Trier
-#URL Fetch==
-Post-Sort==Trier les résultats
-Filter==Filtre
-#Snippet-Fetch==
-execution Time==Temps d'exécution
-percentage; sum of this must be 100==pourcentage; la somme doit faire 100
-result count==Comteur de résultats
-percentage of requested amount==Pourcentage des requêttes en amont
-Submit New Profile Values==Soumettre de nouvelles valeurs de profil
-Reset To Default Values==Eéinitialiser aux valeurs par défaut
-Your settings are valid and will be used for next search.==Vos paramètres sont valides et seront utilisés pour la prochaine recherche.
-Reset to default settings done.==Réinitialisation aux valeurs par défaut effectuée.
-Your settings cannot be accepted: sum of execution time percentage is not 100==Vous paramètres ne peuvent pas être acceptés: la somme des pourcentages de temps d'exécution n'est pas 100.
Timing results of latest search request:==Timing des résultats de la dernière requête:
-absolute milliseconds==absolu, millisecondes
-absolute amount==valeur absolue
The network picture below shows how the latest search query was solved by asking corresponding peers in the DHT:==L'image du réseau ci-dessous montre comment la dernière demande de recherche a été résolue en interrogeant les pairs correspondants dans la DHT:
+"Search event picture"=="Image de l'événement de recherche"
+Delta (ms)==Delta (ms)
+Duration (ms)==Durée (ms)
+Event==Événement
+Result-Count==Result-Count
+Search Sequence Timing==Déroulement de la séquence de recherche
+Time==Temps
+green -> request has terminated==vert - la demande > a pris fin
+grey -> the search target hash order position(s) (more targets if a dht partition is used)==gris - > la ou les positions d'ordre de hachage de la cible de recherche (plus de cibles si une partition dht est utilisée)
+red -> request list alive==rouge - > liste de demandes vivante
#-----------------------------
#File: ProxyIndexingMonitor_p.html
+Size==Taille
#---------------------------
-Index Monitor for Proxy Indexing==Moniteur d'index du proxy d'indexation
-This is the control page for web pages that your peer has indexed during the current application run-time==C'est la page de contrôle des pages web indexées par votre pair durant l'exécution actuelle de l'application
-as result of proxy fetch/prefetch.==par visites des pages.
-No personal or protected page is indexed==Aucune page personnelle ou protégée
those pages are detected by properties in the HTTP header (like Cookie-Use, or HTTP Authorization)==ces pages sont identifiées par leurs propriétés dans l'entête HTTP (par exemple: Cookies ou autorisations HTTP)
-or by POST-Parameters (either in URL or as HTTP protocol)==ou par les paramètres de POST (par exemple dans une URL ou dans le protocol HTTP)
-and automatically excluded from indexing.==et automatiquement exclues de l'indexation
Proxy pre-fetch setting:==Paramétre du proxy d'indexation
this is an automated html page loading procedure that takes actual proxy-requested==C'est une procédure automatique de chargement de page html qui prend les URLs actuellement
-URLs as crawling start points for crawling.==visitées comme point de départ d'indexation.
+URLs as crawling start points for crawling.==visitées comme point de départ d'indexation.
Prefetch Depth==Profondeur d'exploration
A prefetch of 0 means no prefetch; a prefetch of 1 means to prefetch all==Une profondeur de 0 n'indexera que la page visitée, une profondeur de 1 signifie que toutes pages liées
embedded URLs, but since embedded image links are loaded by the browser==seront visitées, mais comme les images liées seront chargées
this means that only embedded href-anchors are prefetched additionally.==cela signifie que seules les ancres HREF seront visitées.
Store to Cache==enregistrer en cache
-It is almost always recommended to set this on. The only exception is that you have another caching proxy running as secondary proxy and YaCy is configured to used that proxy in proxy-proxy - mode.==Il est recommendé de toujours activer cette option. La seule exception est si vous avez un proxy de cache tournant comme proxy secondaire et si YaCy est configuré pour utiliser ce proxy en mode proxy-proxy.
+It is almost always recommended to set this on. The only exception is that you have another caching proxy running as secondary proxy and YaCy is configured to used that proxy in proxy-proxy - mode.==Il est recommendé de toujours activer cette option. La seule exception est si vous avez un proxy de cache tournant comme proxy secondaire et si YaCy est configuré pour utiliser ce proxy en mode proxy-proxy.
Do Remote Indexing==Indexation distante
-If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Si activé, le crawler contactera les autres pairs et les utiliera comme indexateur distants pour votre crawl.
-If you need your crawling results locally, you should switch this off.==Si vous aves besoins des résultats de crawl localement, vous devez le désactiver.
+If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Si cette option est activée, le crawler contactera d'autres pairs et les utilisera comme indexeurs distants pour votre crawl.
+If you need your crawling results locally, you should switch this off.==Si vous avez besoin des résultats de crawl localement, vous devez désactiver cette option.
Only senior and principal peers can initiate or receive remote crawls.==Seuls les pairs seniors et principal peuvent initier ou recevoir des crawls distants.
Please note that this setting only take effect for a prefetch depth greater than 0.==Veuillez noter que ce paramètre ne prendra effet que pour les profondeur d'exploration supérieures à 0.
Proxy generally==Proxy généralement
Path==Chemin
The path where the pages are stored (max. length 300)==Le dossier ou les pages sont stockées (300 caractères maximum)
-Size==Taille
-The size in MB of the cache.==La taille du cache en Mo.
+The size in MB of the cache.==La taille du cache en Mo.
"Set proxy profile"=="Enregistrer le profil du proxy"
-The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.==Le fichier DATA/PLASMADB/crawlProfiles0.db est manquant ou corrompu.
-Please delete that file and restart.==Supprimez ce fichier et redémarrez Yacy s'il vous plait.
-Pre-fetch is now set to depth==L'exploration est paramètrée avec une profondeur de
-Caching is now #(caching)#off::on#(/caching)#.==Le cache est actuellement #(caching)#off::on#(/caching)#.
-Cachepath is now set to '#[return]#'. Please move the old data in the new directory.==Le cache est maintenant au chemin '#[return]#'. Déplacez, s'il vous plait les anciennes données dans le nouveau dossier.
-Cachesize is now set to #[return]#MB.==La taille du cache est maintenant paramétrée à #[return]#Mo
Changes will take effect after restart only.==Les changements prendront effet après le redémarrage de YaCy.
-Remote Indexing is now #(crawlOrder)#off::on==L'indexation distante est maintenant #(crawlOrder)#off::on
-An error has occurred:==Une erreur est arrivée:
You can see a snapshot of recently indexed pages==Vous pouvez voir un cliché des pages récement indexées
-on the==sur la
-Page.==page.
+Caching is now==Caching est maintenant
+Local Media Indexing is now==L'indexation des médias locaux est maintenant
+Local Text Indexing is now==L'indexation de texte local est maintenant
+Remote Indexing is now==L'indexation distante est maintenant
+The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.==Le fichier DATA/PLASMADB/crawlProfiles0.db est manquant ou corrompu.
+Do Local Media-Indexing==Do Local Media-Indexing
+Do Local Text-Indexing==Faire l'Indexage de texte local
+If this is on, all pages (except private content) that passes the proxy is indexed.==Si c'est sur, toutes les pages (à l'exception du contenu privé) qui passent le proxy sont indexées.
+Indexing with Proxy==Indexation avec Proxy
+Please delete that file and restart.==S'il vous plaît supprimer ce fichier et redémarrer.
+Proxy Auto Config:==Config Auto Proxy:
+This is the same as for Local Text-Indexing, but switches only the indexing of media content on.==C'est la même chose que pour l'Indexage de texte local, mais ne change que l'indexation du contenu des médias.
+When scraping proxy pages then no personal or protected page is indexed;==Lors du scraping des pages proxy, aucune page personnelle ou protégée n'est indexée;
+YaCy can be used to 'scrape' content from pages that pass the integrated caching HTTP proxy.==YaCy peut être utilisé pour 'scrape' du contenu à partir de pages qui passent le proxy HTTP de cache intégré.
+off==désactivé
+on==activé
+or by POST-Parameters (either in URL or as HTTP protocol) and automatically excluded from indexing.==ou par POST-Paramètres (en URL ou en protocole HTTP) et automatiquement exclus de l'indexation.
+this controls the proxy auto configuration script for browsers at http://localhost:8090/autoconfig.pac==ceci contrôle le script de configuration automatique proxy pour les navigateurs à http://localhost:8090/autoconfig.pac
+whether the proxy should only be used for .yacy-Domains==si le proxy ne doit être utilisé que pour.yacy-Domains
#-----------------------------
#File: QuickCrawlLink_p.html
#---------------------------
-Quick Crawl Link==Lien d'exploration rapide
Quickly adding Bookmarks:==Ajouter rapidement aux favoris:
Simply drag and drop the link shown below to your Browsers Toolbar/Link-Bar.==Il suffit de glisser le lien ci-dessous vers votre barre d'outils/barre de liens.
If you click on it while browsing, the currently viewed website will be inserted into the YaCy crawling queue for indexing.==Si vous cliquez dessus en cours de navigation, le site Web actuellement affichée sera inséré dans la file d'exploration en attente pour l'indexation.
@@ -1536,750 +1603,483 @@ Link:==lien:
Status:==Status:
URL successfully added to Crawler Queue==URL ajouté à la file d'attente avec succès.
Malformed URL==URL malformée
-Unable to create new crawling profile for URL:==Impossible de créer le nouveau profil pour l'exploration Web:
-Unable to add URL to crawler queue:==Impossible d'ajouter des URL dans la file d'exploration:
#-----------------------------
#File: Settings_p.html
+Advanced Settings==Paramètres avancés
#---------------------------
-YaCy '#[clientname]#': Settings==YaCy '#[clientname]#': Paramètres
-
Settings
==
Paramètres
If you want to restore all settings to the default values,==Si vous souhaitez rétablir les valeurs par défaut des paramètres,
-but forgot your administration password, you must stop the proxy,==Mais que vous avez oublié votre mot de passe d'administration strong>, vous devez arrêter le proxy,
+but forgot your administration password, you must stop the proxy,==mais que vous avez oublié votre mot de passe d'administration, vous devez arrêter le proxy,
delete the file 'DATA/SETTINGS/yacy.conf' in the YaCy application root folder and start YaCy again.==Supprimer le fichier 'DATA/SETTINGS/yacy.conf'dans le dossier racine de yacy et démarrer YaCy à nouveau.
-Administration Account Settings==Paramètres du compte administrateur
Server Access Settings==Paramètres d'accès au serveur
-Proxy Access Settings==Paramètres Proxy
-Content Parser Settings==Paramètres de l'analyseur de contenu
Crawler Settings==Paramètres du Crawler
-HTTP Networking==Réseau HTTP
Remote Proxy (optional)==Proxy à distance (optionel)
-Port Forwarding (optional)==Redirection de ports (optionel)
-System Behaviour Settings==Paramètres du système
Seed Upload Settings==Paramètres d'envoi de Seed
Message Forwarding (optional)==Redirection de messages (optionel)
-#-----------------------------
-
-#File: Settings_ProxyAccess.inc
-#---------------------------
-#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).
-
-#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-Noeuds oder HTTP-Clients warten soll.
-#You have four possibilities to specify the address:==Sie haben vier Möglichkeiten die Adresse anzugeben:
-#defining a port only==nur einen Port angeben
-#e.g. 8080==z.B. 8080
-#defining IP address and port==eine IP-Adresse und Port angeben
-#e.g. 192.168.0.1:8080==z.B. 192.168.0.1:8080
-#defining host name and port==einen Hostnamen und Port angeben
-#e.g. home:8080==z.B. home:8080
-#defining interface name and port==einen Interface-namen und Port angeben
-#e.g. #eth0:8080==z.B. #eth0:8080
-#Hint: Dont forget to change your firewall configuration after you have changed the port.==Hinweis: Denken Sie daran Ihre Firewalleinstellungen zu ändern nachdem Sie den Port geändert haben.
-#Proxy and http-Server Administration Port:==Proxy und HTTP-Server Administrations Port:
-#Changes will take effect in 5-10 seconds==Die Änderungen werden in 5-10 Sekunden wirksam
-#Server Access Restrictions==Server Zugangsbeschränkungen
-#You can restrict the access to this proxy/server using a two-stage security barrier:==Sie können den Zugang zu diesem Proxy/Server mit einer 2-stufigen Sicherheitsbarriere einschränken:
-#define an access domain with a list of granted client IP-numbers or with wildcards==geben Sie einen Netzwerkadressraum mithilfe einer Liste zugelassener Client-IP-Adressen oder mit Platzhaltern an
-#define an user account with an user:password - pair==geben Sie einen Nutzeraccount mit einem nutzer:passwort-Paar an
-#This is the account that restricts access to the proxy function.==Dies sind die Nutzer denen der Zugriff auf die Proxyfunktion gewährt wird.
-#You probably don't want to share the proxy to the internet, so you should set the IP-Number Access Domain to a pattern that corresponds to you local intranet.==Sie wollen den Proxy vermutlich nicht im Internet zur Verfügung stellen, deshalb sollten Sie den IP-Adressraum so einstellen, dass er auf Ihr lokales Intranet zutrifft.
-#The default setting should be right in most cases.==Die Standardwerte sollten in den meisten Fällen richtig sein.
-#If you want, you can also set a proxy account so that every proxy user must authenticate first, but this is rather unusual.==Wenn Sie wollen können Sie auch Proxyaccounts erstellen, sodass sich jeder Proxynutzer zuerst anmelden muss, aber das ist eher unüblich.
-#IP-Number filter==IP-Adressen Filter
-#Use Via==Gibt an, ob der Proxy den Via-HTTP-Header
-#http header according to RFC 2616 Sect 14.45.==gemäß RFC 2616 Sect 14.45 senden soll.
-#"Submit"=="Speichern"
-#-----------------------------
-
-#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 kann einen anderen Proxy nutzen um sich zum Internet zu verbinden. Sie können die Adresse für den Remote Proxy hier eingeben.
-#Use remote proxy:==Nutze Remote Proxy:
-#Enables the usage of the remote proxy by yacy==Aktiviert die Nutzung des Remote Proxies durch YaCy
-#Use remote proxy for yacy <-> yacy communication==Nutze Remote Proxy für YaCy <-> YaCy Kommunikation
-#Specifies if the remote proxy should be used for the communication of this peer to other yacy peers.==Gibt an, ob der Remote Proxy für Kommunikation zwischen diesem und anderen YaCy-Noeuds genutzt werden soll.
-#Hint: Enabling this option could cause this peer to remain in junior status.==Hinweis: Dies könnte dazu führen, dass dieser Noeud im Junior-Status verbleibt.
-#Use remote proxy for https==Nutze Remote Proxy für HTTPS
-#Specifies if YaCy should forward ssl connections to the remote proxy.==Gibt an, ob YaCy SSL-Verbindungen zum Remote Proxy weiterleiten soll.
-#The ip address or domain name of the remote proxy==Die IP-Adresse oder der Domainname des Remote Proxy
-#the port of the remote proxy==Der Port des Remote Proxy
-#no-proxy adresses:==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
-#Changes will take effect immediately.==Änderungen sind sofort wirksam.
-#-----------------------------
-
-#File: Settings_ServerAccess.inc
-#---------------------------
-#Server Access Settings==Serverzugangs Einstellungen
-#IP-Number filter:==IP-Addressfilter:
-#Here you can restrict access to the server.==Hier können Sie den Zugang zum Server beschränken.
-#By default, the access is not limited,==Standardmäßig ist der Zugang unbeschränkt,
-#because this function is needed to spawn the p2p index-sharing function.==da dies notwendig ist um den P2P-Indextausch zu ermöglichen.
-#If you block access to your server (setting anything else than '*'), then you will also be blocked==Wenn Sie den Zugang zu Ihrem Server blockieren (Einstellen von irgendetwas anderem als '*') dann werden Sie auch davon ausgeschlossen
-#from using other peers' indexes for search service.==den Index anderer Noeuds zur Suche zu verwenden.
-#However, blocking access may be correct in enterprise environments where you only want to index your==Wie auch immer, in Unternehmensumgebungen kann ein Blockieren richtig sein,
-#company's own web pages.==wenn Sie nur die Unternehmenseigenen Websites indexieren wollen.
-#staticIP (optional):==statische IP (optional):
-#The staticIP can help that your peer can be reached by other peers in case that your==Die statische IP kann helfen Ihren Noeud für andere Noeuds erreichbar zu machen, falls Sie
-#peer is behind a firewall or proxy. You can create a tunnel through the firewall/proxy==hinter einer Firewall oder einem Proxy sind. Sie können einen Tunnel durch die Firewall/Proxy créer
-#(look out for 'tunneling through https proxy with connect command') and create==(sehen Sie nach "Tunnelung durch einen https Proxy mit verbinden-Befehl") und créer Sie
-#an access point for incoming connections.==einen Zugriffspunkt für eingehende Verbindungen.
-#This access address can be set here (either as IP number or domain name).==Diese Zugrifssadresse kann hier angegeben werden (oder als IP Nummer oder Domain-Name).
-#If the address of outgoing connections is equal to the address of incoming connections,==Wenn die Zugriffsadresse der ausgehenden Verbindungen dieselbe ist wie die der eingehenden Verbindungen,
-#you don't need to set anything here, please leave it blank.==brauchen Sie hier nichts angeben. Bitte lassen Sie das Feld leer.
-#ATTENTION: Your current IP is recognized as "#[clientIP]#".==ACHTUNG: Ihre aktuelle IP wird als "#[clientIP]#" erkannt.
-#If the value you enter here does not match with this IP,==Wenn der Wert, den Sie hier eingegeben haben, nicht mit dieser IP übereinstimmt,
-#you will not be able to access the server pages anymore.==wird es nicht möglich sein auf die Serverseiten zuzugreifen.
-
-#value="submit"==value="speichern"
-
-#-----------------------------
-
-#File: Settings_Seed.inc
-#---------------------------
-#Seed Upload Settings==Seed Upload Einstellungen
-#With these settings you can configure if you have an account on a public accessible==Mit diesen Einstellungen können Sie bestimmen ob Sie einen Account auf einem öffentlich zugänglichen
-#server where you can host a seed-list file.==Server haben, wo Sie eine Seed-Liste bereitstellen können.
-#General Settings:==Allgemeine Einstellungen:
-#If you enable one of the available uploading methods, you will become a principal peer.==Wenn Sie eine der verfügbaren Uploadmethoden aktivieren, werden Sie ein 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 have been changes to the seed-list.==jedoch nur wenn Änderungen an der Seed-Liste vorgenommen wurden.
-#Upload Method:==Uploadmethode:
-#Retry Uploading==Upload versuchen
-#Here you can specify which upload method should be used.==Hier können Sie auswählen welche Uploadmethode verwendet werden soll.
-#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: Settings_MessageForwarding.inc
-#---------------------------
-#Message Forwarding==Nachrichten Weiterleitung
-#With this settings you can activate or deactivate forwarding of yacy-messages via email.==Mit diesen Einstellungen können Sie die Weiterleitung von YaCy-Nachrichten per E-Mail aktivieren oder deaktivieren.
-#Enable message forwarding:==Aktiviere Nachrichten Weiterleitung:
-#Enabling/Disabling message forwarding via email.==Aktivieren/Deaktivieren der Nachrichten Weiterleitung per E-Mail.
-#Forwarding Command:==Weiterleitungskommando:
-#The command-line program that should be used to forward the message. e.g.:==Das Kommandozeilenprogramm, das verwendet werden soll um die Nachricht weiterzuleiten. z.B.:
-#Forwarding To:==Weiterleiten An:
-#The recipient email-address. e.g.:==Die E-Mail Adresse des Empfängers. z.B.:
-#Changes will take effect immediately.==Änderungen sind sofort wirksam.
-#-----------------------------
-
-#File: Settings_Crawler.inc
-#---------------------------
-#Generic Crawler Settings==Allgemeine Crawler Einstellungen
-#Connection timeout in ms==Verbindungs-Timeout in ms
-#means unlimited==schaltet die Begrenzung ab
-#Crawler Settings==Crawler Einstellungen
-#Maximum Filesize==Maximale Fichiergröße
-#Maximum allowed file size in bytes that should be downloaded==Maximale Größe der herunterzuladenden Fichier in Byte
-#Larger files will be skipped==Größere Fichieren werden übersprungen
-#Please note that if the crawler uses content compression, this limit is used to check the compressed content size==Beachten Sie, dass beim Herunterladen der Fichieren mittels "Content-Compression" die komprimierte Fichiergröße maßgeblich ist
-#Submit==Speichern
-#Changes will take effect immediately==Änderungen sind sofort aktiv
-#-----------------------------
-
-#File: SettingsAck_p.html
-#---------------------------
-#YaCy '#[clientname]#': Settings Acknowledge==YaCy '#[clientname]#': Einstellung Verarbeitung
-#Settings Receipt:==Einstellungen angenommen:
-#No information has been submitted==Es wurden keine Informationen übertragen.
-#Nothing changed==Nichts wurde verändert.
-#Error with submitted information.==Es gab einen Fehler bei der Übertragung der Informationen.
-#Nothing changed.==Nichts wurde verändert.
-#The user name must be given.==Der User Name muss angegeben werden
-#Your request cannot be processed. Nothing changed.==Ihre Anfrage konnte nicht bearbeitet werden. Nichts wurde verändert.
-#The password redundancy check failed. You have probably misstyped your password.==Die mot de passeüberprüfung schlug fehl. Sie haben sich wahrscheinlich vertippt.
-#Shutting down. Application will terminate after working off all crawling tasks.==Runterfahren 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. If you go back to the Settings page, you must log-in again.==Ihr neuer Administrator Account Name ist #[user]#. Das mot de passe wurde akzeptiert. Wenn Sie zurück zu den Einstellungen gehen wollen, müssen Sie sich neu einloggen.
-#Your proxy access setting has been changed.==Die Proxy Zugangs Einstellungen wurden geändert.
-#Your proxy account check has been disabled, since you did not supply a password.==
-#The new proxy IP filter is set to==Der neue Proxy IP-Filter ist
-#The proxy port is:==Der Proxy Port ist:
-#if you changed the Port or Port Forwarding Settings, you need to restart YaCy.==Wenn Sie den Port oder die Post Weiterleitungs geändert haben, müssen Sie YaCy neu starten.
-#Your proxy access setting has been changed.==Ihre Proxy Zugangs Einstellung wurden geändert.
-#Your new proxy account name is #[user]#. The password has been accepted.==Ihr neuer Proxy Account Name ist #[user]#. Ihr mot de passe wurde akzeptiert.
-#If you open any public web page through the proxy, you must log-in then.==
-#Your server access filter is now set to #[filter]#
-#Auto pop-up of the Status page is now disabled==Das automatisches Pop-Up der Status Seite beim Browserstart ist nun deaktiviert.
-#Auto pop-up of the Status page is now enabled==Das automatisches Pop-Up der Status Seite beim Browserstart ist nun aktiviert.
-#You are now permanently online.==Sie sind nun im permanenten Online Modus.
-#After a short while you should see the effect on the====Nach kurzer Zeit können Sie die Änderungen auf der
-#status page.==Status-Seite sehen.
-#The Noeud Name is:==Der Name dieses Noeuds ist:
-#Your static Ip(or DynDns) is:==Ihre statische IP(oder DynDns) ist:
-#Seed Settings changed.#(success)#::You are now a principal peer.==Seed Einstellungen wurden geändert.#(success)#::Sie sind nun ein Principal Noeud.
-#Seed Settings changed, but something is wrong.==Seed Einstellungen wurden geändert, aber etwas war falsch.
-#Seed Uploading was deactivated automatically.==Seed Upload wurde automatisch deaktiviert.
-#Please return to the settings page and modify the data.==Bitte kehren Sie zu den Einstellungen zurück und modifizieren Sie die Daten.
-#The remote-proxy setting has been changed==Die remote-proxy Einstellungen wurden geändert.
-#The new setting is effective immediately, you don't need to re-start.==Die neuen Einstellungen wirken sofort. Sie brauchen den Noeud nicht neu zu starten.
-#The submitted peer name is already used by another peer. Please choose a different name. The Noeud name has not been changed.==Der eingegebene Noeudname wird bereits von einem anderen Noeud benutzt. Bitte wählen Sie einen anderen Namen. Der Noeudname wurde nicht geändert.
-#Your Noeud Language is:==Ihre Noeud Sprache ist:
-#The submitted peer name is not well-formed. Please choose a different name. The Noeud name has not been changed.
-#Noeud names must not contain characters other than (a-z, A-Z, 0-9, '-', '_') and must not be longer than 80 characters.
-#The new parser settings where changed successfully.==Die neuen Parser Einstellungen wurden erfolgreich gespeichert.
-#Parsing of the following mime-types was enabled:
-#Seed Upload method was changed successfully.==Seed Upload Methode wurde erfolgreich geändert.
-#You are now a principal peer.==Sie sind nun ein Principal Noeud.
-#Seed Upload Method:==Seed Upload Methode:
-#Seed File URL:==Seed Fichier URL:
-#Your proxy networking settings have been changed.==Ihre Proxy Netzwerk Einstellungen wurden geändert.
-#Transparent Proxy Support is:==Durchsichtige Proxy Unterstützung ist:
-#Connection Keep-Alive Support is:==Verbindung aufrecht erhalten Unterstützung ist:
-#Your message forwarding settings have been changed.==Ihre Nachrichten Weiterleitungseinstellungen haben sich geändert.
-#Message Forwarding Support is:==Nachrichten Weiterleitungs Unterst¨tzung:
-#Message Forwarding Command:==Nachrichten Weiterleitungskommando:
-#Recipient Address:==Empfänger Adresse:
-#Your port forwarding settings have been changed.==Ihre Port Weiterleitungs-Einstellungen wurden geändert.
-#Port Forwarding Support is:==Port Weiterleitungs Unterstützung ist:
-#Port Forwarding Port:==Port Weiterleitungs Port:
-#Port Forwarding Host:==Port Weiterleitungs Host:
-#Port Forwarding uses proxy:==Port Weiterleitung benutzt Proxy:
-#Port Forwarding Settings changed, but something is wrong.==Port Weiterleitungs-Einstellungen wurden geändert. aber etwas ist falsch.
-#Port Forwarding was deactivated automatically.==Port Weiterleitung wurde automatisch deaktiviert.
-#Please return to the settings page and modify the data.==Bitte kehren Sie zu den Einstellungen zurück und modifizieren Sie die Daten.
-#You are now event-based online.==Sie sind nun im aktivitätsbasierten Modus.
-#After a short while you should see the effect on the==Nach kurzer Zeit können Sie die Änderungen auf der
-#You are now in Cache Mode.==Sie sind nun im Cache Modus.
-#Only Proxy-cache ist available in this mode.==Nur der Proxy Cache ist in diesem Modus verfügbar.
-#After a short while you should see the effect on the==Nach kurzer Zeit können Sie die Änderungen auf der
-#You can now go back to the==Sie können nun zurück zu den
-#Settings page if you want to make more changes.==Einstellungen gehen, um weitere Änderungen vorzunehmen.
-#Port rebinding will be done in a few seconds==Der neue Port wird in ein paar Sekunden übernommen.
-#You can reach your YaCy server under the new location==Dieser YaCy-Noeud kann nun unter seiner neuen Adresse erreicht werden:
+Debug/Analysis Settings==Paramètres de débogage/analyse
+HTTP client Settings==Paramètres du client HTTP
+Referrer Policy Settings==Paramètres de la politique du référent
+Transparent Proxy Access Settings==Paramètres transparents d'accès proxy
+URL/Web Proxy Access Settings==Paramètres d'accès au proxy URL/Web
#-----------------------------
#File: Status.html
#---------------------------
-Console Status==État de la console
Log-in as administrator to see full status==Connectez-vous en tant qu'administrateur pour voir toutes les informations
Welcome to YaCy!==Bienvenue sur YaCy!
"bad"=="mauvais"
"idea"=="idée"
"good"=="bien"
Your settings are _not_ protected!==Vos paramètres ne sont _pas_ protégés!
-Please open the accounts configuration page immediately==Veuillez ouvrir immédiatement la page de configuration des comptes
and set an administration password.==et définir un mot de passe administrateur.
You have not published your peer seed yet. This happens automatically, just wait.==Votre noeud n'est pas encore connu du réseau. Attendez quelques instants, cela se déroule automatiquement.
Your network configuration is in private mode. Your peer seed will not be published.== La configuration de votre réseau est en mode privé. Votre noeud restera inconnu du réseau.
Access is unrestricted from localhost (this includes administration features).==Aucune restriction d'accès (cela inclut les fonctions d'administration) n'est définie pour les connexions depuis un navigateur local (localhost).
-Please check the accounts configuration page to ensure that the settings match the security level you need.==Veuillez vérifier la page de configuration des comptes pour vous assurer que les réglages satisfont le niveau de sécurité souhaité.
The peer must go online to get a peer address.==Le noeud doit aller en ligne afin de recevoir une adresse.
You cannot be reached from outside.==Votre noeud ne peut pas être atteint depuis l'extérieur.
A possible reason is that you are behind a firewall, NAT or Router.==Il est possible que vous soyez derrière un pare-feu, un NAT ou un routeur.
-But you can search the internet using the other peers'==Vous pouvez cependant effectuer des recherches sur Internet depuis votre page de recherche à l'aide de
-global index on your own search page==l'index global des autres noeuds
We encourage you to open your firewall for the port you configured (usually: 8090),==Nous vous encourageons à ouvrir votre pare-feu pour le port que vous avez configuré (en général: 8090),
or to set up a 'virtual server' in your router settings (often called DMZ).==ou de mettre en place un 'serveur virtuel' (souvent appelé DMZ) au moyen des paramètres de votre routeur.
Please be fair, contribute your own index to the global index.==Jouez le jeu: contribuez à l'index global à l'aide de votre index personnel.
-Free disk space is lower than #[minSpace]#. Crawling has been disabled. Please fix==L'espace disque disponible est inférieur à #[minSpace]#. Le balayage a été désactivé. Veuillez résoudre
it as soon as possible and restart YaCy.==ce problème aussi vite que possible et redémarrer YaCy.
-Free memory is lower than #[minSpace]#. DHT-in has been disabled. Please fix==La quantité de mémoire disponible est inférieure à #[minSpace]#. La DHT-in a été désactivée. Veuillez résoudre
-Crawling is paused! If the crawling was paused automatically, please check your disk space.==Le balayage est en pause! Si le balayage a été mis en pause automatiquement, veuillez vérifier votre espace disque.
-Latest public version is==La version stable la plus récente est
+Crawling is paused! If the crawling was paused automatically, please check your disk space.==Le crawl est en pause ! Si le crawl a été mis en pause automatiquement, veuillez vérifier votre espace disque.
You can download a more recent version of YaCy. Click here to install this update and restart YaCy:==Vous pouvez télécharger une version de YaCy plus récente. Cliquer ici pour installer cette mise à jour et redémarrer YaCy.
-Install YaCy==Installer YaCy
-You can download the latest releases here:==Vous pouvez télécharger la version la plus récente ici:
-[versionResMain]# or #[versionResDev]#==[versionResMain]# ou #[versionResDev]#
You are running a server in senior mode and you support the global internet index,==YaCy fonctionne actuellement en mode senior et vous contribuez à l'index global d'Internet,
-which you can also search yourself.==où vous pouvez aussi vous-même effectuer des recherches.
You have a principal peer because you publish your seed-list to a public accessible server==Votre pair est un serveur principal car vous publiez votre seed-list sur un serveur accessible publiquement
-where it can be retrieved using the URL==d'où elle peut être récupérée via l'URL
-Your Web Page Indexer is idle. You can start your own web crawl here==Votre indexeur de pages web est inactif. Vous pouvez démarrer votre propre balayage du web ici
-Your Web Page Indexer is busy. You can monitor your web crawl here.==Votre indexeur de pages web est actif. Vous pouvez surveiller votre balayage du web ici.
If you need professional support, please write to==Si vous avez besoin d'une assistance professionnelle, vous pouvez écrire à
-For community support, please visit our forum==Si vous cherchez l'aide de la communauté, vous pouvez visiter notre forum
-"Follow YaCy on Twitter"=="Suivez YaCy sur Twitter"
-"Restart"=="Redémarrer"
-"Shutdown"=="ArrÊter"
-Public System Properties==Allgemeine Systemangaben
-System version==Version du système
-the latest public version is==La version stable la plus récente est
-Click here to==Cliquez
-download it.==ici pour la télécharger.
-This peer's address==Adresse de ce pair
-#Not assigned==non assigné
#---
-The peer does not go online until you use the proxy to surf the internet,==Le noeud ne va pas en ligne avant que vous utilisiez le proxy pour surfer sur Internet
-thus proving that you want to go online.==ce qui prouve que vous voulez aller en ligne.
#---
-#If you don't know how to configure your system to use a proxy,==Wenn Sie nicht wissen, wie Sie Ihr System konfigurieren, sodass es einen Proxy benutzt,
-#see the .==Installationsanleitung.
#---
-#Your '.yacy' home at==Ihre YaCy-Domain ist
-This peer's name==Name dieses Noeuds
-#This peer's statistics==Statistik dieses Noeuds
-#Unknown==unbekannt
-Uptime==En ligne depuis
-#Connects (==Verbindungen (
-#"connected Juniors"=="verbundene Juniors"
-#"connected Seniors"=="verbundene Seniors"
-#"connected Principals"=="verbundene Principals"
-#"disconnected peers"=="nichtverbundene Noeuds"
-peers/hour==Noeuds/heure
-#This peer's status==Status dieses Noeuds
-#Virgin - You have not published your peer seed yet. This happens automatically, just wait. While you have this status you are not allowed to search other peers.==Virgin - Ihr Noeud ist dem Netzwerk noch nicht bekannt. Warten Sie noch ein wenig, dies geschieht automatisch. Während Sie diesen Status haben, ist es Ihnen nicht erlaubt andere Noeuds zu durchsuchen.
-#Junior - You cannot be reached from outside. A possible reason is that you are behind a firewall, NAT or Router. But you can search the internet using the other peers' global index on your own search page. We encourage you to open your firewall for the port you configured (usually: 8080), or to set up a 'virtual server' in your router settings (often called DMZ). Please be fair, contribute your own index to the global index.==Junior - Ihr Noeud kann nicht von außen erreicht werden. Ein möglicher Grund ist, dass Sie sich hinter einer Firewall, NAT oder einem Router befinden. Trotzdem können Sie das Internet durchsuchen, indem Sie den globalen Index der anderen Noeuds von Ihrer Suchseite aus benutzen. Wir möchten Sie ermutigen den Port, den Sie für YaCy eingestellt haben (Vorgabe: 8080) in Ihrer Firewall zu öffnen, oder einen "virtuellen Server" in Ihrem Router aufzusetzten (oft auch DMZ genannt). Bitte seien Sie fair und tragen Sie Ihren Teil zum globalen Index bei!
-#Senior - You are running a server and you support the global internet index, which you can also search yourself. Thank you!==Senior - Sie lassen YaCy bei sich laufen und unterstützen den globalen Index, den Sie auch selbst durchsuchen können. Danke!
-#Principal - You are senior and you publish your seed-list to a public accessible server where it can be retrieved using the URL==Principal - Sie haben den Senior-Status und laden zusätzlich Ihre Seed-Liste auf einen öffentlich zugänglichen Server hoch, von wo aus sie unter folgender Adresse erreichbar ist:
-#You can of course search the internet using the other peers' global index on your own search page.==Natürlich können Sie auch mithilfe des globalen Indexes von Ihrer Suchseite aus das Internet durchsuchen.
-Other peers==Autres peers
-other peers online.==Autres peers en ligne.
-#not online==nicht online
-#Online-mode==Onlinemodus
-#You are in Cache-browsing mode.==Sie sind im Cache Modus.
-#Only websites from the proxy-cache are accessible.==Nur Webseiten aus dem Proxycache sind abrufbar.
-#To switch online-mode, press one of the following buttons:==Um den Online Modus zu wechseln, klicken Sie auf einen der folgenden Buttons:
-#"event-based Mode"=="aktivitätsbasierten Modus"
-#"Permanent Mode"=="Permanenter Modus"
-#You are in event-based online mode.==Sie sind im aktivitätsbasierten Onlinemodus.
-#The YaCy p2p network will boot when you start using YaCy as a web proxy or you switch to permanent mode.==Das YaCy-P2P-Netzwerk wird aktiviert, wenn Sie YaCy zum ersten Mal als Web Proxy benutzen oder Sie in den permanenten Modus wechseln.
-#"Go on-line"=="Online gehen"
-#"Go to Cache-Mode"=="In Cache-Modus gehen"
-#You are in permanent mode.==Sie sind im permanenten Modus.
-#Last Refresh:==Letzte Aktualisierung:
-#Click here to==Klicken Sie
-#log in as administrator and see full status.==hier, um sich als Administrator einzuloggen und den vollständigen Status zu sehen.
-#Disable==Abschalten
-#Disabled==Abgeschaltet
-#Enable==Anschalten
-#Enabled==Angeschaltet
+"Fork me on GitHub"=="Fourche-moi sur GitHub"
+"PerformanceGraph"=="PerformanceGraph"
+"Update YaCy"=="Mettre à jour YaCy"
+"YaCy Websearch"=="Recherche Web YaCy"
+"banner"=="banner"
+"lock icon"=="icône de verrouillage"
+global index on your own search page.==index global sur votre propre page de recherche.
+support@yacy.net==support@yacy.net
#-----------------------------
#File: Status_p.inc
+Address==Adresse
#---------------------------
System Status==État du système
System==Système
Unknown==Inconnu
-Uptime:==En ligne depuis:
-Processors:==Processeurs:
-Load:==Charge:
Protection==Sécurité
-Password is missing==Sans mot de passe
password-protected==protégé par mot de passe
-Unrestricted access from localhost==Accès sans restriction à partir de localhost
-Configure==Configurer
-Address==Adresse
-Host:==Hôte:
-enabled==activé
-disabled==désactivé
peer address not assigned==Aucune adresse assignée à ce noeud
-Public Address:==Adresse publique:
-YaCy Address:==Adresse YaCy:
Port Forwarding Host==Hôte effectuant le transfert de port
broken==rompu
connected==connecté
-on::off==activé::désactivé
-Used for YaCy -> YaCy communication:==Utilisé pour la communication YaCy -> YaCy:
not used==pas utilisé
Remote:==À distance:
Auto-popup on start-up==Afficher au démarrage
Tray-Icon==Icône dans la barre des tâches
-Enable]==Activer]
-Disable]==Désactiver]
-WARNING:==ATTENTION:
-You do this on your own risk.==Vous effectuez cette modification à vos propres risques.
-If you do this without YaCy running on a desktop-pc, this will possibly break startup.==Si vous changez cette option et que YaCy ne tourne pas sur un ordinateur de bureau, il est possible que YaCy ne démarre plus.
-In this case, you will have to edit the configuration manually in DATA/SETTINGS/yacy.conf==Dans ce cas, vous devrez éditer manuellement la configuration dans le fichier DATA/SETTINGS/yacy.conf
->Experimental<==>Expérimental<
-Disabled==Désactivé
-Enabled ==Réinitialiser
Incoming Connections==Connections entrantes
-Active:==Actives:
->Queues<==>Files d'attente<
-Loader Queue==File de chargement
Local Crawl==Balayage local
-pause local crawl==mettre le balayage local en pause
-continue local crawl==reprendre le balayage local
(paused)==(en pause)
Remote triggered Crawl==Balayages distants en cours
Pre-Queueing==Pré-file
Seed server==Serveur d'amorçage
-Enabled: Updating to server==Activé: mise à jour du serveur
-Last upload: #[lastUpload]# ago.==Dernier chargement il y a #[lastUpload]#
-Enabled: Updating to file==Activé: mise à jour du fichier
+Default password is not changed==Le mot de passe par défaut n'est pas modifié
+Disabled.==Désactivé.
+Experimental==Expérimental
+No==Non
+Proxy==Proxy
+Queues==Files d'attente
+Transparent==Transparent
+URL==URL
+Yes==Oui
+[Configure]==[Configurer]
+off==désactivé
+on==activé
#-----------------------------
#File: Steering.html
+Re-Start==Redémarrer
+Shutdown==Arrêter
#---------------------------
-Steering==Orientation
-Checking peer status...==Contrô de l'état du noeud...
-Peer is online again, forwarding to status page...==Le noeud est à nouveau en ligne, redirection vers la page d'état du système...
-Peer is not online yet, will check again in a few seconds...==Le noeud n'est pas encore en ligne, nouvelle vérification dans quelques secondes...
No action submitted==Aucune action n'a été soumise
-Go back to the Settings page.==Retourner sur la page des paramètres.
Your system is not protected by a password==Votre système n'est pas protégé par mot de passe.
-Please go to the User Administration page and set an administration password.==Veuillez vous rendre sur la page de gestion des utilisateurs et définir un mot de passe administrateur.
You don't have the correct access right to perform this task.==Vous n'avez pas les droits d'accès nécessaires pour effectuer cette action.
Please log in.==Veuillez vous connecter.
-You can now go back to the Settings page if you want to make more changes.==Vous pouvez maintenant retourner sur la page des paramètres si vous voulez effectuer d'autres modifications.
See you soon!==À bientôt!
-Application will terminate after working off all scheduled tasks.==L'application se terminera après avoir achevé toutes les tâches planifiées.
+Application will terminate after working off all scheduled tasks.==L'application se terminera après avoir achevé toutes les tâches planifiées.
Please send us feed-back!==Envoyez-nous vos commentaires!
We don't track YaCy users, YaCy does not send 'home-pings', we do not even know how many people use YaCy as their private search engine.==Nous ne traçons pas les utilisateurs de YaCy, YaCy n'envoie pas de "home-pings", nous ne savons même pas combien de gens utilisent YaCy comme moteur de recherche.
Therefore we like to ask you: do you like YaCy? Will you use it again... if not, why? Is it possible that we change a bit to suit your needs?==C'est pourquoi nous aimerions beaucoup que vous nous disiez ce que vous pensez de YaCy. Appréciez-vous YaCy? Allez-vous l'utiliser à nouveau... si non, pourquoi? Nous pouvons peut-être modifier YaCy pour qu'il réponde à vos besoins.
Please send us feed-back about your experience with an==Vous pouvez nous faire parvenir vos commentaires avec un
-anonymous message==message anonyme
-or a ==ou un
-posting to our web forums ==message sur nos forums
-bug report==rapport de bogue
-
Professional Support
==
Support professionnel
-If you are a professional user and you would like to use YaCy in your company in combination with consulting services by YaCy specialists, please see==Si vous souhaitez utiliser YaCy dans votre entreprise en association avec un service de consultations d'expertise par des spécialistes de YaCy, veuillez consulter
Just a moment, please!==Juste un instant, s'il vous plaît!
Then YaCy will restart.==YaCy redémarrera ensuite.
If you can't reach YaCy's interface after 5 minutes restart failed.==Si après 5 minutes vous ne pouvez pas atteindre l'interface de YaCy, le redémarrage a échoué.
->Installing release==>Installation de la version
YaCy will be restarted after installation.==YaCy redémarrera après l'installation.
-The file you are trying to install is not located in the release directory.==Le fichier que vous essayez d'installer n'est pas situé dans le répertoire de la version.
-Go back to the System Update page.==Veuillez retourner sur la page de mise à jour du système.
-#-----------------------------
-
-#File: Surftips.html
-#---------------------------
-Surftips==Surftipps
-Surftips
==Surftipps
-Surftips are switched off==Les surftipps sont désactivés
-Show surftips==Montrer les surftipps
-title="bookmark"==title="Marque-pages"
-alt="Add to bookmarks"==alt="Ajouter aux marque-pages"
-title="positive vote"==title="Avis positif"
-alt="Give positive vote"==alt="Donner un avis positif"
-title="negative vote"==title="Avis négatif"
-alt="Give negative vote"==alt="Donner un avis négatif"
-provided by YaCy peers using public bookmarks, link votes and crawl start points==fournis par les noeuds YaCy utilisant les marque-pages publics, les évaluations de lien et les points de départ de crawl
-Hide surftips==Surftipps cachés
-"Please enter a comment to your link recommendation. (Your Vote is also considered without a comment.)"=="S'il vous plait, commentez votre recommandation de lien. (Votre avis sera accepté même sans commentaire.)"
-#-----------------------------
-
-#File: Automation_p.html
-#---------------------------
-: Peer Steering==: Peer Contrôle
-#Steering of API Actions<==Steuerung der API Aktionen<
-#This table shows actions that had been issued on the YaCy interface==Diese Tabelle zeigt Aktionen, die auf dem YaCy Interface ausgelöst wurden,
-#to change the configuration or to request crawl actions.==um Konfigurationen zu ändern oder Crawl Aktionen anzufordern.
-#These recorded actions can be used to repeat specific actions and to send them==Diese aufgezeichneten Aktionen können dazu verwendet werden, bestimmte Aktionen wiederholt auszuführen und um sie
-#to a scheduler for a periodic execution.==einem Scheduler für periodische Ausführung zu übergeben.
-#>Recorded Actions<==>Aufgezeichnete Aktionen<
-#>Date==>Date
-#>Type==>Type
->Comment==>Commentaire
-#>URL==>URL
-"Select All"=="Sélectionner tout"
-"Deselect All"=="Désélectionner tout"
-#"Execute Selected Actions"=="Führe ausgewählte Aktionen aus"
-#"Delete Selected Actions"=="Lösche ausgewählte Aktionen"
-#>Result of API execution==>Ergebnis der API Ausführung
-#>Status<==>Status>
-#>URL<==>URL<
+"Kaskelix"=="Kaskelix"
+"Restart"=="Redémarrer"
+"Shutdown"=="Arrêter"
+The file you are trying to install is not located in the release directory.==Le fichier que vous essayez d'installer n'est pas situé dans le répertoire des versions.
+Professional Support==Soutien professionnel
+You are in a development environment or the file you are trying to install is empty.==Vous êtes dans un environnement de développement ou le fichier que vous essayez d'installer est vide.
+or a==ou une
#-----------------------------
#File: ViewFile.html
+Description:==Description :
+URL:==Une URL :
+no==non
+text==Texte
+yes==oui
#---------------------------
-YaCy '#[clientname]#': View URL Content==YaCy '#[clientname]#': Voir le contenu de l'URL
-View URL Content==Voir le contenu de l'URL
-#URL==URL
-#Hash==Hash
-Word Count==Nombre de mots
-Description==Description
-Size==Taille
-View as:==Voir comme:
-#Original==Original
+View URL Content==Voir le contenu de l'URL
Plain Text==Texte source
Parsed Text==Texte analysé
Parsed Sentences==Phrases analysées
Link List==Liste des liens
-No URL hash submitted.==Aucune URL hachée de soumise.
Unable to find URL Entry in DB==URL introuvable dans la base de données.
Invalid URL==URL invalide
Unable to download resource content.==Impossible de télécharger le contenu de la source.
Unable to parse resource content.==Impossible d'analyser le contenu de la source.
-Plain Resource Content==Pur contenu source
-Parsed Resource Content==Contenu de la source analysée
-Parsed Resource Sentences==Phrases sources analysées
-Original Resource Content==Contenu source original
+"API"=="API"
+"Browse Host"=="Parcourir l'hôte"
+"Show Metadata"=="Afficher les métadonnées"
+"Show Snippet"=="Afficher l'extrait de code"
+"Show"=="Afficher"
+"action"=="action"
+Citation Report==Rapport de citation
+CitationReport==CitationReport
+Collections:==Collections :
+First Seen:==Première vue:
+Get URL Viewer==Obtenir le visionneur d'URL
+Hash:==Hash:
+Headline==Titre
+In Cache:==Dans Cache:
+In Metadata:==Dans les métadonnées:
+MimeType:==Type MIME :
+Original Content from Web==Contenu original du Web
+Original from Cache==Original de Cache
+Original from Web==Original sur le Web
+Parsed Content==Contenu analysé
+Parsed Tokens==Jetons parsés
+Parsed Tokens/Words==Jetons parsés /Words
+Schema Fields==Les champs de schéma
+Search in Document:==Recherche dans le document:
+See the page info about the url.==Voir les informations de la page concernant l'URL.
+Size:==Taille :
+Snippet==Snippet
+Teaser Text==Texte de l'éblouissement
+URL Metadata==Métadonnées d'URL
+Unsupported protocol.==Protocole non pris en charge.
+View as==Afficher comme
+Word Count:==Nombre de mots:
+dc:creator==dc:creator
+dc:description==dc:description
+dc:format==dc:format
+dc:identifier==dc:identifier
+dc:publisher==dc:publisher
+dc:source==dc:source
+dc:subject==dc:subject
+dc:title==dc:title
+geo:lat & geo:long==geo:lat & geo:long
+link==lien
+name==nom
+nr==nr
+rel==rel
+type==type
#-----------------------------
#File: ViewLog_p.html
+Server Log==Journal du serveur
#---------------------------
-Lines==Lignes
reversed order==sens inverse
"refresh"=="actualiser"
+Invalid regular expression filter.==Filtre d'expression régulière non valide.
+regex==regex
+terms==termes
#-----------------------------
#File: ViewProfile.html
#---------------------------
-Profil de noeud distante==Profil de noeud distant
-Profil de noeud distante:==Profil de noeud distant:
Wrong access of this page==Mauvais accés à cette page
-The requested peer is not known or a potential peer, what means the peer's profile can't be fetched, because he is behind a firewall.==Le noeud demandé est inconnu ou potentiel. Cela signifie que le profil ne peut pas être chargé car il est derrière un pare-feu.
-The peer==Le noeud
-is not online.==n'est pas en ligne.
-This is==C'est le profil de
-'s Profile:==
Name==Nom
Nick Name==Pseudo
Homepage==Page d'accueil
eMail==courriel
-#ICQ==ICQ
-#Jabber==Jabber
-#Yahoo!==Yahoo!
-#MSN==MSN
Comment==Commentaire
+"Onlinestatus"=="Onlinestatus"
+"rdf:foaf"=="rdf:foaf"
+"vCard"=="vCard"
+ICQ==ICQ
+Jabber==Jabber
+Local Peer Profile:==Profil des pairs locaux:
+MSN==MSN
+Remote Peer Profile:==Profil des pairs à distance:
+Skype==Skype
+The profile can't be fetched.==Le profil ne peut pas être récupéré.
+The requested peer is unknown or a potential peer.==Le pair demandé est inconnu ou potentiel.
+Yahoo!==Ouais !
+vCard==vCard
#-----------------------------
#File: Crawler_p.html
+"set"=="Appliquer"
+Name==Nom
#---------------------------
-Next update in==Prochaine mise à jour dans
-seconds==secondes
Queue==Queue
Size==Taille
-#Max==Max
-Indexing==Indexer
-Loader==Charger
Local Crawler==Crawler local
-unlimited==illimité
-#Remote Crawler==Remote Crawler
Database==Base de données
Entries==Entées
-Pages (URLs)==Pages (URLs)
-RWIs (Words)==RWIs (Mots)
Indicator==Indicateur
Level==Niveau
-PPM (Pages Per Minute)==PPM (Pages par minute)
-RWI RAM (Word Cache)==RWI RAM (Mots en cache)
-Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db and restart.==Erreur avec le profil management. S'il vous plait, arretez YaCy, effacez le fichier DATA/PLASMADB/crawlProfiles0.db et relancez YaCy.
-Error:==Erreur:
-Application not yet initialized. Sorry. Please wait some seconds and repeat the request.==L'application n'est pas encore initialisée. Patientez quelques secondes avant de réessayer.
-ERROR: Crawl filter==Erreur: Filtre de crawl
-does not match with crawl root==ne correspond pas avec le point de départ de crawl
-Please try again with different filter.==S'il vous plait, réessayez avec un filtre différent.
-Crawling of==Crawl de
-failed. Reason:==raison de l'erreur:
-Error with URL input==Erreur avec l'URL entrée
-Error with file input==Erreur avec le fichier entré
-started.==démarré.
-Please wait some seconds, it may take some seconds until the first result appears there.==Patientez quelques secondes pour obtenir votre résultat.
-If you crawl any un-wanted pages, you can delete them here.==Si votre crawl indexe des pages que vous ne voulez pas indexer, vous pouvez les supprimmer ici.
-Crawl Profiles:==Crawl Profile:
-Crawl Thread==Crawl Art
-Start URL==URL de démarrage
-Depth==Profondeur
-Filter==Filtre
-MaxAge==Age max.
-Auto Filter Depth==Profondeur du filtre auto
-Auto Filter Content==Contenu du filtre auto
-Max Page Per Domain==Pages max par domaine
-Accept '?' URLs==Accepter URLs avec "?"
-Fill Proxy Cache==Remplir le cache du proxy
-Local Text Indexing==Indexation de texte locale
-Local Media Indexing==Indexation de media locale
-Remote Indexing==Indexation distante
-#no::yes#==#non::oui#
-Crawl Queue:==file d'attente du crawler:
-Queue==Queue
-#Profile==Profile
-Initiator==Initiateur
-Modified Date==Date modifiée
-Anchor Name==Nom du lien
-#URL==URL
-Delete==Supprimer
+"API"=="API"
+"Latency Factor"=="Facteur de latence"
+"Max same Host in queue"=="Max même hôte dans la file d'attente"
+"Pages Per Minute"=="Pages par minute"
+"Set PPM to the default maximum value"=="Définissez PPM à la valeur maximale par défaut"
+"Set PPM to the default minimum value"=="Définissez PPM à la valeur minimale par défaut"
+"Terminate"=="Terminer"
+"hide graphic"=="masquer graphique"
+"show link structure"=="afficher la structure du lien"
+(Please enable JavaScript to automatically update this page!)==(Veuillez activer JavaScript pour mettre à jour automatiquement cette page!)
+LF==LF
+MH==MH
+PPM==PPM
+Application not yet initialized. Sorry. Please wait some seconds and repeat==Application non encore initialisée. Désolé. Veuillez patienter quelques secondes et répéter
+Citations (reverse link index)==Citations (index des liens inversés)
+Click on this API button to see an XML with information about the crawler status==Cliquez sur ce bouton API pour afficher un XML contenant des informations sur l'état du crawler
+Could not parse the Solr filter query :==Impossible d'analyser la requête du filtre Solr:
+Count==Nombre
+Crawled Pages==Pages taillées
+Crawler==Crawler
+Crawler PPM==Crawler PPM
+Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db==Erreur dans la gestion des profils. Veuillez arrêter YaCy et supprimer le fichier DATA/PLASMADB/crawlProfiles0.db
+Index Size==Taille de l'index
+Limit Crawler==Crawler limite
+Load==Load
+MB==MB
+No embedded local Solr index is connected. This is required to use a Solr query filter.==Aucun index local Solr intégré n'est connecté. Ceci est nécessaire pour utiliser un filtre de requête Solr.
+No-Load Crawler==Crawler sans charge
+Postprocessing Progress==Progressionion du post-traitement
+Progress==Progression
+Queues==Files d'attente
+RWIs (P2P Chunks)==RWIS (P2P Chunks)
+Remote Crawler==Crawler distant
+Running==En cours
+Seg- ments==Seg- ments
+Speed / PPM (Pages Per Minute)==Vitesse / PPM (Pages par minute)
+Status==État
+Terminate All==Mettre fin à tout
+The Solr filter query syntax is not valid :==La syntaxe de requête de filtre Solr n'est pas valide:
+Traffic (Crawler)==Trafic (Crawler)
+You asked for remote indexing, but remote crawl results won't be added to the local index as the remote crawler is currently disabled on this peer.==Vous avez demandé l'indexation à distance, mais les résultats distants ne seront pas ajoutés à l'index local car le distant est actuellement désactivé sur ce pair.
+and restart.==et redémarre.
+filter.==filter.
+it may take some seconds until the first result appears there.==il peut prendre quelques secondes jusqu'à ce que le premier résultat apparaisse là.
+pending:==pending:
+the request.==la demande.
#-----------------------------
#File: Wiki.html
+Edit==éditer
+Text:==Texte:
#---------------------------
-YaCyWiki page:==Page YaCyWiki:
-last edited by==Dernière modification par
-change date==Date de modification
-Edit==Modifier
-only granted to admin==seulement autorisé pour Admin
-Grant Write Access to Everybody==Autoriser tous les utilisateurs à modifier Wiki
-Grant Write Access to Admin only==N'autoriser que Admin à modifier Wiki
Start Page==Page de départ
-#Index==Index
Author:==Auteur:
-#Text:==Text:
You can use==Vous pouvez utiliser le
-Wiki Code here.==Code Wiki ici.
-"edit"=="modifier"
"Submit"=="Soumettre"
"Preview"=="Prévisualiser"
"Discard"=="Rejeter"
->Preview==>Prévisualisation
No changes have been submitted so far!==Aucun changement n'a plus été soumis!
Subject==Titre
Change Date==Date de modification
Last Author==Dernier auteur
-IO Error reading wiki database:==Erreur d'E/S à la lecture de la base de données Wiki:
Changes will be published as announcement on YaCyNews==Les modifications seront publiés sur YaCyNews.
+"Compare"=="Compare"
+"Show"=="Afficher"
+"admin"=="admin"
+"all"=="all"
+(only granted to admin)==(uniquement accordé à l'administrateur)
+Compare version from==Comparer la version à partir de
+Error==Erreur
+Grant Write Access to==Accès à l'écriture de la subvention
+Index==Index
+Index -==Table des matières
+Preview==Aperçu
+Versions==Versions
+with version from==avec version à partir de
#-----------------------------
#File: WikiHelp.html
#---------------------------
-Wiki Help==Aide Wiki
-Index Creation==Index créer
-This table contains a short description of the tags that can be used in the Wiki and several other servlets of YaCy. For a more detailed description visit the==Cette table contient une brève description des tags qui peuvent êtres utilisés dans ce wiki et dans plusieurs autres endroits de YaCy. Pour une description plus détaillée, vous pouvez visiter ce
-#YaCy Wiki==YaCy Wiki
Code==Code
Description==Description
-=headline===Entête
-This tags create headlines. If a page has three or more headlines, a directory will be created automatically.==Ces tags créent des entêtes. Si la page contient trois entêtes ou plus, un dossier est automatiquement créé.
text==Texte
-This tags create stressed texts. Most browsers will display the texts in italics, bold, and a combination of both.==Ces tags créent un text souligné. La plupart des browsers affichent le text en italique, en gras ou en combinaison des deux.
-Lines will be indented. This tag is supposed to mark citations,==Le text apparaîtra indenté. Ce tag est utilisé pour marquer les citations,
-point==point
-This tags create a numbered list.==Ces tags créent une liste énumérée.
-something==quelque chose
-another thing==une autre chose
-and yet another==et encore une autre
-something else==autre chose
-This tags create an unnumbered list.==Ces tgs créent une liste non enumérée.
-word==mot
-:definition==:Definition
-This tags create a definition list.==Ces tags créent une liste définie.
This tag creates a horizontal line.==Ces tags créent une ligne horizontale.
-pagename==nom de page
-description==description
This tag creates links to other pages of the wiki.==Ce tag tire un lien vers une autre page Wiki.
This tag creates links to external websites.==Ce tag crée un lien vers une page internet externe.
-Image==Image
-alt==description
-align==alignement
This tag displays an image, it can be aligned left, right or center.==Ce tag affiche une image, elle peut être alignée à gauche, au centre ou à droite.
-This tags create a table.==Ce tag crée une table.
-The escape tags will cause all tags in the text between the starting and the closing tag to not be treated as regular text.==Le texte encadré par ce tag n'est pas interprété.
-A text between this tags will keep all the spaces and linebreaks in it. Great for ASCII-art and program code.==Un texte entre ces tags garde ses espace et ses sauts de lignes. Excellent pour l'art-ASCII et le code de programme.
If a line starts with a space, it will be displayed in a non-proportional font.==Si une ligne commence avec un espace, elle apparaîtra avec une fonte non proportionnelle.
+<pre> text </pre>==<pre> texte </pre>
+<s>text</s>==<s>texte</s>
+<u>text</u>==<u>texte</u>
+''text'' '''text''' '''''text'''''==''texte'' '''texte''' '''''texte'''''
+;;word 3:definition 3==;;mot 3:définition 3
+;word 1:definition 1==;mot 1:définition 1
+;word 2:definition 2==;mot 2:définition 2
+;word 4:definition 4==;mot 4:définition 4
+A text between these tags will keep all the spaces and linebreaks in it. Great for ASCII-art and program code.==Un texte entre ces balises gardera tous les espaces et linebreaks en elle. Idéal pour ASCII-art et code de programme.
+Lines will be indented. This tag is supposed to mark citations, but may as well be used for styling purposes.==Les lignes seront dentelées. Cette étiquette est censée marquer les citations, mais peut aussi être utilisée à des fins de style.
+Text will be displayed==Le texte sera affiché
+These tags create a definition list.==Ces balises créent une liste de définitions.
+These tags create a numbered list.==Ces balises créent une liste numérotée.
+These tags create a table, whereas the first marks the beginning of the table, the second starts==Ces balises créent une table, tandis que la première marque le début de la table, la seconde commence
+These tags create an unnumbered list.==Ces balises créent une liste non numérotée.
+These tags create headlines. If a page has three or more headlines, a table of content will be created automatically. Headlines of level 1 will be ignored in the table of content.==Ces balises créent des titres. Si une page a trois titres ou plus, une table de contenu sera créée automatiquement. Les titres du niveau 1 seront ignorés dans la table de contenu.
+These tags create stressed texts. The first pair emphasizes the text (most browsers will display it in italics),==Ces balises créent des textes stressés. La première paire met l'accent sur le texte (la plupart des navigateurs l'afficheront en italique),
+This table contains a short description of the tags that can be used in the Wiki and several other servlets==Ce tableau contient une brève description des balises qui peuvent être utilisées dans le Wiki et plusieurs autres servlets
+This tag displays a Youtube or Vimeo video with the id specified and fixed width 425 pixels and height 350 pixels.==Cette balise affiche une vidéo Youtube ou Vimeo avec l'id spécifié et la largeur fixe 425 pixels et la hauteur 350 pixels.
+Wiki-Code==Wiki-Code
+[[Image:url]]==[[Image:url]]
+[[Image:url|align|alt text]]==[[Image:url|align|texte alternatif]]
+[[Image:url|alt text]]==[[Image:url|texte alternatif]]
+[[Vimeo:id]]==[[ Vimeo:id ]]
+[[Youtube:id]]==[[ Youtube:id ]]
+[[pagename]]==[[nom de la page]]
+[[pagename|description]]==[[nom de la page]]
+[url description]==[url description]
+[url]==[url]
+a new line, the third and fourth each create a new cell in the line. The last displayed tag==une nouvelle ligne, les troisième et quatrième créent chacun une nouvelle cellule dans la ligne. La dernière balise affichée
+closes the table.==ferme la table.
+i.e. use [[Vimeo:32200946]] to embed this video: http://vimeo.com/32200946==i.e. utiliser [[ Vimeo:32200946 ]] pour intégrer cette vidéo: http://vimeo.com/32200946
+i.e. use [[Youtube:QZsWG4-7Qfk]] to embed this video: https://www.youtube.com/watch?v=QZsWG4-7Qfk==i.e. utiliser [[ Youtube:QZsWG4-7Qfk ]] pour intégrer cette vidéo: https://www.youtube.com/watch?v=QZsWG4-7Qfk
+of YaCy. For a more detailed description visit the==de YaCy. Pour une description plus détaillée visitez le
+struck through==frappé à travers
+text text text==texte texte texte
+the second one emphasizes it more strongly (i.e. bold) and the last tags create a combination of both.==le deuxième le souligne plus fortement (c.-à-d. bold) et les dernières balises créent une combinaison des deux.
+underlined==souligné
+||row 1, col 1||row 1, col 2==1er colonne, 1er colonne, 1er colonne, 2e colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er colonne, 1er
+||row 2, col 1||row 2, col 2==2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e colonne, 2e
#-----------------------------
#File: yacyinteractive.html
+"Search"==Rechercher
#---------------------------
YaCy Interactive Search==YaCy Recherche interactive
-#This page uses the JSON search API to display search results as you type.==Diese Seite verwendet die JSON Such API, um die Suchergebnisse beim Tippen anzuzeigen.
-#Click the API icon to see an example call to the native API.==Klicken Sie auf die API Sprechblase, um einen Beispielaufruf der nativen API zu sehen.
-#To see a list of all APIs, please visit the API wiki page.==Um eine Liste aller APIs zu sehen, besuchen Sie die API Seite im Wiki.
->total results==>Total des résultats
- topwords:== Top mots:
->Name==>Nom
->Size==>Taille
->Date==>Date
-kiosk mode==Mode Kiosque
->Link==>Lien
+"Search..."=="Rechercher..."
+Click the API icon to see an example call to the search rss API.==Cliquez sur l'icône API pour voir un exemple d'appel à l'API rss de recherche.
+loading from local index...==chargement à partir de l'index local...
+onkeyup="xmlhttpPost(); return false;"==onkeyup="xmlhttpPost(); retourner false;"
#-----------------------------
#File: yacysearch.html
+Show==Montrer
#---------------------------
-Search Page==Page de recherche
-Search for==Recherche de
-This search result can also be retrieved as RSS/opensearch output.==Le résultat de cette recherche peut également être chargé en tant que flux RSS /opensearch.
-Click the RSS icon to see this search result as RSS message stream==Cliquer sur l'icône RSS pour voir le flux RSS correspondant à cette recherche
Use the RSS search result format to add static searches to your RSS reader, if you use one.==Utilisez les résultats au format RSS pour ajouter des recherches statiques à votre lecteur de flux RSS, si vous en utilisez un.
->search==>rechercher
No Results.==Pas de résultats.
-length of search words must be at least 1 character==les termes recherchés doivent contenir au moins un caractère
-> of <==> de <
-> local,==> locaux,
-remote from== distants de
-YaCy peers).== noeuds YaCy).
-Searching the web with this peer is disabled for unauthorized users. Please log in as administrator to use the search function==La recherche avec ce noeud est désactivée pour les utilisateurs non autorisés. Veuillez vous connecter en tant qu'administrateur pour utiliser la fonction de recherche.
-Illegal URL mask:==Masque d'URL incorrect :
-(not a valid regular expression), mask ignored.==(expression régulière incorrecte), masque ignoré.
-Illegal prefer mask:==Masque favori incorrect :
Did you mean:==Vouliez-vous plutôt dire :
-"search again"=="nouvelle recherche"
-The following words are stop-words and had been excluded from the search:==Les termes suivant sont des termes d'arrêt et ont été exclus de la recherche:
Location -- click on map to enlarge==Lieu -- cliquez sur la carte pour agrandir
-Map (c) by==Carte (c) fournie par
-and contributors, CC-BY-SA==et ses contributeurs, CC-BY-SA
+"Hide links to images that could not be rendered"=="Cacher les liens vers des images qui n'ont pas pu être rendues"
+"Play all"=="Jouer tout"
+"Refresh sorting. Depending on their rank, some results fetched in background may then appear on this page."=="Rafraîchir le tri. Selon leur rang, certains résultats récupérés en arrière-plan peuvent alors apparaître sur cette page."
+"Show anyway links to images that could not be rendered"=="Afficher de toute façon des liens vers des images qui n'ont pas pu être rendues"
+"Stop all"=="Arrête tout."
+"YaCy server is fetching results from available data sources."=="Le serveur YaCy récupère les résultats des sources de données disponibles."
+Click the RSS icon to see this search result as RSS message stream.==Cliquez sur l'icône RSS pour voir ce résultat de recherche en flux de messages RSS.
+Failed to render 0 thumbnail(s).==Impossible de générer 0 vignette(s).
+Hide==Masquer
+Media==Média
+No Results. (length of search words must be at least 1 character)==Pas de résultats. (la durée des mots de recherche doit être d'au moins 1 caractère)
+Player==Lecteur
+Please try again later or log in as administrator or as a user with extended search right.==Veuillez réessayer plus tard ou vous connecter en tant qu'administrateur ou en tant qu'utilisateur avec un droit de recherche étendu.
+URL==URL
+You are not allowed to search the web with this peer.==Vous n'êtes pas autorisé à chercher sur le web avec ce pair.
+You have reached the maximum allowed number of accesses to this search page within one minute.==Vous avez atteint le nombre maximum autorisé d'accès à cette page de recherche en une minute.
+You have reached the maximum allowed number of accesses to this search page within ten minutes.==Vous avez atteint le nombre maximum autorisé d'accès à cette page de recherche dans les dix minutes.
+You have reached the maximum allowed number of accesses to this search page within three seconds.==Vous avez atteint le nombre maximum autorisé d'accès à cette page de recherche en trois secondes.
+search==recherche
#-----------------------------
#File: yacysearchitem.html
+"Browse index"=="Parcourir l'index"
+"Raw ranking score value"=="Score de classement brut"
#---------------------------
"recommend"=="recommander"
"bookmark"=="ajouter aux favoris"
"delete"=="supprimer"
+"Last known modification date"=="Dernière date de modification connue"
+"Show all"=="Afficher tout"
+"blacklist host"=="hôte de la liste noire"
+Cache==Cache
+Citations==Citations
+Metadata==Métadonnées
+Not supported==Non pris en charge
+Parser==Parser
+Pictures==Images
+Tags:==Tags:
+View via proxy==Affichage via proxy
#-----------------------------
#File: yacysearchtrailer.html
+Audio==Audio
+Images==Images
#---------------------------
-Your search is done using peers in the YaCy P2P network.==Recherche effectuée grâce aux noeuds du réseau P2P YaCy.
-You can switch to 'Stealth Mode' which will switch off P2P, giving you full privacy. Expect less results then, because then only your own search index is used.==Vous pouvez passer en 'Mode furtif' ce qui désactivera le réseau pair à pair et vous offrira une privatisation complète. Cependant vous obtiendrez probablement moins de résultats car la recherche sera alors basée uniquement sur votre propre index.
Privacy==Privé
->Peer-to-Peer<==>Pair à pair<
Stealth Mode==Mode furtif
-Your search is done using only your own peer, locally.==La recherche est réalisée uniquement sur les données locales de votre noeud.
-You can switch to 'Peer-to-Peer Mode' which will cause that your search is done using the other peers in the YaCy network.==Vous pouvez passer en mode 'Pair à pair' dans lequel votre recherche sera basée sur les autres noeuds du réseau YaCy.
Context Ranking==Classement contextuel
Sort by Date==Trier par date
Video==Vidéo
->Apps==>Applications
-
Location
==
Lieu
-show search results for "#[query]#" on map==Montrer sur la carte les résultats pour "#[query]#"
-click to expand facet==cliquer pour révéler cet aspect
->Provider==>Site
->Filetype==>Type de fichier
->Language==>Langue
->Name Space==>Espace de noms
->Author==>Auteur
->Collection==>Collection
+"Extend media search results to pages including such medias (provides generally more results, but eventually less relevant)"=="Étendre les résultats de la recherche sur les médias aux pages y compris ces médias (fournit généralement plus de résultats, mais éventuellement moins pertinent)"
+"Sorted by ascending counts"=="Triées par des nombres ascendants"
+"Sorted by ascending labels"=="Triées par des étiquettes ascendantes"
+"Sorted by descending counts"=="Triées par nombres décroissants"
+"Sorted by descending labels"=="Triées par des étiquettes descendantes"
+"Strictly limit media search results to indexed documents matching exactly the desired content domain."=="Limiter strictement les résultats de recherche multimédia aux documents indexés correspondant exactement au domaine de contenu souhaité."
+"Use the 'Date' ranking profile, ordering results by default on each document last modification date."=="Utilisez le profil de classement 'Date', en commandant les résultats par défaut sur chaque document date de dernière modification."
+"Use the default ranking profile (customizable), ordering results by score."=="Utilisez le profil de classement par défaut (personnalisé), commandez les résultats par score."
+"app"=="app"
+"audio"=="audio"
+"click to expand facet"=="cliquez pour agrandir la facette"
+"earthsearchlogo"=="earthsearchlogo"
+"false"=="false"
+"global"=="global"
+"image"=="image"
+"local"=="local"
+"text"=="text"
+"true"=="true"
+"video"=="video"
+Apps==Apps
+Documents==Documents
+Extended==Étendu
+Location==Emplacement
+Peer-to-Peer==Peer-to-Peer
+Stealth Mode==Mode furtif
+Strict==Strict
#-----------------------------
### Subdirectory env/templates ###
#File: env/templates/header.template
+"Search"==Rechercher
+Search==Recherche
+Toggle navigation==Activer la navigation
#---------------------------
### PEER CONTROL ###
-Search..."==Recherche..."
-Peer Control==Contrôle du noeud
-Admin Console==Console d'administration
Re-Start==Redémarrer
Shutdown==Arrêter
-Search Interface==Recherche
### YACY PROJECT ###
-external==externe
About This Page==À propos de cette page
-Administration Tutorials==Tutoriels d'administration
-Download YaCy==Télécharger YaCy
-Community (Web Forums)==Communauté (forums)
-Project Wiki==Wiki du projet
-Git Repository==Dépôt Git
-Bugtracker==Suivi des bogues
### FIRST STEPS ###
-You just started a YaCy peer!==Vous venez de démarrer un noeud YaCy!
-As a first-time-user you see only basic functions.==Lors de votre première utilisation, vous avez accès uniquement aux fonctions de base.
-Set a use case or name your peer to see more options.==Définissez un mode d'utilisation ou un nom pour votre noeud afin de d'avoir accès à plus d'options.
-Start a first web crawl to see all monitoring options.==Démarrez un premier balayage du web pour avoir accès à toutes les options de surveillance.
First Steps==Premiers pas
Use Case & Account==Mode d'utilisation et compte
-Load Web Pages, Crawler==Charger des pages web, balayeur
RAM/Disk Usage & Updates==Utilisation RAM/disque et mises à jour
### MONITORING ###
Monitoring==Surveillance
@@ -2287,13 +2087,9 @@ System Status==État du système
Peer-to-Peer Network==Réseau pair à pair
Index Browser==Explorateur d'index
Network Access==Accès au réseau
-Web Visualization==Visualisation du web
Crawler Monitor==Surveillance du balayeur
### PRODUCTION ###
-Advanced Crawler==Balayeur avancé
-Index Export/Import==Importer du contenu
Target Analysis==Analyse de cible
-Process Scheduler==Planificateur de processus
### ADMINISTRATION ###
System Administration==Administration du système
Index Administration==Administration de l'index
@@ -2301,132 +2097,2699 @@ Filter & Blacklists==Filtres et listes noires
Content Semantic==Sémantique du contenu
### SEARCH PORTAL INTEGRATION ###
Search Portal Integration==Intégration du portail de recherche
-Design==Apparence
Ranking and Heuristics==Classement et heuristique
-#Portal Configuration==Rercherche intégrée à un site externe
-#Design==Configuration de la recherche intégrée
+"Chat"=="Chat"
+"Community"=="Communauté"
+"Help"=="Aide"
+"Restart"=="Redémarrer"
+"Search..."=="Rechercher..."
+"Shutdown"=="Arrêter"
+"YaCy"=="YaCy"
+externalbecome a Github Sponsor==externedevenir sponsor GitHub
+externalbecome a YaCy Patreon==externedevenir Patreon YaCy
+external Community (Web Forums)==externe Communauté (forums web)
+external Download YaCy==externe Télécharger YaCy
+external Git Repository==externe Dépôt Git
+external YaCy Tutorials==externe Tutoriels YaCy
+AI Lab==Laboratoire d'IA
+Administration==Administration
+Automation==Automatisation
+Chat==Chat
+Crawler==Crawler
+Forum==Forum
+Grab a whole site==Prenez tout un site
+Help==Aide
+JavaScript information==Informations JavaScript
+Please help! We need financial help to move on with the development!==S'il vous plaît aidez! Nous avons besoin d'aide financière pour aller de l'avant avec le développement!
+Portal Configuration==Configuration du portail
+Portal Design==Conception du portail
+Production==Production
+Sponsor==Sponsor
+YaCy Packs & Import/Export==Packs YaCy & import/export
+YaCy is free software, so we need the help of many to support the development. You can help by joining a sponsoring plan:==YaCy est un logiciel libre ; nous avons donc besoin d'aide pour soutenir son développement. Vous pouvez aider en rejoignant un programme de sponsoring :
#-----------------------------
#File: env/templates/simpleheader.template
#---------------------------
Toggle navigation==Activer la navigation
-Search Interfaces==Interfaces de recherche
Web Search==Recherche Web
File Search==Recherche de fichiers
Compare Search==Recherche comparative
-Index Browser==Explorateur d'index
URL Viewer==Analyseur d'URL
Example Calls to the Search API:==Exemples d'appels sur l'API :
About This Page==À propos
YaCy Tutorials==Tutoriels YaCy
-Download YaCy==Télécharger YaCy
-Community (Web Forums)==Communauté (Forums)
-Project Wiki==Wiki du projet
-Git Repository==Dépôt Git
-Bugtracker==Suivi des bugs
-external==lien externe
+"Help"=="Aide"
+API Solr Default Core / JSON==API Solr Default Core / JSON
+API Solr Default Core / XML==API Solr Default Core / XML
+API Solr RSS/Opensearch==API Solr RSS/OpenSearch
+API Solr Webgraph Core / XML==API Solr Webgraph Core / XML
+API YaCy JSON==API YaCy JSON
+API YaCy RSS/Opensearch==API YaCy RSS/OpenSearch
+external Bugtracker==externe Bugtracker
+external Community (Web Forums)==externe Communauté (forums web)
+external Download YaCy==externe Télécharger YaCy
+external Git Repository==externe Dépôt Git
+Administration »==Administration »
+Chat==Chat
+JavaScript information==Informations JavaScript
+Search Interfaces==Interfaces de recherche
#-----------------------------
#File: env/templates/submenuAccessTracker.template
#---------------------------
Cookie Menu==Menu Cookie
-Incoming Cookies==Cookies entrants
-Outgoing Cookies==Cookies sortants
+Access Grid==Grille d'accès
+Access Rate Limitations==Limites des tarifs d'accès
+Access Tracker==Tracker d'accès
+All Connections==Toutes les connexions
+Host Tracker==Suivi de l'hôte
+Incoming Requests Details==Détails des demandes reçues
+Incoming Requests Overview==Vue d'ensemble des demandes reçues
+Incoming Cookies==Cookies entrants
+Local Search==Recherche locale
+Log==Journal
+Outgoing Cookies==Cookies sortants
+Remote Search==Recherche à distance
+Server Access==Accès serveur
#-----------------------------
#File: env/templates/submenuComputation.template
+Surftips==Recommendations
+System==Système
#---------------------------
Application Status==État de l'application
->System<==>Système<
->Status<==>État<
->Processes<==>Processus<
Thread Dump==Afficher les tâches en cours
Server Log==Journal du serveur
Concurrent Indexing==Indexages concurrents
Memory Usage==Utilisation de la mémoire
Search Sequence==Séquence de recherche
->Overview<==>Vue d'ensemble<
-Incoming News==Nouvelles sortantes
+Incoming News==Nouvelles entrantes
Processed News==Nouvelles traitées
Outgoing News==Nouvelles sortantes
Published News==Nouvelles publiées
Community Data==Données communes
->Surftips<==>Astuces de navigation<
Local Peer Wiki==Wiki du noeud local
+Bookmarks==Signets
+Log Reports==Rapports de journaux
+Messages==Messages
+Overview==Vue d'ensemble
+Processes==Processus
+Status==État
#---------------------------
#File: env/templates/submenuConfig.template
#---------------------------
System Administration==Administration du système
#UNUSED HERE
-#Peer Administration Console==Console d'administration du noeud
-Status==Status
-Network Configuration==Configuration réseau
-Download System Update==Mise à jour du système
->Performance==>Performance
Advanced Settings==Paramètres avancés
-Local robots.txt==robots.txt local
Advanced Properties==Configuration avancée
+Performance Settings of Busy Queues==Paramètres de performance des files d'attente occupées
+UI Translations==Traductions de l'assurance-chômage
+Viewer and administration for database tables==Affichage et administration pour les tables de base de données
#-----------------------------
#File: env/templates/submenuCrawler.template
#---------------------------
-Load Web Pages, Crawler==Charger des pages web, balayeur
Site Crawling==Balayage de sites
Parser Configuration==Configuration de l'analyseur syntaxique
+Load Web Pages==Charger des pages Web
#-----------------------------
#File: env/templates/submenuDesign.template
#-----------------------------
->Appearance<==>Apparence graphique<
->Language<==>Langue<
Search Page Layout==Agencement de la page de résultats
+Appearance==Apparence
+Design==Design
+Language==Langue
#-----------------------------
#File: env/templates/submenuIndexControl.template
#---------------------------
-Index Control Menu==Menu contrôle d'index
Index Administration==Administration de l'index
-Index Import==Importer un index
-Index Transfer==Transferer un index
-#-----------------------------
-
-#File: env/templates/submenuIndexCreate.template
-#---------------------------
-Index Creation Menu==Menu création d'index
-Control Queues==Contrôle des queues
-WWW Crawl Queues==Files d'attente de Crawl WWW Crawl
-Media Crawl Queues==Files d'attente de Crawl Media
-Crawl Start==Démarrer le crawl
->Indexing==>Indexation
->Loader==>Chargeur
->Local==>Local
-#Global==Global
-#>Overhang==>Overhang
->Images==>Images
->Movies==>Films
->Music==>Musique
+Content Analysis==Analyse du contenu
+Field Re-Indexing==RéIndexation des champs
+Index Deletion==Suppression de l'index
+Index Sources & Targets==Sources de l'index Objectifs &
+Reverse Word Index==Index des mots inversés
+Solr Schema Editor==Éditeur de schéma Solr
+URL Database Administration==Administration de la base de données URL
#-----------------------------
#File: env/templates/submenuRanking.template
#---------------------------
Ranking and Heuristics==Classement et heuristique
-#Solr Ranking Config==Solr Ranking Config
-#RWI Ranking Config==RWI Ranking Config
->Heuristics<==>Heuristiques<
+Heuristics==Heuristics
+RWI Ranking Config==Config de classement RWI
+Solr Ranking Config==Solr Config de classement
#-----------------------------
#File: env/templates/submenuUseCaseAccount.template
#---------------------------
Use Case & Accounts==Mode d'utilisation et comptes
Basic Configuration==Configuration de base
->Accounts<==>Comptes<
Network Configuration==Configuration réseau
+Accounts==Comptes
#-----------------------------
#File: env/templates/submenuWebStructure.template
#---------------------------
Index Browser==Explorateur d'index
+Image Collage==Collage d'images
+Web Structure==Structure du Web
+Web Visualization==Visualisation du Web
+#-----------------------------
+
+#File: Automation_p.html
+#---------------------------
+Click the API icon to see the XML.==Cliquez sur l'icône API pour afficher le XML.
+Comment==Commentaire
+The information that is presented on this page can also be retrieved as XML.==Les informations présentées ici peuvent être obtenues au format XML.
+"API"=="API"
+"Apply edited next execution dates"=="Appliquer les prochaines dates d'exécution éditées"
+"Delete Selected Actions"=="Supprimer les actions sélectionnées"
+"Delete all Actions which had been created before "=="Supprimer toutes les actions qui ont été créées avant"
+"Execute Selected Actions"=="Exécuter les actions sélectionnées"
+"clone"=="clone"
+"next page"=="page suivante"
+"no next page"=="pas de page suivante"
+"no previous page"=="pas de page précédente"
+"previous page"=="page précédente"
+"yyyy/MM/dd HH:mm:ss"=="yyyy/MM/dd HH:mm:ss"
+1 day==1 jour
+1 month==1 mois
+1 week==1 semaine
+1 year==1 an
+2 days==2 jours
+2 months==2 mois
+2 weeks==2 semaines
+2 years==2 ans
+3 days==3 jours
+3 months==3 mois
+3 weeks==3 semaines
+4 days==4 jours
+5 days==5 jours
+6 days==6 jours
+6 months==6 mois
+9 months==9 mois
+Apply==Appliquer
+Call Count==Numéro d'appel
+Event Trigger==Déclencheur d'événement
+Last Exec Date==Date de dernière exécution
+Next Exec Date==Date de prochaine exécution
+Process Automation==Automatisation des processus
+Recorded Actions==Actions enregistrées
+Recording Date==Date d'enregistrement
+Result of API execution==Résultat de l'exécution de l'API
+Scheduler==Planificateur
+Status==État
+These recorded actions can be used to repeat specific actions and to send them==Ces actions enregistrées peuvent être utilisées pour répéter des actions spécifiques et les envoyer
+This table shows actions that had been issued on the YaCy interface.==Ce tableau montre les actions qui avaient été émises sur l'interface YaCy.
+Type==Type
+URL==URL
+activate event==activer l'événement
+activate scheduler==active le programmeur
+after start-up==après le démarrage
+at 00:00h==À 00 heures
+at 01:00h==À 1 h 00
+at 02:00h==À 2 heures
+at 03:00h==À 3 heures
+at 04:00h==À 4 heures
+at 05:00h==à 5 heures
+at 06:00h==À 6 heures
+at 07:00h==À 7 heures
+at 08:00h==À 8 heures
+at 09:00h==À 9 heures
+at 10:00h==à 10 heures
+at 11:00h==à 11 heures
+at 12:00h==À 12 heures
+at 13:00h==à 13 heures
+at 14:00h==à 14 heures
+at 15:00h==à 15 heures
+at 16:00h==À 16 heures
+at 17:00h==à 17 heures
+at 18:00h==à 18 heures
+at 19:00h==à 19 heures
+at 20:00h==à 20 heures
+at 21:00h==à 21 heures
+at 22:00h==À 22 heures
+at 23:00h==à 23 heures
+days==jours
+hours==heures
+minutes==minutes
+no event==pas d'événement
+no repetition==Pas de répétition
+off==désactivé
+run once==lancer une fois
+run regular==exécuter régulièrement
+to a scheduler for a periodic execution.==à un échéancier pour une exécution périodique.
+#-----------------------------
+
+#File: ConfigAccountList_p.html
+#---------------------------
+Address==Adresse
+First name==Prénom
+Last name==Nom
+User Accounts==Comptes utilisateurs
+Last Access==Dernier accès
+Rights==Droits
+Time==Temps
+Traffic==Trafic
+User==Utilisateur
+User List==Liste des utilisateurs
+#-----------------------------
+
+#File: ConfigNetwork_p.html
+#---------------------------
+Network Configuration==Configuration réseau
+"Change Network"=="Changer de réseau"
+"Save"=="Enregistrer"
+"Secure Sockets Layer"=="Couche des chaussettes sécurisées"
+"Transport Layer Security"=="Sécurité de la couche de transport"
+Accept remote Index Transmissions.==Accepter les transmissions d'index à distance.
+Accepted Changes.==Changements acceptés.
+DHT==DHT
+Distributed Computing Network for Domain==Réseau informatique distribué pour le domaine
+Enable 'Robinson Mode' for a completely independent search engine instance,==Activer 'Robinson Mode' pour une instance de moteur de recherche totalement indépendante,
+Enable Peer-to-Peer Mode to participate in the global YaCy network,==Permettre au mode pair à pair de participer au réseau mondial YaCy,
+Enter custom URL...==Saisissez l'URL personnalisée...
+For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration.==Pour l'opération P2P, au moins la distribution DHT ou la réception DHT (ou les deux) doit être définie. Vous avez ainsi défini une configuration Robinson.
+For Robinson Mode, index distribution and receive is switched off.==Pour le mode Robinson, la distribution et la réception de l'index sont désactivées.
+Global Search in P2P configuration is only allowed, if index receive is switched on. You have a P2P configuration, but are not allowed to search other peers.==La recherche globale dans la configuration P2P n'est autorisée que si l'index reçu est activé. Vous avez une configuration P2P, mais vous n'êtes pas autorisé à rechercher d'autres pairs.
+If you leave the field empty, no peer asks your peer. If you fill in a '*', your peer is always asked.==Si vous laissez le champ vide, aucun pair ne demande à votre pair. Si vous remplissez un '*', votre pair est toujours demandé.
+If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers.==Si votre pair fonctionne en 'Robinson Mode', vous exécutez YaCy comme moteur de recherche pour votre propre portail de recherche sans échange de données avec d'autres pairs.
+In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster.==Dans le cas d'un cluster Robinson, les demandes de crawl distant provenant des pairs de ce cluster peuvent être acceptées.
+Inapplicable Setting Combination:==Combinaison de réglage inapplicable:
+Index Distribution==Distribution de l'index
+Index Receive==Index Recevoir
+Index data is not distributed, but remote crawl requests are distributed and accepted==Les données de l'index ne sont pas distribuées, mais les demandes distantes sont distribuées et acceptées.
+Indexing Domain==Domaine d'indexation
+List of .yacy or .yacyh - domains of the cluster: (comma-separated)==Liste de.yacy ou.yacyh - domaines du cluster: (séparé par un comma)
+Long Description==Description longue
+Network Definition==Définition du réseau
+Network Nick==Réseau Nick
+Network and Domain Specification==Spécification du réseau et du domaine
+No changes were made!==Aucun changement n'a été apporté!
+Outgoing communications encryption==Cryptage des communications sortantes
+Peer Tags==Étiquettes des pairs
+Peer-to-Peer Mode==Mode pair à pair
+Please describe your search portal with some keywords (comma-separated).==Veuillez décrire votre portail de recherche avec quelques mots clés (comma-séparé).
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Veuillez noter que contrairement à la TLS stricte, les certificats ne sont pas validés contre les autorités de certification de confiance (CA), permettant ainsi aux pairs de YaCy d'utiliser des certificats autosignés.
+Prefer HTTPS for outgoing connexions to remote peers.==Préférez HTTPS pour les connexions sortantes aux pairs distants.
+Private Peer==Pair privé
+Protocol operations encryption==cryptage des opérations du protocole
+Public Cluster==Groupe public
+Public Peer==Pair public
+Remote Network Definition URL==URL de définition de réseau distant
+Robinson Mode==Mode Robinson
+Search requests are spread over all peers of the cluster, and answered from all peers of the cluster.==Les demandes de recherche sont réparties sur tous les pairs du cluster et répondues par tous les pairs du cluster.
+There is no index receive and no index distribution between your peer and any other peer.==Il n'y a pas d'index reçu et aucune distribution d'index entre votre pair et n'importe quel autre pair.
+This enables automated, DHT-ruled Index Transmission to other peers.==Cela permet une transmission automatique de l'index DHT à d'autres pairs.
+This works only if you have a senior peer. The DHT-rules do not work without this function.==Cela ne fonctionne que si vous avez un pair senior. Les règles DHT ne fonctionnent pas sans cette fonction.
+To control that all participants within a web indexing domain have access to the same domain,==Pour contrôler que tous les participants à l'intérieur d'un domaine d'indexation web ont accès au même domaine,
+When TLS/SSL is enabled on remote peers, it should be used to encrypt outgoing communications with them (for operations such as network presence, index transfer, remote crawl...).==Lorsque TLS/SSL est activé sur les pairs distants, il devrait être utilisé pour chiffrer les communications sortantes avec eux (pour des opérations telles que la présence réseau, le transfert d'index, le crawl distant...).
+When you allow access from the YaCy network, your data is recognized using keywords.==Lorsque vous autorisez l'accès à partir du réseau YaCy, vos données sont reconnues à l'aide de mots-clés.
+YaCy can operate a computing grid of YaCy peers or as a stand-alone node.==YaCy peut exploiter une grille de calcul de pairs YaCy ou comme un nœud autonome.
+You are visible to other peers and contact them to distribute your presence.==Vous êtes visible pour d'autres pairs et contactez-les pour distribuer votre présence.
+Your peer does not accept any outside index data, but responds on all remote search requests.==Votre pair n'accepte aucune donnée d'index externe, mais répond à toutes les demandes de recherche à distance.
+Your peer is part of a public cluster within the YaCy network.==Votre pair fait partie d'un cluster public au sein du réseau YaCy.
+Your search engine will not contact any other peer, and will reject every request.==Votre moteur de recherche ne contactera aucun autre pair, et rejettera chaque demande.
+accept transmitted URLs that match your blacklist==accepter les URLs transmises qui correspondent à votre liste noire
+allow==allow
+deny remote search==refuser la recherche à distance
+disabled during crawling==désactivé pendant le crawl
+disabled during indexing==désactivé lors de l'indexation
+enabled==enabled
+or if you want your own separate search cluster with or without connection to the global network.==ou si vous voulez votre propre cluster de recherche séparé avec ou sans connexion au réseau mondial.
+reject==reject
+this network definition must be equal to all members of the same YaCy network.==cette définition de réseau doit être égale à tous les membres du même réseau YaCy.
+without any data exchange between your peer and other peers.==sans aucun échange de données entre vos pairs et d'autres pairs.
+#-----------------------------
+
+#File: ConfigParser_p.html
+#---------------------------
+Parser Configuration==Configuration de l'analyseur syntaxique
+"Submit"=="Envoyer"
+Content Parser Settings==Paramètres de l'analyseur de contenu
+Extension==Extension
+For a detailed description of the various MIME-types take a look at==Pour une description détaillée des différents types de MIME, voir
+Mime-Type==Mime-Type
+With this settings you can activate or deactivate parsing of additional content-types based on their MIME-types.==Avec ces paramètres, vous pouvez activer ou désactiver l'analyse de types de contenu supplémentaires en fonction de leurs types MIME.
+#-----------------------------
+
+#File: ConfigPortal_p.html
+#---------------------------
+"idea"=="idée"
+"Change Search Page"=="Modifier la page de recherche"
+"Detailed statistics"=="Statistiques détaillées"
+"Remote results resorting can be triggered once the 'Refresh sorting' button (near the 'Search' button) becomes available."=="Le recours à des résultats distants peut être déclenché dès que le bouton 'Refraîchissement du tri' (près du bouton 'Rechercher') devient disponible."
+"Set to Default Values"=="Définir les valeurs par défaut"
+"This usually improves ranking accuracy, but doesn't work well for users who have Javascript disabled, are using screen readers, or are on slow computers."=="Cela améliore généralement la précision de classement, mais ne fonctionne pas bien pour les utilisateurs qui ont Javascript désactivé, utilisent des lecteurs d'écran, ou sont sur des ordinateurs lents."
+"_blank" (new window)=="_blanc" (nouvelle fenêtre)
+"_parent" (the parent frame of a frameset)=="_parent" (le cadre parent d'un ensemble de cadres)
+"_self" (same window)=="Soi-même" (même fenêtre)
+"_top" (top of all frames)=="_top" (en haut de toutes les images)
+"searchresult" (a default custom page name for search results)=="searchresult" (un nom de page personnalisé par défaut pour les résultats de recherche)
+'About' Column (shown in a column alongside with the search result page)==Colonne (montrée dans une colonne à côté de avec la page de résultats de recherche)
+(Content)==(Contenu)
+(Headline)==(Headline)
+A third option is the interactive search. Use this code:==Une troisième option est la recherche interactive. Utilisez ce code:
+Alternative text for Corporate Images==Texte alternatif pour les images d'entreprise
+Automated results resorting with JavaScript makes the browser load the full result set of each search request.==Le recours automatique aux résultats avec JavaScript permet au navigateur de charger l'ensemble des résultats de chaque demande de recherche.
+Automated, with JavaScript in the browser.==Automatisé, avec JavaScript dans le navigateur.
+CACHEONLY: never go online, use all content from cache. If no cache entry exist, consider content nevertheless as available and show result without snippet==CACHEONLY: ne jamais aller en ligne, utiliser tout le contenu du cache. Si aucune entrée de cache n'existe, considérer le contenu néanmoins comme disponible et afficher le résultat sans extrait
+Control whether media search results are as default strictly limited to indexed documents matching exactly the desired content domain (images, videos or applications specific),==Contrôlez si les résultats de recherche média sont par défaut strictement limités aux documents indexés correspondant exactement au domaine de contenu souhaité (images, vidéos ou applications spécifiques),
+Counts by origin :==Nombres par origine:
+Default Pop-Up Page==Page pop-up par défaut
+Default index.html Page (by forwarder)==Page par défaut index.html (par transitaire)
+Default maximum number of results per page==Nombre maximal par défaut de résultats par page
+Enable Search for Everyone?==Activer la recherche pour tout le monde ?
+Exclude Hosts==Exclure les hôtes
+Extended==Étendu
+FALSE: no link verification and not snippet generation: all search results are valid without verification==FALSE: aucune vérification de lien et pas de génération d'extraits de code: tous les résultats de recherche sont valides sans vérification
+For a search page with a small header, use this code:==Pour une page de recherche avec un petit en-tête, utilisez ce code:
+Greedy Learning Mode==Mode d'apprentissage de l'avidité
+Greeting Line==Ligne de salutation
+IFEXIST: use the cache if the cache exist or load online==IFEXIST: utilisez le cache si le cache existe ou chargez en ligne
+IFFRESH: use the cache if the cache exists and is fresh otherwise load online==IFFRESH: utilisez le cache si le cache existe et est frais autrement charger en ligne
+If verification fails, delete index reference==Si la vérification échoue, supprimer l'index de référence
+If you like to integrate YaCy as portal for your web pages, you may want to change icons and messages on the search page.==Si vous souhaitez intégrer YaCy comme portail pour vos pages Web, vous pouvez modifier des icônes et des messages sur la page de recherche.
+Index remote results==Indexer les résultats distants
+Integration of a Search Portal==Intégration d'un portail de recherche
+Interactive Search Page==Page de recherche interactive
+Limit size of indexed remote results==Taille limite des résultats à distance indexés
+List of hosts that shall be excluded from search results by default but can be included using the site:<host> operator:==Liste des hôtes qui doivent être exclus des résultats de recherche par défaut mais peuvent être inclus à l'aide de l'opérateur site:<host>:
+Media Search==Recherche dans les médias
+NOCACHE: no use of web cache, load all snippets online==NOCACHE: pas d'utilisation du cache web, charger tous les extraits en ligne
+On demand, server-side==Sur demande, côté serveur
+Only the administrator is allowed to search==Seul l'administrateur est autorisé à effectuer une recherche
+Pattern:==Motif :
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Veuillez noter que contrairement à la TLS stricte, les certificats ne sont pas validés contre les autorités de certification de confiance (CA), permettant ainsi aux pairs de YaCy d'utiliser des certificats autosignés.
+Prefer https for search queries on remote peers.==Préférez https pour les requêtes de recherche sur les pairs distants.
+Remote results resorting==Redondance des résultats à distance
+Remote search encryption==Chiffrement de la recherche à distance
+Search Front Page==Recherche dans la première page
+Search Page (small header)==Page de recherche (petite en-tête)
+Search is available for everyone==La recherche est disponible pour tout le monde
+Show Advanced Search Options on Search Page?==Afficher les options de recherche avancée sur la page de recherche?
+Show Advanced Search Options on index.html==Afficher les options de recherche avancée sur index.html
+Show Navigation Bar on Search Page?==Afficher la barre de navigation sur la page de recherche?
+Show Navigation Top-Menu==Afficher la navigation Top-Menu
+Snippet Fetch Strategy & Link Verification==Stratégie de saisie de l'extrait & Vérification du lien
+Special Target as Exception for an URL-Pattern==Cible spéciale en tant qu'exception pour un URL-Pattern
+Speed up search results with this option! (use CACHEONLY or FALSE to switch off verification)==Accélérez les résultats de recherche avec cette option! (utilisez CACHEONLY ou FALSE pour désactiver la vérification)
+Status Page==Page d'état
+Strict==Strict
+Target for Click on Search Results==Cible pour Cliquez sur les résultats de recherche
+The search page can be integrated in your own web pages with an iframe. Simply use the following code:==La page de recherche peut être intégrée dans vos propres pages Web avec un iframe. Utilisez simplement le code suivant:
+The search page may be customized. You can change the 'corporate identity'-images, the greeting line==La page de recherche peut être personnalisée. Vous pouvez changer les images 'identité d'entreprise', la ligne de salutation
+This may lead to high system loads on the server.==Cela peut conduire à des charges de système élevées sur le serveur.
+This would look like:==Ça ressemble à:
+URL of Home Page==URL de la page d'accueil
+URL of a Large Corporate Image==URL d'une grande image d'entreprise
+URL of a Small Corporate Image==URL d'une petite image d'entreprise
+When SSL/TLS is enabled on remote peers, https should be used to encrypt data exchanged with them when performing peer-to-peer searches.==Lorsque SSL/TLS est activé sur les pairs distants, https doit être utilisé pour chiffrer les données échangées avec eux lors des recherches pair à pair.
+add remote search results to the local index ( default=on, it is recommended to enable this option ! )==ajouter les résultats de recherche à distance à l'index local(par défaut=on, il est recommandé d'activer cette option !)
+and a link to a home page that is reached when the 'corporate identity'-images are clicked.==et un lien vers une page d'accueil qui est atteint lorsque les images 'identité de l'entreprise' sont cliqués.
+do not show Advanced Search==ne pas afficher Recherche avancée
+maximum allowed size in kbytes for each remote search result to be added to the local index (for example, a 1000kbytes limit might be useful if you are running YaCy with a low memory setup)==taille maximale autorisée en koctets pour chaque résultat de recherche à distance à ajouter à l'index local (par exemple, une limite de 1000 octets peut être utile si vous exécutez YaCy avec une configuration de mémoire basse)
+no link to YaCy Menu (admin must navigate to /Status.html manually)==aucun lien vers le menu YaCy (l'administrateur doit aller manuellement sur /Status.html)
+or extended to pages including such medias (provide generally more results, but eventually less relevant).==ou étendu à des pages incluant de tels médias (fournir généralement plus de résultats, mais éventuellement moins pertinent).
+#-----------------------------
+
+#File: ConfigRobotsTxt_p.html
+#---------------------------
+Surftips==Recommendations
+"Save restrictions"=="Enregistrer les restrictions"
+Blog==Blog
+Deletion of==Suppression
+Deny access to==Refuser l'accès à
+Entire Peer==Tout à fait pair
+Exclude Web-Spiders==Exclure les Web-Spiders
+File Share==Partage de fichiers
+Here you can set up a robots.txt for all webcrawlers that try to access the webinterface of your peer.==Ici, vous pouvez mettre en place un robot.txt pour tous les navigateurs web qui essaient d'accéder à l'interface web de votre pair.
+Home Page==Page d'accueil
+Impressum==Impressum
+It disallows crawlers to access webpages or even entire domains.==Il interdit aux crawlers d'accéder à des pages web, voire à des domaines entiers.
+Network pages==Pages réseau
+News pages==Pages d'actualité
+Public bookmarks==Signaux publics
+Status page==Page d'état
+Unable to access the local file:==Impossible d'accéder au fichier local:
+Wiki==Wiki
+failed==échec
+htroot/robots.txt==htroot/robots.txt
+is a voluntary agreement most search-engines (including YaCy) follow.==est un accord volontaire la plupart des moteurs de recherche (y compris YaCy) suivent.
+robots.txt==robots.txt
+#-----------------------------
+
+#File: ConfigSearchBox.html
+#---------------------------
+"Search"==Rechercher
+Integration of a Search Box==Intégration d'une boîte de recherche
+MySearch==MySearch
+Replace the given colors #eeeeee (box background) and #cccccc (box border)==Remplacer les couleurs données #eeeeeee (arrière-plan de la boîte) et #cccccc (bord de la boîte)
+Replace the word "MySearch" with your own message==Remplacer le mot "MySearch" par votre propre message
+Simply use the following code:==Utilisez simplement le code suivant:
+This does not use a style sheet file to make the integration into another web page with a different style sheet easier.==Cela n'utilise pas un fichier de feuille de style pour faciliter l'intégration dans une autre page Web avec une feuille de style différente.
+This would look like:==Ça ressemble à:
+We give information how to integrate a search box on any web page that==Nous donnons des informations comment intégrer une boîte de recherche sur n'importe quelle page Web qui
+You would need to change the following items:==Vous devez modifier les éléments suivants:
+calls the normal YaCy search window.==appelle la fenêtre de recherche normale YaCy.
+#-----------------------------
+
+#File: ConfigUser_p.html
+#---------------------------
+Address==Adresse
+First name==Prénom
+Generic error.==Erreur générique.
+Last name==Nom
+Passwords do not match.==Les mots de passe ne correspondent pas.
+Repeat password==Entrer à nouveau le mot de passe
+Time used==Temps utilisé
+Timelimit==Limite de temps
+Username too short. Username must be >= 4 Characters.==Nom d'utilisateur trop court. Un nom d'utilisateur doit comporter plus de 4 caractères.
+"ConfigAccountList_p.html"=="ConfigAccountList_p.html"
+"Delete User"=="Supprimer l' utilisateur"
+"Save User"=="Enregistrer l' utilisateur"
+Password==Mot de passe
+Rights:==Droits :
+User Account Editor==Éditeur de compte utilisateur
+Username==Nom d'utilisateur
+Username already used (not allowed).==Nom d'utilisateur déjà utilisé (non autorisé).
+back to user list==retour à la liste des utilisateurs
+#-----------------------------
+
+#File: ContentAnalysis_p.html
+#---------------------------
+"Set"=="Appliquer"
+"Re-Set to default"=="Re-Set à la valeur par défaut"
+Content Analysis==Analyse du contenu
+Double Content Detection==Détection de double contenu
+Double-Content detection is done using a ranking on a 'unique'-Field, named 'fuzzy_signature_unique_b'.==La détection de double contenu se fait à l'aide d'un classement sur un champ 'unique', nommé 'fuzzy_signature_unique_b'.
+For minTokenLen = 2 the quantRate value should not be below 0.24; for minTokenLen = 3 the quantRate value must be not below 0.5.==Pour minTokenLen = 2 la valeur quantRate ne doit pas être inférieure à 0,24; pour minTokenLen = 3, la valeur quantRate ne doit pas être inférieure à 0,5.
+The quantRate is a measurement for the number of words that take part in a signature computation. The higher the number, the less==Le quant Rate est une mesure du nombre de mots qui participent au calcul de la signature. Plus le nombre est élevé, moins le nombre est élevé.
+These are document analysis attributes.==Il s'agit d'attributs d'analyse documentaire.
+This is the minimum length of a word which shall be considered as element of the signature. Should be either 2 or 3.==Il s'agit de la longueur minimale d'un mot qui doit être considéré comme un élément de la signature.
+minTokenLen==minTokenLen
+quantRate==quantRate
+words are used for the signature.==les mots sont utilisés pour la signature.
+#-----------------------------
+
+#File: CrawlMonitorRemoteStart.html
+#---------------------------
+Depth==Profondeur
+no==non
+yes==oui
+Accept '?' URLs==Accepter les URL '?'
+Intention/Description==Intention/Description
+Peer Name==Nom du pair
+Recently started remote crawls in progress==Crawls distants récemment démarrés et en cours
+Remote crawl start points, crawl is ongoing==Points de départ de crawl distant ; le crawl est en cours
+Remote crawl start points, finished:==Points de départ distants, terminés:
+Start Time==Heure de début
+Start URL==Démarrer l'URL
+#-----------------------------
+
+#File: CrawlProfileEditor_p.html
+#---------------------------
+Depth==Profondeur
+no==non
+yes==oui
+"Delete finished crawls"=="Supprimer les crawls terminés"
+"Delete"=="Supprimer"
+"Edit profile"=="Modifier le profil"
+"Submit changes"=="Soumettre les modifications"
+"Terminate"=="Terminer"
+Accept '?' URLs==Accepter les URL '?'
+Collections==Collections
+Crawl Profile Editor==Éditeur de profil Crawl
+Crawl Profile List==Liste des profils de crawl
+Crawl Scheduler==Planificateur de crawl
+Crawl Thread==Crawl Thread
+Crawl profiles hold information about a crawl process that is currently ongoing.==Les profils de crawl contiennent de l'information sur un processus de crawl qui est actuellement en cours.
+Crawler Steering==Crawler Pilote
+Domain Counter Content==Contenu de comptoir de domaine
+Fill Proxy Cache==Remplir la corbeille de proxy
+Finished==Terminé
+Local Media Indexing==Indexation des médias locaux
+Local Text Indexing==Indexation des textes locaux
+Max Page Per Domain==Page max par domaine
+Must Match==Doit correspondre
+Must Not Match==Ne doit pas correspondre
+Recrawl if older than==Relèver s'il est plus ancien que
+Remote Indexing==Indexation à distance
+Running==En cours
+Scheduled Crawls can be modified in this table==Les crawls programmés peuvent être modifiés dans ce tableau.
+Select the profile to edit==Sélectionnez le profil à modifier
+Status==État
+false==false
+true==true
+#-----------------------------
+
+#File: CrawlResults.html
+#---------------------------
+"delete"=="supprimer"
+Initiator==Initiateur
+"An illustration how yacy works"=="Une illustration du fonctionnement du yacy"
+"clear list"=="liste claire"
+"del & blacklist"=="del & liste noire"
+"delete all"=="supprimer tout"
+(1) Results of Remote Crawl Receipts==(1) Résultats des accusés de réception de crawl distant
+(2) Results for Result of Search Queries==(2) Résultats des requêtes de recherche
+(3) Results for Index Transfer==(3) Résultats du transfert d'index
+(4) Results for Proxy Indexing==(4) Résultats de l'indexation via proxy
+(5) Results for Local Crawling==(5) Résultats du crawl local
+(6) Results for Global Crawling==(6) Résultats du crawl global
+(7) Results from pack import==(7) Résultats de l'import de packs
+Use Case: This list fills up if you do a search query on the 'Search Page'==Cas d'utilisation : cette liste se remplit lorsque vous lancez une recherche depuis la page de recherche
+Use Case: This list may fill if you check the 'Index Receive'-flag on the 'Index Control' page==Cas d'utilisation : cette liste peut se remplir si vous cochez l'option 'Index Receive' sur la page 'Index Control'
+Use Case: You must use YaCy as proxy to fill up this table.==Cas d'utilisation : vous devez utiliser YaCy comme proxy pour remplir ce tableau.
+Use Case: start a crawl by setting a crawl start point on the 'Index Create' page.==Cas d'utilisation : démarrez un crawl en définissant un point de départ sur la page 'Index Create'.
+No personal or protected page is indexed;==Aucune page personnelle ou protégée n'est indexée;
+Blacklist to use==Liste noire à utiliser
+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 de réception local, le cas opposé de (1). Il contient également un moniteur de résultat d'indexation, mais n'est pas considéré comme privé
+Case (7) occurs if pack files are imported==Cas (7) se produit si les fichiers pack sont importés
+Collection==Collection
+Country==Pays
+Crawl Results Overview==Aperçu des résultats obtenus
+Domain==Domaine
+Every page that a remote peer indexes upon this peer's request is reported back and can be monitored here.==Chaque page qu'un pair distant indexe à la demande de ce pair est rapportée et peut être surveillée ici.
+Executor==Exécuteur
+IP of Host==IP de l'hôte
+Modified==Modifié
+No remote crawl results can currently been added to the local index as the remote crawler is disabled on this peer.==Aucun résultat de crawl distant ne peut actuellement être ajouté à l'index local, car le crawler distant est désactivé sur ce pair.
+Set the proxy settings of your browser to the same port as given==Définissez les paramètres proxy de votre navigateur sur le même port que celui indiqué
+Some processes occur double to document the complex index migration structure.==Certains processus apparaissent en double afin de documenter la structure complexe de migration de l'index.
+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 d'index web.
+The index was crawled and contributed by other peers.==L'index a été crawlé et fourni par d'autres pairs.
+The remote crawler is currently disabled==Le crawler distant est actuellement désactivé
+The stack is empty.==La pile est vide.
+The url fetch was initiated and executed by other peers.==La récupération de l'URL a été lancée et exécutée par d'autres pairs.
+These are monitoring pages for the different indexing queues.==Ce sont des pages de suivi pour les différentes files d'attente d'indexation.
+These links here have been transmitted to you because your peer is the most appropriate for storage according to==Ces liens ici vous ont été transmis parce que votre pair est le plus approprié pour le stockage selon
+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 pair, mais le crawl a été lancé par un pair distant.
+These records had been imported from pack files in DATA/PACKS/load==Ces enregistrements ont été importés depuis des fichiers pack dans DATA/PACKS/load
+These web pages had been crawled by your own crawl task.==Ces pages web ont été crawlées par votre propre tâche de crawl.
+These web pages had been indexed as result of your proxy usage.==Ces pages Web avaient été indexées à la suite de votre utilisation de proxy.
+This index transfer was initiated by your peer by doing a search query.==Ce transfert d'index a été initié par votre pair en effectuant une recherche.
+This is the 'mirror'-case of process (1).==C'est le cas du "miroir" du processus (1).
+This is the 'mirror'-case of process (6).==Il s'agit du cas du "miroir" du processus (6).
+This is the list of web pages that this peer initiated to crawl,==Voici la liste des pages web que ce pair a lancé le crawl de,
+Title==Titre
+URL==URL
+URLs==URLs
+Words==Mots
+YaCy knows 5 different ways to acquire web indexes. The details of these processes (1-5) are described within the submenu's listed==YaCy connaît 5 façons différentes d'acquérir des index web. Les détails de ces processus (1-5) sont décrits dans la liste du sous-menu
+above which also will show you a table with indexing results so far. The information in these tables is considered as private,==au-dessus de laquelle vous montrerez également un tableau avec des résultats d'indexation jusqu'à présent. L'information dans ces tableaux est considérée comme privée,
+and automatically excluded from indexing.==et automatiquement exclus de l'indexation.
+but had been crawled by other peers.==mais qui ont été crawlées par d'autres pairs.
+no title==Pas de titre
+on the 'Settings'-page in the 'Proxy and Administration Port' field.==sur la page 'Paramètres' dans le champ 'Porte Proxy et Administration'.
+since it shows crawl requests from other peers.==car elle affiche les demandes de crawl provenant d'autres pairs.
+so you need to log-in with your administration password.==vous devez donc vous connecter avec votre mot de passe d'administration.
+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 Cookie-Usage ou POST-Paramètres (soit dans URL soit comme protocole HTTP)
+the logic of the Global Distributed Hash Table.==la logique de la Table Globale Distributed Hash.
+#-----------------------------
+
+#File: DictionaryLoader_p.html
+#---------------------------
+deactivated==désactivés
+"Activate"=="Activer"
+"Deactivate"=="Désactiver"
+"Load"=="Charger"
+"Remove"=="Supprimer"
+Action==Action
+Activated==Activé
+Content==Contenu
+DeReWo - Korpusbasierte Grund-/Wortformenlisten (German) of 'Institut für Deutsche Sprache'==DeReWo - listes de lemmes et formes de mots basées sur corpus (allemand) de l'Institut für Deutsche Sprache
+Deactivated==Désactivé
+Download from==Télécharger à partir de
+Downloaded from==Téléchargé depuis
+GeoNames==GeoNames
+Geolocalization==Geolocalization
+Geolocalization will enable YaCy to present locations from OpenStreetMap according to given search words.==La géolocalisation permettra à YaCy de présenter des emplacements depuis OpenStreetMap en fonction de mots de recherche donnés.
+Knowledge Loader==Chargeur de connaissances
+Moby Lexicon - English Thesaurus from https://www.gutenberg.org/ebooks/3202==Moby Lexicon - Thésaurus anglais de https://www.gutenberg.org/ebooks/3202
+OpenGeoDB==OpenGeoDB
+OpenThesaurus - German Thesaurus from http://www.openthesaurus.de==OpenThesaurus - Thésaurus allemand de http://www.openthesaurus.de
+Result==Résultat
+Russian Thesaurus==Thésaurus russe
+Status==État
+Storage location==Lieu de stockage
+Suggestion dictionaries will help YaCy to provide better suggestions during the input of search words==Les dictionnaires de suggestions aideront YaCy à fournir de meilleures suggestions lors de l'entrée des mots de recherche
+Suggestions==Suggestions
+Synonyms==Synonymes
+Synonyms are used to find not only the searched word but also their synonyms. This is done by adding all synonyms of words in documents to the document and searching the synonyms as well.==Les synonymes sont utilisés pour trouver non seulement le mot recherché mais aussi leurs synonymes. Ceci est fait en ajoutant tous les synonymes de mots dans les documents au document et en cherchant les synonymes aussi.
+The data from this source was converted to the YaCy synonym file format and part of the YaCy distribution.==Les données de cette source ont été converties au format de fichier synonyme de YaCy et à une partie de la distribution de YaCy.
+The data was converted to the YaCy synonym file format and part of the YaCy distribution.==Les données ont été converties au format de fichier synonyme de YaCy et à une partie de la distribution de YaCy.
+This file provides 100000 most common german words for suggestions==Ce fichier fournit 100000 mots allemands les plus courants pour les suggestions
+With this file it is possible to find cities all over the world.==Avec ce fichier, il est possible de trouver des villes partout dans le monde.
+With this file it is possible to find locations in Germany using the location (city) name, a zip code, a car sign or a telephone pre-dial number.==Avec ce fichier, il est possible de trouver des emplacements en Allemagne en utilisant le nom de l'emplacement (ville), un code postal, un panneau de voiture ou un numéro de téléphone pré-dial.
+YaCy can use external libraries to enable or enhance some functions. These libraries are not==YaCy peut utiliser des bibliothèques externes pour activer ou améliorer certaines fonctions.
+You can download additional files here.==Vous pouvez télécharger des fichiers supplémentaires ici.
+activated dictionary file==fichier dictionnaire activé
+cities with a population > 1000 all over the world==villes avec une population > 1000 dans le monde entier
+cities with a population > 100000 all over the world (the set is is reduced to cities > 100000)==villes avec une population > 100000 partout dans le monde (l'ensemble est réduit aux villes > 100000)
+cities with a population > 5000 all over the world==villes avec une population > 5000 dans le monde entier
+deactivated and removed dictionary file==fichier de dictionnaire désactivé et supprimé
+deactivated dictionary file==fichier dictionnaire désactivé
+included in the main release of YaCy because they would increase the application file too much.==inclus dans la version principale de YaCy parce qu'ils augmenteraient le fichier d'application trop.
+loaded==chargé
+loaded - can be upgraded using the Load button for the new URL==charged - peut être mis à jour en utilisant le bouton Charger pour la nouvelle URL
+loaded and activated dictionary file==fichier de dictionnaire chargé et activé
+loaded and upgraded dictionary file==fichier de dictionnaire chargé et mis à jour
+not loaded==non chargé
+#-----------------------------
+
+#File: IndexControlRWIs_p.html
+#---------------------------
+Resource==Origine
+"Add selected URLs to blacklist"=="Ajouter les URLs sélectionnées à la liste noire"
+"Add selected domains to blacklist"=="Ajouter des domaines sélectionnés à la liste noire"
+"Delete Word"=="Supprimer le mot"
+"Delete reference to selected URLs"=="Supprimer la référence aux URL sélectionnées"
+"Generate List"=="Générer une liste"
+"List Selected URLs"=="Lister les URLs sélectionnées"
+"Show URL Entries for Word"=="Afficher les entrées d'URL pour Word"
+"Show URL Entries for Word-Hash"=="Afficher les entrées d'URL pour Word-Hash"
+"Transfer to other peer"=="Transfert à d'autres pairs"
+(this causes that old references are deleted if that limit is reached)==(ce qui fait que les anciennes références sont supprimées si cette limite est atteinte)
+Blacklist Extension==Extension de la liste noire
+Deletion of selected URLs==Suppression des URL sélectionnées
+Display URL List==Afficher la liste des URL
+Index Reference Size==Taille de référence de l'index
+Limitation of number of references per word:==Limitation du nombre de références par mot:
+Limitations==Limitations
+Negative Ranking Factors==Facteurs de classement négatifs
+No URL entries related to this word hash==Aucune entrée d'URL liée à ce mot hash
+No reference size limitation (this may cause strong CPU load when words are searched that appear very often)==Aucune limite de taille de référence (cela peut causer une forte charge CPU lorsque des mots sont recherchés qui apparaissent très souvent)
+Number of lines:==Nombre de lignes:
+Positive Ranking Factors==Facteurs de classement positifs
+RWI Retrieval (= search for a single word)==RWI Retrieval (= recherche d'un seul mot)
+Retrieve by Word-Hash:==Récupérer par Word-Hash:
+Retrieve by Word:==Récupérer par mot:
+Reverse Normalized Weighted Ranking Sum==Inverser la somme pondérée normalisée de classement
+Reverse Word Index Administration==Inverser l'administration de l'index Word
+Search result:==Résultat de la recherche:
+Selection==Sélection
+Sequential List of Word-Hashes:==Liste séquentielle des mots-hachés:
+Set References Limit==Définir la limite de références
+Transfer RWI to other Peer==Transfert de l'IBR à d'autres pairs
+Transfer by Word-Hash:==Transfert par Word-Hash:
+Word Deletion==Suppression du mot
+all lines==toutes les lignes
+app==app
+appearance in==apparence en
+at other word indexes but they do not harm)==à d'autres index de mots, mais ils ne nuisent pas)
+audio==audio
+authority==authority
+creator==creator
+date==date
+delete also the referenced URL (recommended, may produce unresolved references==supprimer également l'URL référencée (recommandée, peut produire des références non résolues
+description==description
+document type==type de document
+dom length==longueur de la dom
+emphasized==emphasized
+for every resolvable and deleted URL reference, delete the same reference at every other word where==pour chaque référence URL résolvable et supprimée, supprimer la même référence à tous les autres mots où
+hash==hash
+hitcount==hitcount
+image==image
+in link type==dans le type de lien
+index of==index de
+local links==liaisons locales
+or enter a hash or peer name:==ou entrez un nom de hachage ou de pair:
+pos in phrase==pos dans la phrase
+pos in text==pos dans le texte
+pos of phrase==Pos de la phrase
+props==props
+remote links==liaisons distantes
+select==sélectionner
+subject==subject
+term frequency==terme fréquence
+the reference exists (very extensive, but prevents further unresolved references)==la référence existe (très étendue, mais empêche d'autres références non résolues)
+title==titre
+to Peer:==aux pairs:
+total URLs==URLs totales
+unresolved URL Hash==URL Hash non résolue
+url==url
+url comps==composants de l'URL
+url length==longueur de l'URL
+video==video
+words in text==mots dans le texte
+words in title==mots dans le titre
+#-----------------------------
+
+#File: IndexControlURLs_p.html
+#---------------------------
+Cleanup==Nettoyage
+Delete HTTP & FTP Cache==Vider le cache HTTP & FTP
+Delete robots.txt Cache==Vider le cache robots.txt
+"API"=="API"
+"Delete URL and remove all references from words"=="Supprimer l'URL et supprimer toutes les références des mots"
+"Delete URL"=="Supprimer l'URL"
+"Delete"=="Supprimer"
+"Generate Statistics"=="Générer des statistiques"
+"Optimize Solr"=="Optimiser le Solr"
+"Show Content"=="Afficher le contenu"
+"Show Details for URL"=="Afficher les détails pour l'URL"
+"Show Details for URL-Hash"=="Afficher les détails pour URL-Hash"
+"Shut Down and Re-Start Solr"=="Arrêter et redémarrer Solr"
+"delete all"=="supprimer tout"
+Click the API icon to see an example call to the search rss API.==Cliquez sur l'icône API pour voir un exemple d'appel à l'API rss de recherche.
+Delete Citation Index (linking between URLs)==Supprimer l'index de citation (lien entre les URL)
+Delete First-Seen Date Table==Supprimer le tableau de la première date
+Delete RWI Index (DHT transmission words)==Supprimer l'index RWI (mots de transmission DHT)
+Delete local search index (embedded Solr and old Metadata)==Supprimer l'index de recherche local (Solr intégré et anciennes métadonnées)
+Delete remote solr index==Supprimer l'index Solr distant
+Domain==Domaine
+Index Deletion==Suppression de l'index
+Optimize Solr==Optimiser le Solr
+Reboot Solr Core==Redémarrer le noyau de Solr
+Retrieve by URL-Hash:==Récupérer par URL-Hash:
+Retrieve by URL:==Récupérer par URL:
+Show top==Afficher en haut
+Statistics about top-domains in URL Database==Statistiques sur les domaines supérieurs dans la base de données URL
+Stop Crawler and delete Crawl Queues==Arrêter Crawler et supprimer Crawl Queues
+This feature is available when using exclusively a local embedded Solr.==Cette fonctionnalité est disponible lorsque vous utilisez exclusivement un Solr intégré local.
+URL Database Administration==Administration de la base de données URL
+URL Retrieval==Récupération d'URL
+URLs==URLs
+delete the reference to this url at every other word where the reference exists (very extensive, but prevents unresolved references)==supprimer la référence à cette URL dans chaque autre mot où elle existe (très coûteux, mais évite les références non résolues)
+domains from all URLs.==domaines de toutes les URLs.
+merge to max.==fusionner à max.
+segments==segments
+this may produce unresolved references at other word indexes but they do not harm==cela peut produire des références non résolues à d'autres index de mots, mais ils ne portent pas préjudice
+#-----------------------------
+
+#File: IndexFederated_p.html
+#---------------------------
+"Set"=="Appliquer"
+/solr/select?q=*:*&start=0&rows=3&core=collection1==/solr/select?q= *:* & start=0 & rows=3 & core=collection1
+Allow self-signed certificates==Autoriser les certificats autosignés
+As an internal indexing database a deep-embedded multi-core Solr is used and it is possible to attach also a remote Solr.==En tant que base de données d'indexation interne, un Solr multi-cœur profondément intégré est utilisé et il est possible de joindre aussi un Solr distant.
+Block known error URLs in DHT==Bloquer les URL d'erreur connues dans DHT
+If checked, only non-zero values and non-empty strings are written to Solr fields.==Si coché, seules les valeurs non nulles et les chaînes non vides sont écrites dans les champs Solr.
+If you switch off this index, a remote Solr must be activated.==Si vous désactivez cet index, un Solr à distance doit être activé.
+Index Size==Taille de l'index
+Index Sources & Targets==Sources de l'index Objectifs &
+Lazy Value Initialization==Initialisation de la valeur paresseuse
+Peer-to-Peer Operation==Opération de pair à pair
+Permanent error statuses==Statuts d'erreur permanents
+Reject URLs/RWIs with known errors from peers. Disable to opt out.==Rejeter les URLs/RWIs avec des erreurs connues provenant des pairs. Désactivez cette option pour vous désinscrire.
+Retry after (days)==Réessayer après (jours)
+Sharding Method==Méthode de reliure
+Solr Host Administration Interface==Interface d'administration de l'hôte Solr
+Solr Hosts==Hôtes de Solr
+Solr Search Index==Index de recherche Solr
+Solr URL(s)==URL(s) Solr
+The 'RWI' (Reverse Word Index) is necessary for index transmission in distributed mode. For portal or intranet mode this must be switched off.==Le 'RWI' (Revers Word Index) est nécessaire pour la transmission d'index en mode distribué. Pour le mode portail ou intranet, cela doit être désactivé.
+The Solr native search interface is accessible at==L'interface de recherche native Solr est accessible à
+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).==L'ensemble des cibles distantes est utilisé comme shards d'un index complet. La partie hôte de l'URL sert de clé à une fonction de hachage qui sélectionne l'un des shards (l'un de vos serveurs distants).
+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).==L'index de structure web est utilisé pour la navigation par hôte (découvrir la structure interne des fichiers/dossiers), le classement (compter le nombre de références) et la recherche de fichiers (il y a environ quarante fois plus de liens depuis les pages chargées que dans les documents de l'index de recherche principal).
+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.==Ce Solr externe peut être utilisé à la place du Solr interne. Il peut également être utilisé en plus du Solr interne, puis les deux index Solr sont miroir.
+This will write the YaCy-embedded Solr index which is stored within the YaCy DATA directory.==Ceci écrira l'index de Solr intégré à YaCy qui est stocké dans le répertoire YaCy DATA.
+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 https://user:password@localhost:8984/solr.==Cochez ceci lorsque le serveur Solr distant est protégé par mot de passe et est demandé sur HTTPS mais ne fournit qu'un certificat autosigné (pas validé par une autorité de certification officielle). L'URL Solr pourrait être par exemple quelque chose comme https://user:password@localhost:8984/solr.
+Use deep-embedded local Solr==Utiliser le Solr local profondément intégré
+Use remote Solr server(s)==Utiliser un(s) serveur(s) Solr distant
+Web Structure Index==Index de la structure du Web
+When a search request is made, all servers are accessed synchronously and the result is combined.==Lorsqu'une requête de recherche est faite, tous les serveurs sont accédés synchronement et le résultat est combiné.
+YaCy supports multiple index storage locations.==YaCy prend en charge plusieurs emplacements de stockage d'index.
+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.==Vous pouvez définir ici une ou plusieurs cibles Solr auxquelles vous pouvez accéder en tant que shard. Pour plusieurs cibles, listez-les en utilisant un ',' (comma) comme séparateur.
+comma-separated (default: 404,410,-1; -1=DNS/network errors)==séparés par des virgules (par défaut : 404,410,-1 ; -1=erreurs DNS/réseau)
+for temporary errors; permanent errors stay blocked.==pour les erreurs temporaires; les erreurs permanentes restent bloquées.
+for the default search index (core: collection1) and at==pour l'index de recherche par défaut (core: collection1) et à
+support peer-to-peer index transmission (DHT RWI index)==prendre en charge la transmission d'index pair à pair (index DHT RWI)
+use citation reference index (lightweight and fast)==utiliser l'index de références de citation (léger et rapide)
+use webgraph search index (rich information in second Solr core)==utiliser l'index de recherche webgraph (informations riches dans le second noyau Solr)
+write-enabled (if unchecked, the remote server(s) will only be used as search peers)==write-enabled (si non vérifié, le(s) serveur(s) distant(s) ne sera utilisé(s) que comme pair de recherche)
+#-----------------------------
+
+#File: IndexImportJsonList_p.html
+#---------------------------
+File:==Fichier:
+"Import JsonList File"=="Importer le fichier JsonList"
+"Stop"=="Arrêter"
+Import Process==Processus d'importation
+JSON List Index Dump File Import==Liste JSON Index Dump Fichier Importation
+JsonList File Selection: select an jsonlist file (which may be gz compressed)==Sélection du fichier JsonList: sélectionnez un fichier jsonlist (qui peut être compressé par gz)
+JsonList File:==Fichier JsonList:
+No import thread is running, you can start a new thread here==Aucun thread d'importation n'est en cours d'exécution, vous pouvez démarrer un nouveau thread ici
+Processed:==Traité :
+Remaining Time:==Temps restant:
+Running Time:==Durée de fonctionnement:
+Speed:==Vitesse :
+Thread:==Thread :
+Url:==URL :
+or==ou
+#-----------------------------
+
+#File: IndexImportWarc_p.html
+#---------------------------
+File:==Fichier:
+"Import Warc File"=="Importer le fichier Warc"
+"Stop"=="Arrêter"
+Collection:==Collection :
+Import Process==Processus d'importation
+No import thread is running, you can start a new thread here==Aucun thread d'importation n'est en cours d'exécution, vous pouvez démarrer un nouveau thread ici
+Processed:==Traité :
+Remaining Time:==Temps restant:
+Running Time:==Durée de fonctionnement:
+Speed:==Vitesse :
+Thread:==Thread :
+Url:==URL :
+Warc File Selection: select an warc file (which may be gz compressed)==Sélection du fichier Warc: sélectionnez un fichier Warc (qui peut être compressé par gz)
+Warc File:==Fichier Warc:
+Web Archive File Import==Importation de fichier d'archives Web
+You can download warc archives for example here==Vous pouvez télécharger des archives de guerre par exemple ici
+or==ou
+#-----------------------------
+
+#File: IndexImportZim_p.html
+#---------------------------
+File:==Fichier:
+"Import ZIM File"=="Importer le fichier ZIM"
+"Stop"=="Arrêter"
+Collection:==Collection :
+Import Process==Processus d'importation
+No import thread is running, you can start a new thread here==Aucun thread d'importation n'est en cours d'exécution, vous pouvez démarrer un nouveau thread ici
+Processed:==Traité :
+Remaining Time:==Temps restant:
+Running Time:==Durée de fonctionnement:
+Speed:==Vitesse :
+Thread:==Thread :
+You can download ZIM files for example here==Vous pouvez télécharger des fichiers ZIM par exemple ici
+ZIM File Import==Importation de fichier ZIM
+ZIM File:==Fichier ZIM:
+Zim File Selection: select a '.zim' file==Sélection du fichier Zim: sélectionnez un fichier '.zim'
+#-----------------------------
+
+#File: IndexSchema_p.html
+#---------------------------
+"Set"=="Appliquer"
+Comment==Commentaire
+"API"=="API"
+"Required for proper operation"=="Requis pour un bon fonctionnement"
+"active"=="active"
+"disabled"=="disabled"
+"reindex Solr"=="réindex Solr"
+"reset selection to default"=="Réinitialiser la sélection par défaut"
+Active==Actif
+Attribute==Attribute
+Custom Solr Field Name==Nom de champ de Solr personnalisé
+Here you can reindex all documents with inactive fields.==Ici vous pouvez réindexer tous les documents avec des champs inactifs.
+If you unselected some fields, old documents in the index still contain the unselected fields.==Si vous n'avez pas sélectionné certains champs, les anciens documents de l'index contiennent toujours les champs non sélectionnés.
+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==Si vous utilisez un schéma Solr personnalisé, vous pouvez entrer un nom de champ différent dans la colonne 'Nom de champ Solr personnalisé' du nom d'attribut par défaut YaCy
+Reindex documents==Reindexer les documents
+Select a core:==Sélectionnez un core :
+Solr Schema Editor==Éditeur de schéma Solr
+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.==Le schéma Solr peut également être récupéré ici au format XML. Cliquez sur l'icône API pour voir le XML. Copiez simplement ce XML vers solr/conf/schema.xml pour configurer Solr.
+To physically remove them from the index you need to reindex the documents.==Pour les supprimer physiquement de l'index, vous devez réindexer les documents.
+show active==montrer actif
+show all available==Afficher toutes les disponibilités
+show disabled==afficher désactivé
+#-----------------------------
+
+#File: IndexShare_p.html
+#---------------------------
+"Set"=="Appliquer"
+Index Sharing==Partage d'index
+Index:==Index :
+distribute ==distribuer
+for each remote peer==pour chaque pair éloigné
+links/minute ==liens/minute
+receive==recevoir
+receive grant default:==recevoir une subvention par défaut:
+words/minute==words/minute
+#-----------------------------
+
+#File: Load_RSS_p.html
+#---------------------------
+Description==Description
+"Add All Items to Index (full content of url)"=="Ajouter tous les éléments à l'index (contenu complet de l'URL)"
+"Add Selected Feeds to Scheduler"=="Ajouter les flux sélectionnés à l'agenda"
+"Add Selected Items to Index (full content of url)"=="Ajouter les éléments sélectionnés à l'index (contenu complet de l'URL)"
+"Remove All Feeds from Feed List"=="Supprimer tous les flux de la liste des flux"
+"Remove All Feeds from Scheduler"=="Supprimer tous les flux du programmeur"
+"Remove Selected Feeds from Feed List"=="Supprimer les flux sélectionnés de la liste des flux"
+"Remove Selected Feeds from Scheduler"=="Supprimer les flux sélectionnés du programmeur"
+"Show RSS Items"=="Afficher les éléments RSS"
+All Count==Tous les comtes
+Attached media==Médias attachés
+Author==Auteur
+Available RSS Feed List==Liste des flux RSS disponibles
+Available after successful loading of rss feed in preview==Disponible après le chargement réussi de rss feed en prévisualisation
+Avg. Update/Day==Moy. mises à jour/jour
+Date==Date
+Docs==Docs
+Indexing==Indexation
+Language==Langue
+Last Count==Dernier décompte
+Last Load==Dernière charge
+List of Scheduled RSS Feed Load Targets==Liste des cibles de charge de flux RSS programmées
+Loading of RSS Feeds==Chargement des flux RSS
+Next Load==Chargement suivant
+Preview==Aperçu
+RSS feeds can be loaded into the YaCy search index.==Les flux RSS peuvent être chargés dans l'index de recherche YaCy.
+Recording==Enregistrement
+State==État
+This does not load the rss file as such into the index but all the messages inside the RSS feeds as individual documents.==Cela ne charge pas le fichier rss en tant que tel dans l'index, mais tous les messages à l'intérieur des flux RSS en tant que documents individuels.
+Time-to-live==Time-to-live
+Title==Titre
+URL==URL
+URL of the RSS feed==URL du flux RSS
+URL/Referrer==URL/Referrer
+automatically.==automatiquement.
+collection==collection
+days==jours
+enqueued==mis en file
+hours==heures
+indexed==indexé
+load this feed once now==charger ce flux une fois maintenant
+minutes==minutes
+new==nouveau
+once==une fois
+repeat the feed loading every==répéter le chargement de l'alimentation chaque
+scheduled==planifié
+#-----------------------------
+
+#File: PerformanceConcurrency_p.html
+#---------------------------
+Full Description==Description comlète
+Average Block Time Reading==Temps moyen de blocage en lecture
+Average Block Time Writing==Temps moyen de blocage en écriture
+Average Exec Time==Temps moyen d'exécution
+Children==Enfants
+Concurrency: Maximum Number of Threads==Concurrence : nombre maximal de threads
+Executors: Current Number of Threads==Exécuteurs : nombre actuel de threads
+Performance of Concurrent Processes==Rendement des processus concomitants
+Queue Size Current==Taille de la file actuelle
+Queue Size Maximum==Taille de la file maximale
+Thread==Thread
+Total Cycles==Total des cycles
+serverProcessor Objects==serverProcesseur Objets
#-----------------------------
+#File: RemoteCrawl_p.html
+#---------------------------
+UTC Offset==UTC Décalage
+Last Seen==Dernière connexion
+Name==Nom
+"Save"=="Enregistrer"
+Accept Remote Crawl Requests==Accepter les demandes de crawl à distance
+Age==Âge
+If the remote crawl option is switched on, then this peer will load URLs from the following remote peers:==Si l'option distante est activée, ce pair chargera les URL des pairs distants suivants:
+Links==Liens
+Load with a maximum of==Charge avec un maximum de
+PPM==PPM
+Peers offer remote-crawl urls if the flag 'Do Remote Indexing'==Les pairs proposent des URLs de crawl distant si l'option 'Do Remote Indexing'
+Peers offering remote crawl URLs==Les pairs offrent des URLs distantes
+Perform web indexing upon request of another peer.==Effectuer l'indexation Web sur demande d'un autre pair.
+QPH==QPH
+RWIs==RWIs
+Release==Version publiée
+Remote Crawler==Crawler distant
+Remote Crawler Configuration==Configuration du crawler distant
+The remote crawler is a process that requests urls from other peers.==Le crawler distant est un processus qui demande des URLs à d'autres pairs.
+URLs for Remote Crawl==URLs pour crawl distant
+Uptime==Temps de fonctionnement
+Your peer cannot accept remote crawls because you need senior or principal peer status for that!==Votre pair ne peut pas accepter de crawls distants, car cela nécessite le statut de pair senior ou principal !
+is switched on when a crawl is started.==est activée lorsqu'un crawl est démarré.
+pages per minute==pages par minute
+#-----------------------------
+
+#File: ServerScannerList.html
+#---------------------------
+Protocol==Protocole
+"Add Selected Servers to Crawler"=="Ajouter des serveurs sélectionnés à Crawler"
+Access==Accès
+Available server within the given IP range==Serveur disponible dans la plage IP donnée
+IP==IP
+Network Scanner Monitor==Moniteur de balayage de réseau
+Process==Processus
+The following servers can be searched:==Les serveurs suivants peuvent être recherchés:
+URL==URL
+denied==refusé
+empty==vide
+granted==accordé
+inaccessible==inaccessible
+indexed==indexé
+not in index==pas dans l'index
+#-----------------------------
+
+#File: Settings_Crawler.inc
+#---------------------------
+Crawler Settings==Paramètres du Crawler
+"Submit"=="Envoyer"
+FTP Crawler Settings:==FTP Crawler Settings:
+Generic Crawler Settings:==Paramètres génériques du crawler :
+Local File Crawler Settings:==Paramètres du crawler de fichiers locaux :
+SMB Crawler Settings:==Paramètres du crawler SMB :
+Changes will take effect immediately.==Les changements entreront en vigueur immédiatement.
+HTTP Crawler Settings:==Paramètres du crawler HTTP :
+Maximum Filesize:==Taille maximale des fichiers :
+Please note that if the crawler uses content compression, this limit is used to check the compressed content size.==Veuillez noter que si le crawler utilise la compression de contenu, cette limite sert à vérifier la taille du contenu compressé.
+Timeout:==Délai d'expiration :
+#-----------------------------
+
+#File: Settings_Proxy.inc
+#---------------------------
+Remote Proxy (optional)==Proxy à distance (optionel)
+"Submit"=="Envoyer"
+Changes will take effect immediately.==Les changements entreront en vigueur immédiatement.
+Enables the usage of the remote proxy by yacy==Active l'utilisation du proxy distant par yacy
+IP addresses for which the remote proxy should not be used==Adresses IP pour lesquelles le proxy distant ne devrait pas être utilisé
+No-proxy addresses==Adresses sans proxy
+Remote proxy host==Hôte proxy distant
+Remote proxy password==Mot de passe proxy distant
+Remote proxy port==Port proxy distant
+Remote proxy user==Utilisateur proxy distant
+Specifies if YaCy should forward ssl connections to the remote proxy.==Spécifie si YaCy doit faire suivre les connexions ssl au proxy distant.
+The ip address or domain name of the remote proxy==L'adresse ip ou le nom de domaine du proxy distant
+Use remote proxy==Utiliser un proxy distant
+Use remote proxy for HTTPS==Utiliser un proxy distant pour HTTPS
+YaCy can use another proxy to connect to the internet. You can enter the address for the remote proxy here:==YaCy peut utiliser un autre proxy pour se connecter à Internet. Vous pouvez saisir l'adresse du proxy distant ici:
+the port of the remote proxy==le port du proxy distant
+#-----------------------------
+
+#File: Settings_Seed.inc
+#---------------------------
+Seed Upload Settings==Paramètres d'envoi de Seed
+"Retry Uploading"=="Réessayer le chargement"
+"Submit"=="Envoyer"
+General Settings:==Paramètres généraux :
+Here you can specify which upload method should be used. Select 'none' to deactivate uploading.==Ici, vous pouvez spécifier quelle méthode de téléchargement doit être utilisée. Sélectionnez 'none' pour désactiver le téléchargement.
+If you enable one of the available uploading methods, you will become a principal peer.==Si vous activez l'une des méthodes de téléchargement disponibles, vous deviendrez un pair principal.
+The URL that can be used to retrieve the uploaded seed file, like==L'URL permettant de récupérer le fichier seed envoyé, par exemple
+URL==URL
+Upload Method==Méthode de chargement
+With these settings you can configure if you have an account on a public accessible==Avec ces paramètres vous pouvez configurer si vous avez un compte sur un public accessible
+Your peer will then upload the seed-bootstrap information periodically,==Votre pair va ensuite télécharger périodiquement l'information de seed-bootstrap,
+but only if there have been changes to the seed-list.==mais seulement si la liste seed a été modifiée.
+http://www.<my-host>.net/yacy/seed.txt'==http://www.<my-host>.net/yacy/seed.txt '
+server where you can host a seed-list file.==serveur sur lequel vous pouvez héberger un fichier de liste seed.
+#-----------------------------
+
+#File: Settings_Seed_UploadFtp.inc
+#---------------------------
+Path==Chemin
+"Submit"=="Envoyer"
+If you set this, you will become a principal peer.==Si vous définissez cela, vous deviendrez un pair principal.
+Password==Mot de passe
+Server==Serveur
+The host where you have a FTP account, like 'ftp.<my-host>.net'==L'hôte où vous avez un compte FTP, comme 'ftp. < my-host >.net'
+The password==Le mot de passe
+The remote path on the FTP server, like 'yacy/seed.txt'. Missing sub-directories are NOT created automatically.==Le chemin distant sur le serveur FTP, par exemple 'yacy/seed.txt'. Les sous-répertoires manquants ne sont PAS créés automatiquement.
+This is the account for a FTP server where you can host a seed-list file.==Compte du serveur FTP sur lequel vous pouvez héberger un fichier de liste seed.
+Uploading via FTP:==Téléchargement via FTP:
+Username==Nom d'utilisateur
+Your log-in at the FTP server==Votre connexion au serveur FTP
+Your peer will then upload the seed-bootstrap information periodically,==Votre pair va ensuite télécharger périodiquement l'information de seed-bootstrap,
+but only if there had been changes to the seed-list.==mais seulement si la liste seed a été modifiée.
+#-----------------------------
+
+#File: Settings_Seed_UploadScp.inc
+#---------------------------
+Path==Chemin
+"Submit"=="Envoyer"
+Password==Mot de passe
+Server==Serveur
+Server Port==Port du serveur
+The host where you have an account, like 'my.host.net'==L'hôte où vous avez un compte, comme 'mon.host.net'
+The password==Le mot de passe
+The remote path on the server, like '~/yacy/seed.txt'. Missing sub-directories are NOT created automatically.==Le chemin distant sur le serveur, par exemple '~/yacy/seed.txt'. Les sous-répertoires manquants ne sont PAS créés automatiquement.
+The sshd port of the host, like '22'==Le port sshd de l'hôte, comme '22'
+This is the account for a server where you are able to login via ssh.==C'est le compte d'un serveur où vous pouvez vous connecter via ssh.
+Uploading via SCP:==Téléchargement via SCP:
+Username==Nom d'utilisateur
+Your log-in at the server==Votre connexion au serveur
+#-----------------------------
+
+#File: Settings_ServerAccess.inc
+#---------------------------
+Server Access Settings==Paramètres d'accès au serveur
+"Submit"=="Envoyer"
+(look out for 'tunneling through https proxy with connect command') and create==(regardez pour 'tunneling through https proxy with connect command') et créez
+(requires restart)==(nécessite un redémarrage)
+Changes need a server restart.==Les modifications nécessitent un redémarrage du serveur.
+Here you can restrict access to the server. By default, the access is not limited,==Ici vous pouvez restreindre l'accès au serveur.Par défaut, l'accès n'est pas limité,
+The publicPort can help that your peer can be reached by other peers in case that your==Le portail public peut aider vos pairs à être rejoints par d'autres pairs dans le cas où votre
+The staticIP can help that your peer can be reached by other peers in case that your==L'IP statique peut aider à rendre votre pair joignable par d'autres pairs si votre
+Compress responses with gzip==Compresser les réponses avec gzip
+Compression settings==Paramètres de compression
+Filter have to be entered as IP, IP range or using CIDR notation separated by comma (e.g. 192.168.1.1,2001:db8==Les filtres doivent être saisis comme IP, plage IP ou notation CIDR, séparés par des virgules (par ex. 192.168.1.1,2001:db8
+However, blocking access may be correct in enterprise environments where you only want to index your==Cependant, le blocage de l'accès peut être correct dans les environnements d'entreprise où vous voulez seulement indexer votre
+IP-Number filter:==Filtre IP :
+If the address of outgoing connections is equal to the address of incoming connections,==Si l'adresse des connexions sortantes est égale à l'adresse des connexions entrantes,
+If the port used to access YaCy is the same port the application is listening on,==Si le port utilisé pour accéder à YaCy est le même port que l'application écoute,
+If the value you enter here does not match with this IP,==Si la valeur que vous entrez ici ne correspond pas à cette IP,
+If you block access to your server (setting anything else than '*'), then you will also be blocked==Si vous bloquez l'accès à votre serveur (réglage autre chose que '*'), alors vous serez également bloqué
+Server Port Settings==Paramètres du port serveur
+Server port:==Port serveur :
+Server ssl port:==Port SSL du serveur :
+Set this to avoid error-messages like 'proxy use not allowed / granted' on accessing your Peer by its hostname.==Définissez ceci pour éviter des messages d'erreur comme 'proxy use not allowed / granted' lors de l'accès à votre pair par son nom d'hôte.
+Shutdown port:==Port d'arrêt :
+The requesting user-agent (a web browser, another YaCy peer or any other tool) uses the header 'Accept-Encoding' to tell whether it accepts gzip compression or not.==L'utilisateur-agent requérant (un navigateur Web, un autre pair YaCy ou tout autre outil) utilise l'en-tête « Accept-Encoding » pour dire s'il accepte ou non la compression gzip.
+This access address can be set here (either as IP number or domain name).==Cette adresse d'accès peut être définie ici (en tant que numéro IP ou nom de domaine).
+This adds some processing overhead, but can significantly reduce the amount of bytes transmitted over the network.==Cela ajoute quelques frais généraux de traitement, mais peut réduire considérablement la quantité d'octets transmis sur le réseau.
+This is the local port on the loopback address (127.0.0.1 or :1) to listen for a shutdown signal to stop the YaCy server (-1 disables the shutdown port, recommended default is 8005). A change requires a restart.==C'est le port local sur l'adresse loopback (127.0.0.1 ou:1) pour écouter un signal d'arrêt pour arrêter le serveur YaCy (-1 désactive le port d'arrêt, par défaut recommandé est 8005). Un changement nécessite un redémarrage.
+This is the main port for all http communication (default is 8090). A change requires a restart.==C'est le port principal pour toutes les communications http (par défaut est 8090). Un changement nécessite un redémarrage.
+This is the port to connect via https (default is 8443). A change requires a restart.==C'est le port à connecter via https (par défaut est 8443). Un changement nécessite un redémarrage.
+Virtual host for httpdFileServlet access for example http://FILEHOST/ shall access the file servlet and==L'hôte virtuel pour l'accès httpdFileServlet par exemple http://FILEHOST/ doit accéder au serveur de fichiers et
+When checked (default), HTTP responses can be compressed using gzip.==Lorsque coché (par défaut), les réponses HTTP peuvent être compressées à l'aide de gzip.
+an access point for incoming connections.==un point d'accès pour les connexions entrantes.
+because this function is needed to spawn the p2p index-sharing function.==parce que cette fonction est nécessaire pour générer la fonction de partage d'index p2p.
+company's own web pages.==les pages web de l'entreprise.
+ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)==ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)
+fileHost:==fileHost:
+for the preconfigured value 'localpeer', the URL is: http://localpeer/.==pour la valeur préconfigurée 'localpeer', l'URL est: http://localpeer/.
+from using other peers' indexes for search service.==de l'utilisation d'index d'autres pairs pour le service de recherche.
+further details on format see Jetty==pour plus de détails sur le format voir Jetty
+peer is behind a firewall or proxy. You can create a tunnel through the firewall/proxy==le pair est derrière un pare-feu ou un proxy. Vous pouvez créer un tunnel à travers le pare-feu/proxy
+peer is behind a reverse proxy.==pair est derrière un proxy inverse.
+publicPort (optional):==port public (facultatif):
+return the defaultFile at rootPath either way, http://FILEHOST/ denotes the same as http://localhost:<port>/==retourner le Fichier par défaut à rootPath de toute façon, http://FILEHOST/ indique la même chose que http://localhost:<port>/
+staticIP (optional):==IP statique (facultatif):
+you don't need to set anything here, please leave it blank.==Tu n'as pas besoin de mettre quoi que ce soit ici, s'il te plaît laisse-le vide.
+you will not be able to access the server pages anymore.==vous ne pourrez plus accéder aux pages du serveur.
+#-----------------------------
+
+#File: Supporter.html
+#---------------------------
+"bookmark"=="ajouter aux favoris"
+"Add to bookmarks"=="Ajouter aux favoris"
+"Give negative vote"=="Donner un vote négatif"
+"Give positive vote"=="Donner un vote positif"
+"YaCy Supporter"=="Soutien YaCy"
+"negative vote"=="vote négatif"
+"positive vote"=="vote positif"
+Supporter==Supporter
+Supporter are switched off for users without authorization==Le supporteur est désactivé pour les utilisateurs sans autorisation
+#-----------------------------
+
+#File: Surftips.html
+#---------------------------
+"bookmark"=="ajouter aux favoris"
+Surftips==Recommendations
+"Add to bookmarks"=="Ajouter aux favoris"
+"Give negative vote"=="Donner un vote négatif"
+"Give positive vote"=="Donner un vote positif"
+"YaCy Surftips"=="Surftips de YaCy"
+"authentication required"=="authentification requise"
+"negative vote"=="vote négatif"
+"positive vote"=="vote positif"
+Hide surftips for users without authorization==Cacher les surftips pour les utilisateurs sans autorisation
+Show surftips to everyone==Montrez des surftips à tout le monde
+Surftips are switched off for users without authorization==Surftips sont désactivés pour les utilisateurs sans autorisation
+YaCy Supporters==Supports YaCy
+a list of home pages of yacy users==une liste des pages d'accueil des utilisateurs de yacy
+#-----------------------------
+
+#File: Table_RobotsTxt_p.html
+#---------------------------
+Click the API icon to see the XML.==Cliquez sur l'icône API pour afficher le XML.
+The information that is presented on this page can also be retrieved as XML.==Les informations présentées ici peuvent être obtenues au format XML.
+"API"=="API"
+"robots.txt Table"=="Robots.txt Table"
+robots.txt table==Robots.txt table
+#-----------------------------
+
+#File: Tables_p.html
+#---------------------------
+"Search"==Rechercher
+"Add a new Row"=="Ajouter une nouvelle ligne"
+"Commit"=="Valider"
+"Delete Selected Rows"=="Supprimer les lignes sélectionnées"
+"Delete Table"=="Supprimer le tableau"
+"Edit Selected Row"=="Modifier la ligne sélectionnée"
+"Tables"=="Tables"
+PK==PK
+Primary Key==Clé primaire
+Row Editor==Éditeur de lignes
+Select Table:==Sélectionner la table :
+Table Administration==Administration du tableau
+Table Selection==Sélection du tableau
+all==tous
+entries,==les entrées,
+reverse:==reverse:
+search rows for==les lignes de recherche pour
+show max.==Afficher max.
+#-----------------------------
+
+#File: TransNews_p.html
+#---------------------------
+File:==Fichier:
+Originator==Initiateur
+"Publish"=="Publier"
+"negative vote"=="vote négatif"
+"positive vote"=="vote positif"
+English:==Anglais :
+The remote peer can vote on your translation and add it to its own local translation.==Le pair distant peut voter sur votre traduction et l'ajouter à sa propre traduction locale.
+Translation:==Traduction :
+Vote on this translation. If you vote positive the translation is added to your local translation list.==Votez sur cette traduction. Si vous votez positif, la traduction est ajoutée à votre liste de traduction locale.
+You can share your local addition to translations and distribute it to other peers.==Vous pouvez partager votre ajout local aux traductions et le distribuer à d'autres pairs.
+existing==existant
+#-----------------------------
+
+#File: Vocabulary_p.html
+#---------------------------
+Delete==Supprimer
+Size==Taille
+"API"=="API"
+"Create"=="Créer"
+"Standard CSV field delimiter"=="Délimiteur de champ standard CSV"
+"Submit"=="Envoyer"
+"Uniform Resource Locator"=="Uniform Resource Locator"
+"View"=="Voir"
+(If checked, this vocabulary is used for search facets. Not feasible for large vocabularies!)==(Si coché, ce vocabulaire est utilisé pour les facettes de recherche. Impossible pour les grands vocabulaires!)
+(first has index 0)==(le premier a l'indice 0)
+(first has index 0, if unused set -1)==(le premier a l'indice 0, s'il n'est pas utilisé -1)
+Auto-Discover==Auto-Discover
+Auto-Enrich with Synonyms from Stemming Library==Auto-Enrichir avec les synonymes de la bibliothèque Stemming
+Charset of Import File==Charset du fichier d'importation
+Cleartext==Cleartext
+Click the API icon to see the RDF Ontology definition for this vocabulary.==Cliquez sur l'icône API pour voir la définition de RDF Ontology pour ce vocabulaire.
+Column for Literals==Colonne pour les Littérales
+Column for Object Link (optional)==Colonne pour le lien objet (facultatif)
+Column separator==Séparateur de colonne
+Comma ','==Comma ','
+Empty Vocabulary==Vocabulaire vide
+File==Fichier
+File Path or URL==Chemin de fichier ou URL
+Import from a csv file==Importer à partir d'un fichier csv
+Is Facet?==Est-ce que Facet ?
+It is possible to produce a vocabulary out of the existing search index. This is done using a given 'objectspace' which you can enter as a URL Stub.==Il est possible de produire un vocabulaire à partir de l'index de recherche existant. Ceci est fait à l'aide d'un 'objet espace' donné que vous pouvez entrer sous forme d'URL Stub.
+Linked data/Semantic web annotations==Annotations Linked Data / Web sémantique
+Literal==Literal
+Match terms from==Correspondance des termes de
+Modify==Modifier
+Namespace==Espace de noms
+Object Link==Lien de l'objet
+Objectspace==Objectspace
+Please provide a CSV file path or URL.==Veuillez fournir un chemin de fichier CSV ouURL.
+Predicate==Predicate
+Prefix==Préfixe
+Read Column==Lire la colonne
+Semicolon ';'==Semi-colon ';'
+Start line==Ligne de démarrage
+Synonyms==Synonymes
+The information that is presented on this page can also be retrieved as XML==Les informations présentées sur cette page peuvent également être récupérées sous forme de XML
+The object can be denoted by a url stub that, combined with the term, becomes the url for the object.==L'objet peut être désigné par un préfixe d'URL qui, combiné au terme, devient l'URL de l'objet.
+The vocabulary is used to annotate the indexed content with a reference to the object that is denoted by the term of the vocabulary.==Le vocabulaire est utilisé pour annoter le contenu indexé avec une référence à l'objet qui est désigné par le terme du vocabulaire.
+This stub is used to find all matching URLs. If the remaining path from the matching URLs then denotes a single file, the file name is used as vocabulary term.==Ce stub est utilisé pour trouver toutes les URLs correspondantes. Si le chemin restant des URLs correspondantes indique alors un seul fichier, le nom du fichier est utilisé comme terme de vocabulaire.
+This works best with wikis. Try to use a wiki url as objectspace path.==Cela fonctionne mieux avec les wikis. Essayez d'utiliser une URL de wiki comme chemin d'espace objet.
+Vocabularies can be used to produce a search navigation. A vocabulary must be created before content is indexed.==Les vocabulaires peuvent être utilisés pour produire une navigation de recherche. Un vocabulaire doit être créé avant l'indexation du contenu.
+Vocabulary Administration==Administration du vocabulaire
+Vocabulary Editor==Éditeur de vocabulaire
+Vocabulary Name==Nom du vocabulaire
+Vocabulary Production==Vocabulaire Production
+Vocabulary Selection==Sélection du vocabulaire
+[automatically generated, not stored, cannot be edited]==[L'édition automatique, non stockée, ne peut pas être éditée]
+add==ajouter
+clear table (remove all terms)==tableau clair (supprimer tous les termes)
+delete vocabulary==supprimer le vocabulaire
+from file name==à partir du nom du fichier
+from page author==de page auteur
+from page title==du titre de la page
+from page title (split)==du titre de la page (split)
+no Synonyms==non Synonymes
+#-----------------------------
+
+#File: WatchWebStructure_p.html
+#---------------------------
+Text==Texte
+"API"=="API"
+"WebStructurePicture"=="WebStructurePicture"
+"change"=="changer"
+"minus"=="minus"
+"plus"=="plus"
+Background==Arrière-plan
+Click the API icon to see the XML file.==Cliquez sur l'icône API pour voir le fichier XML.
+Color==Couleur
+Dot-end==Dot-end
+Host List==Liste des hôtes
+Line==Ligne
+Other Dot==Autres points
+Pivot Dot==Points pivotants
+The data that is visualized here can also be retrieved in a XML file, which lists the reference relation between the domains.==Les données visualisées ici peuvent également être récupérées dans un fichier XML, qui énumère la relation de référence entre les domaines.
+Web Structure==Structure du Web
+With a GET-property 'about' you get only reference relations about the host that you give in the argument field for 'about'.==Avec un GET-property 'about' vous obtenez seulement des relations de référence sur l'hôte que vous donnez dans le champ argument pour 'about'.
+With a GET-property 'latest' you get a list of references that had been computed during the current run-time of YaCy, and with each next call only an update to the next list of references.==Avec un "dernier" de propriété GET, vous obtenez une liste de références qui ont été calculées pendant le temps d'exécution actuel de YaCy, et avec chaque appel suivant seulement une mise à jour à la prochaine liste de références.
+depth==profondeur
+host==hôte
+nodes==nœuds
+size==taille
+time==temps
+#-----------------------------
+
+#File: api/yacydoc.html
+#---------------------------
+Description==Description
+Subject==Titre
+"API"=="API"
+Author==Auteur
+Click the API icon to see an example call to the search rss API.==Cliquez sur l'icône API pour voir un exemple d'appel à l'API rss de recherche.
+Collections==Collections
+Contributor==Contributeur
+Date==Date
+Document size==Taille du document
+Identifier==Identifiant
+Inbound Links (anchors)==Liens entrants (ancrages)
+Incoming Links (citation)==Liens entrants (citation)
+Language==Langue
+Load Date==Date de chargement
+Location==Emplacement
+Number of Words==Nombre de mots
+Outbound Links (anchors)==Liens sortants (ancrages)
+Publisher==Éditeur
+Referrer Identifier==Identificateur du répondant
+Referrer URL==URL du référent
+This search result can also be retrieved as XML.==Ce résultat de recherche peut également être récupéré sous forme de XML.
+Title==Titre
+Type==Type
+YaCy Identifier==Identificateur YaCy
+#-----------------------------
+
+#File: env/templates/simpleSearchHeader.template
+#---------------------------
+Compare Search==Recherche comparative
+Example Calls to the Search API:==Exemples d'appels sur l'API :
+File Search==Recherche de fichiers
+Toggle navigation==Activer la navigation
+URL Viewer==Analyseur d'URL
+Web Search==Recherche Web
+YaCy Tutorials==Tutoriels YaCy
+"Administration"=="Administration"
+"Help"=="Aide"
+"Log in to use extended search features"=="Connectez-vous pour utiliser les fonctions de recherche élargie"
+"Search Interfaces"=="Interfaces de recherche"
+==
+API Solr Default Core / JSON==API Solr Default Core / JSON
+API Solr Default Core / XML==API Solr Default Core / XML
+API Solr RSS/Opensearch==API Solr RSS/OpenSearch
+API Solr Webgraph Core / XML==API Solr Webgraph Core / XML
+API YaCy JSON==API YaCy JSON
+API YaCy RSS/Opensearch==API YaCy RSS/OpenSearch
+external Bugtracker==externe Bugtracker
+external Community (Web Forums)==externe Communauté (forums web)
+external Download YaCy==externe Télécharger YaCy
+external Git Repository==externe Dépôt Git
+About This Page==À propos de cette page
+Administration »==Administration »
+Chat==Chat
+JavaScript information==Informations JavaScript
+Log in==Connectez-vous
+Search Interfaces==Interfaces de recherche
+#-----------------------------
+
+#File: env/templates/submenuBlacklist.template
+#---------------------------
+Blacklist Administration==Administration de liste noire
+Blacklist Cleaner==Nettoyage de Liste Noire
+Blacklist Test==Test de liste noire
+Filter & Blacklists==Filtres et listes noires
+Import/Export==Import/Export
+#-----------------------------
+
+#File: env/templates/submenuMaintenance.template
+#---------------------------
+RAM/Disk Usage & Updates==Utilisation RAM/disque et mises à jour
+Download System Update==Télécharger la mise à jour du système
+Performance==Performance
+Web Cache==Cache Web
+#-----------------------------
+
+#File: env/templates/submenuSemantic.template
+#---------------------------
+Content Semantic==Sémantique du contenu
+Auto-Annotation Vocabulary Editor==Éditeur de vocabulaire de l'annotation automatique
+Automated Annotation==Annotation automatisée
+Knowledge Loader==Chargeur de connaissances
+#-----------------------------
+
+#File: env/templates/submenuTargetAnalysis.template
+#---------------------------
+Target Analysis==Analyse de cible
+Mass Crawl Check==Vérification de crawl massif
+Regex Test==Essai Regex
+#-----------------------------
+
+#File: proxymsg/unknownHost.inc
+#---------------------------
+Did you mean:==Vouliez-vous plutôt dire :
+#-----------------------------
+
+#File: sharedBlacklist_p.html
+#---------------------------
+"add"=="Ajouter"
+"deselect all"=="désélectionner tout"
+"select all"=="tout sélectionner"
+" not found or empty list.==" n'a pas trouvé ou liste vide.
+" not found.==" non trouvé.
+Add Items to Blacklist==Ajouter des éléments à la liste noire
+Blacklist item==Élément de la liste noire
+Blacklist source:==Source de la liste noire:
+Blacklist target:==Cible de la liste noire:
+File Error! Unable to fetch data from file.==Erreur de fichier! Impossible de récupérer les données du fichier.
+Parse Error! An error occured while parsing XML data. Please check if the XML is valid.==Erreur d'analyse! Une erreur s'est produite lors de l'analyse des données XML. Veuillez vérifier si le XML est valide.
+URL "==URL "
+Unable to store the items into the blacklist file:==Impossible de stocker les éléments dans le fichier de la liste noire:
+Wrong Invocation! Please invoke with sharedBlacklist.html?name=PeerName==Mauvaise invocation ! Veuillez appeler sharedBlacklist.html?name=PeerName
+YaCy-Peer "==YaCy-Peer "
+#-----------------------------
+
+#File: yacychat.html
+#---------------------------
+"Search"==Rechercher
+"Attach a file"=="Joindre un fichier"
+"Attach search results by default"=="Joindre les résultats de recherche par défaut"
+"Clear chat"=="Effacer le chat"
+"Download chat"=="Télécharger le chat"
+"Send"=="Send"
+"Show system prompt"=="Afficher l'invite du système"
+"Upload chat"=="Télécharger le chat"
+Attach PNG/JPG or text (.txt/.md/.tex)==Joindre un PNG/JPG ou du texte (.txt/.md/.tex)
+Attach Search Results==Joindre les résultats de la recherche
+Clear Chat==Effacer le clavardage
+Default Dialog Augmentation:==Augmentation de la boîte de dialogue par défaut:
+Download Chat==Télécharger le clavardage
+Show System==Afficher le système
+This Chat is private. YaCy does not keep any history — only your browser remembers the current conversation.==Ce Chat est privé. YaCy ne garde aucune histoire — seul votre navigateur se souvient de la conversation actuelle.
+Upload Chat==Télécharger le clavardage
+User==Utilisateur
+YaCy Chat==YaCy Chat
+no search, allow attachments==pas de recherche, autoriser les pièces jointes
+use global search==utiliser la recherche globale
+use local search==utiliser la recherche locale
+#-----------------------------
+
+#File: yacysearch_location.html
+#---------------------------
+Click the API icon to see the XML.==Cliquez sur l'icône API pour afficher le XML.
+"API"=="API"
+"search"=="search"
+The information that is presented on this page can also be retrieved as XML==Les informations présentées sur cette page peuvent également être récupérées sous forme de XML
+search==recherche
+#-----------------------------
+
+#File: AILab.html
+#---------------------------
+"Index creation"=="Création d'index"
+"Inference engine setup"=="Configuration du moteur à inférence"
+"Log report monitor"=="Moniteur de rapport de journal"
+"Model assignment preview"=="Aperçu de l'assignation du modèle"
+"RAG configuration"=="Configuration du RAG"
+"Shield definition"=="Définition du bouclier"
+"Tools configuration"=="Configuration des outils"
+0 / 6 unlocked==0 / 6 déverrouillés
+AI Lab Build System==Système de construction de laboratoires d'IA
+Add guardrails: access rates, grant or deny non-localhost access. Activate the front page link for chat to complete this quest.==Ajouter des garde-corps: taux d'accès, subvention ou refus d'accès non local. Activer le lien de la page d'accueil pour le chat pour compléter cette quête.
+Assign a log-report model, then review generated hourly and daily self-enhancement reports.==Assignez un modèle de rapports de journal, puis examinez les rapports horaires et quotidiens d'auto-amélioration générés.
+Assign log-report model==Modèle de rapport de log d'attribution
+Assign models for chat, search, translation, and more. This is your loadout bench.==Assignez des modèles pour le chat, la recherche, la traduction, et plus encore. C'est votre banc de chargement.
+Bind an inference engine==Reliure un moteur à inférence
+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.==Terminez les quêtes ci-dessous pour débloquer le sidekick AI de YaCy: lier un moteur d'inférence, charger des modèles de production, le nourrir avec votre index, puis filer RAG et boucliers.
+Craft your AI toolkit==Créez votre boîte à outils AI
+Create a local index for grounding: crawl a site or import a pack to give your AI facts to cite.==Créez un index local pour l'ancrage : crawlez un site ou importez un pack afin de fournir à votre IA des faits à citer.
+Define a shield==Définir un bouclier
+Deploy at least one model, then assign capabilities (chat, search-query, tooling, vision).==Déployer au moins un modèle, puis assigner des capacités (chat, recherche-requête, outillage, vision).
+Enable/Disable Tools==Activer/désactiver les outils
+Go to Production Models Matrix==Aller à la matrice des modèles de production
+Grow a search index==Créer un index de recherche
+Import an index pack==Importer un pack index
+Indexed documents:==Documents indexés:
+Mandatory==Mandatory
+Map which production models answer search-query and Q/A pairs so the RAG proxy can mix search with chat.==Associez les modèles de production qui répondent aux requêtes de recherche et aux paires Q/R afin que le proxy RAG puisse combiner recherche et chat.
+Monitor log reports==Surveiller les rapports du journal de bord
+Needs setup==Configuration des besoins
+Open engine setup==Configuration du moteur ouvert
+Open log reports==Ouvrir les rapports de journal
+Open shield settings==Ouvrez les paramètres du bouclier
+Open tools configuration==Configuration des outils ouverts
+Optional==Optional
+Pick your host (Ollama, LM Studio, OpenAI-compatible) and give YaCy a place to send prompts.==Choisissez votre hôte (Ollama, LM Studio, compatible OpenAI) et donnez à YaCy un endroit pour envoyer des invitations.
+Populate the Production Models Matrix==Populez la matrice des modèles de production
+Report generation stays inactive until a production model is assigned to the log-report role.==La génération de rapports reste inactive jusqu'à ce qu'un modèle de production soit attribué au rôle de rapport log.
+Set hoststub, API keys, and defaults to unlock downloads.==Définissez hoststub, les touches API et par défaut pour déverrouiller les téléchargements.
+Set the search-query and qapairs columns to connect retrieval to your chat flow.==Définissez les colonnes de recherche et de qapairs pour connecter l'extraction à votre flux de chat.
+Start a crawl==Démarrer un crawl
+Store your shield directives (system prompts, stop words) as properties, then exercise them in chat.==Conservez vos directives de bouclier (invites système, stop mots) en tant que propriétés, puis exercez-les dans le chat.
+Superpowers for the YaCy Chat==Superpuissances pour le YaCy Chat
+Test in Chat==Essai en clavardage
+Tune descriptions and set maxCallsPerTurn per tool (0 disables a tool).==Tune descriptions et set maxCallsPerTurn par outil (0 désactive un outil).
+Wire RAG prompts==Appels RAG filaires
+Wire RAG retrieval==Récupération par fil RAG
+required to unlock (need at least 1000 documents).==nécessaire pour déverrouiller (besoin d'au moins 1000 documents).
+#-----------------------------
+
+#File: AIShield_p.html
+#---------------------------
+Allow non-localhost clients to access the chat interface==Permettre aux clients non locaux d'accéder à l'interface de chat
+By default only localhost may reach the chat UI. Enable non-localhost access and throttle requests to reduce abuse.==Par défaut, seul localhost peut atteindre l'interface utilisateur de chat. Activer l'accès non localhost et les requêtes d'accélérateur pour réduire l'abus.
+Control who can access the chat interface and rate-limit non-localhost clients to protect your peer and LLM backends from overload.==Contrôlez qui peut accéder à l'interface de chat et limitez le tarif des clients non locaux pour protéger vos pairs et LLM de la surcharge.
+Expose a shortcut to the chat UI on the search front page if you want users to discover it.==Exposer un raccourci vers l'interface utilisateur de chat en première page de recherche si vous voulez que les utilisateurs le découvrent.
+Front Page Link==Lien de la page première
+Guest Access Control & Rate Limits==Contrôle de l'accès aux clients et limites tarifaires
+Limit for all requests, including localhost==Limite pour toutes les demandes, y compris l'hôte local
+Overall Load Protection==Protection globale de la charge
+Per day:==Par jour:
+Per hour:==Par heure:
+Per minute:==Par minute:
+Recent access volume across all clients (localhost included). You can enforce global limits here to protect the host.==Volume d'accès récent pour tous les clients (localhost inclus). Vous pouvez appliquer des limites globales ici pour protéger l'hôte.
+Requests / day==Requêtes/jour
+Requests / hour==Requêtes/heure
+Requests / minute==Requêtes/minute
+Requests from non-localhost will be throttled using these caps:==Les requêtes provenant d'hôtes non locaux seront limitées avec ces plafonds :
+Save Shield Settings==Enregistrer les paramètres du bouclier
+Show a link to yacychat.html on the search front page==Afficher un lien vers yacychat.html en première page de la recherche
+Wire RAG Retrieval Shield==Bouclier de récupération RAG filaire
+#-----------------------------
+
+#File: ContentIntegrationPHPBB3_p.html
+#---------------------------
+"Check database connection"=="Vérifier la connexion à la base de données"
+"Export Content to Packs"=="Exporter le contenu vers des packs"
+"Import Dump"=="Importer une douille"
+Host of the database==Hôtede la base de données
+Import a database dump,==Importer une base de données dump,
+Name of the database on the host==Nom de la base de donnéessur l'hôte
+Password for the account of that user given above==Mot de passe pour le compte de cet utilisateur indiqué ci-dessus
+Port of database service (usually 3306 for mySQL)==Port du service de base de données (généralement 3306 pour mySQL)
+Posts per file in exported packs==Messages par fichier dans les packs exportés
+Table prefix string for table names==Chaîne de préfixe de table pour les noms de table
+The URL stub, like http://forum.yacy-websuche.de this must be the path right in front of '/viewtopic.php?'==Le préfixe d'URL, par exemple http://forum.yacy-websuche.de ce doit être le chemin placé juste avant '/viewtopic.php?'
+Type of database (use either 'mysql' or 'pgsql')==Type de base de données (utilisez 'mysql' ou 'pgsql')
+User that can access the database==Userqui peut accéder à la base de données
+All indexed pack files are then moved to DATA/PACKS/loaded and can be re-cycled when an index is deleted.==Tous les fichiers pack indexés sont ensuite déplacés vers DATA/PACKS/loaded et peuvent être réutilisés lorsqu'un index est supprimé.
+Content Integration: Retrieval from phpBB3 Databases==Intégration du contenu: Récupération à partir des bases de données phpBB3
+Each extraction is specific to the data that is hosted in the database.==Chaque extraction est spécifique aux données hébergées dans la base de données.
+If you read from an imported database, here are some hints to get around problems when importing dumps in phpMyAdmin:==Si vous lisez à partir d'une base de données importée, voici quelques conseils pour contourner les problèmes lors de l'importation des dumps dans phpMyAdmin:
+Import successful!==Importation réussie !
+It is possible to extract texts directly from mySQL and postgreSQL databases.==Il est possible d'extraire des textes directement des bases de données mySQL et postgreSQL.
+Posts in database==Postes dans la base de données
+This interface gives you access to the phpBB3 forums software content.==Cette interface vous donne accès au contenu logiciel des forums phpBB3.
+When an export is started, pack files are generated into DATA/PACKS/load which are automatically fetched by an indexer thread.==Lorsqu'un export est démarré, les fichiers pack sont générés dans DATA/PACKS/load et récupérés automatiquement par un thread d'indexation.
+before importing large database dumps, set the following Line in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB):==avant d'importer de gros dumps de base de données, définissez la ligne suivante dans phpmyadmin/config.inc.php et placez votre fichier dump dans /tmp (sinon, il est impossible d'envoyer des fichiers de plus de 2 Mo) :
+deselect the partial import flag==désélectionner l'option d'import partiel
+first entry==première entrée
+last entry==dernière entrée
+#-----------------------------
+
+#File: CrawlCheck_p.html
+#---------------------------
+"Check given urls"=="Vérifier les URLs indiquées"
+Access==Accès
+Analysis==Analysis
+Crawl Check==Vérification de l'étirage
+Crawl-Delay==Crawl-Delay
+List of possible crawl start URLs==Liste des URLs de départ de crawl possibles
+Robots==Robots
+Sitemap==Sitemap
+This pages gives you an analysis about the possible success for a web crawl on given addresses.==Cette page fournit une analyse des chances de succès d'un crawl web sur les adresses indiquées.
+URL==URL
+#-----------------------------
+
+#File: CrawlStartScanner_p.html
+#---------------------------
+"Scan"=="Scan"
+ Look every== Examiner toutes les
+/16 (65024 addresses)==/16 (65024 adresses)
+/20 (4064 addresses)==/20 (4064 adresses)
+/24 (254 addresses)==/24 (254 adresses)
+/31 (only the given host(s))==/31 (seulement l'hôte(s) donné(s))
+All known hosts in the search index (/31 subnet recommended!)==Tous les hôtes connus dans l'index de recherche (/31 sous-net recommandé!)
+Do not use intranet scan results, you are not in an intranet environment!==N'utilisez pas les résultats de l'analyse intranet, vous n'êtes pas dans un environnement intranet!
+Network Scanner==Scanner réseau
+Scan Cache==Cache de balayage
+Scan Range==Plage de balayage
+Scan sub-range with given host==Sous-plage de balayage avec l'hôte donné
+Scan the network==Scanner le réseau
+Scheduler==Planificateur
+Service Type==Type de service
+Sites that do not appear during a scheduled scan period will be excluded from search results.==Les sites qui n'apparaissent pas pendant une période d'analyse programmée seront exclus des résultats de recherche.
+Subnet==Subnet
+Time-Out==Time-Out
+YaCy can scan a network segment for available http, ftp and smb server.==YaCy peut scanner un segment réseau pour le serveur http, ftp et smb disponible.
+You must first select a IP range and then, after this range is scanned,==Vous devez d'abord sélectionner une plage IP et ensuite, après que cette plage soit scannée,
+accumulate scan results with access type "granted" into scan cache (do not delete old scan result)==accumuler les résultats de l'analyse avec le type d'accès "accordé" dans le cache de l'analyse (ne pas supprimer l'ancien résultat de l'analyse)
+again and add new sites automatically to indexer.==à nouveau et ajouter de nouveaux sites automatiquement à l'indexeur.
+days==jours
+ftp==ftp
+hours==heures
+http==http
+https==https
+it is possible to select servers that had been found for a full-site crawl.==il est possible de sélectionner des serveurs qui avaient été trouvés pour un site complet.
+minutes==minutes
+ms==ms
+run only a scan==n'exécute qu'un scan
+scan and add all sites with granted access automatically. This disables the scan cache accumulation.==numériser et ajouter automatiquement tous les sites avec accès autorisé. Ceci désactive l'accumulation de cache de numérisation.
+smb==smb
+#-----------------------------
+
+#File: Help.html
+#---------------------------
+More Tutorials==Autres Tutoriels
+To learn how to do that, watch one of the demonstration videos below:==Pour apprendre à faire cela, regardez l'une des vidéos de démonstration ci-dessous:
+Tutorial==Tutoriel
+YaCy: Tutorial==YaCy: Tutoriel
+You are using the administration interface of your own search engine. You can create your own search index with YaCy.==Vous utilisez l'interface d'administration de votre propre moteur de recherche. Vous pouvez créer votre propre index de recherche avec YaCy.
+twitter this video==twitter cette vidéo
+#-----------------------------
+
+#File: IndexCreateParserErrors_p.html
+#---------------------------
+"clear list"=="liste claire"
+"show more"=="montrer plus"
+Fail-Reason==Fail-Reason
+Rejected URLs==URLs rejetées
+Time==Temps
+URL==URL
+#-----------------------------
+
+#File: IndexDeletion_p.html
+#---------------------------
+"Engage Deletion"=="S'engager dans la suppression"
+"Simulate Deletion"=="Simuler la suppression"
+"engaged"=="engaged"
+"no actual deletion, generates only a deletion count"=="pas de suppression réelle, ne génère qu'un nombre de suppressions"
+"simulate a deletion first to calculate the deletion count"=="Simulez d'abord une suppression pour calculer le nombre de suppressions"
+Age Identification==Identification de l'âge
+All documents older than==Tous les documents plus anciens que
+Assigned==Assigné
+Core==Cœur
+Delete Collections==Supprimer les recouvrements
+Delete all documents which are assigned to the following collection(s)==Supprimer tous les documents qui sont affectés à la ou aux collections suivantes
+Delete all documents which are inside specific collections.==Supprimer tous les documents qui se trouvent à l'intérieur de collections spécifiques.
+Delete all documents which are not assigned to any collection==Supprimer tous les documents qui ne sont affectés à aucune collection
+Delete all documents which are older than a given time period.==Supprimer tous les documents qui sont plus anciens qu'une période donnée.
+Delete all documents within a sub-path of the given urls. That means all documents must start with one of the url stubs as given here.==Supprimer tous les documents à l'intérieur d'un sous-chemin des urls donnés. Cela signifie que tous les documents doivent commencer par l'un des talons url comme indiqué ici.
+Delete by Age==Supprimer par âge
+Delete by Solr Query==Supprimer par Solr Query
+Delete by URL Matching==Supprimer par correspondance URL
+Deletions are made concurrently which can cause that recently deleted documents are not yet reflected in the document count.==Les suppressions sont faites simultanément, ce qui peut entraîner que les documents récemment supprimés ne sont pas encore reflétés dans le décompte des documents.
+Index Deletion==Suppression de l'index
+Index deletion will not immediately reduce the storage size on disk because entries are only marked as deleted in a first step.==La suppression de l'index ne réduira pas immédiatement la taille de stockage sur le disque parce que les entrées ne sont marquées que comme supprimées dans une première étape.
+Matching Method==Méthode d'appariement
+Not Assigned==Non attribué
+One URL stub, a list of URL stubs or a regular expression==Un stub d'URL, une liste de stubs d'URL ou une expression régulière
+This is the most generic option: select a set of documents using a solr query.==C'est l'option la plus générique : sélectionner un ensemble de documents à l'aide d'une requête Solr.
+Time Period==Période
+days==jours
+hours==heures
+last-modified==last-modified
+load date==date de chargement
+matching with regular expression==correspondant à l'expression régulière
+months==mois
+sub-path of given URLs==sous-chemin des URLs données
+years==années
+#-----------------------------
+
+#File: IndexExportImportSolr_p.html
+#---------------------------
+"Create Dump"=="Créer une décharge"
+"Restore Dump"=="Restaurer la décharge"
+(This may take several minutes. Please be patient and wait until the page reloads.)==(Cela peut prendre plusieurs minutes. Veuillez être patient et attendre que la page se recharge.)
+An error occurred while trying to create the Solr dump.==Une erreur s'est produite en essayant de créer le dump Solr.
+An error occurred while trying to restore the Solr dump.==Une erreur s'est produite en essayant de restaurer la décharge Solr.
+Could not create the Solr dump : no embedded Solr is available.==Impossible de créer le dump Solr: aucun Solr intégré n'est disponible.
+Could not restore the Solr dump : no embedded Solr is available.==Impossible de restaurer le dump Solr: aucun Solr intégré n'est disponible.
+Dump File (full path)==Dump File (chemin complet)
+Dump and Restore of Solr Index==Dump et restauration de l'index Solr
+Solr Index Export/Import==Export/import d'index Solr
+Successfully restored Solr index from dump file!==Index Solr restauré avec succès depuis le fichier dump !
+This feature is available only when a local embedded Solr is active.==Cette fonctionnalité n'est disponible que lorsqu'un Solr intégré local est actif.
+#-----------------------------
+
+#File: IndexExport_p.html
+#---------------------------
+"Export"=="Exporter"
+Export Format==Format d'exportation
+Export Path==Chemin d'export
+Export Size==Taille de l'exportation
+Full URL List:==Liste complète des URLs :
+Fulltext of Search Index Text==Texte intégral de l'index de recherche
+HTML (URLs with title)==HTML (URLs avec titre)
+HTML (domains as URLs, no title)==HTML (domaines comme URLs, aucun titre)
+Import this file by moving it to DATA/PACKS/load==Importez ce fichier en le déplaçant vers DATA/PACKS/load
+Index Export==Export d'index
+Loaded URL Export==Exportation d'URL chargée
+Only Domain:==Seul domaine:
+Only Text:==Seul texte:
+Plain Text List (URLs only)==Liste de textes simples (LTR seulement)
+Plain Text List (domains only)==Liste de textes simples (domaines seulement)
+URL Filter==Filtre URL
+full size, all fields:==taille complète, tous les champs:
+if exceeded: several chunks are stored; -1 = unlimited (makes only one chunk)==si dépassé: plusieurs morceaux sont stockés; -1 = illimité (ne fait qu'un seul morceau)
+maximum age (seconds)==Âge maximal (secondes)
+maximum number of records per chunk==nombre maximal d'enregistrements par tranche
+minified; only fields sku, date, title, description, text_t==minifié; seuls les champs sku, date, titre, description, texte_t
+query==requête
+#-----------------------------
+
+#File: IndexImportMediawiki_p.html
+#---------------------------
+"Dump file path on this YaCy server file system, or any remote URL"=="Domptez le chemin de fichier sur ce système de fichiers du serveur YaCy, ou toute URL distante"
+"Import MediaWiki Dump"=="Importer MediaWiki Dump"
+"Uniform Resource Locator"=="Uniform Resource Locator"
+Dump file path or URL==Chemin du fichier dump ou URL
+Dump:==Dump :
+Dumps can be stored in the local file system or on a remote server in XML format and may be compressed in gz or bz2.==Les dumps peuvent être stockés dans le système de fichiers local ou sur un serveur distant au format XML et peuvent être compressés en gz ou bz2.
+Each 10000 wiki records are combined in one output file which is written to /DATA/PACKS/load into a temporary file.==Chaque lot de 10000 enregistrements wiki est combiné dans un fichier de sortie écrit comme fichier temporaire dans /DATA/PACKS/load.
+Each time a xml pack file appears in /DATA/PACKS/load, the YaCy indexer fetches the file and indexes the record entries.==Chaque fois qu'un fichier pack XML apparaît dans /DATA/PACKS/load, l'indexeur YaCy récupère le fichier et indexe les enregistrements.
+Error : dump URL is malformed.==Erreur : l'URL du dump URL est mal formée.
+Import Process==Processus d'importation
+Import only when modified since last import==Importer seulement en cas de modification depuis la dernière importation
+MediaWiki Dump File Selection==Sélection du fichier Dump MediaWiki
+MediaWiki Dump Import==Import de dump MediaWiki
+No import thread is running, you can start a new thread here==Aucun thread d'import n'est en cours ; vous pouvez démarrer un nouveau thread ici
+Processed:==Traité :
+Remaining Time:==Temps restant :
+Running Time:==Temps d'exécution :
+Speed:==Vitesse :
+The dump is extracted on the fly and wiki entries are translated into Dublin Core data format. The output looks like this:==Le dump est extrait à la volée et les entrées wiki sont converties au format de données Dublin Core. La sortie ressemble à ceci :
+Thread:==Thread :
+When a pack file is finished with indexing, it is moved to /DATA/PACKS/loaded==Lorsqu'un fichier pack a fini d'être indexé, il est déplacé vers /DATA/PACKS/loaded
+When checked, the dump file is imported only if its last modified date is unknown or is after the last import execution date on this same file==Lorsque cette option est cochée, le fichier dump n'est importé que si sa date de dernière modification est inconnue ou postérieure à la dernière importation de ce même fichier
+When each of the generated output file is finished, it is renamed to a .xml file==Lorsque chaque fichier de sortie généré est terminé, il est renommé en fichier .xml
+When the import is started, the following happens:==Lorsque l'import démarre, les opérations suivantes se produisent :
+You can recycle processed pack files by moving them from /DATA/PACKS/loaded to /DATA/PACKS/load==Vous pouvez recycler les fichiers pack traités en les déplaçant de /DATA/PACKS/loaded vers /DATA/PACKS/load
+running==en cours
+started==démarré
+#-----------------------------
+
+#File: IndexImportOAIPMHList_p.html
+#---------------------------
+"Load Selected Sources"=="Charger des sources sélectionnées"
+Complete at # Records==Compléter à # Enregistrements
+Import List==Liste d'importation
+Imported Records==Enregistrements importés
+Processed Chunks==Blocs traités
+Source==Source
+Speed (records/second)==Vitesse (enregistrements/seconde)
+Thread==Thread
+#-----------------------------
+
+#File: IndexImportOAIPMH_p.html
+#---------------------------
+"Import OAI-PMH source"=="Importer la source OAI-PMH"
+"import from a list"=="importation à partir d'une liste"
+"import this source"=="Importer cette source"
+Import all Records from a server==Importer tous les enregistrements à partir d'un serveur
+Import all records that follow according to resumption elements into index==Importer tous les enregistrements qui suivent en fonction des éléments de reprise dans l'index
+Import started!==L'importation a commencé !
+OAI-PMH Import==Importation OAI-PMH
+Processed:==Traité :
+ResumptionToken:==ResumptionToken:
+Single request import==Importation à demande unique
+Source:==Source :
+This will submit only a single request as given here to a OAI-PMH server and imports records into the index==Ceci ne soumettra qu'une seule requête, telle qu'elle est donnée ici, à un serveur OAI-PMH et importera des enregistrements dans l'index.
+or==ou
+#-----------------------------
+
+#File: IndexPackDownloader_p.html
+#---------------------------
+Available Packs==Emballages disponibles
+File==Fichier
+Process==Processus
+Repo ID==Numéro d'identification de la demande de remboursement
+Source==Source
+YaCy Pack Downloader==Téléchargement de YaCy Pack
+#-----------------------------
+
+#File: IndexPackGenerator_p.html
+#---------------------------
+"Generate Data Pack"=="Générer le pack de données"
+"info"=="info"
+Bulk-upload the index file:==Importer le fichier d'index en masse :
+Create the search index:==Créer l'index de recherche :
+Export Format==Format d'exportation
+Import this file by moving it to DATA/PACKS/load==Importez ce fichier en le déplaçant vers DATA/PACKS/load
+Index Collection==Collecte d'index
+Index Pack Generator==Générateur de paquets d'index
+JSON (Rich and full-text Elasticsearch data, one document per line in one flat JSON file)==JSON (Rich and full-text Elasticsearch data, un document par ligne dans un fichier JSON plat)
+Make a search, get 10 results, search in fields text_t, title, description with boosts:==Effectuez une recherche, obtenez 10 résultats, recherchez dans les champs text_t, titre, description avec boosts:
+Pack==Pack
+Pack List==Liste des packs
+Process==Processus
+Search Query -==Demande de recherche -
+Set a Category (this goes into the filename)==Définir une catégorie (cela va dans le nom du fichier)
+Size (KB)==Taille (Ko)
+Slug - describe the content (only if collection is "user")==Slug - décrire le contenu (uniquement si la collection est "utilisateur")
+Start docker container of opensearch:==Démarrer le conteneur de docker de la recherche ouverte:
+This JSON is an elasticsearch index dump format and can be bulk-imported to elasticsearch. Here is an example for opensearch, using docker:==Ce JSON est un format elasticsearch index dump et peut être importé en vrac à elasticsearch. Voici un exemple pour opensearch, en utilisant docker:
+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"==Cela deviendra une partie du nom de fichier, les espaces seront remplacés par "-"; ne doit pas être vide; devrait se terminer par une description de la langue, par exemple "-fr"
+URL Filter==Filtre URL
+Unblock index creation:==Débloquer la création de l'index :
+XML (RSS)==XML (RSS)
+XML (Rich and full-text Solr data, one document per line in one large xml file,==XML (données Solr enrichies et plein texte, un document par ligne dans un grand fichier XML,
+YaCy Pack Generator==Générateur de paquets YaCy
+can be processed with shell tools, can be imported with DATA/PACKS/load/)==peut être traité avec des outils shell, peut être importé avec DATA/PACKS/load/)
+core - technical documentation, operating systems, computer hardware, open source and free software, manuals, protocol standards==noyau - documentation technique, systèmes d'exploitation, matériel informatique, logiciel libre et open source, manuels, normes de protocole
+echo – micro-content (tweets, toots, short headlines, SMS corpora), podcasts, radio archives, audio lectures, spoken-word datasets, logs, incidents, telemetry==echo – micro-contenu (tweets, toots, courts titres, SMS corps), podcasts, archives radio, conférences audio, jeux de données parlés, journaux, incidents, télémétrie
+fiction - fictional documents: movies, stories, series, books (fiction, science-fiction)==fiction - documents fictifs: films, histoires, séries, livres (fiction, science-fiction)
+gem - research, papers, university publications, science==gemme - recherche, articles, publications universitaires, sciences
+map - geological data, geolocation-data, earth/world information==map - données géologiques, données de géolocalisation, informations Terre/monde
+mix - a mix of document types, for content from wide web crawls==mix - un mélange de types de documents, pour du contenu provenant de crawls web étendus
+regula - non-technical standards: industry standards, laws, rules, compliance==regula - normes non techniques: normes de l'industrie, lois, règles, conformité
+scroll - non-technical documents: knowledge, encyclopedia, linguistic corpora, dictionaries, translation memories, texts, non-fiction books, historical books==parchemin - documents non techniques: connaissance, encyclopédie, corpus linguistique, dictionnaires, mémoires de traduction, textes, livres non-fiction, livres historiques
+spirit – related to non-textual data (possibly only metadata): art, music, game assets, creative-commons media (non-text culture loot)==esprit – lié à des données non textuelles (éventuellement uniquement des métadonnées): art, musique, actifs de jeu, médias créatifs-communs (patte de culture non textuelle)
+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.==le nom de la collection est utilisé dans le nom du fichier pour décrire le contenu. Exception: si la collection est "utilisateur", alors vous pouvez nommer le contenu avec une limace.
+vault - sensitive data: secrets, leaks, non-public documents, security advisories==chambre forte - données sensibles: secrets, fuites, documents non publics, avis de sécurité
+#-----------------------------
+
+#File: IndexPackManager_p.html
+#---------------------------
+Pack Folders==Dossiers de packs
+Packs: Hold List==Boîtes: tenir la liste
+Packs: Load List==Emballages: Liste des chargements
+Packs: Loaded List==Emballages: Liste des chargements
+Process==Processus
+Size (KB)==Taille (Ko)
+YaCy Pack Manager==Gestionnaire de paquets YaCy
+#-----------------------------
+
+#File: LLMSelection_p.html
+#---------------------------
+"info"=="info"
+(not required for Ollama or LMStudio)==(non requis pour Ollama ou LMStudio)
+num_ctx is the context window (in tokens) of the inference service — a per-service==num_ctxest la fenêtre contextuelle (en jetons) du service d'inférence — par service
+Actions==Actions
+Context Length setting). YaCy does not enforce it on the backend.==Contexte Réglage de la longueur). YaCy ne l'applique pas sur le moteur.
+Here you can pick models from an LLM model service to select them as production model.==Ici, vous pouvez choisir des modèles à partir d'un service modèle LLM pour les sélectionner comme modèle de production.
+In the "Production Models Matrix" you can then assign each selected model a function inside YaCy==Dans la "Matrice de Modèles de Production" vous pouvez ensuite assigner à chaque modèle sélectionné une fonction à l'intérieur de YaCy
+LLM Selection==Sélection LLM
+LMStudio==LMStudio
+Model Downloads==Téléchargements de modèles
+Ollama==Ollama
+Open Router==Ouvrir le routeur
+OpenAI==OpenAI
+Production Models Matrix==Matrice des modèles de production
+Service Selection==Sélection des services
+Services==Services
+This makes a preset to the Hoststub value==Cela fait un préréglage à la valeur Hoststub
+This model can be used to make translations of the web UI==Ce modèle peut être utilisé pour faire des traductions de l'interface utilisateur web
+This model can be used to produce query-answer pairs which enhance search from chat prompts==Ce modèle peut être utilisé pour produire des paires de requêtes-réponses qui améliorent la recherche à partir d'invites de chat
+This model creates answers for search requests==Ce modèle crée des réponses pour les demandes de recherche
+This model evaluates YaCy runtime logs and creates self-enhancement reports==Ce modèle évalue les journaux d'exécution de YaCy et crée des rapports d'auto-amélioration
+This model is used in the chat interface and as default for the RAG proxy==Ce modèle est utilisé dans l'interface de chat et par défaut pour le proxy RAG
+This model is used to classify prompts to find out what they demand==Ce modèle est utilisé pour classer les invitations à découvrir ce qu'elles demandent
+This model is used to make summaries from web content==Ce modèle est utilisé pour faire des résumés à partir de contenu web
+This model produces search queries to YaCy search from prompts in RAG or chat==Ce modèle produit des requêtes de recherche à la recherche YaCy à partir d'invites dans RAG ou chat
+This value is advisory: set it to match the window your backend actually serves==Cette valeur estavis: définissez-la pour correspondre à la fenêtre de votre moteur de recherche.
+api_key==api_key
+chat==chat
+classification==classification
+format==format
+generated output; YaCy uses it to size prompts so they leave room to generate. The row for the==sortie générée; YaCy l'utilise pour dimensionner les invites afin qu'ils laissent de la place pour générer.
+hoststub==hoststub
+log-report==log-report
+max_tokens==max_tokens
+model==model
+num_ctx==num_ctx
+qa-pairs==qa-pairs
+search-answers==search-answers
+search-query==search-query
+service==service
+service selected above appears here automatically with its stored (or default) window.==Le service sélectionné ci-dessus apparaît ici automatiquement avec sa fenêtre stockée (ou par défaut).
+thinking==thinking
+this enables image recognition in the chat==cela permet la reconnaissance d'image dans le chat
+this is required for classification==Ceci est nécessaire pour la classification
+tldr-shortener==tldr-shortener
+tooling==tooling
+tooling is required for agentic abilities.==l'outillage est nécessaire pour les capacités d'agent.
+translation==traduction
+value, shared by all models on that endpoint. It is the total budget for prompt plus==valeur, partagée par tous les modèles sur ce paramètre. C'est le budget total pourrapide plus
+vision==vision
+we detect thinking only to be able to suppress thinking. thinking is not used in YaCy==nous décelons la pensée seulement pour pouvoir supprimer la pensée. la pensée n'est pas utilisée dans YaCy
+you can probably leave this to the default value==vous pouvez probablement laisser cela à la valeur par défaut
+#-----------------------------
+
+#File: Load_MediawikiWiki.html
+#---------------------------
+"Get content of Wiki: crawl wiki pages"=="Obtenir le contenu de Wiki: les pages wikis crawl"
+URL of the wiki main page This is a crawl start point==URL de la page principale du wiki C'est un point de départ de crawl
+Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Vérifiez toutes les apparences d'IP statiques données dans l'extrait de code et remplacez-le par votre propre IP, ou votre nom d'hôte
+Insert the following code:==Insérer le code suivant:
+Inserting a Search Window to MediaWiki==Insérer une fenêtre de recherche dans MediaWiki
+Integration in MediaWiki==Intégration dans MediaWiki
+It is possible to insert wiki pages into the YaCy index using a web crawl on that pages.==Il est possible d'insérer des pages wiki dans l'index YaCy au moyen d'un crawl web de ces pages.
+Just insert the front page URL of your wiki. After you started the crawl you may want to get back==Insérez simplement l'URL de la page d'accueil de votre wiki. Après avoir démarré le crawl, vous souhaiterez peut-être revenir
+Remove that code or set it in comments using '<!--' and '-->'==Supprimer ce code ou le mettre en commentaire avec '<!--' et '-->'
+Retrieval of Wiki Pages==Récupération des pages Wiki
+The following form is a simplified crawl start that uses the proper values for a wiki crawl.==Le formulaire suivant est un démarrage de crawl simplifié utilisant les valeurs adaptées à un crawl de wiki.
+There are several templates that can be used for MediaWiki, but in this guide we consider that==Il y a plusieurs modèles qui peuvent être utilisés pour MediaWiki, mais dans ce guide nous considérons que
+This guide helps you to crawl your wiki and to insert a search window in your wiki pages.==Ce guide vous aide à crawler votre wiki et à insérer une fenêtre de recherche dans vos pages wiki.
+To integrate a search window into a MediaWiki, you must insert some code into the wiki template.==Pour intégrer une fenêtre de recherche dans un MediaWiki, vous devez insérer un code dans le modèle wiki.
+To see all options for the search widget, look at the more generic description of search widgets at==Pour voir toutes les options pour le widget de recherche, regardez la description plus générique des widgets de recherche à
+You may want to change the default text elements in the code snippet==Vous pouvez modifier les éléments de texte par défaut dans l'extrait de code
+find the line where the default search window is displayed, there are the following statements:==trouver la ligne où la fenêtre de recherche par défaut est affichée, il y a les instructions suivantes:
+open skins/MonoBook.php==peau ouverte /MonoBook.php
+to this page to read the integration hints below.==à cette page pour lire les conseils d'intégration ci-dessous.
+you are using the default template, 'MonoBook.php':==vous utilisez le modèle par défaut, 'MonoBook.php':
+#-----------------------------
+
+#File: Load_PHPBB3.html
+#---------------------------
+"Get content of phpBB3: crawl forum pages"=="Obtenir le contenu de phpBB3: pages de forum crawl"
+URL of the phpBB3 forum main page This is a crawl start point==URL de la page principale du forum phpBB3 C'est un point de départ de crawl
+Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Vérifiez toutes les apparences d'IP statiques données dans l'extrait de code et remplacez-le par votre propre IP, ou votre nom d'hôte
+Forum posting contain rich information about the topic, the time, the subject and the author.==L'affichage du forum contient de riches informations sur le sujet, l'heure, le sujet et l'auteur.
+Insert the following code right behind the div tag:==Insérer le code suivant juste derrière l'étiquette div:
+Inserting a Search Window to phpBB3==Insérer une fenêtre de recherche dans phpBB3
+Integration in phpBB3==Intégration dans phpBB3
+It is much better to retrieve the forum postings directly from the database. This will cause that YaCy is able to offer nice navigation features after searches.==Il est beaucoup mieux de récupérer les messages du forum directement à partir de la base de données. Cela permettra à YaCy d'offrir de belles fonctionnalités de navigation après les recherches.
+It is possible to insert forum pages into the YaCy index using a database import of forum postings.==Il est possible d'insérer des pages de forum dans l'index de YaCy en utilisant une importation de base de données de messages de forum.
+Just insert the front page URL of your forum. After you started the crawl you may want to get back==Il suffit d'insérer l'URL de la première page de votre forum. Après que vous avez commencé le crawl, vous pouvez vouloir récupérer
+Retrieval of phpBB3 Forum Pages using a database export==Récupération des pages de forum phpBB3 à l'aide d'une base de données export
+Retrieval of phpBB3 Forum Pages using a web crawl==Récupération des pages de forum phpBB3 en utilisant un web crawl
+The following form is a simplified crawl start that uses the proper values for a phpbb3 forum crawl.==Le formulaire suivant est un démarrage simplifié qui utilise les valeurs appropriées pour un forum phpbb3.
+There are several templates that can be used for phpBB3, but in this guide we consider that==Il y a plusieurs modèles qui peuvent être utilisés pour phpBB3, mais dans ce guide nous considérons que
+This guide helps you to insert a search window in your phpBB3 pages.==Ce guide vous aide à insérer une fenêtre de recherche dans vos pages phpBB3.
+This information is in an bad annotated form in web pages delivered by the forum software.==Cette information est sous une forme mal annotée dans les pages Web fournies par le logiciel du forum.
+To integrate a search window into phpBB3, you must insert some code into a forum template.==Pour intégrer une fenêtre de recherche dans phpBB3, vous devez insérer un code dans un modèle de forum.
+To see all options for the search widget, look at the more generic description of search widgets at==Pour voir toutes les options pour le widget de recherche, regardez la description plus générique des widgets de recherche à
+You may want to change the default text elements in the code snippet==Vous pouvez modifier les éléments de texte par défaut dans l'extrait de code
+open styles/prosilver/template/overall_header.html==ouvrez styles/prosilver/template/overall_header.html
+to this page to read the integration hints below.==à cette page pour lire les conseils d'intégration ci-dessous.
+you are using the default template, 'prosilver':==vous utilisez le modèle par défaut, 'prosilver':
+#-----------------------------
+
+#File: LogReports_p.html
+#---------------------------
+"delete this report"=="supprimer ce rapport"
+×==×
+Feeds:==Flux :
+Generating report from the current-hour log lines — the LLM call can take a while …==Générer un rapport à partir des lignes de journal de l'heure actuelle — l'appel LLM peut prendre un certain temps …
+JSON==JSON
+Log Reports==Rapports de journaux
+No generated log reports were found.==Aucun rapport de journal généré n'a été trouvé.
+No log lines were found for the current hour.==Aucune ligne de log n'a été trouvée pour l'heure en cours.
+No production model is configured for the log-report role. Assign one in the==Aucun modèle de production n'est configuré pour le rôle log-report.
+No production model is configured for the log-report role. Log report generation stays inactive until a model is assigned in the==Aucun modèle de production n'est configuré pour le rôle log-report. La génération de rapports log reste inactive jusqu'à ce qu'un modèle soit assigné dans le
+RSS==RSS
+Report generation in progress …==Production de rapports en cours …
+The report directory does not exist yet. Reports will appear here after the scheduler has generated the first completed hourly report.==Le répertoire des rapports n'existe pas encore. Les rapports apparaîtront ici après que le programmeur a généré le premier rapport horaire terminé.
+run report now==Récupère le rapport maintenant
+seconds elapsed==secondes écoulées
+the report below is completed live while the model is writing==le rapport ci-dessous est terminé en direct pendant que le modèle est en train d'écrire
+#-----------------------------
+
+#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.==Longueur maximale des caractères du document de recherche virtuelle utilisé comme pièce jointe RAG et comme résultat de l'outil `search`. Le contenu au-delà de cette limite est coupé. Par défaut: 30000.
+Prepended before attached search snippets in RAG mode to tell the LLM how to use them.==Préparé avant de joindre des extraits de recherche en mode RAG pour indiquer au LLM comment les utiliser.
+Prompt given to the model that generates search queries from user requests.==Prompt donné au modèle qui génère des requêtes de recherche à partir des requêtes de l'utilisateur.
+Query Generator Prefix==Préfixe du générateur de requêtes
+Save RAG Settings==Enregistrer les paramètres RAG
+Search Document Max Length==Document de recherche Longueur maximale
+System Prompt==Système d'appel d'offres
+This is sent as the system message for chats. Keep it concise and friendly.==Ceci est envoyé comme message système pour les conversations. Gardez-le concis et amical.
+Tune how YaCy constructs prompts and search queries for Retrieval Augmented Generation.==Tune comment YaCy construit des invites et des requêtes de recherche pour Retrieval Augmented Generation.
+User Retrieval Prefix==Préfixe de récupération de l'utilisateur
+Wire RAG Retrieval==Récupération par fil RAG
+#-----------------------------
+
+#File: RankingRWI_p.html
+#---------------------------
+"Re-Set to Built-In Ranking"=="Remettre en place le classement intégré"
+"Set as Default Ranking"=="Définir comme classement par défaut"
+"info"=="info"
+A ranking is computed using a number of attributes from the documents that match with the search word.==Un classement est calculé à l'aide d'un certain nombre d'attributs des documents qui correspondent au mot de recherche.
+Post-Ranking==Post-Ranking
+Pre-Ranking==Pre-Ranking
+RWI Ranking Configuration==Configuration du classement RWI
+The attributes are first normalized over all search results and then the normalized attribute is multiplied with the ranking coefficient computed from this list.==Les attributs sont d'abord normalisés sur tous les résultats de recherche, puis l'attribut normalisé est multiplié par le coefficient de classement calculé à partir de cette liste.
+The document ranking influences the order of the search result entities.==Le classement des documents influence l'ordre des entités de résultat de recherche.
+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.==Le coefficient de classement augmente exponentiellement avec les niveaux de classement indiqués dans le tableau suivant. Si vous augmentez une seule valeur d'une, alors la force du paramètre double.
+The two stages are separated because they need statistical information from the result of the pre-ranking.==Les deux étapes sont séparées parce qu'elles ont besoin d'informations statistiques du résultat du pré-classement.
+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.==Il y a deux étapes de classement: d'abord tous les résultats sont classés en utilisant le pré-classement et de la liste résultante les documents sont classés à nouveau avec un post-classement.
+#-----------------------------
+
+#File: RankingSolr_p.html
+#---------------------------
+"Re-Set to default"=="Re-Set à la valeur par défaut"
+"Set Boost Function"=="Définir la fonction Boost"
+"Set Boost Query"=="Définir la requête Boost"
+"Set Field Boosts"=="Définir les boosts de champ"
+"Set Filter Query"=="Définir la requête de filtre"
+A Boost Function can combine numeric values from the result document to produce a number which is multiplied with the score value from the query result.==Une fonction Boost peut combiner des valeurs numériques à partir du document de résultat pour produire un nombre qui est multiplié par la valeur de score à partir du résultat de la requête.
+Boost Function==Fonction Boost
+Boost Query==Requête de rappel
+Example: "fuzzy_signature_unique_b:true^100000.0f" means that documents, identified as 'double' are ranked very bad and appended to the end of all results (because the unique are ranked high).==Exemple: « fuzzy_signature_unique_b:true ^100000.0f » signifie que les documents, identifiés comme « double », sont classés très mauvais et annexés à la fin de tous les résultats (parce que l'unique est classé haut).
+Example: "http_unique_b:true AND www_unique_b:true" will filter out all results where urls appear also with/without http(s) and/or with/without 'www.' prefix.==Exemple : "http_unique_b:true AND www_unique_b:true" filtrera tous les résultats où les URLs apparaissent aussi avec/sans http(s) et/ou avec/sans le préfixe 'www.'.
+Example: to order by date, use "recip(ms(NOW,last_modified),3.16e-11,1,1)", to order by crawldepth, use "div(100,add(crawldepth_i,1))".==Exemple : pour trier par date, utilisez "recip(ms(NOW,last_modified),3.16e-11,1,1)" ; pour trier par profondeur de crawl, utilisez "div(100,add(crawldepth_i,1))".
+Filter Query==Requête du filtre
+Select a profile:==Sélectionnez un profil :
+Solr Boosts==Boosts Solr
+Solr Ranking Configuration==Configuration du classement Solr
+The Boost Query is attached to every query. Use this to statically boost specific content in the index.==La requête Boost est attachée à chaque requête. Utilisez-la pour augmenter statiquement le contenu spécifique de l'index.
+The Filter Query is attached to every query. Use this to statically add a selection criteria to reduce the set of results.==La requête Filter est attachée à chaque requête. Utilisez ceci pour ajouter statiquement un critère de sélection pour réduire l'ensemble des résultats.
+These are ranking attributes for Solr. This ranking applies for internal and remote (P2P or shard) Solr access.==Il s'agit d'attributs de classement pour Solr. Ce classement s'applique à l'accès interne et à distance (P2P ou shard) Solr.
+field not in local index (boost has no effect)==champ non dans l'index local (boost n'a aucun effet)
+#-----------------------------
+
+#File: RegexTest.html
+#---------------------------
+Regex Test==Essai Regex
+Regular Expression==Expression régulière
+Result==Résultat
+Test String==Chaîne d'essai
+match==correspondance
+no match==Pas de correspondance
+#-----------------------------
+
+#File: SearchAccessRate_p.html
+#---------------------------
+"Reset to defaults settings"=="Réinitialiser dans les paramètres par défaut"
+"Set defaults"=="Définir les valeurs par défaut"
+"Submit"=="Envoyer"
+Changes will take effect immediately.==Les modifications entreront en vigueur immédiatement.
+Access rate limitations to the peer-to-peer search mode with browser-side JavaScript results resorting enabled==Limites de taux d'accès au mode de recherche peer-to-peer avec des résultats JavaScript côté navigateur activés
+Access rate limitations to the peer-to-peer search mode.==Limites de taux d'accès au mode de recherche pair à pair.
+Access rate limitations to this peer search interface.==Limites de taux d'accès à cette interface de recherche par les pairs.
+Limitations on snippet loading from remote websites.==Limitations sur le chargement d'extraits de sites Web distants.
+Local Search access rate limitations==Limites des taux d'accès à la recherche locale
+Max searches in 3s==Max recherche dans 3s
+Max searches in 10mn==Max recherche dans 10mn
+Max searches in 10mn==Max recherche dans 10mn
+Max searches in 1mn==Max recherche en 1mn
+Max searches in 3s==Max recherche dans 3s
+Peer-to-peer search==Recherche de pair à pair
+Peer-to-peer search with JavaScript results resorting==Recherche Peer-to-peer avec les résultats JavaScript resorting
+Remote snippet load==Charge à distance de l'extrait de code
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the snippets fetch strategy falls back to 'CACHEONLY'==Lorsqu'un utilisateur avec des droits limités (non authentifiés ou sans droit de recherche étendu) dépasse une limite, la stratégie d'extraction des extraits revient à « CACHEONLY »
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, results resorting becomes only applicable on demand, server-side.==Lorsqu'un utilisateur ayant des droits limités (non authentifiés ou sans droit de recherche étendu) dépasse une limite, le recours aux résultats ne devient applicable qu'à la demande, côté serveur.
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the search is blocked.==Lorsqu'un utilisateur ayant des droits limités (non authentifiés ou sans droit de recherche étendu) dépasse une limite, la recherche est bloquée.
+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.==Lorsqu'un utilisateur ayant des droits limités (non authentifiés ou sans droit de recherche étendu) dépasse une limite, la portée de la recherche ne revient qu'à cet index local des pairs.
+YaCy search==Recherche YaCy
+You can configure here limitations on access rate to this peer search interface by unauthenticated users and users without extended search right==Vous pouvez configurer ici les limitations du taux d'accès à cette interface de recherche par des utilisateurs non authentifiés et des utilisateurs sans droit de recherche étendu
+limitations==limitations
+#-----------------------------
+
+#File: SettingsAck_p.html
+#---------------------------
+Seed Settings changed.==Paramètres seed modifiés.
+Shutting down. Application will terminate after working off all crawling tasks.==Arrêt en cours. L'application se terminera après le traitement de toutes les tâches de crawl.
+The submitted peer name is already used by another peer. Please choose a different name. The Peer name has not been changed.==Le nom des pairs soumis est déjà utilisé par un autre pair. Veuillez choisir un autre nom.Le nom des pairs n'a pas été modifié.
+The submitted peer name is not well-formed. Please choose a different name. The Peer name has not been changed.==Le nom des pairs soumis n'est pas bien formé. Veuillez choisir un nom différent.Le nom des pairs n'a pas été modifié.
+Your proxy access setting has been changed.==Votre réglage d'accès proxy a été modifié.
+Always Fresh is:==Toujours frais est:
+Auto pop-up of the Status page is now disabled==Le pop-up automatique de la page d'état est maintenant désactivé
+Auto pop-up of the Status page is now enabled==Le pop-up automatique de la page d'état est maintenant activé
+Compression settings have been saved.==Les paramètres de compression ont été enregistrés.
+Crawler timeout:==Délai d'expiration du crawler :
+Debug/Analysis settings have been saved.==Les paramètres de débogage/analyse ont été enregistrés.
+Error with submitted information.==Erreur dans les informations soumises.
+Generic Settings:==Paramètres génériques :
+HTTP client settings have been saved.==Les paramètres du client HTTP ont été enregistrés.
+HTTP port==Port HTTP
+HTTPS port==Port HTTPS
+HTTPS port is now:==Le port HTTPS est maintenant :
+If you open any public web page through the proxy, you must log-in.==Si vous ouvrez une page web publique via le proxy, vous devez vous connecter.
+Invalid IP-Number filter:==Filtre IP invalide :
+Invalid crawler timeout value:==Valeur de délai d'expiration du crawler invalide :
+Invalid maximum file size for ftp crawler:==Taille maximale de fichier invalide pour le crawler FTP :
+Invalid maximum file size for http crawler:==Taille maximale de fichier invalide pour le crawler HTTP :
+Maximum FTP Filesize:==Taille maximale des fichiers FTP :
+Maximum HTTP Filesize:==Taille maximale des fichiers HTTP :
+Maximum SMB Filesize:==Taille maximale des fichiers SMB :
+Maximum file Filesize:==Taille maximale des fichiers locaux :
+Message Forwarding Command:==Commande de transfert des messages :
+Message Forwarding Support is:==Le transfert des messages est :
+No information has been submitted==Aucune information n'a été soumise
+Nothing changed.==Rien n'a changé.
+Peer names must not contain characters other than (a-z, A-Z, 0-9, '-', '_') and must not be longer than 80 characters.==Les noms de pairs ne doivent pas contenir d'autres caractères que (a-z, A-Z, 0-9, '-', '_') et ne doivent pas dépasser 80 caractères.
+Please return to the settings page and modify the data.==Veuillez retourner à la page des paramètres et modifier les données.
+Port rebinding will be done in a few seconds.==Le réattachement du port sera effectué dans quelques secondes.
+Port rebinding will be done in a view seconds.==Le réattachement du port sera effectué dans quelques secondes.
+Recipient Address:==Adresse du destinataire :
+Referrer policy settings have been saved.==Les paramètres de politique de référent ont été enregistrés.
+Seed File URL:==URL du fichier seed :
+Seed Settings changed, but something is wrong.==Les paramètres seed ont été modifiés, mais quelque chose ne va pas.
+Seed Upload Method:==Méthode d'envoi seed :
+Seed Upload method was changed successfully.==La méthode d'envoi seed a été modifiée avec succès.
+Seed Uploading was deactivated automatically.==L'envoi seed a été désactivé automatiquement.
+Send X-Forwarded-For header is:==Envoyer l'en-tête X-Forwarded-For est:
+Send via header is:==Envoyer via l'en-tête est:
+Settings Receipt:==Récapitulatif des paramètres :
+Shutdown port==Port d'arrêt
+The Peer Name is:==Le nom du pair est :
+The new proxy IP filter is set to==Le nouveau filtre IP proxy est défini à
+The new setting is effective immediately, you don't need to re-start.==Le nouveau réglage est en vigueur immédiatement, vous n'avez pas besoin de redémarrer.
+The password redundancy check failed. You have probably mistyped your password.==La vérification de redondance du mot de passe a échoué. Vous avez probablement mal tapé votre mot de passe.
+The ports are now configured as follows (active on next start).==Les ports sont maintenant configurés comme suit (active au prochain démarrage).
+The proxy port is:==Le port proxy est :
+The remote-proxy setting has been changed==Le réglage du proxy à distance a été modifié
+The user name must be given.==Le nom de l'utilisateur doit être indiqué.
+Transparent Proxy Support is:==La prise en charge du proxy transparent est :
+URL Proxy settings have been saved.==Les paramètres du proxy URL ont été enregistrés.
+You are now a principal peer.==Vous êtes maintenant un pair principal.
+Your Peer Language is:==La langue de votre pair est :
+Your administration account setting has been made.==Le réglage de votre compte d'administration a été fait.
+Your crawler settings have been changed.==Vos paramètres de crawler ont été modifiés.
+Your message forwarding settings have been changed.==Vos paramètres de transfert de messages ont été modifiés.
+Your need to restart YaCy to activate the changes.==Vous devez redémarrer YaCy pour activer les modifications.
+Your proxy access setting has been changed.==Votre réglage d'accès proxy a été modifié.
+Your proxy account check has been disabled.==Votre vérification de compte proxy a été désactivée.
+Your proxy networking settings have been changed.==Vos paramètres de réseau proxy ont été modifiés.
+Your public port is:==Votre port public est :
+Your request cannot be processed. Nothing changed.==Votre demande ne peut pas être traitée. Rien de changé.
+Your static Ip(or DynDns) is:==Votre IP statique (ou DynDNS) est :
+ftp Crawler Settings:==Paramètres du crawler FTP :
+http Crawler Settings:==Paramètres du crawler HTTP :
+smb Crawler Settings:==Paramètres du crawler SMB :
+the change will take effect after restart.==le changement prendra effet après le redémarrage.
+#-----------------------------
+
+#File: Settings_Debug.inc
+#---------------------------
+"Distributed Hash Table"=="Tableau de répartition des cash"
+"Extensible Markup Language"=="Langue de balisage extensible"
+"Reverse Word Index"=="Index des mots inversés"
+"Submit"=="Envoyer"
+Changes will take effect immediately.==Les modifications entreront en vigueur immédiatement.
+Be careful with these advanced settings, they can deeply affect the search process! You probably don't need to modify them for normal use.==Soyez prudent avec ces paramètres avancés, ils peuvent affecter profondément le processus de recherche! Vous n'avez probablement pas besoin de les modifier pour une utilisation normale.
+By default all data sources are enabled to obtain search results,==Par défaut, toutes les sources de données sont activées pour obtenir des résultats de recherche,
+Debug/Analysis Settings==Paramètres de débogage/analyse
+Enable remote Solr binary responses==Activer les réponses binaires Solr distantes
+Enable text snippets statistics==Activer les statistiques d'extraits de texte
+Local DHT/RWI==local DHT/RWI
+Local Solr index==Index Solr local
+Override DHT peers selection by local only==SurpasserDHTsélection de pairs par local seulement
+Override Solr peers selection by local only==Sélection par les pairs de Override Solr par local seulement
+Ranking information==Informations sur le classement
+Remote DHT/RWI==TélécommandeDHT/RWI
+Remote Solr indexes==Index Solr distants
+Search data sources==Sources des données de recherche
+Search testing tweaks==Essais de recherche
+Show search results scores==Afficher les résultats de la recherche
+Solr communication==Solliciter la communication
+Text snippets statistics==Statistiques des extraits de texte
+When checked (default), responses from remote Solr index instances are transferred using an efficient binary data format.==Lorsque coché (par défaut), les réponses des instances distantes d'index Solr sont transférées à l'aide d'un format de données binaires efficace.
+When checked, the raw ranking score value is displayed for each text search result in the HTML results page.==Une fois cochée, la valeur du score de classement brut est affichée pour chaque résultat de recherche de texte dans la page de résultats HTML.
+When checked, the remote DHT peers selection is overridden and only the local peer is selected to provide remote DHT search results.==Une fois cochée, la sélection de pairsDHT à distanceest dépassée et seul le pair local est sélectionné pour fournir des résultats de recherche DHT à distance.
+When checked, the remote Solr peers selection is overridden and only this peer is selected to provide remote Solr search results.==Une fois cochée, la sélection de pairs Solr à distance est dépassée et seul ce pair est sélectionné pour fournir des résultats de recherche Solr à distance.
+When unchecked, responses are transferred as XML,==Lorsque les réponses ne sont pas cochées, elles sont transférées sous la forme deXML,
+but you can here disable one or more ones to check the behavior of the process.==mais vous pouvez ici désactiver un ou plusieurs d'entre eux pour vérifier le comportement du processus.
+which can be captured and parsed by any external XML aware tool for debug/analysis.==qui peut être capturé et analysé par tout outil externe compatible XML pour le débogage/analyse.
+#-----------------------------
+
+#File: Settings_HttpClient.inc
+#---------------------------
+"Server Name Indication"=="Indication du nom du serveur"
+"Submit"=="Envoyer"
+"Transport Layer Security"=="Sécurité de la couche de transport"
+, 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).==, mais dans ce cas un redémarrage du serveur est nécessaire lorsque vous souhaitez modifier le paramètre et il n'est pas personnalisable par client http (général ou pour Solr distant).
+Changes will take effect immediately.==Les modifications entreront en vigueur immédiatement.
+About Server Name Indication (SNI):==À propos du nom du serveur Indication (SNI):
+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==Mais il peut être nécessaire de le désactiver afin de charger certaines URLs https desservies par des serveurs web anciens et mal configurés, sinon le chargement échoue avec l'exception
+Configuration settings for the main HTTP client, used notably to crawl websites and communicate with other YaCy peers.==Paramètres de configuration du client HTTP principal, utilisé notamment pour crawler des sites web et communiquer avec d'autres pairs YaCy.
+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).==Paramètres de configuration pour le client HTTP spécifique dédié aux communications avec des serveurs Solr distants (situé sur d'autres pairs de YaCy ou éventuellement détenu par celui-ci lorsqu'il est configuré pour utiliser un index Solr distant).
+Controlling SNI extension activation can also be done with the JVM option==Le contrôle de l'activation de l'extensionSNIpeut également être fait avec l'option JVM
+Enable SNI extension to TLS==Activer l'extensionSNIsurTLS
+General HTTP client==Client HTTP général
+HTTP client settings==Paramètres du client HTTP
+Received fatal alert: handshake_failure==Alerte fatale reçue: poignée de main_échec
+Remote Solr HTTP client==Client HTTP de Solr distant
+You can configure here some advanced settings of the clients used by YaCy to handle outgoing HTTP connections.==Vous pouvez configurer ici quelques paramètres avancés des clients utilisés par YaCy pour gérer les connexions HTTP sortantes.
+javax.net.ssl.SSLProtocolException: "handshake alert: unrecognized_name"==javax.net.ssl.SSLProtocolException: "alerte à la main: nom_non reconnu"
+jsse.enableSNIExtension==jsse.enableSNIExtension
+this extension to the TLS 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==cette extension au protocoleTLSdoit être activée pour charger certaines URLs https (pour les sites Web déployés avec différents certificats et noms d'hôte sur la même adresse IP partagée), sinon le chargement échoue avec des erreurs telles que
+#-----------------------------
+
+#File: Settings_MessageForwarding.inc
+#---------------------------
+"Submit"=="Envoyer"
+The command-line program that should be used to forward the message.==Le programme en ligne de commande qui devrait être utilisé pour transmettre le message.
+The recipient email-address.==L'adresse électronique du destinataire.
+Changes will take effect immediately.==Les changements entreront en vigueur immédiatement.
+Enable message forwarding==Activer la transmission des messages
+Enabling/Disabling message forwarding via email.==Activation/désactivation du transfert des messages par e-mail.
+Forwarding Command==Commande de transmission
+Forwarding To==Transférer vers
+Message Forwarding==Transmission des messages
+With this settings you can activate or deactivate forwarding of yacy-messages via email.==Avec ces paramètres, vous pouvez activer ou désactiver le transfert de yacy-messages par e-mail.
+e.g.:==Par exemple:
+#-----------------------------
+
+#File: Settings_ProxyAccess.inc
+#---------------------------
+"Submit"=="Envoyer"
+"change"=="changer"
+Hint: On linux you can configure your firewall to transparently redirect all http traffic through yacy using this iptables rule:==Conseil: Sur linux, vous pouvez configurer votre pare-feu pour rediriger de manière transparente tout le trafic http via yacy en utilisant cette règle d'iptables:
+Accounts==Comptes
+All traffic is routed through one single port, for both proxy and server.==Tout le trafic est acheminé à travers un seul port, à la fois pour proxy et pour serveur.
+Always Fresh==Toujours frais
+HTTPS Server Port:==Port du serveur HTTPS :
+IP-Number Access Domain to a pattern that corresponds to you local intranet.==Domaine d'accès IP selon un motif correspondant à votre intranet local.
+IP-Number filter==Filtre IP
+If unchecked, the proxy will act using Cache Fresh / Cache Stale rules. If checked, the cache is always fresh which means==Si cette option n'est pas cochée, le proxy utilisera les règles Cache Fresh / Cache Stale. Si elle est cochée, le cache est toujours considéré comme frais, ce qui signifie
+Proxy Access Settings==Paramètres d'accès proxy
+Proxy Settings==Paramètres de proxy
+Send "Via" Header==Envoyer l'en-tête "Via"
+Send "X-Forwarded-For" Header==Envoyer l'en-tête "X-Forwarded-For"
+Server Access Restrictions==Restrictions d'accès aux serveurs
+Specifies if the proxy should send the X-Forwarded-For http header.==Spécifie si le proxy doit envoyer l'en-tête X-Forwarded-For http.
+The default setting should be right in most cases. If you want, you can also set a proxy account==Le paramètre par défaut devrait être correct dans la plupart des cas. Si vous le souhaitez, vous pouvez également définir un compte proxy
+These settings configure the access method to your own http proxy and server.==Ces paramètres configurent la méthode d'accès à votre propre proxy et serveur http.
+This is the account that restricts access to the proxy function.==C'est le compte qui limite l'accès à la fonction proxy.
+Transparent Proxy==Proxy transparent
+With this you can specify if YaCy can be used as transparent proxy.==Avec cela, vous pouvez spécifier si YaCy peut être utilisé comme proxy transparent.
+You can restrict the access to this proxy/server using a two-stage security barrier:==Vous pouvez restreindre l'accès à ce proxy/serveur au moyen d'une barrière de sécurité en deux étapes :
+You probably don't want to share the proxy to the internet, so you should set the==Vous ne voulez probablement pas partager le proxy à l'Internet, donc vous devriez définir le
+define an access domain with a list of granted client IP-numbers or with wildcards==définir un domaine d'accèsavec une liste de numéros IP clients accordés ou avec wildcards
+define an user account with an user:password - pair==définir un compte utilisateuravec une paire user:password -
+http header according to RFC 2616 Sect 14.45.==En-tête http selon RFC 2616 Article 14.45.
+so that every proxy user must authenticate first, but this is rather unusual.==afin que chaque utilisateur du proxy doive d'abord s'authentifier, mais c'est plutôt inhabituel.
+that a page is never loaded again if it was already stored in the cache. However, if the page does not exist in the cache, it will be loaded in any case.==qu'une page n'est plus jamais chargée si elle a déjà été stockée dans le cache. Cependant, si la page n'existe pas dans le cache, elle sera en tout cas chargée.
+#-----------------------------
+
+#File: Settings_Referrer.inc
+#---------------------------
+"'Referer' section from the standard IETF specification"=="Section "Referer" de la spécification standard IETF"
+"Link types section at W3C HTML specification"=="Section des types de liens à la spécification HTML W3C"
+"Submit"=="Envoyer"
+Changes will take effect immediately.==Les modifications entreront en vigueur immédiatement.
+Add the "noreferrer" link type to search results links==Ajouter le type de lien "noreferrer" aux liens des résultats de recherche
+Be careful with this: some websites might reject requests with no referrer.==Soyez prudent avec cela: certains sites Web pourraient rejeter les demandes sans référence.
+Beware that every browser behaves differently: some settings may be unsupported by your particular browser and therefore ignored.==Méfiez-vous que chaque navigateur se comporte différemment: certains paramètres peuvent ne pas être pris en charge par votre navigateur particulier et donc ignorés.
+Custom setting: probably manually edited, be sure this value is the desired one.==Réglage personnalisé: probablement modifié manuellement, assurez-vous que cette valeur est celle souhaitée.
+Default browser behavior: it should correspond to "no-referrer-when-downgrade".==Comportement par défaut du navigateur: il doit correspondre à "non-référencé-quand-downgrade".
+External links: referrer information should be stripped from any private data and contain only this peer host name.==Liens externes: l'information de la référente doit être retirée de toute donnée privée et ne contenir que ce nom d'hôte.
+External links: referrer information should never be sent.==Liens externes: l'information de la référente ne doit jamais être envoyée.
+Global policy==Politique mondiale
+Highest privacy setting: referrer information should never be sent, even when navigating on this peer internal links.==Cadre de confidentialité le plus élevé: l'information référente ne devrait jamais être envoyée, même lorsque vous naviguez sur ces liens internes de pairs.
+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.==Si vous êtes vraiment préoccupé par la confidentialité, s'il vous plaît vérifier ce qui est réellement envoyé par votre navigateur en utilisant ses outils de développement intégrés console réseau, ou avec l'analyseur de trafic réseau de votre choix.
+It is a standard HTML5 attribute value,==Il s'agit d'une valeur d'attribut HTML5 standard,
+Peer internal and external links: referrer information should be stripped from any private data and contain only this peer host name.==Liens internes et externes entre pairs: les informations de référence devraient être retirées de toute donnée privée et ne contenir que ce nom d'hôte par pairs.
+Peer internal links: referrer information should be stripped from any private data and contain only this peer host name.==Liens internes entre pairs: l'information référente devrait être retirée de toute donnée privée et ne contenir que ce nom d'hôte de pairs.
+Peer internal links: referrer information should contain full URLs.==Liens internes entre pairs: l'information de la référente doit contenir des URL complètes.
+Referrer Policy Settings==Paramètres de la politique du référent
+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).==Les informations du référent doivent contenir des URL complètes, sauf lorsqu'un lien se dégrade d'une connexion sécurisée TLS (https) sur ce pair vers une cible non sécurisée (http).
+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.==Restriction: lorsqu'un lien se déclasse d'une connexion sécurisée TLS (https) sur ce pair vers une cible non sécurisée (http), aucune information référente ne doit être envoyée.
+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.==Restriction: lorsqu'un lien externe se dégrade d'une connexion sécurisée TLS (https) sur ce pair vers une cible non sécurisée (http), aucune information référente ne doit être envoyée.
+Search results links==Liens des résultats de la recherche
+This page offers some configuration settings to instruct your browser how it should fill this referrer information.==Cette page offre quelques paramètres de configuration pour apprendre à votre navigateur comment il doit remplir cette information référente.
+This referrer policy applies for every page on this peer. It is set by the "meta" HTML tag.==Cette politique de référent s'applique à chaque page de ce pair. Elle est définie par la balise HTML "meta".
+Unsafe setting: referrer information should always contain full URLs.==Configuration non sûre: les informations de la référente doivent toujours contenir des URL complètes.
+Values are sorted by decreasing privacy level.==Les valeurs sont triées par une diminution du niveau de confidentialité.
+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.==Les sites Web visités peuvent traiter ces informations comme ils le souhaitent, de sorte que cela peut devenir une préoccupation de confidentialité, par exemple lorsque vous venez d'une page qui contient des termes recherchés dans son URL.
+When checked, this overrides the global referrer policy and adds the standard "noreferrer"==Une fois coché, cela remplace la politique globale de référent et ajoute la norme "pas de référence"
+When loading pages and navigating through links, a web browser sends some information about the origin of the request,==Lors du chargement des pages et de la navigation à travers des liens, un navigateur Web envoie des informations sur l'origine de la demande,
+empty value==valeur vide
+no-referrer==no-referrer
+no-referrer-when-downgrade==no-referrer-when-downgrade
+origin==origin
+origin-when-cross-origin==origin-when-cross-origin
+same-origin==same-origin
+strict-origin==strict-origin
+strict-origin-when-cross-origin==strict-origin-when-cross-origin
+supported by many more browsers than the meta tag: if you want a higher level of privacy but use an old or incompatible browser,==pris en charge par beaucoup plus de navigateurs que la balise meta: si vous voulez un niveau plus élevé de confidentialité mais utiliser un navigateur ancien ou incompatible,
+this can be a valuable option.==Cela peut être une option précieuse.
+thus instructing the browser that it should not send any referrer information at all when visiting them.==Instruction ainsi au navigateur qu'il ne devrait pas envoyer d'informations référentes du tout lors de leur visite.
+unsafe-url==unsafe-url
+#-----------------------------
+
+#File: Settings_Seed_UploadFile.inc
+#---------------------------
+"Submit"=="Envoyer"
+File Location:==Emplacement du fichier :
+Here you can specify the path within the filesystem where the seed-list file should be stored.==Ici, vous pouvez spécifier le chemin dans le système de fichiers où le fichier seed-list doit être stocké.
+Store into filesystem:==Stocker dans le système de fichiers :
+You must configure this if you want to store the seed-list file onto the file system.==Vous devez configurer ceci si vous voulez stocker le fichier de liste seed dans le système de fichiers.
+current:==current:
+#-----------------------------
+
+#File: Threaddump_p.html
+#---------------------------
+"Multiple Dump Statistic"=="Statistique des décharges multiples"
+"Single Threaddump"=="Un seul threaddump"
+Threaddump==Threaddump
+YaCy Debugging: Thread Dump==Déboguement YaCy: Dump de filetage
+#-----------------------------
+
+#File: ToolsConfig_p.html
+#---------------------------
+Add superpowers to the YaCy Chat. Tools may be disabled by setting maxCallsPerTurn to 0.==Les outils peuvent être désactivés en réglant maxCallsPerTurn à 0.
+Basic Tools==Outils de base
+Data Retrieval Tools==Outils de récupération de données
+Save Tools Configuration==Configuration de sauvegarde des outils
+Tool settings were saved.==Les paramètres de l'outil ont été enregistrés.
+Tools==Outils
+Visualization Tools==Outils de visualisation
+disable==désactiver
+maxCallsPerTurn==maxCallsPerTurn
+#-----------------------------
+
+#File: Trails.html
+#---------------------------
+CyTag Trails==Sentiers CyTag
+#-----------------------------
+
+#File: Translator_p.html
+#---------------------------
+"Save translation"=="Enregistrer la traduction"
+Source File==Fichier source
+Source Text==Texte source
+Translate untranslated text of the user interface (current language). The modified translation file is stored in DATA/LOCALE directory.==Traduire le texte non traduit de l'interface utilisateur (langue courante). Le fichier de traduction modifié est stocké dans le répertoire DATA/LOCALE.
+Translation Editor==Éditeur de traduction
+UI Translation==Traduction de l'interface utilisateur
+filter untranslated==filtre non traduit
+view it==Regardez-la.
+#-----------------------------
+
+#File: User.html
+#---------------------------
+"Change"=="Changer"
+"green bar"=="barre verte"
+"login"=="connexion"
+"logout"=="déconnexion"
+"red bar"=="barre rouge"
+(Identified by==(Identifié par
+(after logout you will be prompted for your password again. simply click "cancel")==(après la déconnexion, votre mot de passe vous sera demandé à nouveau. cliquez simplement sur "annuler")
+Cookie==Cookie
+IP==IP
+New Password and its repetition do not match.==Le nouveau mot de passe et sa répétition ne correspondent pas.
+New Password is empty.==Le nouveau mot de passe est vide.
+Old Password is wrong.==L'ancien mot de passe est faux.
+Password was changed.==Le mot de passe a été modifié.
+Password:==Mot de passe :
+User Page==Page utilisateur
+Username/Password==Username/Password
+Username:==Nom d'utilisateur :
+You are currently logged in as admin.==Vous êtes actuellement connecté en tant qu'administrateur.
+You are not logged in.==Vous n'êtes pas connecté.
+new Password==nouveau mot de passe
+new Password(repetition)==nouveau mot de passe(répétition)
+old Password==ancien mot de passe
+#-----------------------------
+
+#File: VFS.html
+#---------------------------
+"File system browser"=="Navigateur du système de fichiers"
+"Root contents"=="Contenu de la racine"
+Discard==Annuler
+Edit file==Modifier le fichier
+New Folder==Nouveau dossier
+No files yet. Upload a file or create a folder.==Aucun fichier pour l'instant. Téléchargez un fichier ou créez un dossier.
+Preview==Aperçu
+Save==Enregistrer
+Upload File==Télécharger le fichier
+User storage in the browser cache with file-system-like navigation.==Stockage de l'utilisateur dans le cache du navigateur avec navigation de type système de fichiers.
+Virtual File System==Système de fichiers virtuels
+#-----------------------------
+
+#File: YaCySearchPluginFF.html
+#---------------------------
+"YaCy-Logo"=="YaCy-Logo"
+In Mozilla Firefox, you can the Search-Plugin via the search box on the toolbar. In Mozilla (Seamonkey) you can access the Search-Plugin via the Sidebar or the Location Bar.==Dans Mozilla Firefox, vous pouvez utiliser le plugin de recherche via le champ de recherche de la barre d'outils. Dans Mozilla (Seamonkey), vous pouvez accéder au plugin de recherche via la barre latérale ou la barre d'adresse.
+Install the YaCy search plugin.==Installez le plugin de recherche YaCy.
+Simply click on the link shown below to integrate the YaCy Firefox Search-Plugin into your browser.==Il suffit de cliquer sur le lien ci-dessous pour intégrer le YaCy Firefox Search-Plugin dans votre navigateur.
+YaCy Firefox Search-Plugin Installation:==Installation de recherche-plug YaCy Firefox:
+#-----------------------------
+
+#File: api/citation.html
+#---------------------------
+Cited==Cité
+List of==Liste des
+List of other web pages with citations==Liste des autres pages Web avec citations
+Similar documents from different hosts:==Documents similaires provenant de différents hôtes:
+filter cited sentences==filter phrases citées
+filter off==Débranchement du filtre
+#-----------------------------
+
+#File: api/push_p.html
+#---------------------------
+"Submit"=="Envoyer"
+Collection==Collection
+Content-Type==Content-Type
+Data==Données
+Example usage is the direct attachment of a content management system to YaCy to push newly changed files directly to the YaCy indexer.==Exemple d'utilisation est l'attachement direct d'un système de gestion de contenu à YaCy pour pousser les fichiers nouvellement modifiés directement à l'indexeur YaCy.
+File Count==Nombre de fichiers
+File Number==Numéro de fichier
+File Upload==Téléchargement de fichier
+Files to process:==Fichiers à traiter:
+If you want to push again files, use this form to pre-define a number of upload forms:==Si vous voulez pousser à nouveau les fichiers, utilisez ce formulaire pour pré-définir un certain nombre de formulaires de téléchargement:
+Item==Élément
+Last-Modified==Last-Modified
+Media-Keywords ()==Mots-clés pour les médias ()
+Media-Title==Media-Title
+Message==Message
+Result for the recently submitted file(s). You can also submit the same form using the servlet push_p.json to get push confirmations in json format.==Résultat pour le(s) fichier(s) récemment soumis(s). Vous pouvez également soumettre le même formulaire en utilisant le serveur push_p.json pour obtenir des confirmations de push au format json.
+Success==Succès
+The following attributes are only used for media type content==Les attributs suivants ne sont utilisés que pour le contenu de type média
+This form can be used to upload a file and assign it to an url.==Ce formulaire peut être utilisé pour télécharger un fichier et l'assigner à une url.
+URL==URL
+commit==valider
+count==nombre
+countfail==countfail
+countsuccess==countsuccess
+fail==échec
+false==false
+ok==ok
+successall==successall
+synchronous==synchronous
+true==true
+#-----------------------------
+
+#File: api/share.html
+#---------------------------
+"Submit"=="Envoyer"
+File Share==Partage de fichiers
+Files to process:==Fichiers à traiter:
+If you want to push again files, use this form to pre-define a number of upload forms:==Si vous voulez pousser à nouveau les fichiers, utilisez ce formulaire pour pré-définir un certain nombre de formulaires de téléchargement:
+Item==Élément
+Message==Message
+Result for the recently submitted file(s). You can also submit the same form using the servlet share.json to get push confirmations in json format.==Résultat pour le(s) fichier(s) récemment soumis(s). Vous pouvez également soumettre le même formulaire en utilisant le servlet share.json pour obtenir des confirmations push au format json.
+Success==Succès
+This form can be used to share a (index) file==Ce formulaire peut être utilisé pour partager un fichier (index)
+URL==URL
+countfail==countfail
+countsuccess==countsuccess
+fail==échec
+false==false
+ok==ok
+successall==successall
+true==true
+#-----------------------------
+
+#File: api/table_p.html
+#---------------------------
+"Edit Table"=="Modifier le tableau"
+"Table"=="Table"
+PK==PK
+#-----------------------------
+
+#File: compare_yacy.html
+#---------------------------
+"Compare"=="Compare"
+Left Search Engine==Moteur de recherche à gauche
+Right Search Engine==Moteur de recherche de droite
+Search Result==Résultat de la recherche
+Websearch Comparison==Comparaison de la recherche en ligne
+loading....==loading....
+#-----------------------------
+
+#File: env/grafics/donate.html
+#---------------------------
+"Donate!"=="Faites un don !"
+Github Sponsors==Sponsors Github
+Please support our work on YaCy!==S'il vous plaît soutenir notre travail sur YaCy!
+beneficial: 5 €==bénéfique: 5 €
+generous: 25 €==généreux: 25 €
+gracious: 50 €==gracieusement: 50 €
+#-----------------------------
+
+#File: env/templates/submenuAI.template
+#---------------------------
+AI Lab==Laboratoire d'IA
+AI Shield==Bouclier AI
+Chat==Chat
+LLM Selection==Sélection LLM
+Log Reports==Rapports de journaux
+RAG Config==RAG Config
+Tools Config==Outils Config
+#-----------------------------
+
+#File: env/templates/submenuCrawlMonitor.template
+#---------------------------
+(1) Receipts==(1) Recettes
+(2) Queries==2) Demandes de renseignements
+(3) DHT Transfer==3) Transfert DHT
+(4) Proxy Use==(4) Utilisation du proxy
+(5) Local Crawling==5) Crawling local
+(6) Global Crawling==6) Crawling mondial
+(7) Pack Import==(7) Emballage Importation
+Crawl Results==Résultats obtenus
+Crawler==Crawler
+Crawler Steering==Crawler Pilote
+Global==Global
+Loader==Loader
+Local==Local
+No-Load==No-Load
+Overview==Vue d'ensemble
+Processing Monitor==Moniteur de traitement
+Queues==Files d'attente
+Rejected URLs==URLs rejetées
+Remote==Remote
+Scheduler and Profile Editor==Organisateur et éditeur de profil
+Web Crawler==Crawler Web
+robots.txt Monitor==robot.txt Moniteur
+#-----------------------------
+
+#File: env/templates/submenuIndexCreate.template
+#---------------------------
+Advanced Crawler==Crawler avancé
+Autocrawl==Autocrawl
+Crawl Start (Expert)==Démarrage (Expert)
+Crawler/Spider==Crawler/Spider
+Crawling of MediaWikis==Crawling de MediaWikis
+Crawling of phpBB3 Forums==Dessin des forums phpBB3
+Network Harvesting==Récolte en réseau
+Network Scanner==Scanner réseau
+Remote Crawling==Crawling à distance
+Scraping Proxy==Proxy de scrapage
+#-----------------------------
+
+#File: env/templates/submenuIndexImport.template
+#---------------------------
+Content Export / Import==Export/import de contenu
+Database Reader==Lecteur de base de données
+Export==Export
+Import==Import
+Index Export==Export d'index
+JsonList==JsonList
+MediaWiki Dump==Dump MediaWiki
+OAI-PMH==OAI-PMH
+Pack Downloader==Téléchargeur de paquets
+Pack Generator==Générateur de paquets
+Pack Manager==Gestionnaire de paquets
+RSS==RSS
+Solr Dump Export/Import==Export/import de dump Solr
+WARC==WARC
+YaCy Packs==Boîtes YaCy
+ZIM==ZIM
+phpBB3 Database==Base de données phpBB3
+#-----------------------------
+
+#File: env/templates/submenuPortalConfiguration.template
+#---------------------------
+Generic Search Portal==Portail de recherche générique
+Local robots.txt==Robots locaux.txt
+Portal Configuration==Configuration du portail
+Search Box Anywhere==Boîte de recherche n'importe où
+User Profile==Profil de l'utilisateur
+#-----------------------------
+
+#File: env/templates/submenuPublication.template
+#---------------------------
+Blog==Blog
+Publication==Publication
+Wiki==Wiki
+#-----------------------------
+
+#File: goto_p.html
+#---------------------------
+forward to remote peer==transmettre à un pair distant
+forwarding==transfert
+#-----------------------------
+
+#File: jslicense.html
+#---------------------------
+License==Licence
+Script==Script
+Source==Source
+YaCy JavaScript files license information==Informations sur la licence de fichiers JavaScript de YaCy
+YaCy JavaScript license information==Informations sur la licence JavaScript de YaCy
+#-----------------------------
+
+#File: portalsearch/yacy-portalsearch.html
+#---------------------------
+YaCy Bookmarks==Signets YaCy
+YaCy Portalsearch:==Recherche sur le portail YaCy:
+#-----------------------------
+
+#File: processing/domaingraph/applet/index.html
+#---------------------------
+"Download Java Plug-in"=="Télécharger Java Plug-in"
+"Processing.org"=="Processing.org"
+Built with Processing==Construit avec traitement
+Get the latest Java Plug-in here.==Obtenez le dernier plug-in Java ici.
+This browser does not have a Java Plug-in.==Ce navigateur n'a pas de plug-in Java.
+domaingraph : Built with Processing==domaine: Construit avec traitement
+#-----------------------------
+
+#File: proxymsg/authfail.inc
+#---------------------------
+"login"=="connexion"
+Password==Mot de passe
+Username==Nom d'utilisateur
+Your Username/Password is wrong.==Votre nom d'utilisateur ou mot de passe est incorrect.
+#-----------------------------
+
+#File: proxymsg/error.html
+#---------------------------
+Could not load resource. The file is not available.==Impossible de charger la ressource. Le fichier n'est pas disponible.
+YaCy==YaCy
+YaCy: Error Message==YaCy: Message d'erreur
+You don't have an active internet connection. Please go online.==Vous n'avez pas de connexion Internet active.
+not-yet-assigned error==erreur non-assignée
+request:==request:
+unspecified error==Erreur non précisée
+#-----------------------------
+
+#File: proxymsg/proxylimits.inc
+#---------------------------
+Your Account is disabled for surfing.==Votre compte est désactivé pour le surf.
+#-----------------------------
+
+#File: proxymsg/urlproxyheader.html
+#---------------------------
+"add bookmark"=="ajouter un signet"
+(Warning: secure target viewed over normal http)==(Attention: cible sécurisée vue sur http normale)
+YaCy stop proxy==YaCy stop proxy
+#-----------------------------
+
+#File: rct_p.html
+#---------------------------
+"retrieve"=="récupérer"
+Retrieve remote crawl url list==Récupérer la liste d'url à distance
+Target Peer:==Particulier cible:
+remote crawl fetch test==test de récupération de crawl distant
+select==sélectionner
+#-----------------------------
+
+#File: rssTerminal.html
+#---------------------------
+rss terminal==terminal rss
+#-----------------------------
+
+#File: terminal_p.html
+#---------------------------
+"Download Java Plug-in"=="Télécharger Java Plug-in"
+"PerformanceGraph"=="PerformanceGraph"
+"The yacy Network"=="Le réseau Yacy"
+"WebStructurePicture"=="WebStructurePicture"
+"YaCy"=="YaCy"
+<Crawl Start>==< Crawl Démarrer >
+<Search Form>==Formulaire de recherche < >
+<Shutdown>==< Arrêt >
+<Status Page>==Page d'état < >
+Domain Monitor==Moniteur de domaine
+Event Terminal==Terminal d'événements
+Get the latest Java Plug-in here.==Obtenez le dernier plug-in Java ici.
+Image Terminal==Terminal d'image
+Network Monitor==Moniteur réseau
+Resource Monitor==Moniteur des ressources
+This browser does not have a Java Plug-in.==Ce navigateur n'a pas de plug-in Java.
+YaCy System Terminal Monitor==Moniteur terminal du système YaCy
+#-----------------------------
+
+#File: yacysearchpagination.html
+#---------------------------
+"Next page"=="Page suivante"
+"Previous page"=="Page précédente"
+«==«
+»==»
+#-----------------------------
diff --git a/locales/hi.lng b/locales/hi.lng
index cd96d9987..7acd95755 100644
--- a/locales/hi.lng
+++ b/locales/hi.lng
@@ -3,219 +3,136 @@
# -----------------------
# This is a part of YaCy, a peer-to-peer based web search engine
-#File: ConfigLanguage_p.html
-#---------------------------
-default(english)==हिंदी
-#==सारांश शर्मा
-#==
-#-----------------------------
-
#File: AccessTracker_p.html
#---------------------------
-Access Tracker== पहुँच खौजै
-Server Access Overview==सरवर की पहुँच निरीक्षण करे
-This is a list of #[num]# requests to the local http server within the last hour.== यह पिछले एक घंटे के भीतर स्थानीय http सर्वर के लिए की गई अनुरोध की संख्या#[num]# की एक सूची है
-This is a list of requests to the local http server within the last hour.==यह पिछले एक घंटे के भीतर स्थानीय http सर्वर को की गई अनुरोध की एक सूची है.
-Showing #[num]# requests.==अनुरोधों को संख्या दिखा रहा है
->Path<==>मार्ग<
-Date<==तारीख<
-Access Count During==पहुंच के दौरान गिनती
+Server Access Overview==सरवर की पहुँच निरीक्षण करे
+Access Count During==पहुंच के दौरान गिनती
last Second==आखिरी सेकंड
last Minute==आखिरी मिनट
last 10 Minutes==पिछले दस मिनट
last Hour==पिछला एक घंटा
The following hosts are registered as source for brute-force requests to protected pages==निम्नलिखित होस्ट संरक्षित पृष्ठों के लिए brute-force अनुरोधों के लिए स्रोत के रूप में पंजीकृत हैं
-#>Host==>होस्ट
Access Times==एक्सेस समय
Server Access Details== सर्वर का उपयोग विस्तार
Local Search Log==स्थानीय खोज लोग
Local Search Host Tracker==स्थानीय खोज होस्ट ट्रैकर
Remote Search Log==रिमोट खोज लोग
-Total:==संपूर्ण:
-Success:==सफल:
Remote Search Host Tracker==रिमोट खोज होस्ट ट्रैकर
This is a list of searches that had been requested from this' peer search interface.?=यह इस सहकर्मी खोज इंटरफ़ेस से अनुरोध किए गए खोजों की सूची है
-Showing #[num]# entries from a total of #[total]# requests.==यह एंट्रीज दिखा रहा है #[num]# अनुरोध के कुल से #[total]#
Requesting Host==होस्ट का अनुरोध
-#Offset==ओफ़्सेट
-Offset==ओफ़्सेट
+Offset==ओफ़्सेट
Expected Results==अपेक्षित परिणाम
Returned Results==लौटे होए परिणाम
Known Results==ज्ञात परिणाम
Used Time (ms)==प्रयुक्त समय (ms)
URL fetch (ms)==यूआरएल लायें (ms)
-Snippet comp (ms)==स्निपेट कंप्यूटर अनुप्रयोग (ms)
-Query==क्वेरी
-#>User Agent<==>यूजर एजेंट<
-Search Word Hashes==हाशेस शब्द खोजे
-Count==काउंट
-Queries Per Last Hour==पिछले घंटे की क्वेरी
+Snippet comp (ms)==स्निपेट कंप्यूटर अनुप्रयोग (ms)
+Query==क्वेरी
+Search Word Hashes==हाशेस शब्द खोजे
+Queries Per Last Hour==पिछले घंटे की क्वेरी
Access Dates==एक्सेस दिनांक
-This is a list of searches that had been requested from remote peer search interface==यह रिमोट से की गए खोजो की सूचि है
-Peer Name==पीयर नाम
+This is a list of searches that had been requested from remote peer search interface==यह रिमोट से की गए खोजो की सूचि है
+Peer Name==पीयर नाम
#-----------------------------
#File: Blacklist_p.html
#---------------------------
Blacklist Administration==ब्लैकलिस्ट एडमिनिस्ट्रेशन
-Used Blacklist engine:==उपयोग किया गया ब्लैकलिस्ट इंजन :
This function provides an URL filter to the proxy; any blacklisted URL is blocked==इस समारोह प्रॉक्सी के लिए एक यूआरएल फिल्टर प्रदान करता है, किसी भी काली सूची में डाला यूआरएल अवरुद्ध है
from being loaded. You can define several blacklists and activate them separately.==लोड किये जाने से . आप कई काली सूची को परिभाषित करने और उन्हें अलग से सक्रिय कर सकते हैं.
-You may also provide your blacklist to other peers by sharing them; in return you may==आप अपनी ब्लैकलिस्ट दुसरे पीअर्स के साथ शेयर कर सकते हैं और बदले में
-collect blacklist entries from other peers.==आप दुसरे पीअर्स की ब्लैकलिस्ट एन्त्रिएस ले सकते हैं
+You may also provide your blacklist to other peers by sharing them; in return you may==आप अपनी ब्लैकलिस्ट दुसरे पीअर्स के साथ शेयर कर सकते हैं और बदले में
+collect blacklist entries from other peers.==आप दुसरे पीअर्स की ब्लैकलिस्ट एन्त्रिएस ले सकते हैं
Active list:==एक्टिव लिस्ट :
-No blacklist selected==कोई भी ब्लैकलिस्ट सेलेक्ट नहीं की हुई
-Select list:==सेलेक्ट लिस्ट
-not shared::shared==शेयर नहीं किया हुआ ::शेयर किया हुआ
-"select"=="सेलेक्ट"
+No blacklist selected==कोई भी ब्लैकलिस्ट सेलेक्ट नहीं की हुई
Create new list:==नयी लिस्ट बनाये :
"create"=="बनाये"
-Settings for this list==इस लिस्ट की सेत्त्तिंग करे
"Save"=="सेव करे"
-Share/don't share this list==शेयर / शेयर ना करे इस लिस्ट को
-Delete this list==इस लिस्ट को डिलीट करे
-Edit this list==इस लिस्ट को एडिट करे
-These are the domain name/path patterns in==यह बह डोमेन नाम / पथ पैटर्न है इन
-Blacklist Pattern==ब्लैकलिस्ट पैटर्न
-Edit selected pattern(s)==सेलेक्ट किये गए पैटर्न (ओं) को एडिट करें
-Delete selected pattern(s)==सिलेक्टेड पैटर्न (ओं) को डिलीट करे
-Move selected pattern(s) to==सलेक्टेड पैटर्न (ओं) को हटाये
-#You can select them here for deletion==आप इन्हें देलेतिओन के लिए सेलेक्ट कर सकते हैं
+Blacklist Pattern==ब्लैकलिस्ट पैटर्न
+Edit selected pattern(s)==सेलेक्ट किये गए पैटर्न (ओं) को एडिट करें
+Delete selected pattern(s)==सिलेक्टेड पैटर्न (ओं) को डिलीट करे
+Move selected pattern(s) to==सलेक्टेड पैटर्न (ओं) को हटाये
Add new pattern:==नया पैटर्न जोड़े :
"Add URL pattern"=="नया यूआरएल पैटर्न जोड़े "
-The right '*', after the '/', can be replaced by a regular expression.== दाहिने"*" के बाद "/" बदला जा सकता है रेगेक्स के द्वारा .
-domain.net/fullpath<==डोमेन .नेट /फुल्ल्पथ <
->domain.net/*<==>डोमेन .नेट /* <
-*.domain.net/*<==*.डोमेन .नेट /*<
-*.sub.domain.net/*<==*.सुब .डोमेन .दे /*<
-#sub.domain.*/*<==सुब .डोमेन .*/*<
-#domain.*/*<==डोमेन .*/*<
-#was removed from blacklist==ब्लैकलिस्ट से हटा दिया गया था
-#was added to the blacklist==ब्लैकलिस्ट में जोड़ा गया था
-Activate this list for==इस लिस्ट को सक्रिय करें
Show entries:==एन्त्रिएस देखिये/दिखाएँ :
Entries per page:==एन्तिरेस प्रति पेज :
-#"Go"=="आगे बढे"
Edit existing pattern(s):==मौजूदा पैटर्न (ओं) को एडिट करें :
"Save URL pattern(s)"=="यूआरएल पैटर्न (ओं) सेव करें "
-==
#-----------------------------
#File: BlacklistCleaner_p.html
#---------------------------
-Blacklist Cleaner==ब्लैकलिस्ट क्लीनर
-Here you can remove or edit illegal or double blacklist-entries.==यहाँ से आप अवैध और डबल ब्लैकलिस्टेड एन्त्रिएस हटा सकते हैं
-Check list==चेक लिस्ट
+Blacklist Cleaner==ब्लैकलिस्ट क्लीनर
+Here you can remove or edit illegal or double blacklist-entries.==यहाँ से आप अवैध और डबल ब्लैकलिस्टेड एन्त्रिएस हटा सकते हैं
+Check list==चेक लिस्ट
"Check"=="चेक"
-Allow regular expressions in host part of blacklist entries.==रेगुलर एक्सप्रेशन को ब्लैकलिस्ट एन्त्रिएस के होस्ट पार्ट में अनुमति दे
+Allow regular expressions in host part of blacklist entries.==रेगुलर एक्सप्रेशन को ब्लैकलिस्ट एन्त्रिएस के होस्ट पार्ट में अनुमति दे
The blacklist-cleaner only works for the following blacklist-engines up to now:==ब्लैक लिस्ट क्लीनर केवल अब तक का निम्न ब्लैक लिस्ट इंजन के लिए काम करता है:
-Illegal Entries in #[blList]# for==अवैध एन्त्रिएस #[blList]# के लिए
-Deleted #[delCount]# entries==मिटाई हुई #[delCount]# एन्त्रिएस
-Altered #[alterCount]# entries!==बदली हुई #[alterCount]# एन्त्रिएस
Two wildcards in host-part==होस्ट भाग में दो वाइल्डकार्ड
-Either subdomain or wildcard==या तो उपडोमेन या u> वाइल्डकार्ड
-Path is invalid Regex== अवैध रेगेक्स का पथ
+Path is invalid Regex== अवैध रेगेक्स का पथ
Wildcard not on begin or end==वाइल्डकार्ड नहीं पर शुरू या खत्म पर
Host contains illegal chars==होस्ट में अवैध करैक्टर शामिल
-Double==डबल
+Double==डबल
"Change Selected"=="बदलना चुना गया"
"Delete Selected"=="मिटाना चुना गया "
-No Blacklist selected==कोई भी ब्लैकलिस्ट नहीं चुना गया
+No Blacklist selected==कोई भी ब्लैकलिस्ट नहीं चुना गया
#-----------------------------
#File: BlacklistImpExp_p.html
#---------------------------
-#Blacklist Import==Blacklist Import
Used Blacklist engine:==ब्लैकलिस्ट इंजन उपयोग किया गया :
Import blacklist items from...==ब्लैकलिस्ट सूची इम्पोर्ट करें ...
other YaCy peers:==अन्य यासी पीअर्स :
"Load new blacklist items"=="नयी ब्लैकलिस्ट सूची लोड करैं "
-#URL:==URL:
-plain text file:<==प्लेन टेक्स्ट फाइल :<
XML file:==क्स्म्ल फाइल :
-Upload a regular text file which contains one blacklist entry per line.==एक रेगुलर टेक्स्ट फाइल अपलोड करे जिसमे एक ब्लैकलिस्ट प्रति लाइन में शामिल हो
-Upload an XML file which contains one or more blacklists.==एक क्स्म्ल फाइल अपलोड करे जिसमे एक या एक से अधिक ब्लैकलिस्ट हो
+Upload a regular text file which contains one blacklist entry per line.==एक रेगुलर टेक्स्ट फाइल अपलोड करे जिसमे एक ब्लैकलिस्ट प्रति लाइन में शामिल हो
+Upload an XML file which contains one or more blacklists.==एक क्स्म्ल फाइल अपलोड करे जिसमे एक या एक से अधिक ब्लैकलिस्ट हो
Export blacklist items to...==ब्लैकलिस्ट सूची को एक्सपोर्ट करे ...
Here you can export a blacklist as an XML file. This file will contain additional==यहाँ से आप ब्लैकलिस्ट एक्सपोर्ट कर सकते हैं क्स्म्ल के रूप में, यह फाइल अतिरिक्त
-information about which cases a blacklist is activated for.== जानकारी रखती है की किस मामले के लिए ब्लैकलिस्ट एक्टिवेटिड है
+information about which cases a blacklist is activated for.== जानकारी रखती है की किस मामले के लिए ब्लैकलिस्ट एक्टिवेटिड है
"Export list as XML"=="सूची को क्स्म्ल में एक्सपोर्ट करे "
-Here you can export a blacklist as a regular text file with one blacklist entry per line.==यहाँ से आप ब्लैकलिस्ट एक रेगुलर टेक्स्ट फाइल में एक्सपोर्ट कर सकते हैं जिसमे ,जो की ब्लैकलिस्ट प्रति एंट्री होगा
-This file will not contain any additional information==यह फाइल कोई अत्रिकित जानकारी नहीं देगी
+Here you can export a blacklist as a regular text file with one blacklist entry per line.==यहाँ से आप ब्लैकलिस्ट एक रेगुलर टेक्स्ट फाइल में एक्सपोर्ट कर सकते हैं जिसमे ,जो की ब्लैकलिस्ट प्रति एंट्री होगा
"Export list as text"=="इस सूची को टेक्स्ट में एक्सपोर्ट करे "
#File: BlacklistTest_p.html
#---------------------------
-Blacklist Test==ब्लैकलिस्ट टेस्ट
+Blacklist Test==ब्लैकलिस्ट टेस्ट
Used Blacklist engine:==इस्तेमाल किया हुआ ब्लैकलिस्ट इंजन :
Test list:==टेस्ट की सूची :
"Test"=="टेस्ट"
-The tested URL was==टेस्ट किया हुआ यूआरएल था
It is blocked for the following cases:==यह निम्नलिखित मामलों के लिए ब्लॉक किया गया है:
-#Crawling==क्रेव्लिंग
-#DHT==DHT
-#News==न्यूज़
-#Proxy==प्रॉक्सी
-Search==सर्च
-Surftips==सर्फ टिप्स
+Search==सर्च
+Surftips==सर्फ टिप्स
#-----------------------------
#File: Blog.html
+Edit==एडिट
#---------------------------
-by==से
-Comments==टिप्पणी
->edit==>एडिट
->delete==>डिलीट
-Edit<==एडिट<
-previous entries==पिछली एन्त्रिएस
-next entries==अगली एन्त्रिएस
-new entry==नयी एन्त्रिएस
-import XML-File==क्स्म्ल फाइल इम्पोर्ट करे
-export as XML==क्स्म्ल फाइल में एक्सपोर्ट करे
-Comments==टिप्पणी
Blog-Home==ब्लॉग घर
Author:==लेखक:
Subject:==विषय:
-#Text:==टेक्स्ट:
-You can use==आप उपयोग कर सकते हैं
-Yacy-Wiki Code==यासी -विकी कोड
-here.==यहां.
Comments:==टिप्पणी:
deactivated==निष्क्रिय
->activated==>सक्रिय
-moderated==मॉडरेटेड
+moderated==मॉडरेटेड
"Submit"=="सबमिट "
"Preview"=="प्रीव्यू "
"Discard"=="दिस्कार्द "
->Preview==>प्रीव्यू
No changes have been submitted so far!==अभी तक कोई चनगेस सबमिट नहीं हुआ !
Access denied==ऐक्सेस डिनाइड
-To edit or create blog-entries you need to be logged in as Admin or User who has Blog rights.==यदि आप नया ब्लॉग या एडिट करना चाहते है तो आपको एडमिन से लॉग इन होना होगा या यूजर जिसके पास ब्लॉग राईट हो
-Are you sure==क्या आप यह
-that you want to delete== हटाना चाहते हैं:
+To edit or create blog-entries you need to be logged in as Admin or User who has Blog rights.==यदि आप नया ब्लॉग या एडिट करना चाहते है तो आपको एडमिन से लॉग इन होना होगा या यूजर जिसके पास ब्लॉग राईट हो
Confirm deletion==हटाने की पुष्टि
-Yes, delete it.==हाँ, इसे हटा दे
-No, leave it.==नहीं ,रहने दे
Import was successful!==इम्पोर्ट सफल रहा !
Import failed, maybe the supplied file was no valid blog-backup?==इम्पोर्ट असफल रहा ! शायद यह फाइल सही नहीं है ?
Please select the XML-file you want to import:==क्स्म्ल फाइल सेलेक्ट करे जो आपको इम्पोर्ट करनी है :
#-----------------------------
#File: BlogComments.html
+Comments:==टिप्पणी:
#---------------------------
-by==से
-Comments==टिप्पणी
-Login==लॉग इन
-Blog-Home==ब्लॉग घर
-delete==डिलीट
-allow==अनुमति देना
+Blog-Home==ब्लॉग घर
Author:==लेखक:
Subject:==विषय:
-#Text:==टेक्स्ट:
-You can use==आप उपयोग कर सकते हैं
-Yacy-Wiki Code==यासी -विकी कोड
-here.==यहां.
"Submit"=="सबमिट"
"Preview"=="प्रीव्यू"
"Discard"=="दिस्कार्द"
@@ -223,48 +140,33 @@ here.==यहां.
#File: Bookmarks.html
#---------------------------
-YaCy '#[clientname]#': Bookmarks==यासी '#[clientname]#': बुकमार्क्स
The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.==यह बुकमार्क्स की सूचि आरएसएस फीड्स में पुनः प्राप्त की जा सकती है . आप एक विशिष्ट टैग का चयन करते हैं तो यह भी किया जा सकता है..
Click the API icon to load the RSS from the current selection.==मौजूदा चयन से आरएसएस लोड करने के लिए एपीआई आइकन पर क्लिक करें.
-To see a list of all APIs, please visit the API wiki page.==एपीआई की लिस्ट देखने के लिए विजिट करे एपीआई विकी पेज .
-
Segnalibri
-Bookmarks (==Segnalibri (
-Login==Login
-List Bookmarks==Lista segnalibri
-Add Bookmark==Aggiungi segnalibro
-Import Bookmarks==Importa segnalibri
-Import XML Bookmarks==Importa segnalibri XML
-Import HTML Bookmarks==Importa segnalibri HTML
-"import"=="importare"
-Default Tags:==Tag di default
-imported==importati
-Edit Bookmark==Modifica segnalibro
-URL:==URL:
-Title:==Titolo:
-Description:==Descrizione:
-Tags (comma separated):==Tag (separati da virgole):
->Public:==>Pubblico:
-yes==sì
-no==no
-"create"=="crea"
-"edit"=="modifica"
-File:==File:
-import as Public==importa come pubblico
-"private bookmark"=="Segnalibro privato"
-"public bookmark"=="Segnalibro pubblico"
-Tagged with==Segnato con
-Edit==Modifica
-Delete==Cancella
-Folders==Directory
-Tags==tag
-next page==prossima pagina
-All==Tutto
-#-----------------------------
-
-#File: Collage.html
-#---------------------------
-#-----------------------------
-
-
-#File: compare_yacy.html
-#---------------------------
-Websearch Comparison==Confronto delle ricerche
-Left Search Engine==Motore di ricerca a sinistra
-Right Search Engine==Motore di ricerca a sinistra
-"Compare"=="Confronta"
-Search Result==Risultati della ricerca
-#-----------------------------
-
-#File: ConfigAccounts_p.html
-#---------------------------
-User Accounts==Account utenti
-User Administration==Amministrazione utenti
-User created:==Utente creato:
-User changed:==Utente modificato:
-Generic error.==Errore generico.
-Passwords do not match.==Le password non corrispondono.
-Admin Account==Account admin
-"Define Administrator"=="Imposta amministratore"
-Select user==Selezione utente
-New user==Nuovo utente
-Edit User==Modifica utente
-Delete User==Elimina utente
-Edit current user:==Modifica utente attuale:
-Username==Nome utente
-Password==Password
-Repeat password==Ripetere la password
-First name==Nome di battesimo
-Last name==Cognome
-Address==Indirizzo
-Rights==Privilegi
-Time used==Tempo utilizzato
-Save User==Salva utente
-#-----------------------------
-
-#File: ConfigAppearance_p.html
-#---------------------------
-Appearance and Integration==Aspetto ed Integrazione
-Skin Selection==Selezione tema grafico
-Current skin==Tema grafico attuale
-Available Skins==Temi grafici disponibili
-"Use"=="Usa"
-"Delete"=="Cancella"
->Skin Color Definition<==>Impostazione colori tema<
->Background<==>Sfondo<
->Text<==>Testo<
->Legend<==>Legenda<
->Border Line<==>Bordo Linea<
->Search URL==>Cerca URL
-"Set Colors"=="Imposta colori"
->Skin Download<==>Download dei temi grafici<
-Skins can be installed from download locations==I temi possono essere installati dalla cartella dei download
-Install new skin from URL==Installare il tema da questo URL
-Use this skin==Attiva subito questo tema
-"Install"=="Installa"
-Make sure that you only download data from trustworthy sources. The new Skin file==Scaricare i file solamente da fonti affidabili. I file scaricati
-might overwrite existing data if a file of the same name exists already.==sovrascrivono i file con lo stesso nome già presenti e non è possibile annullare l'operazione.
->Unable to get URL:==>Impossibile contattare l'URL:
-Error saving the skin.==Errore durante il salvataggio del tema.
-#-----------------------------
-
-#File: ConfigBasic.html
-#---------------------------
-Access Configuration==Configurazione per l'accesso
-Basic Configuration==Configurazione di base
-Your YaCy Peer needs some basic information to operate properly==Il tuo nodo YaCy ha bisogno di una semplice configurazione per poter funzionare correttamente
-Select a language for the interface==Seleziona la lingua dell'interfaccia
-English==Inglese
-Français==Francese
-汉语/漢語==Cinese
-Русский==Russo
-Українська==Ucraino
-हिन्दी==Hindi
-日本語==Giapponese
-Use Case: what do you want to do with YaCy:==Modo d'uso: come userai YaCy
-Community-based web search==Ricerca web comunitaria
-Search portal for your own web pages==Portale di ricerca per le tue pagine
-Intranet Indexing==Indicizzazione di una intranet
-or smb:==oppure smb:
-You may change your peer name==Puoi cambiare il nome del tuo nodo
-Peer Name:==Nome nodo:
-Your peer can be reached by other peers==Il tuo nodo può essere contattato da altri nodi
-Peer Port:==Porta del nodo:
-with SSL== usa SSL
-https enabled==https abilitato
-on port==sulla porta
-Configure your router for YaCy using UPnP:==Configura porte del router tramite UPnP:
-Configuration was not successful. This may take a moment.==La configurazione non è corretta. È necessario attendere ancora un attimo.
-Set Configuration==Salva configurazione
-What you should do next:==Cosa fare dopo aver completato la configurazione di base:
-Your basic configuration is complete! You can now (for example)==La configurazione minima è completata! Adesso potresti (per esempio)
-just <==semplicemente <
-start an uncensored search==avviare una ricerca non censurata
-monitor at the network page what the other peers are doing==controllare nella pagina Rete cosa fanno gli altri nodi
-Your Peer name is a default name; please set an individual peer name.==Il nome del tuo nodo è quello di default; potresti sostituirlo con un nome individuale.
-This is needed if you want to fully participate in the YaCy network.==È indispensabile per poter accedere a tutte le funzioni della rete YaCy.
-#-----------------------------
-
-#File: ConfigHeuristics_p.html
-#---------------------------
-(new link)==(nuovo link)
->Title<==Titolo
->Comment<==Commento
-"add"=="aggiungi"
-"Save"=="Salva"
-#-----------------------------
-
-#File: ConfigHTCache_p.html
-#---------------------------
-HTCache Configuration==Configurazione HTCache
-The path where the cache is stored==Percorso in cui è memorizzata la cache
-The current size of the cache==Dimensione attuale cache
->#[actualCacheSize]# MB for #[actualCacheDocCount]# files, #[docSizeAverage]# KB / file in average==>#[actualCacheSize]# MB per un totale di #[actualCacheDocCount]# file, con una media di #[docSizeAverage]# KB / file
-The maximum size of the cache==Dimensione massima cache
-"Set"=="Imposta"
-Cache Deletion==Elimina cache
-Delete HTTP & FTP Cache==Elimina cache HTTP & FTP
-Delete robots.txt Cache==Elimina cache di robots.txt
-"Delete"=="Elimina"
-#-----------------------------
-
-#File: ConfigLanguage_p.html
-#---------------------------
-Language selection==Selezione lingua
-You can change the language of the YaCy-webinterface with translation files.==È possibile modificare la lingua dell'interfaccia web di YaCy tramite dei file di traduzione.
-Current language==Lingua attuale
-Author(s) (chronological)==Autori (ordine cronologico)
-Send additions to maintainer
==Invia modifiche al manutentore
-Available Languages==Lingue disponibili
-Download Language File==Scaricamento file di traduzione
-Supported formats are the internal language file (extension .lng) or XLIFF (extension .xlf) format.==I formati supportati sono il formato nativo (.lng) e lo XLIFF (.xlf).
-Install new language from URL==Installa nuova traduzione da URL
-Use this language==Usa questa lingua
-"Use"=="Usa"
-"Delete"=="Disinstalla"
-"Install"=="Installa"
-Unable to get URL:==Impossibile raggiungere l'URL:
-Error saving the language file.==Errore durante il salvataggio del file di traduzione.
-Simple Editor==Editor di base
-to add untranslated text==per aggiungere testo non tradotto
-#-----------------------------
-
-#File: ConfigNetwork_p.html
-#---------------------------
-Network Configuration==Impostazioni di rete
-No changes were made!==Non è stata effettuata alcuna modifica!
-Accepted Changes==Modifiche applicate correttamente
-DHT==DHT
-"Change Network"=="Cambia rete"
-Peer-to-Peer Mode==Modalità Peer2Peer
->Index Distribution==>Distribuzione indice
->Index Receive==>Ricezione indice
-pages per minute==pagine per minuto
->Robinson Mode==>Modalità Robinson
-"Save"=="Salva"
-#-----------------------------
-
-#File: ConfigParser_p.html
-#---------------------------
-Parser Configuration==Configurazione parser
-> enable/disable<==> attivato / disattivato<
->Extension<==>Estensione<
->Mime-Type<==>Tipo MIME<
-"Submit"=="Invia"
-#-----------------------------
-
-#File: ConfigPortal_p.html
-#---------------------------
-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 administrator is allowed to search==Ricerca permessa solo all'admin
-Pattern:<==Pattern:<
->Exclude Hosts<==>Escludi host<
-#-----------------------------
-
-#File: ConfigProfile_p.html
-#---------------------------
-Your Personal Profile==Il tuo profilo personale
-You can create a personal profile here, which can be seen by other YaCy-members==Qui puoi create il tuo profilo personale, che sarà visibile agli altri utenti di YaCy
-Name==Nome
-Nick Name==Nickname
-eMail==email
-ICQ==ICQ
-Jabber==Jabber
-Yahoo!==Yahoo!
-MSN==MSN
-Skype==Skype
-Comment==Commento
-"Save"=="Salva"
-You can use <==Puoi usarlo <
-> here.==> qui.
-#-----------------------------
-
-#File: ConfigProperties_p.html
-#---------------------------
-Advanced Config==Configurazione avanzata
-"Save"=="Salva"
-#-----------------------------
-
-#File: ConfigRobotsTxt_p.html
-#---------------------------
-Blog==Blog
-Wiki==Wiki
-Home Page==Homepage
-#-----------------------------
-
-#File: ConfigSearchBox.html
-#---------------------------
-"Search"=="Cerca"
-#-----------------------------
-
-#File: ConfigSearchPage_p.html
-#---------------------------
-==
-Search Page<==Pagina di ricerca<
->Appearance<==>Aspetto<
->Page Template<==>Template pagina<
->Administration<==>Amministrazione<
->Web Search<==>Ricerca sul Web<
->File Search<==>Ricerca di file<
->Help / YaCy Wiki<==>Guida / Wiki di YaCy<
-"Search"=="Cerca"
->Text<==>Testi<
->Images<==>Immagini<
->Audio<==>File audio<
->Video<==>Filmati<
->Applications<==>Applicazioni<
->more options<==>altre opzioni<
->Tag<==>Tag<
->Topics<==Argomenti
->Cloud<==>Cloud<
->Protocol<==>Protocollo<
->Filetype<==>Tipo di file<
->Provider<==>Provider<
->Language<==>Lingua<
->Author<==>Autore<
->Vocabulary<==>Vocabolario<
-42 kbyte<==42 KB<
->Metadata<==>Metadati<
->Parser<==>Parser<
->Citation<==Citazione
->Pictures<==>Immagini<
->Cache<==>Cache<
-"Save Settings"=="Salva impostazioni"
-"Set Default Values"=="Ripristina valori default"
-#-----------------------------
-
-
-#File: ConfigUpdate_p.html
-#---------------------------
-Manual System Update==Aggiornamento manuale del sistema
-Current installed Release==Release installata
-Available Releases==Release disponibili
->changelog<==>changelog<
-> and <==> e <
-> RSS feed<==> feed RSS<
-(unsigned)==(non firmata)
-(signed)==(firmata)
-"Download Release"=="Scarica release"
-"Check for new Release"=="Cerca nuove release"
-Downloaded Releases==Scarica release
-"Install Release"=="Installa release"
-"Delete Release"=="Elimina release"
-Automatic Update==Aggiornamento automatico
-"Check + Download + Install Release Now"=="Cerca + Scarica + Installa release"
-No more recent release found.==Nessuna release più recente trovata.
-Release will be installed. Please wait.==La release verrà installata. Attendere.
-You installed YaCy with a package manager.==YaCy è stato installato tramite un gestore pacchetti.
-To update YaCy, use the package manager:==Per aggiornare YaCy utilizzare il gestore pacchetti:
-Automated System Update==Aggiornamento automatico del sistema
-manual update==aggiornamento manuale
-automatic update==aggiornamento automatico
-Time between lookup==Intervallo di ricerca
-hours==ore
-Release type==Tipo release
-only main releases==solo release principali
-any release including developer releases==tutte, anche quelle di sviluppo
-only accept signed files==accetta solamente file firmati
-"Submit"=="Invia"
-Accepted Changes.==Conferma modifiche.
-System Update Statistics==Statistiche aggiornamenti del sistema
-Last System Lookup==Ultima ricerca aggiornamenti sistema
-never==mai
-#-----------------------------
-
-#File: Connections_p.html
-#---------------------------
-Incoming Connections==Connessioni in entrata
-Showing #[numActiveRunning]# active, #[numActivePending]# pending connections from a max. of #[numMax]# allowed incoming connections.==Mostra le connessioni attive #[numActiveRunning]# e in coda #[numActivePending]# per un massimo di #[numMax]# connessioni in entrata consentite.
-Protocol==Protocollo
-Duration==Durata
-Source IP[:Port]==IP sorgente[:Port]
-Dest. IP[:Port]==IP dest.[:Port]
-Command==Comando
-Used==Usato
-Close==Chiuso
-Waiting for new request nr.==In attesa della nuova richiesta Nr°
-Outgoing Connections==Connessioni in uscita
-Duration==Durata
-ID==ID
-#-----------------------------
-
-
-#File: CookieMonitorIncoming_p.html
-#---------------------------
-This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:==Questa è una lista di cookie che il server ha mandato al client del proxy YaCy:
-Date==Data
-Cookies==Cookie
-"Enable Cookie Monitoring"=="Attiva monitoraggio cookie"
-"Disable Cookie Monitoring"=="Disattiva monitoraggio cookie"
-#-----------------------------
-
-#File: CookieMonitorOutgoing_p.html
-#---------------------------
-Outgoing Cookies Monitor==Monitor cookie in entrata
-Date==Data
-Cookie==Cookie
-"Enable Cookie Monitoring"=="Attiva monitoraggio cookie"
-"Disable Cookie Monitoring"=="Disattiva monitoraggio cookie"
-#-----------------------------
-
-#File: CrawlCheck_p.html
-#---------------------------
-"Check given urls"=="Verifica gli URL"
->Analysis<==>Analisi<
->URL<==>URL<
->Access<==>Accesso<
->Robots<==>Robot<
-#-----------------------------
-
-#File: Crawler_p.html
-#---------------------------
-Crawler==Crawler
-and restart.==e riavviare YaCy.
-Error:==Errore:
-filter. ::==filtro. ::
-Crawling of==Crawling di
-failed. Reason:==fallito. Causa:
-started.==avviato.
-Please wait some seconds,==Si prega di attendere alcuni secondi,
->Size==>Dimensione
->Progress<==>Avanzamento<
->Index Size<==>Dimensione indice<
->Documents<==>Documenti<
-Local Crawler==Crawler locale
-Remote Crawler==Crawler remoto
-Speed / PPM (Pages Per Minute)==Velocità / PPM (PPM = pagine per minuto)
-Database==Database
-Entries==Voci
-#-----------------------------
-
-#File: CrawlProfileEditor_p.html
-#---------------------------
-Status==Status
-Start URL==URL di partenza
-no::yes==no::sì
-Running==In esecuzione
-"Terminate"=="Terminare"
-Finished==Completato
-"Delete"=="Eliminare"
-Select the profile to edit==Selezionare profilo da modificare
-"Edit profile"=="Modifica profilo"
-Edit Profile==Modifica profilo
-"Submit changes"=="Invia modifiche"
-#-----------------------------
-
-#File: CrawlResults.html
-#---------------------------
-Crawl Results<==Risultati crawl<
->Crawl Results Overview<==>Panoramica risultati crawl<
-Domain==Dominio
-URLs=URL
-"delete all"=="elimina tutto"
->Title==>Titolo
-URL==URL
-"delete"=="Elimina"
-#-----------------------------
-
-#File: CrawlStartExpert.html
-#---------------------------
-One Start URL or a list of URLs: (must start with http:// https:// ftp:// smb:// file://)==Un indirizzo di partenza oppure una lista di indirizzi: (deve iniziare con http:// https:// ftp:// smb:// file://)
-index text==indicizza testo
-index media==indicizza contenuti multimediali
-#-----------------------------
-
-#File: CrawlStartScanner_p.html
-#---------------------------
-Network Scanner==Scanner di rete
-Please wait...==Attendere prego...
-Time-Out<==Timeout<
->ftp==>FTP
->smb==>SMB
->http==>HTTP
->https==>HTTPS
->Scheduler<==>Scheduler<
->minutes<==>minuti<
->hours<==>ore<
->days<==>giorni<
-"Scan"=="Scansiona"
-#-----------------------------
-
-#File: CrawlStartSite.html
-#---------------------------
->Site Crawling<==>Crawling siti<
-Site Crawler:==Crawler siti:
->Site Crawl Start<==>Inizia crawling sito<
->Site<==>Sito<
->Scheduler<==>Scheduler<
->minutes<==>minuti<
->hours<==>ore<
->days<==>giorni<
->Path<==>Percorso<
->Limitation<==>Limitazioni<
-not more than <==non più di <
->documents<==>documenti<
-allow <==permetti <
-Collection<==Collezione<
->Start<==>Inizia<
-"Start New Crawl"=="Inizia nuovo crawl"
-Hints<==Suggerimenti<
->Crawl Speed Limitation<==>Limita la velocità del crawl<
-#-----------------------------
-
-#File: Help.html
-#---------------------------
-YaCy: Help==YaCy: Aiuto
-YaCy: Tutorial==YaCy: Tutorial
-twitter this video==twitta questo filmato
-Download from Vimeo==Scarica da Vimeo
-More Tutorials==Altri tutorial
-#-----------------------------
-
-#File: IndexBrowser_p.html
-#---------------------------
->all hosts<==>tutti gli host<
-> or <==> o <
-Host/URL:==Host/URL:
-"Delete Subpath"=="Cancella sottopercorso"
->Host List<==>Lista host<
-Documents without Errors==Documenti privi di errori
->Path<==>Percorso<
-Administration Options==Opzioni amministrazione
-==
-Administration Options==Opzioni di amministrazione
-Delete all==Elimina tutti
->Load Errors<==>Errori di caricamento<
-from index==dall'indice
-"Delete Load Errors"=="Elimina tutti gli errori di caricamento"
-#-----------------------------
-
-#File: index.html
-#---------------------------
-==
-YaCy '#[clientname]#': Search Page==YaCy '#[clientname]#': Pagina ricerca
-kiosk mode==Modalità chiosco
-"Search"=="Cerca"
-Text==Testi
-Images==Immagini
-Audio==File audio
-Video==Filmati
-Applications==Applicazioni
-more options...==altre opzioni...
-advanced parameters==Parametri avanzati
-Max. number of results==N° massimo di risultati
-Results per page==Risultati per pagina
-Resource==Fonti
-global==globali
->local==>locali
-"authentication required"=="autenticazione richiesta"
-Disable search function for users without authorization==Disabilita funzione di ricerca per utenti non autorizzati
-Enable web search to everyone==Abilita funzione di ricerca per tutti gli utenti
-the peer-to-peer network==la rete peer2peer
-Query Operators==Operatori query
-restrictions==limitazioni
-only resources from http or https servers==solo risorse da server HTTP o HTTPS
-only resources from ftp servers==solo risorse da server FTP
-ranking modifier==modificatori di ranking
-sort by date==ordina per data
-latest first==prima i più recenti
-doublequotes==virgolette
-prefer given language==lingua preferita
-keyboard shortcuts==Scorciatoie da tastiera
-See an==Guarda un
->example==>esempio
-#-----------------------------
-
-#File: IndexControlRWIs_p.html
-#---------------------------
-document type==tipo documento
-
+Total Cycles==Totale cicli
+Full Description==Descrizione completa
+Thread==Thread
+#-----------------------------
+
+#File: PerformanceSearch_p.html
+#---------------------------
+Search Sequence Timing==Tempi di ricerca in sequenza
+Timing results of latest search request:==Risultati delle ultime richieste di ricerca:
+Query==Query
+Duration (ms)==Durata (ms)
+Result-Count==Conteggio dei risultati
+The network picture below shows how the latest search query was solved by asking corresponding peers in the DHT:==L'immagine della rete qui sotto mostra come l'ultima query di ricerca e stata risolta interrogando i peer corrispondenti nella DHT:
+red -> request list alive==rosso -> elenco richieste vivo
+green -> request has terminated==green - La richiesta> è terminata
+"Search event picture"=="Cerca foto evento"
+Comment==Commento
+Time==Ora
+Event==Evento
+grey -> the search target hash order position(s) (more targets if a dht partition is used)==grey -> la posizione di ordine hash dell'obiettivo di ricerca(s) (più obiettivi se si utilizza una partizione dht)
+Delta (ms)==Delta (ms)
+#-----------------------------
+
+#File: ProxyIndexingMonitor_p.html
+#---------------------------
+Indexing with Proxy==Indicizzazione con proxy
+YaCy can be used to 'scrape' content from pages that pass the integrated caching HTTP proxy.==YaCy può essere utilizzato per 'scrape' contenuto da pagine che passano la cache integrata HTTP proxy.
+When scraping proxy pages then no personal or protected page is indexed;==Quando si raschia pagine proxy allora nessuna pagina personale o protetta è indicizzata;
+those pages are detected by properties in the HTTP header (like Cookie-Use, or HTTP Authorization)==queste pagine sono rilevate dalle proprietà dell'intestazione HTTP(come Cookie-Use o HTTP Authorization)
+Proxy Auto Config:==Configurazione automatica proxy:
+this controls the proxy auto configuration script for browsers at http://localhost:8090/autoconfig.pac==controlla lo script di configurazione automatica del proxy per i browser su http://localhost:8090/autoconfig.pac
+whether the proxy should only be used for .yacy-Domains==whether the proxy should only be used for .yacy-Domains
+Proxy pre-fetch setting:==Impostazione pre-fetch proxy:
+this is an automated html page loading procedure that takes actual proxy-requested==questa è una procedura automatica di caricamento pagina html che prende reale proxy-richiesto
+URLs as crawling start points for crawling.==URL come punti di partenza di crawling per crawler.
+Prefetch Depth==Profondità prefetch
+A prefetch of 0 means no prefetch; a prefetch of 1 means to prefetch all==Un prefetch di0significa nessun prefetch; un prefetch di1significa prefetch di tutti
+embedded URLs, but since embedded image links are loaded by the browser==URL incorporati, ma poiche i link delle immagini incorporate vengono caricati dal browser
+this means that only embedded href-anchors are prefetched additionally.==Ciò significa che solo href-anchors incorporato sono prefetched inoltre.
+Store to Cache==Memorizza in cache
+It is almost always recommended to set this on. The only exception is that you have another caching proxy running as secondary proxy and YaCy is configured to used that proxy in proxy-proxy - mode.==It is almost always recommended to set this on. The only exception is that you have another caching proxy running as secondary proxy and YaCy is configured to used that proxy in proxy-proxy - mode.
+Do Local Text-Indexing==Indexing del testo locale
+If this is on, all pages (except private content) that passes the proxy is indexed.==Se questo è su, tutte le pagine (ad eccezione dei contenuti privati) che passano il proxy sono indicizzate.
+Do Local Media-Indexing==Fare l'indicizzazione media locale
+This is the same as for Local Text-Indexing, but switches only the indexing of media content on.==Questo è lo stesso come per il testo locale-Indice, ma si attiva solo l'indicizzazione dei contenuti multimediali.
+Do Remote Indexing==Indexing remoto
+If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Se selezionato, il crawler contatterà altri peer e li userà come indicizzatori remoti per il tuo crawl.
+If you need your crawling results locally, you should switch this off.==Se avete bisogno dei vostri risultati di crawling localmente, dovreste spegnere questo.
+Only senior and principal peers can initiate or receive remote crawls.==Solo i peer senior e principali possono iniziare o ricevere crawl remoti.
+Please note that this setting only take effect for a prefetch depth greater than 0.==Please note that this setting only take effect for a prefetch depth greater than 0.
+Proxy generally==Proxy in generale
+Path==Percorso
+The path where the pages are stored (max. length 300)==Il percorso in cui vengono memorizzate le pagine (lunghezza massima300)
+The size in MB of the cache.==The size in MB of the cache.
+"Set proxy profile"=="Imposta profilo proxy"
+Changes will take effect after restart only.==Le modifiche avranno effetto solo dopo il riavvio.
+You can see a snapshot of recently indexed pages==Puoi vedere un'istantanea di pagine indicizzate di recente
+Size==Dimensione
+off==spento
+Caching is now== Caching è ora
+Local Media Indexing is now==L'indicizzazione dei media locali è ora
+Local Text Indexing is now==L'indicizzazione del testo locale è ora
+Remote Indexing is now==L'indicizzazione remota è ora
+The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.== The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.
+Please delete that file and restart.==Cancellare il file e riavviare.
+on==il
+or by POST-Parameters (either in URL or as HTTP protocol) and automatically excluded from indexing.==o da POST-Parametri (in URL o come protocollo HTTP) e automaticamente esclusi dall'indicizzazione.
+#-----------------------------
+
+#File: QuickCrawlLink_p.html
+#---------------------------
+Quickly adding Bookmarks:==Aggiungere rapidamente segnalibri:
+Simply drag and drop the link shown below to your Browsers Toolbar/Link-Bar.==Simply drag and drop the link shown below to your Browsers Toolbar/Link-Bar.
+If you click on it while browsing, the currently viewed website will be inserted into the YaCy crawling queue for indexing.==Se si fa clic su di esso durante la navigazione, il sito attualmente visualizzato verrà inserito nella coda di crawlmento YaCy per l'indicizzazione.
+Crawl with YaCy==Crawl con YaCy
+Title:==Titolo:
+Link:==Collegamento:
+Status:==Status:
+URL successfully added to Crawler Queue==URL aggiunto correttamente alla coda del crawler
+Malformed URL==Malformed URL
+#-----------------------------
+
+#File: RankingRWI_p.html
+#---------------------------
+The document ranking influences the order of the search result entities.==La classifica dei documenti influenza l'ordine delle entità dei risultati di ricerca.
+A ranking is computed using a number of attributes from the documents that match with the search word.==Un ranking è calcolato usando un certo numero di attributi dai documenti che corrispondono alla parola di ricerca.
+The attributes are first normalized over all search results and then the normalized attribute is multiplied with the ranking coefficient computed from this list.==Gli attributi vengono prima normalizzati su tutti i risultati di ricerca e poi l'attributo normalizzato viene moltiplicato con il coefficiente di classificazione calcolato da questa lista.
+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.==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.
+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.==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.==Le due fasi sono separate perché hanno bisogno di informazioni statistiche dal risultato della pre-ranking.
+"Set as Default Ranking"=="Imposta come classifica predefinita"
+"Re-Set to Built-In Ranking"=="Ripristina ranking integrato"
+"info"=="info"
+Post-Ranking==Post-Ranking
+RWI Ranking Configuration==RWI Ranking Configuration
+Pre-Ranking==Pre-Ranking
+#-----------------------------
+
+#File: RankingSolr_p.html
+#---------------------------
+These are ranking attributes for Solr. This ranking applies for internal and remote (P2P or shard) Solr access.==Questi sono attributi di ranking per Solr. Questo ranking si applica per l'accesso interno e remoto (P2P o shard)Solr.
+Select a profile:==Seleziona un profilo:
+A Boost Function can combine numeric values from the result document to produce a number which is multiplied with the score value from the query result.==Una funzione Boost può combinare i valori numerici dal documento del risultato per produrre un numero che è moltiplicato con il valore del punteggio dal risultato della query.
+"Set Boost Function"=="Set Boost Function"
+"Re-Set to default"=="Riimposta a default"
+The Boost Query is attached to every query. Use this to statically boost specific content in the index.==La Boost Query viene allegata a ogni query. Usala per aumentare staticamente il peso di contenuti specifici nell'indice.
+"Set Boost Query"=="Set Boost Query"
+field not in local index (boost has no effect)==campo non nell'indice locale (il boost non ha effetto)
+"Set Field Boosts"=="Set Field Boosts"
+Boost Function==Funzione boost
+Boost Query==Interrogazione boost
+Filter Query==Interrogazione filtro
+Solr Boosts==Solr Boosts
+Solr Ranking Configuration==Configurazione della classifica Solr
+Example: "fuzzy_signature_unique_b:true^100000.0f" means that documents, identified as 'double' are ranked very bad and appended to the end of all results (because the unique are ranked high).==Esempio: "fuzzy_signature_unique_b: true^100000.0f" significa che i documenti, identificati come "doppio" sono classificati molto male e allegati alla fine di tutti i risultati (perché gli unici sono classificati in alto).
+Example: "http_unique_b:true AND www_unique_b:true" will filter out all results where urls appear also with/without http(s) and/or with/without 'www.' prefix.==Esempio: "http_unique_b: true ANDwww_unique_b: true" filtrerà tutti i risultati in cui gli url appaiono anche con/withouthttp(s) e/orcon il prefisso/without'www.'.
+Example: to order by date, use "recip(ms(NOW,last_modified),3.16e-11,1,1)", to order by crawldepth, use "div(100,add(crawldepth_i,1))".==Esempio: per ordinare per data, usare "recip(ms(NOW, last_modified),3.16e-11, 1, 1)," per ordinare per profondita di crawl, usare "div(100, add(crawldepth_i, 1)."
+The Filter Query is attached to every query. Use this to statically add a selection criteria to reduce the set of results.==La Filter Query viene allegata a ogni query. Usala per aggiungere staticamente un criterio di selezione e ridurre l'insieme dei risultati.
+"Set Filter Query"=="Set Filter Query"
+#-----------------------------
+
+#File: RegexTest.html
+#---------------------------
+Regex Test==Prova Regex
+Test String==Stringa di prova
+Regular Expression==Espressione regolare
+Result==Risultato
+match==Corrispondenza
+no match==nessuna corrispondenza
+#-----------------------------
+
+#File: RemoteCrawl_p.html
+#---------------------------
+The remote crawler is a process that requests urls from other peers.==Il crawler remoto è un processo che richiede url da altri peer.
+Peers offer remote-crawl urls if the flag 'Do Remote Indexing'==I peer offrono URL per crawl remoto se il flag 'Do Remote Indexing'
+is switched on when a crawl is started.==e attivato quando viene avviato un crawl.
+Remote Crawler Configuration==Configurazione crawler remoto
+Your peer cannot accept remote crawls because you need senior or principal peer status for that!==Il vostro peer non può accettare crawl remoti perché avete bisogno di senior o principale peer status per questo!
+Perform web indexing upon request of another peer.==Eseguire l'indicizzazione web su richiesta di un altro peer.
+Load with a maximum of==Carica con un massimo di
+pages per minute==pagine al minuto
+"Save"=="Salva"
+Peers offering remote crawl URLs==Peer che offrono URL per crawl remoto
+If the remote crawl option is switched on, then this peer will load URLs from the following remote peers:==Se l'opzione crawl remoto è attivata, questo peer caricheràURL dai seguenti peer remoti:
+Age==Età
+Last Seen==Ultima vista
+Links==Collegamenti
+Name==Nome
+PPM==PPM
+QPH==QPH
+RWIs==RWI sCity name (optional, probably does not need a translation)
+Release==Rilascio
+Remote Crawler==Crawler remoto
+Uptime==Uptime
+Accept Remote Crawl Requests==Accetta richieste di crawl remoto
+UTC Offset==Offset UTC
+URLs for Remote Crawl==URL per Remote Crawl
+#-----------------------------
+
+#File: ServerScannerList.html
+#---------------------------
+Protocol==Protocollo
+indexed==indicizzata
+Process==Processo
+Access==Accesso
+IP==IP
+denied==negato
+empty==vuoto
+granted==concesso
+inaccessible==inaccessibile
+not in index==non nell'indice
+The following servers can be searched:==Si possono cercare i seguenti server:
+Available server within the given IP range==Available server within the given IP range
+"Add Selected Servers to Crawler"=="Aggiungi server selezionati al crawler"
+Network Scanner Monitor==Monitor dell'analizzatore di rete
+URL==URL
+#-----------------------------
+
+#File: Settings_p.html
+#---------------------------
+Advanced Settings==Impostazioni avanzate
+If you want to restore all settings to the default values,==Se si desidera ripristinare tutte le impostazioni ai valori predefiniti,
+but forgot your administration password, you must stop the proxy,==ma ha dimenticato la password di amministrazione, è necessario interrompere il proxy,
+delete the file 'DATA/SETTINGS/yacy.conf' in the YaCy application root folder and start YaCy again.==eliminare il file 'DATA/SETTINGS/yacy.conf' nella cartella principale dell'applicazione YaCy e avviare YaCy di nuovo.
+Server Access Settings==Impostazioni di accesso al server
+Crawler Settings==Impostazioni crawler
+Seed Upload Settings==Impostazioni di caricamento dei seed
+Message Forwarding (optional)==Inoltramento dei messaggi (facoltativo)
+Debug/Analysis Settings==Debug/Analysis Settings
+Referrer Policy Settings==Impostazioni della politica di riferimento
+HTTP client Settings==HTTP client Settings
+Transparent Proxy Access Settings==Impostazioni di accesso del proxy trasparente
+URL/Web Proxy Access Settings==URL/Web Proxy Access Settings
+Remote Proxy (optional)==Proxy remoto (opzionale)
+#-----------------------------
+
+#File: Settings_Crawler.inc
+#---------------------------
+HTTP Crawler Settings:==HTTP Crawler Settings:
+Crawler Settings==Impostazioni crawler
+"Submit"=="Invia"
+FTP Crawler Settings:== FTP Crawler Settings:
+Generic Crawler Settings:== Generico crawler Impostazioni:
+Local File Crawler Settings:== Local File crawler Impostazioni:
+SMB Crawler Settings:== SMB Crawler Settings:
+Changes will take effect immediately.==I cambiamenti avranno effetto immediatamente.
+Maximum Filesize:==Dimensione massima del file:
+Please note that if the crawler uses content compression, this limit is used to check the compressed content size.==Si prega di notare che se il crawler utilizza la compressione del contenuto, questo limite viene usato per controllare la dimensione del contenuto compresso.
+Timeout:==Timeout:
+#-----------------------------
+
+#File: Settings_ProxyAccess.inc
+#---------------------------
+Transparent Proxy==Proxy trasparente
+With this you can specify if YaCy can be used as transparent proxy.==Con questo è possibile specificare se YaCy può essere utilizzato come proxy trasparente.
+Send "Via" Header==Invia intestazione "Via"
+http header according to RFC 2616 Sect 14.45.==http header according to RFC 2616 Sect 14.45.
+Send "X-Forwarded-For" Header==Invia l'intestazione "X-Forwarded-For"
+Specifies if the proxy should send the X-Forwarded-For http header.==Specifica se il proxy deve inviare l'intestazione X-Forwarded-For http.
+"Submit"=="Invia"
+Hint: On linux you can configure your firewall to transparently redirect all http traffic through yacy using this iptables rule:== Hint: On linux you can configure your firewall to transparently redirect all http traffic through yacy using this iptables rule:
+Accounts==Account
+HTTPS Server Port:==HTTPS Server Port:
+Proxy Access Settings==Impostazioni di accesso proxy
+These settings configure the access method to your own http proxy and server.==Queste impostazioni configurano il metodo di accesso al proprio proxy e server http.
+All traffic is routed through one single port, for both proxy and server.==Tutto il traffico è instradato attraverso una sola porta, sia per proxy che per server.
+Server Access Restrictions==Restrizioni di accesso al server
+You can restrict the access to this proxy/server using a two-stage security barrier:==Puoi limitare l'accesso a questo proxy/server usando una barriera di sicurezza a due livelli:
+define an access domain with a list of granted client IP-numbers or with wildcards==define an access domain with a list of granted client IP-numbers or with wildcards
+define an user account with an user:password - pair==define an user account with an user: password - pair
+This is the account that restricts access to the proxy function.==Questo è l'account che limita l'accesso alla funzione proxy.
+You probably don't want to share the proxy to the internet, so you should set the==Probabilmente non si desidera condividere il proxy a Internet, quindi si dovrebbe impostare il
+IP-Number Access Domain to a pattern that corresponds to you local intranet.==IP-Number Access Domain to a pattern that corresponds to you local intranet.
+The default setting should be right in most cases. If you want, you can also set a proxy account==The default setting should be right in most cases. If you want, you can also set a proxy account
+so that every proxy user must authenticate first, but this is rather unusual.==in modo che ogni utente proxy deve prima autenticarsi, ma questo è piuttosto insolito.
+IP-Number filter==IP-Number filter
+Always Fresh==Sempre fresco
+If unchecked, the proxy will act using Cache Fresh / Cache Stale rules. If checked, the cache is always fresh which means==If unchecked, the proxy will act using Cache Fresh / Cache Stale rules. If checked, the cache is always fresh which means
+Proxy Settings==Impostazioni proxy
+that a page is never loaded again if it was already stored in the cache. However, if the page does not exist in the cache, it will be loaded in any case.==che una pagina non venga mai caricata di nuovo se e gia stata memorizzata nella cache. Tuttavia, se la pagina non esiste nella cache, verra comunque caricata.
+"change"=="cambiare"
+#-----------------------------
+
+#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 puo usare un altro proxy per connettersi a Internet. Qui puoi inserire l'indirizzo del proxy remoto:
+Enables the usage of the remote proxy by yacy==Abilita l'utilizzo del proxy remoto da parte di yacy
+Use remote proxy for HTTPS==Use remote proxy for HTTPS
+Specifies if YaCy should forward ssl connections to the remote proxy.==Specifica se YaCy deve inoltrare le connessioni ssl al proxy remoto.
+Remote proxy host==Host proxy remoto
+The ip address or domain name of the remote proxy==L'indirizzo IP o il nome di dominio del proxy remoto
+Remote proxy port==Porta proxy remota
+the port of the remote proxy==La porta del proxy remoto
+Remote proxy user==Utente proxy remoto
+Remote proxy password==Password proxy remota
+No-proxy addresses==Indirizzi senza titolo
+IP addresses for which the remote proxy should not be used==Indirizzi IP per cui il proxy remoto non deve essere usato
+"Submit"=="Invia"
+Changes will take effect immediately.==I cambiamenti avranno effetto immediatamente.
+Use remote proxy==Usa proxy remoto
+Remote Proxy (optional)==Proxy remoto (opzionale)
+#-----------------------------
+
+#File: Settings_Seed.inc
+#---------------------------
+Seed Upload Settings==Impostazioni di caricamento dei seed
+With these settings you can configure if you have an account on a public accessible==Con queste impostazioni è possibile configurare se si dispone di un account su un pubblico accessibile
+server where you can host a seed-list file.==server dove è possibile ospitare un file Seed-list.
+General Settings:==Impostazioni generali:
+If you enable one of the available uploading methods, you will become a principal peer.==Se abiliti uno dei metodi di upload disponibili, diventerai un peer principale.
+Your peer will then upload the seed-bootstrap information periodically,==Il vostro peer caricherà periodicamente le informazioni sui seed-bootstrap,
+but only if there have been changes to the seed-list.==ma solo se ci sono stati cambiamenti nella lista dei seed.
+Upload Method==Metodo di caricamento
+"Submit"=="Invia"
+The URL that can be used to retrieve the uploaded seed file, like==L'URL che puo essere usato per recuperare il file seed caricato, ad esempio
+URL==URL
+"Retry Uploading"=="Riprova a caricare"
+Here you can specify which upload method should be used. Select 'none' to deactivate uploading.==Qui è possibile specificare quale metodo di caricamento deve essere usato. Selezionare 'nessuno' per disattivare il caricamento.
+http://www.<my-host>.net/yacy/seed.txt'==http://www.<my-host>.net/yacy/seed.txt'
+#-----------------------------
+
+#File: Settings_Seed_UploadFile.inc
+#---------------------------
+Store into filesystem:==Memorizza nel filesystem:
+You must configure this if you want to store the seed-list file onto the file system.==È necessario configurarlo se si desidera memorizzare il file seed-list nel file system.
+Here you can specify the path within the filesystem where the seed-list file should be stored.==Qui puoi specificare il percorso all'interno del filesystem in cui il file seed-list deve essere memorizzato.
+"Submit"=="Invia"
+File Location:==Posizione file:
+current:==corrente:
+#-----------------------------
+
+#File: Settings_Seed_UploadFtp.inc
+#---------------------------
+Uploading via FTP:==Upload via FTP:
+This is the account for a FTP server where you can host a seed-list file.==Questo e l'account per un server FTP in cui puoi ospitare un file elenco seed.
+If you set this, you will become a principal peer.==Se impostate questo, diventerete un compagno principale.
+Your peer will then upload the seed-bootstrap information periodically,==Il vostro peer caricherà periodicamente le informazioni sui seed-bootstrap,
+but only if there had been changes to the seed-list.==ma solo se ci fossero stati cambiamenti nella lista dei seed.
+Username==Nome utente
+Your log-in at the FTP server==Your log-in at the FTP server
+The password==La password
+"Submit"=="Invia"
+Password==Password
+Path==Percorso
+Server==Server
+The remote path on the FTP server, like 'yacy/seed.txt'. Missing sub-directories are NOT created automatically.==Il percorso remoto sul serverFTP, come 'yacy/seed.txt'. Le sottodirectory mancanti NON vengono create automaticamente.
+The host where you have a FTP account, like 'ftp.<my-host>.net'==L'host in cui si dispone di un accountFTP, come 'ftp.< my-host>.net'
+#-----------------------------
+
+#File: Settings_Seed_UploadScp.inc
+#---------------------------
+Uploading via SCP:==Upload via SCP:
+This is the account for a server where you are able to login via ssh.==Questo è l'account di un server in cui è possibile effettuare il login tramite ssh.
+The host where you have an account, like 'my.host.net'==Il padrone di casa dove hai un account, come 'my.host.net'
+The sshd port of the host, like '22'==La porta sshd dell'host, come '22'
+The remote path on the server, like '~/yacy/seed.txt'. Missing sub-directories are NOT created automatically.==Il percorso remoto sul server, come '~/yacy/seed.txt'. Le sottodirectory mancanti NON vengono create automaticamente.
+Username==Nome utente
+Your log-in at the server==Il tuo log-in al server
+The password==La password
+"Submit"=="Invia"
+Password==Password
+Path==Percorso
+Server==Server
+Server Port==Porta del server
+#-----------------------------
+
+#File: Settings_ServerAccess.inc
+#---------------------------
+Server Access Settings==Impostazioni di accesso al server
+IP-Number filter:==IP-Number filter:
+(requires restart)==(richiede il riavvio)
+because this function is needed to spawn the p2p index-sharing function.==because this function is needed to spawn the p2p index-sharing function.
+If you block access to your server (setting anything else than '*'), then you will also be blocked==Se si blocca l'accesso al server (impostando qualcosa di diverso da '*'), allora si sarà anche bloccato
+from using other peers' indexes for search service.==dall'utilizzo di indici di altri peer per il servizio di ricerca.
+However, blocking access may be correct in enterprise environments where you only want to index your==Tuttavia, bloccare l'accesso può essere corretto in ambienti aziendali in cui si desidera solo indicizzare il vostro
+company's own web pages.==pagine web dell'azienda.
+staticIP (optional):==staticIP (facoltativo):
+The staticIP can help that your peer can be reached by other peers in case that your== Il staticIP può aiutare il vostro peer può essere raggiunto da altri peer nel caso in cui il vostro
+peer is behind a firewall or proxy. You can create a tunnel through the firewall/proxy==peer is behind a firewall or proxy. You can create a tunnel through the firewall/proxy
+(look out for 'tunneling through https proxy with connect command') and create==(guardare fuori per 'tunneling attraverso il proxy https con il comando Connect') e creare
+an access point for incoming connections.==un punto di accesso per le connessioni in entrata.
+This access address can be set here (either as IP number or domain name).==Questo indirizzo di accesso può essere impostato qui (sia come numero IP o nome a dominio).
+If the address of outgoing connections is equal to the address of incoming connections,==Se l'indirizzo delle connessioni in uscita è uguale all'indirizzo delle connessioni in entrata,
+you don't need to set anything here, please leave it blank.==Non devi mettere niente qui, per favore lascialo vuoto.
+If the value you enter here does not match with this IP,==Se il valore inserito qui non corrisponde a questo IP,
+you will not be able to access the server pages anymore.==non sarà più in grado di accedere alle pagine del server.
+This is the main port for all http communication (default is 8090). A change requires a restart.==Questa è la porta principale per tutte le comunicazioni http (il valore predefinito è8090). Un cambiamento richiede un riavvio.
+This is the port to connect via https (default is 8443). A change requires a restart.==Questa è la porta da connettere tramite https (il valore predefinito è8443). Un cambiamento richiede un riavvio.
+This is the local port on the loopback address (127.0.0.1 or :1) to listen for a shutdown signal to stop the YaCy server (-1 disables the shutdown port, recommended default is 8005). A change requires a restart.==Questa e la porta locale sull'indirizzo di loopback (127.0.0.1 o :1) in ascolto per un segnale di arresto del server YaCy (-1 disabilita la porta di arresto, il valore predefinito consigliato e 8005). Una modifica richiede un riavvio.
+fileHost:==FileHost:
+Virtual host for httpdFileServlet access for example http://FILEHOST/ shall access the file servlet and==Virtual host for httpdFileServlet access for example http://FILEHOST/ shall access the file servlet and
+return the defaultFile at rootPath either way, http://FILEHOST/ denotes the same as http://localhost:<port>/==restituisce comunque il defaultFile in rootPath; http://FILEHOST/ indica lo stesso di http://localhost:<port>/
+for the preconfigured value 'localpeer', the URL is: http://localpeer/.==per il valore preconfigurato 'localpeer', l'URLè: http://localpeer/.
+further details on format see Jetty==ulteriori dettagli sul formato vedere Jetty
+Set this to avoid error-messages like 'proxy use not allowed / granted' on accessing your Peer by its hostname.==Impostare questo per evitare messaggi di errore come 'uso proxy non consentito/concesso' per accedere al tuo Peer dal suo hostname.
+Compress responses with gzip==Comprimere le risposte con gzip
+When checked (default), HTTP responses can be compressed using gzip.==Quando selezionata (default), le risposte HTTP possono essere compresse usando gzip.
+The requesting user-agent (a web browser, another YaCy peer or any other tool) uses the header 'Accept-Encoding' to tell whether it accepts gzip compression or not.==L'utente-agente richiedente (un browser web, un altro peer YaCy o qualsiasi altro strumento) utilizza l'intestazione 'Accept-Encoding' per dire se accetta o meno la compressione gzip.
+This adds some processing overhead, but can significantly reduce the amount of bytes transmitted over the network.==Questo aggiunge alcune spese di elaborazione, ma può ridurre significativamente la quantità di byte trasmessi sulla rete.
+Changes need a server restart.==Le modifiche necessitano di un riavvio del server.
+Here you can restrict access to the server. By default, the access is not limited,==Qui puoi limitare l'accesso al server. Per impostazione predefinita, l'accesso non e limitato,
+The publicPort can help that your peer can be reached by other peers in case that your== Il PublicPort può aiutare che il vostro peer può essere raggiunto da altri peer nel caso in cui il vostro
+Compression settings==Impostazioni di compressione
+Filter have to be entered as IP, IP range or using CIDR notation separated by comma (e.g. 192.168.1.1,2001:db8==Il filtro deve essere inserito come IP, intervallo IP o usando la notazione CIDR separata da virgola (ad esempio192.168.1.1, 2001: db8
+If the port used to access YaCy is the same port the application is listening on,==Se la porta utilizzata per accedere a YaCy è la stessa porta che l'applicazione sta ascoltando,
+Server Port Settings==Impostazioni porta server
+Server port:==Porta del server:
+Server ssl port:==Porta ssl del server:
+Shutdown port:==Porta di spegnimento:
+ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)==ff00: 42: 8329, 192.168.1.10-192.168.1.20, 192.168.1.30-40, 192.168.2.0/24)
+peer is behind a reverse proxy.==peer è dietro un proxy inverso.
+publicPort (optional):==porto pubblico (facoltativo):
+"Submit"=="Invia"
+#-----------------------------
+
+#File: SettingsAck_p.html
+#---------------------------
+Settings Receipt:==Impostazioni Ricevuta:
+No information has been submitted==Non sono state presentate informazioni
+Error with submitted information.==Errore con le informazioni inviate.
+The user name must be given.==Il nome utente deve essere indicato.
+The password redundancy check failed. You have probably mistyped your password.==The password redundancy check failed. You have probably mistyped your password.
+Your administration account setting has been made.==Il tuo account di amministrazione è stato impostato.
+Your proxy access setting has been changed.==Le impostazioni di accesso al proxy sono state modificate.
+The new proxy IP filter is set to==The new proxy IP filter is set to
+The proxy port is:==La porta proxy è:
+Port rebinding will be done in a few seconds.==Il rilegatura del porto avverrà tra pochi secondi.
+Auto pop-up of the Status page is now disabled==Pop-up automatico della pagina Stato è ora disabilitato
+Auto pop-up of the Status page is now enabled==Il pop-up automatico della pagina Stato è ora abilitato
+The Peer Name is:==Il nome Peer è:
+Your static Ip(or DynDns) is:==Il vostro Ip (o DynDns) statico è:
+Seed Settings changed, but something is wrong.==Impostazioni del seed cambiato, ma qualcosa non va.
+Seed Uploading was deactivated automatically.==Il caricamento dei seed è stato disattivato automaticamente.
+Please return to the settings page and modify the data.==Si prega di tornare alla pagina delle impostazioni e modificare i dati.
+The remote-proxy setting has been changed==L'impostazione del proxy remoto è stata modificata
+If you open any public web page through the proxy, you must log-in.==Se si apre una pagina web pubblica attraverso il proxy, è necessario effettuare il log-in.
+The new setting is effective immediately, you don't need to re-start.==La nuova impostazione è efficace immediatamente, non è necessario ricominciare.
+Your Peer Language is:==Il tuo linguaggio peer è:
+Seed Upload method was changed successfully.==Il metodo Seed Upload è stato modificato con successo.
+You are now a principal peer.==Ora sei un primogenito.
+Seed Upload Method:==Metodo di caricamento dei seed:
+Seed File URL:==Seed File URL:
+Your proxy networking settings have been changed.==Le impostazioni di rete proxy sono state modificate.
+Transparent Proxy Support is:==Il supporto proxy trasparente è:
+Your message forwarding settings have been changed.==Le impostazioni per l'inoltro dei messaggi sono state modificate.
+Message Forwarding Support is:==Il supporto per l'inoltro dei messaggi è:
+Message Forwarding Command:==Comando di inoltro messaggio:
+Recipient Address:==Indirizzo destinatario:
+Your need to restart YaCy to activate the changes.==È necessario riavviare YaCy per attivare le modifiche.
+Seed Settings changed.==Impostazioni del seed modificate.
+Shutting down. Application will terminate after working off all crawling tasks.== Shutting down. Application will terminate after working off all crawling tasks.
+The submitted peer name is already used by another peer. Please choose a different name. The Peer name has not been changed.== The submitted peer name is already used by another peer. Please choose a different name. The Peer name has not been changed.
+The submitted peer name is not well-formed. Please choose a different name. The Peer name has not been changed.== The submitted peer name is not well-formed. Please choose a different name. The Peer name has not been changed.
+Your proxy access setting has been changed.== Le impostazioni di accesso al proxy sono state modificate.
+Always Fresh is:==Sempre fresco è:
+Compression settings have been saved.==Le impostazioni di compressione sono state salvate.
+Debug/Analysis settings have been saved.==Debug/Analysis settings have been saved.
+HTTP client settings have been saved.==HTTP client settings have been saved.
+HTTP port==HTTP port
+HTTPS port==HTTPS port
+HTTPS port is now:==HTTPS port is now:
+Invalid IP-Number filter:==Invalid IP-Number filter:
+Invalid crawler timeout value:==Valore di timeout del crawler non valido:
+Invalid maximum file size for ftp crawler:==Dimensione massima file non valida per il crawler ftp:
+Invalid maximum file size for http crawler:==Dimensione massima file non valida per http crawler:
+Port rebinding will be done in a view seconds.==Il rilegatura del porto sarà effettuata in un secondo di vista.
+Referrer policy settings have been saved.==Le impostazioni della politica referer sono state salvate.
+Shutdown port==Porta di spegnimento
+The ports are now configured as follows (active on next start).==Le porte sono ora configurate come segue (attiva al prossimo avvio).
+URL Proxy settings have been saved.==URL Proxy settings have been saved.
+Your proxy account check has been disabled.==Il controllo del tuo account proxy è stato disabilitato.
+Your public port is:==Il vostro porto pubblico è:
+Your request cannot be processed. Nothing changed.==Your request cannot be processed. Nothing changed.
+the change will take effect after restart.==il cambiamento avrà effetto dopo il riavvio.
+Crawler timeout:==Timeout crawler:
+Generic Settings:==Impostazioni generiche:
+Maximum FTP Filesize:==Maximum FTP Filesize:
+Maximum HTTP Filesize:==Maximum HTTP Filesize:
+Maximum SMB Filesize:==Maximum SMB Filesize:
+Maximum file Filesize:==Dimensione massima file:
+Nothing changed.==Non e' cambiato niente.
+Peer names must not contain characters other than (a-z, A-Z, 0-9, '-', '_') and must not be longer than 80 characters.==I nomi dei peer non devono contenere caratteri diversi (a-z, A-Z, 0-9, '-', '_') e non devono essere più lunghi dei caratteri80.
+Send X-Forwarded-For header is:==Invia X-Forwarded-For header è:
+Send via header is:==Invia tramite intestazione è:
+Your crawler settings have been changed.==Le tue impostazioni di crawler sono state cambiate.
+ftp Crawler Settings:==Impostazioni crawler ftp:
+http Crawler Settings:==Impostazioni http crawler:
+smb Crawler Settings:==Impostazioni di smb crawler:
+#-----------------------------
+
+#File: Settings_MessageForwarding.inc
+#---------------------------
+Message Forwarding==Inoltramento messaggio
+With this settings you can activate or deactivate forwarding of yacy-messages via email.==Con queste impostazioni è possibile attivare o disattivare l'inoltro di messaggi Yacy via e-mail.
+Enable message forwarding==Abilita l'inoltro dei messaggi
+Enabling/Disabling message forwarding via email.==Enabling/Disabling message forwarding via email.
+Forwarding Command==Inoltramento del comando
+Forwarding To==Inoltra a
+"Submit"=="Invia"
+Changes will take effect immediately.==I cambiamenti avranno effetto immediatamente.
+The command-line program that should be used to forward the message.== Il programma a riga di comando da usare per inoltrare il messaggio.
+The recipient email-address.== L'indirizzo email del destinatario.
+e.g.:==e.g.:
+#-----------------------------
+
+#File: sharedBlacklist_p.html
+#---------------------------
+Add Items to Blacklist==Aggiungi elementi alla lista nera
+Unable to store the items into the blacklist file:==Impossibile memorizzare gli elementi nel file blacklist:
+Blacklist source:==Sorgente lista nera:
+Blacklist target:==Obiettivo della lista nera:
+Blacklist item==Elemento lista nera
+"select all"=="seleziona tutto"
+"deselect all"=="deselect all"
+"add"=="aggiungi"
+" not found or empty list.==" non trovato o lista vuota.
+" not found.==" non trovato.
+File Error! Unable to fetch data from file.==Errore file! Impossibile recuperare i dati dal file.
+Parse Error! An error occured while parsing XML data. Please check if the XML is valid.==Errore di analisi! Si è verificato un errore durante l'analisi dei datiXML. Controllare seXMLè valido.
+URL "==URL "
+Wrong Invocation! Please invoke with sharedBlacklist.html?name=PeerName==Invocazione errata. Invocare sharedBlacklist.html?name=PeerName
+YaCy-Peer "==YaCy-Peer"
+#-----------------------------
+
+#File: Status.html
+#---------------------------
+Log-in as administrator to see full status==Accedi come amministratore per visualizzare lo stato completo
+Welcome to YaCy!==Benvenuto in YaCy!
+Your settings are _not_ protected!==Le tue impostazioni sono _non_protette!
+and set an administration password.==e impostare una password di amministrazione.
+You have not published your peer seed yet. This happens automatically, just wait.==You have not published your peer seed yet. This happens automatically, just wait.
+The peer must go online to get a peer address.==Il peer deve andare online per ottenere un indirizzo peer.
+You cannot be reached from outside.==Non puoi essere contattato dall'esterno.
+A possible reason is that you are behind a firewall, NAT or Router.==A possible reason is that you are behind a firewall, NAT or Router.
+global index on your own search page.==indice globale sulla propria pagina di ricerca.
+"bad"=="cattivo"
+"idea"=="idea"
+"good"=="Buono"
+We encourage you to open your firewall for the port you configured (usually: 8090),==Vi invitiamo ad aprire il firewall per la porta configurata (di solito: 8090),
+or to set up a 'virtual server' in your router settings (often called DMZ).==o per impostare un 'server virtuale' nelle impostazioni del router (spesso chiamato DMZ).
+Please be fair, contribute your own index to the global index.==Siate onesti, contribuite al vostro indice globale.
+it as soon as possible and restart YaCy.==e riavviare YaCy.
+Crawling is paused! If the crawling was paused automatically, please check your disk space.==Crawling è in pausa! Se il crawling è stato messo in pausa automaticamente, si prega di controllare lo spazio su disco.
+You can download a more recent version of YaCy. Click here to install this update and restart YaCy:==You can download a more recent version of YaCy. Click here to install this update and restart YaCy:
+You are running a server in senior mode and you support the global internet index,==Si sta eseguendo un server in modalità senior e si supporta l'indice internet globale,
+You have a principal peer because you publish your seed-list to a public accessible server==Hai un peer principale perché pubblichi la tua lista di seed su un server pubblico accessibile
+If you need professional support, please write to==Se hai bisogno di supporto professionale, scrivi a
+"PerformanceGraph"=="PerformanceGraph"
+"Fork me on GitHub"=="Fork me on GitHub"
+"YaCy Websearch"=="YaCy Websearch"
+"banner"=="Banner"
+"lock icon"=="blocca icona"
+support@yacy.net==support@yacy.net
+Access is unrestricted from localhost (this includes administration features).==L'accesso è illimitato da host locale (questo include le funzioni di amministrazione).
+Your network configuration is in private mode. Your peer seed will not be published.==Your network configuration is in private mode. Your peer seed will not be published.
+"Update YaCy"=="Aggiorna YaCy"
+#-----------------------------
+
+#File: Status_p.inc
+#---------------------------
+System Status==Stato del sistema
+Unknown==sconosciuto
+Protection==Protezione
+password-protected==Protetto da password
+peer address not assigned==indirizzo peer non assegnato
+not used==non utilizzato
+broken==rotto
+connected==connesso
+Yes==Sì
+No==No
+Auto-popup on start-up==Auto-populp all'avvio
+Memory Usage==Utilizzo memoria
+RAM used:==RAM usata:
+RAM max:==RAM massima:
+DISK used:==DISCO usato:
+DISK free:==DISCO libero:
+Incoming Connections==Connessioni in entrata
+Local Crawl==Crawl localeCity name (optional, probably does not need a translation)
+Remote triggered Crawl==Crawl attivato da remoto
+Pre-Queueing==Pre-Quéeing
+Seed server==Server dei seed
+Address==Indirizzo
+Proxy==Proxy
+Queues==Coda
+URL==URL
+off==spento
+on==il
+Default password is not changed==La password predefinita non è cambiata
+Disabled.==Disabilitato.
+Transparent==Trasparente
+[Configure]==[Configure]
+(paused)==(in pausa)
+Experimental==Sperimentale
+Port Forwarding Host==Porta host di inoltro
+Remote:==Remoto:
+System==Sistema
+Tray-Icon==Icona vassoio
+#-----------------------------
+
+#File: Steering.html
+#---------------------------
+No action submitted==Nessuna azione presentata
+Your system is not protected by a password==Il sistema non è protetto da una password
+You don't have the correct access right to perform this task.==Non hai il diritto di accesso corretto per eseguire questo compito.
+Please log in.==Si prega di effettuare il login.
+See you soon!==A presto!
+Just a moment, please!==Solo un attimo, per cortesia!
+Application will terminate after working off all scheduled tasks.==L'applicazione terminerà dopo aver lavorato su tutte le attività programmate.
+Please send us feed-back!==Vi preghiamo di inviarci feed-back!
+We don't track YaCy users, YaCy does not send 'home-pings', we do not even know how many people use YaCy as their private search engine.==Non teniamo traccia degli utenti YaCy, YaCy non invia 'home-ping', non sappiamo nemmeno quante persone usano YaCy come motore di ricerca privato.
+Therefore we like to ask you: do you like YaCy? Will you use it again... if not, why? Is it possible that we change a bit to suit your needs?==Therefore we like to ask you: do you like YaCy? Will you use it again... if not, why? Is it possible that we change a bit to suit your needs?
+Please send us feed-back about your experience with an==Vi preghiamo di inviarci feed-back sulla vostra esperienza con un
+Then YaCy will restart.==Quindi YaCy sarà riavviato.
+If you can't reach YaCy's interface after 5 minutes restart failed.==Se non è possibile raggiungere l'interfaccia di YaCy dopo il riavvio dei minuti5non è riuscito.
+"Restart"=="Riavvia"
+"Shutdown"=="Shutdown"
+Re-Start==Riavvia
+Shutdown==Arresto
+"Kaskelix"=="Kaskelix"
+The file you are trying to install is not located in the release directory.==Il file che stai cercando di installare non si trova nella directory di rilascio.
+You are in a development environment or the file you are trying to install is empty.==Sei in un ambiente di sviluppo o il file che stai cercando di installare è vuoto.
+or a==o a
+Professional Support==Supporto professionale
+YaCy will be restarted after installation.==YaCy verrà riavviato dopo l'installazione.
+#-----------------------------
+
+#File: Supporter.html
+#---------------------------
+Supporter are switched off for users without authorization==Il sostenitore è disattivato per gli utenti senza autorizzazione
+"bookmark"=="segnalibro"
+"Add to bookmarks"=="Aggiungi ai segnalibri"
+"positive vote"=="voto positivo"
+"Give positive vote"=="Assegna un voto positivo"
+"negative vote"=="voto negativo"
+"Give negative vote"=="Assegna un voto negativo"
+"YaCy Supporter"==" Sostenitori YaCy"
+Supporter==Sostenitori
+#-----------------------------
+
+#File: Surftips.html
+#---------------------------
+"authentication required"=="Autenticazione richiesta"
+Hide surftips for users without authorization==Nascondere suggerimenti di navigazione per gli utenti senza autorizzazione
+Show surftips to everyone==Mostra suggerimenti di navigazione a tutti
+"Add to bookmarks"=="Aggiungi ai segnalibri"
+"Give negative vote"=="Assegna un voto negativo"
+"Give positive vote"=="Assegna un voto positivo"
+"bookmark"=="segnalibro"
+"negative vote"=="voto negativo"
+"positive vote"=="voto positivo"
+"YaCy Surftips"=="YaCy Surftips"
+Surftips==SurftipsCity name (optional, probably does not need a translation)
+Surftips are switched off for users without authorization==I Surftip sono disattivati per gli utenti senza autorizzazione
+YaCy Supporters==Sostenitori YaCy
+a list of home pages of yacy users==un elenco delle home page degli utenti di yacy
+#-----------------------------
+
+#File: Automation_p.html
+#---------------------------
+The information that is presented on this page can also be retrieved as XML.==Le informazioni presentate in questa pagina possono essere recuperate anche come XML.
+Click the API icon to see the XML.==Click the API icon to see the XML.
+These recorded actions can be used to repeat specific actions and to send them==Queste azioni registrate possono essere utilizzate per ripetere azioni specifiche e per inviarle
+to a scheduler for a periodic execution.==ad un programmatore per un'esecuzione periodica.
+"next page"=="pagina successiva"
+"previous page"=="pagina precedente"
+Recording Date==Data di registrazione
+Last Exec Date==Ultima data Exec
+Next Exec Date==La prossima data Exec
+"clone"=="clona"
+at 00:00h==alle 00: 00
+at 01:00h==alle 01: 00
+at 02:00h==alle 02: 00
+at 03:00h==alle 03: 00
+at 04:00h==alle 04: 00
+at 05:00h==alle 05: 00
+at 06:00h==alle 06: 00
+at 07:00h==alle 07: 00
+at 08:00h==alle 08: 00
+at 09:00h==alle 09: 00
+at 10:00h==alle 10: 00
+at 11:00h==alle 11: 00
+at 12:00h==alle 12: 00
+at 13:00h==alle 13: 00
+at 14:00h==alle 14: 00
+at 15:00h==alle 15: 00
+at 16:00h==alle 16: 00
+at 17:00h==alle 17: 00
+at 18:00h==slle 18: 00
+at 19:00h==alle 19: 00
+at 20:00h==alle 20: 00
+at 21:00h==alle 21: 00
+at 22:00h==alle 22: 00
+at 23:00h==alle 23: 00
+"Execute Selected Actions"=="Esegui azioni selezionate"
+"Delete Selected Actions"=="Elimina azioni selezionate"
+"Delete all Actions which had been created before "=="Elimina tutte le azioni create in precedenza"
+"no next page"=="Nessuna pagina successiva"
+"no previous page"=="Nessuna pagina precedente"
+"API"=="API"
+"Apply edited next execution dates"=="Applicare le date successive di esecuzione"
+"yyyy/MM/dd HH:mm:ss"=="yyyy/MM/dd HH: mm: ss"
+1 day==1 day
+1 month==1 month
+1 week==1 week
+1 year==1 year
+2 days==2 days
+2 months==2 months
+2 weeks==2 weeks
+2 years==2 years
+3 days==3 days
+3 months==3 months
+3 weeks==3 weeks
+4 days==4 days
+5 days==5 days
+6 days==6 days
+6 months==6 months
+9 months==9 months
+Apply==Applica
+Call Count==Contatore chiamate
+Comment==Commento
+Event Trigger==Attivazione evento
+Process Automation==Automazione del processo
+Recorded Actions==Azioni registrate
+Result of API execution==Result of API execution
+Scheduler==Programmatore
+Status==Status
+This table shows actions that had been issued on the YaCy interface.==Questa tabella mostra le azioni che erano state emesse sull'interfaccia YaCy.
+Type==Tipo
+URL==URL
+activate event==attiva evento
+activate scheduler==attivare scheduler
+after start-up==dopo l'avvio
+days==giorni
+hours==ore
+minutes==minuti
+no event==nessun evento
+no repetition==nessuna ripetizione
+off==spento
+run once==esegui una volta
+run regular==eseguire regolarmente
+#-----------------------------
+
+#File: Table_RobotsTxt_p.html
+#---------------------------
+The information that is presented on this page can also be retrieved as XML.==Le informazioni presentate in questa pagina possono essere recuperate anche come XML.
+Click the API icon to see the XML.==Click the API icon to see the XML.
+"API"=="API"
+"robots.txt Table"=="robots.txt Table"
+robots.txt table==robots.txt table
+#-----------------------------
+
+#File: Tables_p.html
+#---------------------------
+Table Administration==Tabella Amministrazione
+Table Selection==Selezione tabella
+Select Table:==Seleziona tabella:
+show max.==Mostra max.
+entries,==voci,
+search rows for==ricerca righe per
+"Search"=="Cerca"
+PK==PK
+"Edit Selected Row"=="Modifica riga selezionata"
+"Add a new Row"=="Aggiungi una nuova riga"
+"Delete Selected Rows"=="Elimina righe selezionate"
+"Delete Table"=="Cancella tabella"
+Row Editor==Editor righe
+Primary Key==Chiave primaria
+"Commit"=="Commit"
+"Tables"=="Tavole"
+all==tutti
+reverse:==Inverso:
+#-----------------------------
+
+#File: terminal_p.html
+#---------------------------
+Event Terminal==Terminale evento
+Image Terminal==Terminale immagine
+This browser does not have a Java Plug-in.==Questo browser non ha un plug-in Java.
+Get the latest Java Plug-in here.==Ottieni l'ultimo plug-in Java qui.
+Resource Monitor==Monitor delle risorse
+Network Monitor==Monitor di rete
+"PerformanceGraph"=="PerformanceGraph"
+"WebStructurePicture"=="WebStructurePicture"
+"YaCy"=="YaCy"
+"Download Java Plug-in"=="Scarica Java Plug-in"
+"The yacy Network"=="The Yacy Network"
+<Crawl Start>==< Crawl Start>
+<Search Form>==Modulo di ricerca<>
+<Shutdown>==< Arresto>
+<Status Page>==Pagina di stato<>
+Domain Monitor==Monitor di dominio
+YaCy System Terminal Monitor==Monitor terminale di sistema YaCy
+#-----------------------------
+
+#File: Threaddump_p.html
+#---------------------------
+YaCy Debugging: Thread Dump==YaCy Debugging: Thread Dump
+"Single Threaddump"=="Single Threaddump"
+"Multiple Dump Statistic"=="Statistiche dump multiplo"
+Threaddump==Dump dei thread
+#-----------------------------
+
+#File: Translator_p.html
+#---------------------------
+Translation Editor==Editor di traduzione
+UI Translation==Traduzione UI
+Source File==File sorgente
+view it==view it
+filter untranslated==filtra stringhe non tradotte
+Source Text==Testo originale
+"Save translation"=="Salva traduzione"
+Translate untranslated text of the user interface (current language). The modified translation file is stored in DATA/LOCALE directory.==Tradurre il testo non tradotto dell'interfaccia utente (lingua corrente). Il file di traduzione modificato è memorizzato nella directoryDATA/LOCALE.
+#-----------------------------
+
+#File: User.html
+#---------------------------
+User Page==Pagina utente
+Username:==Nome utente:
+"login"=="autenticati"
+old Password==vecchia password
+new Password(repetition)==nuova password (conferma)
+"Change"=="Modifica"
+You are currently logged in as admin.==Siete attualmente connessi come amministratore.
+(after logout you will be prompted for your password again. simply click "cancel")==(dopo il logout ti verrà richiesta nuovamente la tua password. fai semplicemente clic su "cancella")
+Password was changed.==La password e' stata cambiata.
+Old Password is wrong.==La vecchia password e' sbagliata.
+New Password and its repetition do not match.==La nuova password e la sua ripetizione non corrispondono.
+New Password is empty.==La nuova password è vuota.
+Cookie==Cookie
+"green bar"=="bar verde"
+"logout"=="Logout"
+"red bar"=="barra rossa"
+(Identified by==(Identificato da
+IP==IP
+Password:==Password:
+Username/Password==Username/Password
+You are not logged in.==Non hai effettuato l'accesso.
+new Password==nuova password
+#-----------------------------
+
+#File: ViewFile.html
+#---------------------------
+View URL Content==View URL Content
+"Show Metadata"=="Mostra metadati"
+"Browse Host"=="Sfoglia host"
+View as==Visualizza come
+Plain Text==Testo semplice
+Parsed Text==Testo analizzato
+Parsed Sentences==Sentenze parsed
+Parsed Tokens/Words==Parsed Tokens/Words
+Link List==Elenco collegamenti
+"Show"=="Mostra"
+Unable to find URL Entry in DB==Unable to find URL Entry in DB
+Invalid URL==Invalid URL
+Unable to download resource content.==Impossibile scaricare il contenuto delle risorse.
+Unable to parse resource content.==Impossibile analizzare il contenuto delle risorse.
+Unsupported protocol.==Protocollo non supportato.
+Parsed Content==Contenuto analizzato
+Citation Report==Relazione sulle citazioni
+In Cache:==In cache:
+In Metadata:==In metadati:
+MimeType:==Tipo Mime:
+Search in Document:==Cerca nel documento:
+See the page info about the url.==Vedi le informazioni della pagina sull'url.
+"Show Snippet"=="Mostra snippet"
+"API"=="API"
+"action"=="azione"
+CitationReport==Relazione sulle citazioni
+Collections:==Collezioni:
+Description:==Descrizione:
+First Seen:==Primo visto:
+Get URL Viewer==Get URL Viewer
+Hash:==Hash:
+Headline==Titolo
+Original Content from Web==Contenuto originale dal Web
+Original from Cache==Originale dalla cache
+Original from Web==Originale dal Web
+Parsed Tokens==Parsed TokensCity name (optional, probably does not need a translation)
+Schema Fields==Campi di schema
+Size:==Dimensione:
+Snippet==Snippet
+Teaser Text==Testo più teaser
+URL Metadata==URL Metadata
+URL:==URL:
+Word Count:==Conteggio parole:
+dc:creator==dc: creator
+dc:description==dc: description
+dc:format==dc: format
+dc:identifier==dc: identifier
+dc:publisher==dc: publisher
+dc:source==dc: source
+dc:subject==dc: subject
+dc:title==dc: title
+geo:lat & geo:long==geo: lat & geo: long
+link==collegamento
+name==nome
+no==no
+nr==nr
+rel==rel
+text==testo
+type==tipo
+yes==sì
+#-----------------------------
+
+#File: ViewLog_p.html
+#---------------------------
+reversed order==Ordine invertito
+"refresh"=="aggiorna"
+Invalid regular expression filter.==Filtro di espressione regolare non valido.
+regex==regex
+terms==termini
+Server Log==Registro server
+#-----------------------------
+
+#File: ViewProfile.html
+#---------------------------
+Local Peer Profile:==Profilo Peer locale:
+Wrong access of this page==Accesso errato di questa pagina
+The requested peer is unknown or a potential peer.==Il peer richiesto è sconosciuto o potenziale peer.
+The profile can't be fetched.==Il profilo non puo' essere recuperato.
+Comment==Commento
+"Onlinestatus"=="Onlinestatus"
+"rdf:foaf"=="rdf: foaf"
+"vCard"=="vCard"
+Homepage==Sito
+ICQ==ICQ
+Jabber==Jabber
+MSN==MSN
+Name==Nome
+Nick Name==Nickname
+Remote Peer Profile:==Profilo Peer remoto:
+Skype==Skype
+Yahoo!==Yahoo!
+eMail==eMail
+vCard==vCard
+#-----------------------------
+
+#File: Vocabulary_p.html
+#---------------------------
+The information that is presented on this page can also be retrieved as XML==Le informazioni presentate in questa pagina possono essere recuperate anche come XML
+Click the API icon to see the RDF Ontology definition for this vocabulary.==Click the API icon to see the RDF Ontology definition for this vocabulary.
+Vocabulary Administration==Amministrazione del vocabolario
+Vocabularies can be used to produce a search navigation. A vocabulary must be created before content is indexed.==I vocabolari possono essere usati per creare una navigazione di ricerca. Un vocabolario deve essere creato prima che il contenuto venga indicizzato.
+The vocabulary is used to annotate the indexed content with a reference to the object that is denoted by the term of the vocabulary.==Il vocabolario è usato per annotare il contenuto indicizzato con un riferimento all'oggetto che è indicato dal termine del vocabolario.
+The object can be denoted by a url stub that, combined with the term, becomes the url for the object.==L'oggetto puo essere indicato da uno stub URL che, combinato con il termine, diventa l'URL dell'oggetto.
+Vocabulary Selection==Selezione vocabolario
+Vocabulary Name==Nome del vocabolario
+"View"=="Visualizza"
+Vocabulary Production==Produzione di vocabolario
+It is possible to produce a vocabulary out of the existing search index. This is done using a given 'objectspace' which you can enter as a URL Stub.==E possibile produrre un vocabolario dall'indice di ricerca esistente. Questo avviene usando un determinato 'objectspace' che puoi inserire come stub URL.
+This stub is used to find all matching URLs. If the remaining path from the matching URLs then denotes a single file, the file name is used as vocabulary term.==Questo stub viene usato per trovare tutti gli URL corrispondenti. Se il percorso residuo degli URL corrispondenti indica un singolo file, il nome del file viene usato come termine del vocabolario.
+This works best with wikis. Try to use a wiki url as objectspace path.==This works best with wikis. Try to use a wiki url as objectspace path.
+from file name==dal nome del file
+from page title (split)==dal titolo della pagina (split)
+from page author==dall'autore della pagina
+"Create"=="Crea"
+Vocabulary Editor==Editor di vocabolari
+clear table (remove all terms)==tabella chiara (rimuovi tutti i termini)
+"Submit"=="Invia"
+Auto-Discover==Scopri automaticamente
+Auto-Enrich with Synonyms from Stemming Library==Auto-Enrich con i sinonimi dalla libreria Stemming
+Charset of Import File==Set di caratteri del file di importazione
+Column for Literals==Colonna per le lettere
+Column for Object Link (optional)==Colonna per collegamento oggetto (opzionale)
+Empty Vocabulary==Vocabolario vuoto
+Import from a csv file==Importa da un file csv
+Objectspace==Spazio oggetto
+Read Column==Leggi colonna
+no Synonyms==nessun sinonimo
+"API"=="API"
+"Standard CSV field delimiter"=="Delimitatore campo CSV standard"
+"Uniform Resource Locator"=="Uniform Resource Locator"
+(If checked, this vocabulary is used for search facets. Not feasible for large vocabularies!)==(Se selezionato, questo vocabolario è usato per le sfaccettature di ricerca. Non fattibile per i grandi vocabolari!)
+(first has index 0)==(first has index 0)
+(first has index 0, if unused set -1)==(il primo ha indice 0, se non usato imposta -1)
+Cleartext==Cleartext
+Column separator==Separatore di colonne
+Comma ','==Virgola ','
+Delete==Cancella
+File==File
+File Path or URL==File Path or URL
+Is Facet?==Facet e'?
+Linked data/Semantic web annotations==Linked data/Semantic web annotations
+Literal==Letterale
+Match terms from==Corrisponde ai termini da
+Modify==Modifica
+Namespace==Namespace
+Object Link==Collegamento oggetto
+Please provide a CSV file path or URL.==Please provide a CSV file path or URL.
+Predicate==Predicato
+Prefix==Prefisso
+Semicolon ';'==Punto e virgola ";"
+Size==Dimensione
+Start line==Riga iniziale
+Synonyms==Sinonimi
+[automatically generated, not stored, cannot be edited]==[non è possibile modificare la generazione automatica, non memorizzata]
+add==aggiungi
+delete vocabulary==eliminare il vocabolario
+from page title==dal titolo della pagina
+#-----------------------------
+
+#File: WatchWebStructure_p.html
+#---------------------------
+Web Structure==Struttura web
+The data that is visualized here can also be retrieved in a XML file, which lists the reference relation between the domains.==I dati visualizzati qui possono essere recuperati anche in un file XML, che elenca le relazioni di riferimento tra i domini.
+With a GET-property 'about' you get only reference relations about the host that you give in the argument field for 'about'.==Con un GET-property 'circa' si ottiene solo relazioni di riferimento circa l'host che si dà nel campo argomento per 'circa'.
+With a GET-property 'latest' you get a list of references that had been computed during the current run-time of YaCy, and with each next call only an update to the next list of references.==Con un GET-property 'ultimo' si ottiene un elenco di riferimenti che era stato calcolato durante il run-time corrente di YaCy, e con ogni chiamata successiva solo un aggiornamento alla lista successiva di riferimenti.
+Click the API icon to see the XML file.==Click the API icon to see the XML file.
+"change"=="cambiare"
+"WebStructurePicture"=="WebStructurePicture"
+"API"=="API"
+Text==Testi
+"minus"=="meno"
+"plus"=="più"
+Background==Contesto
+Color==Colore
+Dot-end==Dot-endCity name (optional, probably does not need a translation)
+Host List==Elenco host
+Line==Linea
+Other Dot==Altro punto
+Pivot Dot==Pivot dot
+depth==profondità
+host==host
+nodes==nodi
+size==dimensione
+time==tempo
+#-----------------------------
+
+#File: Wiki.html
+#---------------------------
+Grant Write Access to==Scrivi accesso a
+"all"=="tutti"
+"admin"=="admin"
+Start Page==Pagina iniziale
+Versions==Versioni
+Author:==Autore:
+You can use==Puoi usare
+"Submit"=="Invia"
+"Preview"=="Anteprima"
+"Discard"=="Scarta"
+No changes have been submitted so far!==Finora non sono state presentate modifiche!
+Subject==Argomento
+Change Date==Cambia data
+Last Author==Ultimo autore
+Compare version from==Confronta la versione da
+"Show"=="Mostra"
+with version from==con versione da
+"Compare"=="Confronta"
+Changes will be published as announcement on YaCyNews==Le modifiche saranno pubblicate come annuncio su YaCy News
+Edit==Modifica
+Preview==Anteprima
+(only granted to admin)==(concesso solo all'amministratore)
+Error==Errore
+Index -==Indice -
+Index==Indice
+Text:==Testo:
+#-----------------------------
+
+#File: WikiHelp.html
+#---------------------------
+Wiki-Code==Codice Wiki
+This table contains a short description of the tags that can be used in the Wiki and several other servlets==Questa tabella contiene una breve descrizione dei tag che possono essere utilizzati in Wiki e diversi altri servlet
+of YaCy. For a more detailed description visit the==of YaCy. For a more detailed description visit the
+Description==Descrizione
+These tags create stressed texts. The first pair emphasizes the text (most browsers will display it in italics),==Questi tag creano testi stressati. La prima coppia enfatizza il testo (la maggior parte dei browser lo mostrerà in corsivo),
+the second one emphasizes it more strongly (i.e. bold) and the last tags create a combination of both.==il secondo lo enfatizza più fortemente (cioè in grassetto) e gli ultimi tag creano una combinazione di entrambi.
+Lines will be indented. This tag is supposed to mark citations, but may as well be used for styling purposes.==Lines will be indented. This tag is supposed to mark citations, but may as well be used for styling purposes.
+These tags create a numbered list.==Queste etichette creano un elenco numerato.
+These tags create an unnumbered list.==Questi tag creano un elenco non numerato.
+These tags create a definition list.==Questi tag creano un elenco di definizioni.
+This tag creates a horizontal line.==Questo tag crea una linea orizzontale.
+This tag creates links to other pages of the wiki.==Questo tag crea collegamenti ad altre pagine della wiki.
+This tag displays an image, it can be aligned left, right or center.==Questo tag mostra un'immagine, può essere allineata a sinistra, a destra o al centro.
+This tag displays a Youtube or Vimeo video with the id specified and fixed width 425 pixels and height 350 pixels.==Questo tag visualizza un video YouTube o Vimeo con l'ID indicato e dimensioni fisse di 425 pixel di larghezza e 350 pixel di altezza.
+These tags create a table, whereas the first marks the beginning of the table, the second starts==Questi tag creano una tabella, mentre il primo segna l'inizio della tabella, il secondo inizia
+a new line, the third and fourth each create a new cell in the line. The last displayed tag==una nuova riga; il terzo e il quarto creano ciascuno una nuova cella nella riga. L'ultimo tag visualizzato
+closes the table.==Chiude il tavolo.
+A text between these tags will keep all the spaces and linebreaks in it. Great for ASCII-art and program code.==A text between these tags will keep all the spaces and linebreaks in it. Great for ASCII-art and program code.
+If a line starts with a space, it will be displayed in a non-proportional font.==Se una riga inizia con uno spazio, verrà visualizzata in un carattere non proporzionale.
+This tag creates links to external websites.==Questo tag crea collegamenti a siti web esterni.
+<pre> text </pre>==< pre> text </pre>
+<s>text</s>==< s> text</s>
+<u>text</u>==< u> text</u>
+''text'' '''text''' '''''text'''''=="'text'" "'text'"" "'"'text'""""
+;;word 3:definition 3==;;word 3: definition 3
+;word 1:definition 1==;word 1: definition 1
+;word 2:definition 2==;word 2: definition 2
+;word 4:definition 4==;word 4: definition 4
+Text will be displayed==Verrà visualizzato il testo
+These tags create headlines. If a page has three or more headlines, a table of content will be created automatically. Headlines of level 1 will be ignored in the table of content.==These tags create headlines. If a page has three or more headlines, a table of content will be created automatically. Headlines of level 1 will be ignored in the table of content.
+[[Image:url]]==[[Image: url]]
+[[Image:url|align|alt text]]==[[Image: url|align|alt text]]
+[[Image:url|alt text]]==[[Image: url|alt text]]
+[[Vimeo:id]]==[[Vimeo: id]]
+[[Youtube:id]]==[[Youtube: id]]
+[[pagename]]==[[pagename]]
+[[pagename|description]]==[[nome pagina|descrizione]]
+[url description]==[descrizione url]
+[url]==[url]
+i.e. use [[Vimeo:32200946]] to embed this video: http://vimeo.com/32200946==[[Vimeo: 32200946]] per incorporare questo video: http://vimeo.com/32200946
+i.e. use [[Youtube:QZsWG4-7Qfk]] to embed this video: https://www.youtube.com/watch?v=QZsWG4-7Qfk==[[Youtube: QZsWG4-7Qfk]] per incorporare questo video: https://www.youtube.com/watch?v=QZsWG4-7Qfk
+struck through==colpito attraverso
+text text text==testo testo testo
+underlined==sottolineato
+||row 1, col 1||row 1, col 2==||row 1, col 1||row 1, col 2
+||row 2, col 1||row 2, col 2==||row 2, col 1||row 2, col 2
+Code==Codice
+text==testo
+#-----------------------------
+
+#File: yacyinteractive.html
+#---------------------------
+YaCy Interactive Search==Ricerca interattiva YaCy
+Click the API icon to see an example call to the search rss API.==Click the API icon to see an example call to the search rss API.
+loading from local index...==caricamento dall'indice locale...
+onkeyup="xmlhttpPost(); return false;"==onkeyup="xmlhttpPost(); return false;"
+"Search"=="Cerca"
+"Search..."=="Cerca..."
+#-----------------------------
+
+#File: yacysearch.html
+#---------------------------
+Did you mean:==Forse intendevi:
+No Results.==Nessun risultato.
+Location -- click on map to enlarge==Posizione -- clicca sulla mappa per ingrandire
+Show==Mostra
+URL==URL
+search==ricerca
+"Hide links to images that could not be rendered"=="Nascondere i collegamenti alle immagini che non possono essere rese"
+"Play all"=="Gioca tutto"
+"Refresh sorting. Depending on their rank, some results fetched in background may then appear on this page."=="Aggiorna l'ordinamento. A seconda del loro rango, alcuni risultati recuperati in background possono poi appare in questa pagina."
+"Show anyway links to images that could not be rendered"=="Mostra comunque i collegamenti alle immagini che non possono essere rese"
+"Stop all"=="Fermate tutti"
+"YaCy server is fetching results from available data sources."==" Il server YaCy raccoglie i risultati dalle fonti di dati disponibili."
+Failed to render 0 thumbnail(s).==Rendering di 0 miniatura(s).
+Hide==Nascondi
+Media==Media
+No Results. (length of search words must be at least 1 character)==Nessun risultato. (la lunghezza delle parole di ricerca deve essere almeno1carattere)
+Player==Giocatore
+Please try again later or log in as administrator or as a user with extended search right.==Riprova più tardi o effettua il login come amministratore o come utente con ricerca estesa a destra.
+You are not allowed to search the web with this peer.==Non si è autorizzati a cercare sul web con questo peer.
+You have reached the maximum allowed number of accesses to this search page within one minute.==Hai raggiunto il numero massimo consentito di accessi a questa pagina di ricerca entro un minuto.
+You have reached the maximum allowed number of accesses to this search page within ten minutes.==Hai raggiunto il numero massimo consentito di accessi a questa pagina di ricerca entro dieci minuti.
+You have reached the maximum allowed number of accesses to this search page within three seconds.==Hai raggiunto il numero massimo consentito di accessi a questa pagina di ricerca entro tre secondi.
+Click the RSS icon to see this search result as RSS message stream.==Fai clic sull'icona RSS per vedere questo risultato di ricerca come stream di messaggi RSS.
+Use the RSS search result format to add static searches to your RSS reader, if you use one.==Use the RSS search result format to add static searches to your RSS reader, if you use one.
+#-----------------------------
+
+#File: yacysearchitem.html
+#---------------------------
+"bookmark"=="segnalibro"
+"recommend"=="consiglia"
+"delete"=="elimina"
+Pictures==Immagini
+"Browse index"=="Indice di navigazione"
+"Last known modification date"=="Ultima data di modifica nota"
+"Raw ranking score value"=="Valore punteggio Raw ranking"
+Cache==cache
+Metadata==Metadati
+Parser==ParserCity name (optional, probably does not need a translation)
+"Show all"=="Mostra tutto"
+"blacklist host"=="host della lista nera"
+Citations==Citazioni
+Not supported==Non supportato
+Tags:==Etichette:
+View via proxy==Visualizza tramite proxy
+#-----------------------------
+
+#File: yacysearchtrailer.html
+#---------------------------
+"Extend media search results to pages including such medias (provides generally more results, but eventually less relevant)"=="Estendere i risultati di ricerca media alle pagine, compresi tali media (fornisce generalmente più risultati, ma alla fine meno rilevanti) "
+"Sorted by ascending counts"=="Separato dai conti ascendenti"
+"Sorted by ascending labels"=="Servito da etichette ascendenti"
+"Sorted by descending counts"=="Separato dai conti di discesa"
+"Sorted by descending labels"=="Ordinato per etichette decrescenti"
+"Strictly limit media search results to indexed documents matching exactly the desired content domain."=="Limiti rigorosamente i risultati della ricerca mediatica a documenti indicizzati corrispondenti esattamente al dominio di contenuto desiderato."
+"Use the 'Date' ranking profile, ordering results by default on each document last modification date."=="Usa il profilo di classifica "Data," ordinando i risultati per impostazione predefinita in ogni documento ultima data di modifica."
+"Use the default ranking profile (customizable), ordering results by score."=="Usa il profilo di classifica predefinito (personalizzabile), ordinando i risultati per punteggio."
+"app"=="app"
+"audio"=="audio"
+"click to expand facet"=="clicca per espandere la sfaccettatura"
+"earthsearchlogo"=="earthsearchlogo"
+"false"=="falso"
+"global"=="globale"
+"image"=="immagine"
+"local"=="locale"
+"text"=="testo"
+"true"=="vero"
+"video"=="video"
+Apps==App
+Audio==File audio
+Extended==Estenso
+Location==Ubicazione
+Peer-to-Peer==Peer-to-Peer
+Stealth Mode==Modalità furtiva
+Strict==Rigoroso
+Context Ranking==Context Ranking
+Documents==Documenti
+Images==Immagini
+Privacy==Privacy
+Sort by Date==Ordina per data
+Stealth Mode==Modalità furtiva
+Video==Filmati
+#-----------------------------
+
+#File: api/share.html
+#---------------------------
+"Submit"=="Invia"
+File Share==Condividi file
+Files to process:==File da elaborare:
+If you want to push again files, use this form to pre-define a number of upload forms:==Se si desidera spingere di nuovo i file, utilizzare questo modulo per predefinire un certo numero di moduli di caricamento:
+Item==Voce
+Message==Messaggio
+Result for the recently submitted file(s). You can also submit the same form using the servlet share.json to get push confirmations in json format.==Risultato per i file inviati di recente. E anche possibile inviare lo stesso modulo usando il servlet share.json per ottenere conferme push in formato JSON.
+Success==Successo
+This form can be used to share a (index) file==Questo modulo può essere utilizzato per condividere un file (indice)
+URL==URL
+countfail==countfail
+countsuccess==conteggiosuccess
+fail==non riuscito
+false==falso
+ok==Ok.
+successall==successoall
+true==vero
+#-----------------------------
+
+#File: api/table_p.html
+#---------------------------
+"Edit Table"=="Modifica tabella"
+PK==PK
+"Table"=="Tavola"
+#-----------------------------
+
+#File: api/yacydoc.html
+#---------------------------
+"API"=="API"
+Author==Autore
+Click the API icon to see an example call to the search rss API.==Click the API icon to see an example call to the search rss API.
+Collections==Collezioni
+Contributor==Collaboratore
+Date==Data
+Description==Descrizione
+Document size==Dimensione documento
+Identifier==Identifier
+Inbound Links (anchors)==Collegamenti in entrata (ancore)
+Incoming Links (citation)==Collegamenti in arrivo (citazione)
+Language==Lingua
+Load Date==Carica data
+Location==Ubicazione
+Number of Words==Numero di parole
+Outbound Links (anchors)==Collegamenti in uscita (anche)
+Publisher==Editore
+Referrer Identifier==Identifier referer
+Referrer URL==Referrer URL
+Subject==Argomento
+This search result can also be retrieved as XML.==Questo risultato di ricerca puo essere recuperato anche come XML.
+Title==Titolo
+Type==Tipo
+YaCy Identifier==Identifier YaCy
+#-----------------------------
+
+#File: env/templates/header.template
+#---------------------------
+Toggle navigation==Commuta navigazione
+About This Page==Informazioni su questa pagina
+Portal Configuration==Configurazione del portale
+Portal Design==Progettazione del portale
+Index Browser==Browser indice
+"Search..."=="Cerca..."
+Forum==Forum
+Help==Aiuto
+JavaScript information==Informazioni JavaScript
+Please help! We need financial help to move on with the development!==Abbiamo bisogno di aiuto finanziario per andare avanti con lo sviluppo!
+Re-Start==Riavvia
+Shutdown==Arresto
+First Steps==Configurazione di base
+Use Case & Account==Modi d'uso & Account
+RAM/Disk Usage & Updates==Utilizzo RAM/HDD & Aggiornamenti
+Monitoring==Monitoraggio
+System Status==Stato sistema
+Peer-to-Peer Network==Rete peer-to-peer
+Network Access==Accesso rete
+Crawler Monitor==Controllo crawler
+Production==Produzione
+Target Analysis==Analisi target
+System Administration==Amministrazione sistema
+Index Administration==Amministrazione indice
+Filter & Blacklists==Filtro & Blacklist
+Content Semantic==Semantica contenuti
+Search Portal Integration==Integrazione Portale ricerca
+Ranking and Heuristics==Ranking ed euristiche
+"Chat"=="Chat"
+"Community"=="Comunità"
+"Help"=="Aiuto"
+"Restart"=="Riavvia"
+"Search"=="Cerca"
+"Shutdown"=="Shutdown"
+"YaCy"=="YaCy"
+externalbecome a Github Sponsor== esternodiventare uno sponsor Github
+externalbecome a YaCy Patreon== esternodiventare YaCy Patreon
+external Community (Web Forums)==Comunità esterna (Forum Web)
+external Download YaCy== esterno Scarica YaCy
+external Git Repository==Repository esterno Git
+external YaCy Tutorials==Tutorial esterni YaCy
+AI Lab==AI Lab
+Administration==Amministrazione
+Automation==Automazione
+Chat==Chat
+Crawler==Crawler
+Grab a whole site==Afferra un intero sito
+Search==Cerca
+Sponsor==Sponsor
+YaCy Packs & Import/Export==YaCy Packs & Import/Export
+YaCy is free software, so we need the help of many to support the development. You can help by joining a sponsoring plan:==YaCy is free software, so we need the help of many to support the development. You can help by joining a sponsoring plan:
+#-----------------------------
+
+#File: env/templates/simpleheader.template
+#---------------------------
+Toggle navigation==Commuta navigazione
+Administration »==Amministrazione »
+Example Calls to the Search API:==Example Calls to the Search API:
+Web Search==Ricerca web
+File Search==Ricerca file
+Compare Search==Confronta ricerca
+URL Viewer==URL Viewer
+YaCy Tutorials==Tutorial YaCy
+About This Page==Informazioni su questa pagina
+"Help"=="Aiuto"
+API Solr Default Core / JSON== API Solr Default Core / JSON
+API Solr Default Core / XML== API Solr Default Core / XML
+external Bugtracker== esterno Bugtracker
+external Community (Web Forums)==Comunità esterna (Forum Web)
+external Download YaCy== esterno Scarica YaCy
+external Git Repository==Repository esterno Git
+Chat==Chat
+JavaScript information==Informazioni JavaScript
+Search Interfaces==Interfacce di ricerca
+API Solr RSS/Opensearch== API Solr RSS/Opensearch
+API Solr Webgraph Core / XML== API Solr Webgraph Core / XML
+API YaCy JSON== API YaCy JSON
+API YaCy RSS/Opensearch== API YaCy RSS/Opensearch
+#-----------------------------
+
+#File: env/templates/submenuAccessTracker.template
+#---------------------------
+Access Tracker==Rintracciatore di accesso
+Server Access==Accesso al server
+Access Grid==Griglia di accesso
+Incoming Requests Overview==Panoramica delle richieste in entrata
+Incoming Requests Details==Dettagli delle richieste in entrata
+Host Tracker==Tracciatore host
+Cookie Menu==Menu cookie
+Incoming Cookies==Cookies in arrivo
+Outgoing Cookies==Cookie in uscita
+All Connections==Tutte le connessioni
+Remote Search==Ricerca remota
+Access Rate Limitations==Limitazioni dei tassi di accesso
+Local Search==Ricerca locale
+Log==Log
+#-----------------------------
+
+#File: env/templates/submenuBlacklist.template
+#---------------------------
+Filter & Blacklists==Filtro & Blacklist
+Blacklist Administration==Amministrazione blacklist
+Blacklist Cleaner==Pulitore lista nera
+Blacklist Test==Test blacklist
+Import/Export==Importa / esporta
+#-----------------------------
+
+#File: env/templates/submenuComputation.template
+#---------------------------
+System==Sistema
+Thread Dump==Dump dei thread
+Application Status==Stato dell' applicazione
+Server Log==Registro server
+Concurrent Indexing==Indicizzazione concorrente
+Memory Usage==Utilizzo memoria
+Search Sequence==Sequenza di ricerca
+Incoming News==Notizie in arrivo
+Processed News==Notizie processate
+Outgoing News==Notizie in uscita
+Published News==Pubblicato News
+Community Data==Dati comunitari
+Local Peer Wiki==Wiki peer locale
+Processes==Processi
+Messages==Messaggi
+Overview==Panoramica
+Log Reports==Rapporti di registro
+Status==Status
+Bookmarks==Segnalibri
+Surftips==SurftipsCity name (optional, probably does not need a translation)
+#-----------------------------
+
+#File: env/templates/submenuConfig.template
+#---------------------------
+System Administration==Amministrazione sistema
+Advanced Settings==Impostazioni avanzate
+Advanced Properties==Proprietà avanzate
+UI Translations==UI Translations
+Performance Settings of Busy Queues==Impostazioni prestazioni delle code occupate
+Viewer and administration for database tables==Visualizzatore e amministrazione per tabelle di database
+#-----------------------------
+
+#File: env/templates/submenuCrawlMonitor.template
+#---------------------------
+Processing Monitor==Monitor di elaborazione
+Rejected URLs==URL rifiutati
+Crawler Steering==Controllo crawler
+Crawler==Crawler
+Loader==Caricatore
+Queues==Coda
+(1) Receipts==(1) Ricevute
+(2) Queries==(2)
+(3) DHT Transfer==(3) Trasferimento DHT
+(4) Proxy Use==(4) Uso proxy
+(5) Local Crawling==(5) Crawling locale
+(6) Global Crawling==(6) Crawling globale
+(7) Pack Import==(7) Pack Import
+Local==Locale
+Scheduler and Profile Editor==Programmatore e editor di profili
+Crawl Results==Crawl Results
+Global==Globale
+No-Load==Senza carico
+Overview==Panoramica
+Remote==Remoto
+Web Crawler==Web crawler
+robots.txt Monitor==Monitor robots.txt
+#-----------------------------
+
+#File: env/templates/submenuCrawler.template
+#---------------------------
+Load Web Pages==Caricamento pagine
+Site Crawling==Crawling
+Parser Configuration==Configurazione parser
+#-----------------------------
+
+#File: env/templates/submenuDesign.template
+#---------------------------
+Language==Lingua
+Appearance==Aspetto
+Search Page Layout==Layout pagina di ricerca
+Design==Progettazione
+#-----------------------------
+
+#File: env/templates/submenuIndexControl.template
+#---------------------------
+Index Administration==Amministrazione indice
+URL Database Administration==URL Database Administration
+Index Deletion==Cancellazione indice
+Index Sources & Targets==Fonti dell'indice Obiettivi&
+Field Re-Indexing==Ridefinizione del campo
+Reverse Word Index==Indice delle parole inverse
+Content Analysis==Analisi dei contenuti
+Solr Schema Editor==Editor schema Solr
+#-----------------------------
+
+#File: env/templates/submenuIndexCreate.template
+#---------------------------
+Advanced Crawler==Crawler avanzato
+Crawl Start (Expert)==Crawl Start (Esperto)
+Crawling of MediaWikis==Crawling di MediaWiki
+Crawling of phpBB3 Forums==Crawling di forum phpBB3
+Network Scanner==Scanner di rete
+Remote Crawling==Crawling remoto
+Scraping Proxy==Scraping proxy
+Autocrawl==Crawl automatico
+Crawler/Spider==Crawler/Spider
+Network Harvesting==Raccolta di reti
+#-----------------------------
+
+#File: env/templates/submenuPublication.template
+#---------------------------
+Publication==Pubblicazione
+Blog==Blog
+Wiki==Wiki
+#-----------------------------
+
+#File: env/templates/submenuRanking.template
+#---------------------------
+Ranking and Heuristics==Ranking ed euristiche
+Solr Ranking Config==Configurazione delle classifiche Solr
+RWI Ranking Config==RWI Ranking Config
+Heuristics==Euristica
+#-----------------------------
+
+#File: env/templates/submenuSemantic.template
+#---------------------------
+Content Semantic==Semantica contenuti
+Auto-Annotation Vocabulary Editor==Editor di vocabolario di annotazione automatica
+Knowledge Loader==Caricatore di conoscenze
+Automated Annotation==Annotazione automatizzata
+#-----------------------------
+
+#File: env/templates/submenuTargetAnalysis.template
+#---------------------------
+Target Analysis==Analisi target
+Mass Crawl Check==Mass Crawl Check
+Regex Test==Prova Regex
+#-----------------------------
+
+#File: env/templates/submenuUseCaseAccount.template
+#---------------------------
+Use Case & Accounts==Modi d'uso & Account
+Basic Configuration==Configurazione minima
+Network Configuration==Configurazione rete
+Accounts==Account
+#-----------------------------
+
+#File: env/templates/submenuWebStructure.template
+#---------------------------
+Web Visualization==Visualizzazione web
+Web Structure==Struttura web
+Image Collage==Collage immagine
+Index Browser==Browser indice
+#-----------------------------
+
+#File: proxymsg/authfail.inc
+#---------------------------
+Your Username/Password is wrong.==Your Username/Password is wrong.
+"login"=="login"
+Password==Password
+Username==Nome utente
+#-----------------------------
+
+#File: proxymsg/error.html
+#---------------------------
+YaCy: Error Message==YaCy: Messaggio d'errore
+request:==richiesta:
+unspecified error==errore generico
+not-yet-assigned error==Errore non ancora assegnato
+You don't have an active internet connection. Please go online.==Non hai una connessione internet attiva. Per favore vai online.
+Could not load resource. The file is not available.==Could not load resource. The file is not available.
+YaCy==YaCy
+#-----------------------------
+
+#File: proxymsg/proxylimits.inc
+#---------------------------
+Your Account is disabled for surfing.==Il tuo account è disabilitato per navigare.
+#-----------------------------
+
+#File: proxymsg/unknownHost.inc
+#---------------------------
+Did you mean:==Forse intendevi cercare:
+#-----------------------------
+
+#File: env/templates/submenuAI.template
+#---------------------------
+LLM Selection==LLM Selection
+Tools Config==Strumenti Configura
+Log Reports==Rapporti di registro
+RAG Config==RAG Config
+AI Shield==AI Shield
+AI Lab==AI Lab
+Chat==Chat
+#-----------------------------
+
+#File: env/templates/submenuIndexImport.template
+#---------------------------
+Content Export / Import==Content Export / Import
+Solr Dump Export/Import==Solr Dump Export/Import
+Pack Downloader==Downloader dei pack
+Database Reader==Lettore di database
+phpBB3 Database==phpBB3 Database
+Pack Generator==Generatore di pack
+MediaWiki Dump==MediaWiki Dump
+Pack Manager==Gestore pack
+Index Export==Indice Esporta
+YaCy Packs==Pack YaCy
+Export==Esporta
+Import==Importa
+JsonList==JsonListCity name (optional, probably does not need a translation)
+OAI-PMH==OAI-PMH
+RSS==RSS
+WARC==WARC
+ZIM==ZIM
+#-----------------------------
+
+#File: env/templates/submenuMaintenance.template
+#---------------------------
+RAM/Disk Usage & Updates==Utilizzo RAM/HDD & Aggiornamenti
+Download System Update==Aggiornamento del sistema di download
+Performance==Prestazioni
+Web Cache==cache web
+#-----------------------------
+
+#File: env/templates/submenuPortalConfiguration.template
+#---------------------------
+Generic Search Portal==Portale di ricerca generico
+Portal Configuration==Configurazione del portale
+Search Box Anywhere==Casella di ricerca ovunque
+Local robots.txt==Local robots.txt
+User Profile==Profilo utente
+#-----------------------------
+
+#File: Settings_Debug.inc
+#---------------------------
+When checked, the remote DHT peers selection is overridden and only the local peer is selected to provide remote DHT search results.==Quando selezionata, la scelta dei peer DHT remoti viene ignorata e viene selezionato solo il peer locale per fornire risultati di ricerca DHT remoti.
+Be careful with these advanced settings, they can deeply affect the search process! You probably don't need to modify them for normal use.==Attenzione con queste impostazioni avanzate, possono influenzare profondamente il processo di ricerca! Probabilmente non è necessario modificarli per un uso normale.
+When checked, the remote Solr peers selection is overridden and only this peer is selected to provide remote Solr search results.==Una volta selezionata, la selezione dei peer Solr remoto viene annullata e solo questo peer viene selezionato per fornire risultati di ricerca Solr remoti.
+When checked (default), responses from remote Solr index instances are transferred using an efficient binary data format.==Quando selezionata (default), le risposte da istanze remote di indice Solr vengono trasferite utilizzando un formato di dati binario efficiente.
+When checked, the raw ranking score value is displayed for each text search result in the HTML results page.==Quando selezionata, il punteggio grezzo di ranking viene mostrato per ogni risultato testuale nella pagina HTML dei risultati.
+Remote DHT/RWI==DHT/RWI remoto
+When unchecked, responses are transferred as XML,==Quando non selezionata, le risposte vengono trasferite come XML,
+Local DHT/RWI==DHT/RWI locale
+Override DHT peers selection by local only==Limita la selezione dei peer DHT al solo peer locale
+which can be captured and parsed by any external XML aware tool for debug/analysis.==che possono essere catturate e analizzate da qualunque strumento esterno compatibile con XML per debug/analisi.
+but you can here disable one or more ones to check the behavior of the process.==ma puoi disabilitare uno o più di questi per controllare il comportamento del processo.
+By default all data sources are enabled to obtain search results,==Per impostazione predefinita tutte le fonti di dati sono abilitate ad ottenere risultati di ricerca,
+Changes will take effect immediately.==Le modifiche avranno effetto immediatamente.
+Override Solr peers selection by local only==Sovrintende la selezione dei peer Solr solo per locale
+Enable remote Solr binary responses==Abilita le risposte binarie remote Solr
+Enable text snippets statistics==Abilita le statistiche dei frammenti di testo
+Show search results scores==Mostra i risultati della ricerca
+Text snippets statistics==Statistiche dei frammenti di testo
+Debug/Analysis Settings==Debug/Analysis Settings
+Search testing tweaks==Cerca modifiche di test
+Search data sources==Sorgenti di dati di ricerca
+Remote Solr indexes==Indici Solr remoti
+Ranking information==Informazioni sulla classifica
+Solr communication==Comunicazione Solr
+Local Solr index==Indice Solr locale
+"Distributed Hash Table"=="Distributed Hash Table"
+"Reverse Word Index"=="Indice di parola inversa"
+"Extensible Markup Language"=="Lingue marcatore estensibile"
+"Submit"=="Invia"
+#-----------------------------
+
+#File: Settings_HttpClient.inc
+#---------------------------
+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).==Impostazioni di configurazione per lo specifico client HTTP dedicato alle comunicazioni con server Solr remoti (situati su altri peer YaCy o eventualmente di proprietà di quest'ultimo quando è configurato per utilizzare un indice Solr remoto).
+Configuration settings for the main HTTP client, used notably to crawl websites and communicate with other YaCy peers.==Impostazioni di configurazione per il client HTTP principale, usato in particolare per eseguire il crawl dei siti web e comunicare con altri peer YaCy.
+Enable SNI extension to TLS==Abilita l'estensione SNI per TLS
+You can configure here some advanced settings of the clients used by YaCy to handle outgoing HTTP connections.==Qui puoi configurare alcune impostazioni avanzate dei client usati da YaCy per gestire le connessioni HTTP in uscita.
+Changes will take effect immediately.==Le modifiche avranno effetto immediatamente.
+About Server Name Indication (SNI):==Informazioni sull'indicazione del nome del server (SNI):
+Remote Solr HTTP client==Remote Solr HTTP client
+HTTP client settings==HTTP client settings
+General HTTP client==General HTTP client
+"Transport Layer Security"=="Transport Layer Security"
+"Server Name Indication"=="Indicazione del nome del server"
+"Submit"=="Invia"
+, 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).==, ma in questo caso è necessario un riavvio del server quando si desidera modificare l'impostazione e non è personalizzabile per client http (generale o per Solr remoto).
+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==Ma puo essere necessario disabilitarlo per caricare alcuni URL HTTPS serviti da server web vecchi e configurati male; altrimenti il caricamento fallisce con l'eccezione
+Controlling SNI extension activation can also be done with the JVM option==Controlling SNI extension activation can also be done with the JVM option
+Received fatal alert: handshake_failure==Received fatal alert: handshake_failure
+javax.net.ssl.SSLProtocolException: "handshake alert: unrecognized_name"==javax.net.ssl. SSL ProtocolloEccezione: "handshake alert: unrecognized_name"
+jsse.enableSNIExtension==jsse.enableSNIExtension
+this extension to the TLS 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==questa estensione del protocollo TLS deve essere abilitata per caricare alcuni URL HTTPS (per siti web distribuiti con certificati e nomi host diversi sullo stesso indirizzo IP condiviso); altrimenti il caricamento fallisce con errori come
+#-----------------------------
+
+#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.==Se sei davvero preoccupato per la privacy, ti preghiamo di controllare ciò che viene veramente inviato dal tuo browser utilizzando la sua console di rete strumenti sviluppatore embedded, o con l'analizzatore di traffico di rete di vostra scelta.
+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.==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.
+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.==Restrizione: quando un collegamento esterno viene declassato da una connessione protetta TLS(https) su questo peer a un obiettivo non garantito (http), non devono essere inviate informazioni sul referrer.
+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.==Restrizione: quando un collegamento viene declassato da una connessione protetta TLS(https) su questo peer a un obiettivo non garantito (http), non devono essere inviate informazioni sul referrer.
+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).==Le informazioni referrer dovrebbero contenere URL completi, tranne quando un link passa da una connessione TLS sicura (HTTPS) su questo peer a una destinazione non sicura (HTTP).
+Beware that every browser behaves differently: some settings may be unsupported by your particular browser and therefore ignored.==Beware that every browser behaves differently: some settings may be unsupported by your particular browser and therefore ignored.
+supported by many more browsers than the meta tag: if you want a higher level of privacy but use an old or incompatible browser,==supported by many more browsers than the meta tag: if you want a higher level of privacy but use an old or incompatible browser,
+When loading pages and navigating through links, a web browser sends some information about the origin of the request,==Durante il caricamento delle pagine e la navigazione attraverso i link, un browser web invia alcune informazioni circa l'origine della richiesta,
+Highest privacy setting: referrer information should never be sent, even when navigating on this peer internal links.==Highest privacy setting: referrer information should never be sent, even when navigating on this peer internal links.
+This page offers some configuration settings to instruct your browser how it should fill this referrer information.==Questa pagina offre alcune impostazioni di configurazione per istruire il browser come dovrebbe riempire queste informazioni referrer.
+External links: referrer information should be stripped from any private data and contain only this peer host name.==External links: referrer information should be stripped from any private data and contain only this peer host name.
+thus instructing the browser that it should not send any referrer information at all when visiting them.==istruendo così il browser che non dovrebbe inviare alcuna informazione referrer al momento della loro visita.
+This referrer policy applies for every page on this peer. It is set by the "meta" HTML tag.==Questa politica di referrer si applica ad ogni pagina di questo peer. È impostata dal tag "meta" HTML.
+When checked, this overrides the global referrer policy and adds the standard "noreferrer"==Quando controllato, questo sovrascrive la politica referrer globale e aggiunge lo standard "noreferrer"
+Custom setting: probably manually edited, be sure this value is the desired one.==Custom setting: probably manually edited, be sure this value is the desired one.
+Default browser behavior: it should correspond to "no-referrer-when-downgrade".==Comportamento predefinito del browser: dovrebbe corrispondere a "no-referrer-when-downgrade."
+Be careful with this: some websites might reject requests with no referrer.==Be careful with this: some websites might reject requests with no referrer.
+Unsafe setting: referrer information should always contain full URLs.==Impostazione non sicura: le informazioni referrer dovrebbero sempre contenere URL completi.
+Changes will take effect immediately.==Le modifiche avranno effetto immediatamente.
+External links: referrer information should never be sent.==External links: referrer information should never be sent.
+Add the "noreferrer" link type to search results links==Aggiungere il tipo di collegamento "noreferrer" ai link dei risultati della ricerca
+Values are sorted by decreasing privacy level.==I valori sono ordinati riducendo il livello di privacy.
+It is a standard HTML5 attribute value,==It is a standard HTML5 attribute value,
+this can be a valuable option.==Questa può essere un'opzione preziosa.
+Referrer Policy Settings==Impostazioni della politica di riferimento
+Search results links==Risultati della ricerca link
+Global policy==Politica globale
+empty value==valore vuoto
+"'Referer' section from the standard IETF specification"=="sezione "Referer" della specifica IETF standard"
+"Link types section at W3C HTML specification"=="Sezione sui tipi di link nella specifica HTML del W3C"
+"Submit"=="Invia"
+Peer internal and external links: referrer information should be stripped from any private data and contain only this peer host name.==Peer internal and external links: referrer information should be stripped from any private data and contain only this peer host name.
+Peer internal links: referrer information should be stripped from any private data and contain only this peer host name.==Peer internal links: referrer information should be stripped from any private data and contain only this peer host name.
+Peer internal links: referrer information should contain full URLs.==Link interni del peer: le informazioni referrer dovrebbero contenere URL completi.
+no-referrer==nessun referrer
+no-referrer-when-downgrade==no-referrer-when-downgrade
+origin==origine
+origin-when-cross-origin==origine-quando-cross-origine
+same-origin==stesso-origine
+strict-origin==origine severa
+strict-origin-when-cross-origin==strict-origine-quando-cross-origine
+unsafe-url==URL non sicuro
+#-----------------------------
+
+#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.==Completa le missioni qui sotto per sbloccare l'AI sidekick di YaCy: legare un motore di inferenza, caricare modelli di produzione, alimentarlo con il vostro indice, quindi filoRAGe scudi.
+Add guardrails: access rates, grant or deny non-localhost access. Activate the front page link for chat to complete this quest.==Aggiungi protezioni: frequenze di accesso, autorizzazione o negazione dell'accesso non-localhost. Attiva il link alla chat nella pagina iniziale per completare questo passaggio.
+Map which production models answer search-query and Q/A pairs so the RAG proxy can mix search with chat.==Mappa quali modelli di produzione rispondono a query di ricerca e coppie D/R, cosi il proxy RAG puo combinare ricerca e chat.
+Create a local index for grounding: crawl a site or import a pack to give your AI facts to cite.==Crea un indice locale per il grounding: esegui il crawl di un sito o importa un pack per fornire alla tua IA fatti da citare.
+Pick your host (Ollama, LM Studio, OpenAI-compatible) and give YaCy a place to send prompts.==Scegliete il vostro host (Ollama, LM Studio, OpenAI-compatibile) e date a YaCy un posto dove inviare i prompt.
+Assign a log-report model, then review generated hourly and daily self-enhancement reports.==Assegnare un modello log-report, quindi rivedere i rapporti di auto-ingrandimento generati ogni ora e ogni giorno.
+Assign models for chat, search, translation, and more. This is your loadout bench.==Assegna modelli per chat, ricerca, traduzione e altro. Questo e il tuo banco di configurazione.
+Populate the Production Models Matrix==Popolare i modelli di produzione Matrix
+Superpowers for the YaCy Chat==Superpoteri per la chat YaCy
+Bind an inference engine==Legare un motore a inferenza
+Craft your AI toolkit==Configura il tuo toolkit IA
+Enable/Disable Tools==Abilita/disabilita strumenti
+AI Lab Build System==Sistema di build AI Lab
+Grow a search index==Crea un indice di ricerca
+Monitor log reports==Monitorare i rapporti di registro
+Wire RAG retrieval==Collega il recupero RAG
+Wire RAG prompts==Collega i prompt RAG
+Open log reports==Apri report di registro
+Define a shield==Definisci uno scudo
+0 / 6 unlocked==0 / 6 unlocked
+Start a crawl==Avvia un crawl
+"Index creation"=="Creazione dell'indice"
+"Inference engine setup"=="Impostazione motore di conferenza"
+"Log report monitor"=="Monitoraggio dei rapporti di log"
+"Model assignment preview"=="Anteprima assegnazione del modello"
+"RAG configuration"=="RAG configuration"
+"Shield definition"=="Definizione del campo"
+"Tools configuration"=="Configurazione strumenti"
+Assign log-report model==Assegna modello log-report
+Deploy at least one model, then assign capabilities (chat, search-query, tooling, vision).==Distribuire almeno un modello, quindi assegnare funzionalità (chat, ricerca-query, strumenti, visione).
+Go to Production Models Matrix==Vai ai modelli di produzione Matrix
+Import an index pack==Importa un pack indice
+Indexed documents:==Documenti indicizzati:
+Mandatory==Obbligatorio
+Needs setup==Requisiti di configurazione
+Open engine setup==Configurazione del motore aperta
+Open shield settings==Impostazioni dello schermo aperte
+Open tools configuration==Configurazione degli strumenti aperti
+Optional==Facoltativo
+Report generation stays inactive until a production model is assigned to the log-report role.==La generazione di report rimane inattiva fino a quando un modello di produzione non viene assegnato al ruolo log-report.
+Set hoststub, API keys, and defaults to unlock downloads.==Set hoststub, API keys, and defaults to unlock downloads.
+Set the search-query and qapairs columns to connect retrieval to your chat flow.==Imposta le colonne search-query e qapairs per collegare il recupero al flusso di chat.
+Store your shield directives (system prompts, stop words) as properties, then exercise them in chat.==Memorizza le tue direttive sullo scudo (prompt del sistema, ferma le parole) come proprietà, quindi esercitale in chat.
+Test in Chat==Prova in chat
+Tune descriptions and set maxCallsPerTurn per tool (0 disables a tool).==Imposta le descrizioni e imposta maxCallsPerTurn per tool (0disabilita uno strumento).
+required to unlock (need at least 1000 documents).==necessari per sbloccare (necessari almeno documenti1000).
+#-----------------------------
+
+#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.==Control who can access the chat interface and rate-limit non-localhost clients to protect your peer and LLM backends from overload.
+Recent access volume across all clients (localhost included). You can enforce global limits here to protect the host.==Volume di accesso recente su tutti i client (localhost incluso). È possibile imporre limiti globali qui per proteggere l'host.
+By default only localhost may reach the chat UI. Enable non-localhost access and throttle requests to reduce abuse.==By default only localhost may reach the chat UI. Enable non-localhost access and throttle requests to reduce abuse.
+Expose a shortcut to the chat UI on the search front page if you want users to discover it.==Expose a shortcut to the chat UI on the search front page if you want users to discover it.
+Requests from non-localhost will be throttled using these caps:==Le richieste di non-localhost saranno strozzate utilizzando questi tappi:
+Allow non-localhost clients to access the chat interface==Consenti ai client non-localhost di accedere all'interfaccia di chat
+Show a link to yacychat.html on the search front page==Show a link to yacychat.html on the search front page
+Limit for all requests, including localhost==Limite per tutte le richieste, compreso localhost
+Guest Access Control & Rate Limits==Controllo dell'accesso degli ospiti e limiti di frequenza
+Wire RAG Retrieval Shield==Wire RAG Retrieval Shield
+Overall Load Protection==Protezione totale del carico
+Save Shield Settings==Salva le impostazioni dello scudo
+Requests / minute==Requests / minute
+Requests / hour==Requests / hour
+Front Page Link==Collegamento in prima pagina
+Requests / day==Requests / day
+Per minute:==Al minuto:
+Per hour:==Per ora:
+Per day:==Al giorno:
+#-----------------------------
+
+#File: ToolsConfig_p.html
+#---------------------------
+Add superpowers to the YaCy Chat. Tools may be disabled by setting maxCallsPerTurn to 0.==Add superpowers to the YaCy Chat. Tools may be disabled by setting maxCallsPerTurn to 0.
+Save Tools Configuration==Configurazione Salva strumenti
+Data Retrieval Tools==Strumenti di recupero dati
+Visualization Tools==Strumenti di visualizzazione
+Basic Tools==Strumenti di base
+disable==disabilita
+Tools==Strumenti
+Tool settings were saved.==Le impostazioni degli strumenti sono state salvate.
+maxCallsPerTurn==maxCallsPerTurn
+#-----------------------------
+
+#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.==Lunghezza massima del carattere del documento di ricerca virtuale usato come allegatoRAGe come risultato dello strumento. Il contenuto oltre questo limite è tagliato. Predefinito: 30000.
+Tune how YaCy constructs prompts and search queries for Retrieval Augmented Generation.==Imposta come YaCy costruisce i prompt e le query di ricerca per Retrieval Augmented Generation.
+Prepended before attached search snippets in RAG mode to tell the LLM how to use them.==Prepended before attached search snippets in RAG mode to tell the LLM how to use them.
+This is sent as the system message for chats. Keep it concise and friendly.==This is sent as the system message for chats. Keep it concise and friendly.
+Prompt given to the model that generates search queries from user requests.==Avverte il modello che genera query di ricerca dalle richieste dell'utente.
+Search Document Max Length==Lunghezza massima del documento di ricerca
+Query Generator Prefix==Prefisso generatore di interrogazioni
+User Retrieval Prefix==Prefisso di recupero utente
+Wire RAG Retrieval==Wire RAG Retrieval
+Save RAG Settings==Save RAG Settings
+System Prompt==Prompt di sistema
+#-----------------------------
+
+#File: LLMSelection_p.html
+#---------------------------
+In the "Production Models Matrix" you can then assign each selected model a function inside YaCy==Nella "Matrice dei modelli di produzione" è quindi possibile assegnare ad ogni modello selezionato una funzione all'interno di YaCy
+num_ctx is the context window (in tokens) of the inference service — a per-service==num_ctx è la finestra contestuale (in token) del servizio di inferenza— a per-service
+generated output; YaCy uses it to size prompts so they leave room to generate. The row for the==output generato; YaCy lo usa per dimensionare i prompt in modo da lasciare spazio per generare. La riga per il
+value, shared by all models on that endpoint. It is the total budget for prompt plus==value, shared by all models on that endpoint. It is the total budget for prompt plus
+Here you can pick models from an LLM model service to select them as production model.==Qui puoi scegliere modelli da un servizio di modelli LLM per selezionarli come modello di produzione.
+service selected above appears here automatically with its stored (or default) window.==servizio selezionato sopra appare qui automaticamente con la sua finestra memorizzata (o predefinita).
+This value is advisory: set it to match the window your backend actually serves==This value is advisory: set it to match the window your backend actually serves
+Context Length setting). YaCy does not enforce it on the backend.==Impostazione della lunghezza del contesto). YaCy non lo impone sul backend.
+Service Selection==Selezione servizio
+Model Downloads==Download di modelli
+LLM Selection==LLM Selection
+service==servizio
+Actions==Azioni
+model==modello
+"info"=="info"
+(not required for Ollama or LMStudio)==(non richiesto perOllamaoLMStudio)
+LMStudio==LMStudio
+Ollama==Ollama
+Open Router==Router aperto
+OpenAI==OpenAI
+Production Models Matrix==Modelli di produzione Matrix
+Services==Servizi
+This makes a preset to the Hoststub value==Questo rende un preset al valore Hoststub
+This model can be used to make translations of the web UI==Questo modello puo essere usato per tradurre l'interfaccia web
+This model can be used to produce query-answer pairs which enhance search from chat prompts==Questo modello può essere utilizzato per produrre coppie di risposte alle query che migliorano la ricerca dai prompt di chat
+This model creates answers for search requests==Questo modello crea risposte per le richieste di ricerca
+This model evaluates YaCy runtime logs and creates self-enhancement reports==Questo modello valuta i log di runtime YaCy e crea report di auto-ingegnerizzazione
+This model is used in the chat interface and as default for the RAG proxy==Questo modello viene usato nell'interfaccia chat e come predefinito per il proxy RAG
+This model is used to classify prompts to find out what they demand==Questo modello è usato per classificare i prompt per scoprire cosa richiedono
+This model is used to make summaries from web content==Questo modello è usato per fare riassunti dai contenuti web
+This model produces search queries to YaCy search from prompts in RAG or chat==Questo modello produce query per la ricerca YaCy dai prompt in RAG o chat
+api_key==api_key
+chat==chat
+classification==classificazione
+format==formato
+hoststub==hoststub
+log-report==log-report
+max_tokens==max_tokens
+num_ctx==num_ctx
+qa-pairs==qa-pairs
+search-answers==risposte di ricerca
+search-query==ricerca-query
+thinking==Pensare
+this enables image recognition in the chat==Questo consente il riconoscimento dell'immagine nella chat
+this is required for classification==ciò è necessario per la classificazione
+tldr-shortener==tldr-shortener
+tooling==utensile
+tooling is required for agentic abilities.==l'utensile è necessario per le capacità agentiche.
+translation==traduzione
+vision==vista
+we detect thinking only to be able to suppress thinking. thinking is not used in YaCy==we detect thinking only to be able to suppress thinking. thinking is not used in YaCy
+you can probably leave this to the default value==puoi probabilmente lasciare questo al valore predefinito
+#-----------------------------
+
+#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.==La directory dei report non esiste ancora. I report apparanno qui dopo che lo scheduler avra generato il primo report orario completato.
+No production model is configured for the log-report role. Log report generation stays inactive until a model is assigned in the==Nessun modello di produzione e configurato per il ruolo log-report. La generazione dei report resta inattiva finche un modello non viene assegnato in
+Generating report from the current-hour log lines — the LLM call can take a while …==Generazione del report dalle righe di log dell'ora corrente — la chiamata LLM puo richiedere tempo …
+No production model is configured for the log-report role. Assign one in the==Nessun modello di produzione e configurato per il ruolo log-report. Assegnane uno in
+the report below is completed live while the model is writing==la relazione qui sotto è completata dal vivo mentre il modello è scritto
+No log lines were found for the current hour.==Non sono state trovate linee di registro per l'ora corrente.
+Report generation in progress …==Generazione report in corso…
+No generated log reports were found.==Non sono stati trovati rapporti di log generati.
+seconds elapsed==secondi trascorsi
+run report now==esegui il report ora
+Log Reports==Rapporti di registro
+"delete this report"=="cancella questa relazione"
+×==×
+Feeds:==Alimenti:
+JSON==JSON
+RSS==RSS
+#-----------------------------
+
+#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 https://user:password@localhost:8984/solr.==Selezionare questa opzione quando il server Solr remoto e protetto da password e viene richiesto tramite HTTPS ma fornisce solo un certificato autofirmato (non convalidato da un'autorita di certificazione ufficiale). L'URL Solr potrebbe essere, ad esempio, https://user:password@localhost:8984/solr.
+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).==L'indice della struttura web è utilizzato per la navigazione degli host (per scoprire la struttura interna del file/folder), la classifica (contando il numero di riferimenti) e la ricerca dei file (ci sono circa quaranta volte più collegamenti dalle pagine caricate che nei documenti dell'indice principale di ricerca).
+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).==L'insieme di bersagli remoti è usato come shard di un indice completo. La parte host dell'url è usata come chiave per una funzione hash che seleziona uno dei shard (uno dei vostri server remoti).
+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.==Questo Solr esterno puo essere usato al posto del Solr interno. Puo anche essere usato insieme al Solr interno; in tal caso entrambi gli indici Solr vengono replicati.
+The 'RWI' (Reverse Word Index) is necessary for index transmission in distributed mode. For portal or intranet mode this must be switched off.==La 'RWI' (Reverse Word Index) è necessaria per la trasmissione dell'indice in modalità distribuita. Per la modalità portale o intranet questo deve essere spento.
+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.==Qui è possibile impostare uno o più target Solr a cui si accede come un frammento. Per diversi obiettivi, elencarli usando un ',' (comma) come separatore.
+As an internal indexing database a deep-embedded multi-core Solr is used and it is possible to attach also a remote Solr.==Come base di dati di indicizzazione interna viene utilizzato un multi-core Solr incorporato in profondità ed è possibile allegare anche un Solr remoto.
+When a search request is made, all servers are accessed synchronously and the result is combined.==Quando viene effettuata una richiesta di ricerca, tutti i server sono accessibili in modo sincrono e il risultato è combinato.
+write-enabled (if unchecked, the remote server(s) will only be used as search peers)==write-enabled (se deselezionato, il server remoto(s) sarà usato solo come peer di ricerca)
+If checked, only non-zero values and non-empty strings are written to Solr fields.==Se selezionato, solo i valori non zero e le stringhe non vuote sono scritti in campi Solr.
+Reject URLs/RWIs with known errors from peers. Disable to opt out.==Rifiuta URL/RWI con errori noti provenienti dai peer. Disabilita per rinunciare.
+use webgraph search index (rich information in second Solr core)==utilizzare l'indice di ricerca webgraph (informazioni ricche nel secondo core Solr)
+If you switch off this index, a remote Solr must be activated.==Se si spegne questo indice, deve essere attivato un Solr remoto.
+comma-separated (default: 404,410,-1; -1=DNS/network errors)==virgola-separata (default: 404, 410,-1; -1= errori DNS/rete)
+support peer-to-peer index transmission (DHT RWI index)==supporto trasmissione dell'indice peer-to-peer (indice DHT RWI)
+for temporary errors; permanent errors stay blocked.==per errori temporanei; gli errori permanenti rimangono bloccati.
+use citation reference index (lightweight and fast)==indice di riferimento della citazione d'uso (leggero e veloce)
+YaCy supports multiple index storage locations.==YaCy supporta piu posizioni di archiviazione degli indici.
+Allow self-signed certificates==Consenti certificati autofirmati
+Index Sources & Targets==Fonti dell'indice Obiettivi&
+Permanent error statuses==Stato degli errori permanenti
+Peer-to-Peer Operation==Operazione Peer-to-Peer
+Web Structure Index==Indice della struttura web
+Retry after (days)==Riprova dopo (giorni)
+Solr Search Index==Solr Indice di ricerca
+/solr/select?q=*:*&start=0&rows=3&core=collection1==/solr/select?q=*:*& start=0& rows=3& core=collection1
+Block known error URLs in DHT==Blocca URL con errori noti nella DHT
+Lazy Value Initialization==Inizializzazione del valore pigro
+The Solr native search interface is accessible at==L'interfaccia di ricerca nativa Solr è accessibile a
+Use deep-embedded local Solr==Usa Solr locale in forma profonda
+for the default search index (core: collection1) and at==per l'indice di ricerca predefinito (core: collection1) e a
+Index Size==Dimensione indice
+Sharding Method==Metodo di ripartizione
+Solr Host Administration Interface==Interfaccia di amministrazione host Solr
+Solr Hosts==Host Solr
+Solr URL(s)==URL Solr
+This will write the YaCy-embedded Solr index which is stored within the YaCy DATA directory.==Questo scrivera l'indice Solr incorporato in YaCy, memorizzato nella directory DATA di YaCy.
+Use remote Solr server(s)==Usa server Solr remoti
+"Set"=="Imposta"
+#-----------------------------
+
+#File: IndexSchema_p.html
+#---------------------------
+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==Se si utilizza uno schema Solr personalizzato è possibile inserire un nome di campo diverso nella colonna 'Custom Solr Field Name' del nome di attributo predefinito YaCy
+If you unselected some fields, old documents in the index still contain the unselected fields.==Se non hai selezionato alcuni campi, i vecchi documenti nell'indice contengono ancora i campi non selezionati.
+To physically remove them from the index you need to reindex the documents.==Per rimuoverli fisicamente dall'indice è necessario riindicizzazione dei documenti.
+Here you can reindex all documents with inactive fields.==Qui puoi riindividuare tutti i documenti con i campi inattivi.
+Custom Solr Field Name==Nome del campo Solr personalizzato
+Solr Schema Editor==Editor schema Solr
+show all available==Mostra tutti i disponibili
+Reindex documents==Riindici i documenti
+Select a core:==Seleziona un nucleo:
+show disabled==mostra disabilitato
+show active==mostra attivo
+Attribute==Attributo
+Comment==Commento
+Active==Attivo
+"API"=="API"
+"Required for proper operation"=="Richiesto un corretto funzionamento"
+"active"=="attivo"
+"disabled"=="disabilitato"
+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.==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.
+"Set"=="Imposta"
+"reindex Solr"=="reindex Solr"
+"reset selection to default"=="ripristina la selezione a default"
+#-----------------------------
+
+#File: IndexShare_p.html
+#---------------------------
+Index Sharing==Condivisione degli indici
+receive==ricevere
+"Set"=="Imposta"
+Index:==Indice:
+for each remote peer==per ogni peer remoto
+links/minute ==links/minute
+receive grant default:==ricevere la sovvenzione in stato di default:
+words/minute==words/minute
+distribute ==distribuisci
+#-----------------------------
+
+#File: IndexPackDownloader_p.html
+#---------------------------
+YaCy Pack Downloader==Downloader di pack YaCy
+Available Packs==pack disponibili
+File==File
+Process==Processo
+Repo ID==Repo ID
+Source==Fonte
+#-----------------------------
+
+#File: IndexPackManager_p.html
+#---------------------------
+YaCy Pack Manager==Gestore pack YaCy
+Pack Folders==Cartelle dei pack
+Process==Processo
+Size (KB)==Dimensione (KB)
+Packs: Hold List==Packs: Hold List
+Packs: Load List==Packs: Load List
+Packs: Loaded List==Packs: Loaded List
+#-----------------------------
+
+#File: IndexPackGenerator_p.html
+#---------------------------
+echo – micro-content (tweets, toots, short headlines, SMS corpora), podcasts, radio archives, audio lectures, spoken-word datasets, logs, incidents, telemetry==micro-contenuto (tweet, toots, brevi titoli, corporazioni degli SMS), podcast, archivi radio, lezioni audio, set di dati parlato-parola, registri, incidenti, telemetria
+scroll - non-technical documents: knowledge, encyclopedia, linguistic corpora, dictionaries, translation memories, texts, non-fiction books, historical books==scroll - documenti non tecnici: conoscenza, enciclopedie, corpora linguistici, dizionari, memorie di traduzione, testi, saggistica, libri storici
+spirit – related to non-textual data (possibly only metadata): art, music, game assets, creative-commons media (non-text culture loot)==spirit - relativo a dati non testuali (eventualmente solo metadati): arte, musica, asset di giochi, media Creative Commons
+core - technical documentation, operating systems, computer hardware, open source and free software, manuals, protocol standards==core - documentazione tecnica, sistemi operativi, hardware informatico, software open source e libero, manuali, standard di protocollo
+JSON (Rich and full-text Elasticsearch data, one document per line in one flat JSON file)==JSON(Rich and full-text Elasticsearch data, one document for line in one flatfile JSON)
+fiction - fictional documents: movies, stories, series, books (fiction, science-fiction)==finzione - documenti di fantasia: film, storie, serie, libri (fiction, fantascienza)
+vault - sensitive data: secrets, leaks, non-public documents, security advisories==vault - dati sensibili: segreti, leak, documenti non pubblici, avvisi di sicurezza
+XML (Rich and full-text Solr data, one document per line in one large xml file,==XML(dati Solr ricchi e full-text, un documento per riga in un grande file xml,
+regula - non-technical standards: industry standards, laws, rules, compliance==regula - standard non tecnici: standard industriali, leggi, regole, conformita
+can be processed with shell tools, can be imported with DATA/PACKS/load/)==puo essere elaborato con strumenti shell e importato con DATA/PACKS/load/)
+map - geological data, geolocation-data, earth/world information==map - dati geologici, dati di geolocalizzazione, informazioni sulla Terra/mondo
+mix - a mix of document types, for content from wide web crawls==mix - un mix di tipi di documenti, per contenuti provenienti da rastrelli web
+Slug - describe the content (only if collection is "user")==Slug - descrivere il contenuto (solo se la raccolta è "utente")
+gem - research, papers, university publications, science==gem - ricerca, articoli, pubblicazioni universitarie, scienza
+Set a Category (this goes into the filename)==Imposta una categoria (questo va nel nome del file)
+Index Pack Generator==Generatore di pack indice
+YaCy Pack Generator==Generatore pack YaCy
+Index Collection==Raccolta degli indici
+Search Query -==Interrogazione di ricerca -
+Export Format==Formato di esportazione
+URL Filter==URL Filter
+XML (RSS)==XML(RSS)
+Pack List==Elenco pack
+"info"=="info"
+Import this file by moving it to DATA/PACKS/load==Import this file by moving it to DATA/PACKS/load
+"Generate Data Pack"=="Generare il pack dati"
+Bulk-upload the index file:==Carica in massa il file indice:
+Create the search index:==Crea l'indice di ricerca:
+Make a search, get 10 results, search in fields text_t, title, description with boosts:==Esegue una ricerca, ottiene 10 risultati e cerca nei campi text_t, title, description con boost:
+Pack==Confezione
+Process==Processo
+Size (KB)==Dimensione (KB)
+Start docker container of opensearch:==Avviare docker contenitore di opensearch:
+This JSON is an elasticsearch index dump format and can be bulk-imported to elasticsearch. Here is an example for opensearch, using docker:==This JSON is an elasticsearch index dump format and can be bulk-imported to elasticsearch. Here is an example for opensearch, using docker:
+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"==Questo diventerà una parte del nome del file, gli spazi saranno sostituiti da "-"; non devono essere vuoti; dovrebbe finire con una descrizione della lingua, ad esempio "-en"
+Unblock index creation:==Creazione dell'indice di sblocco:
+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.==il nome della collezione è usato come parte del nome del file per descrivere il contenuto. Eccezione: se la collezione è "utente," allora è possibile nominare il contenuto con una lumaca.
+#-----------------------------
+
+#File: IndexExportImportSolr_p.html
+#---------------------------
+(This may take several minutes. Please be patient and wait until the page reloads.)==(Questo puo richiedere diversi minuti. Attendi finche la pagina non viene ricaricata.)
+An error occurred while trying to restore the Solr dump.==Si è verificato un errore durante il tentativo di ripristinare il dump Solr.
+An error occurred while trying to create the Solr dump.==Si è verificato un errore durante la creazione del dump Solr.
+Dump and Restore of Solr Index==Dump e ripristino dell'indice Solr
+Solr Index Export/Import==Solr Index Export/Import
+Dump File (full path)==File dump (percorso completo)
+"Create Dump"=="Create Dump"
+"Restore Dump"=="Ripristina dump"
+Could not create the Solr dump : no embedded Solr is available.==Could not create the Solr dump : no embedded Solr is available.
+Could not restore the Solr dump : no embedded Solr is available.==Could not restore the Solr dump : no embedded Solr is available.
+Successfully restored Solr index from dump file!==Ha ripristinato con successo l'indice Solr dal file di dump!
+This feature is available only when a local embedded Solr is active.==Questa funzione è disponibile solo quando è attivo un Solr locale incorporato.
+#-----------------------------
+
+#File: IndexImportJsonList_p.html
+#---------------------------
+JsonList File Selection: select an jsonlist file (which may be gz compressed)==Selezione file JsonList: selezionare un file jsonlist (che può essere compresso da gz)
+No import thread is running, you can start a new thread here==Nessun thread di importazione è in esecuzione, puoi avviare un nuovo thread qui
+JSON List Index Dump File Import==JSON List Index Dump File Import
+Remaining Time:==Tempo rimanente:
+Import Process==Processo di importazione
+JsonList File:==File JsonList:
+Running Time:==Tempo di esecuzione:
+Processed:==Trattamento:
+Speed:==Velocità:
+File:==File:
+Url:==Url:
+or==oppure
+Thread:==Thread:
+"Import JsonList File"=="Importa file JsonList"
+"Stop"=="Fermati"
+#-----------------------------
+
+#File: IndexImportWarc_p.html
+#---------------------------
+Warc File Selection: select an warc file (which may be gz compressed)==Selezione file Warc: selezionare un file warc (che può essere compresso da gz)
+No import thread is running, you can start a new thread here==Nessun thread di importazione è in esecuzione, puoi avviare un nuovo thread qui
+You can download warc archives for example here==È possibile scaricare gli archivi warc per esempio qui
+Web Archive File Import==Importa file di archivio web
+Remaining Time:==Tempo rimanente:
+Import Process==Processo di importazione
+Running Time:==Tempo di esecuzione:
+Collection:==Collezione:
+Processed:==Trattamento:
+Warc File:==File Warc:
+Speed:==Velocità:
+File:==File:
+Url:==Url:
+or==oppure
+"Import Warc File"=="Importa file Warc"
+"Stop"=="Fermati"
+Thread:==Thread:
+#-----------------------------
+
+#File: IndexImportZim_p.html
+#---------------------------
+No import thread is running, you can start a new thread here==Nessun thread di importazione è in esecuzione, puoi avviare un nuovo thread qui
+You can download ZIM files for example here==You can download ZIM files for example here
+Zim File Selection: select a '.zim' file==Selezione file Zim: selezionare un file '.zim'
+Remaining Time:==Tempo rimanente:
+ZIM File Import==ZIM File Import
+Import Process==Processo di importazione
+Running Time:==Tempo di esecuzione:
+Collection:==Collezione:
+Processed:==Trattamento:
+ZIM File:==ZIM File:
+Speed:==Velocità:
+File:==File:
+Thread:==Thread:
+"Import ZIM File"=="Import ZIM File"
+"Stop"=="Fermati"
+#-----------------------------
+
+#File: ConfigAccountList_p.html
+#---------------------------
+User Accounts==Account utenti
+User List==Elenco utenti
+Address==Indirizzo
+First name==Nome di battesimo
+Last Access==Ultimo accesso
+Last name==Cognome
+Rights==Diritti
+Time==Ora
+Traffic==Traffico
+User==Utente
+#-----------------------------
+
+#File: ConfigUser_p.html
+#---------------------------
+Username too short. Username must be >= 4 Characters.==Username too short. Username must be >= 4 Characters.
+Username already used (not allowed).==Nome utente già utilizzato (non consentito).
+Passwords do not match.==Le password non corrispondono.
+User Account Editor==Editor account utente
+back to user list==torna all'elenco utenti
+Generic error.==Errore generico.
+Rights:==Diritti:
+"Delete User"=="Elimina utente"
+"Save User"=="Salva utente"
+"ConfigAccountList_p.html"=="ConfigAccountList_p.html"
+Address==Indirizzo
+First name==Nome di battesimo
+Last name==Cognome
+Password==Password
+Repeat password==Ripetere la password
+Time used==Tempo utilizzato
+Timelimit==Termine
+Username==Nome utente
+#-----------------------------
+
+#File: ContentAnalysis_p.html
+#---------------------------
+The quantRate is a measurement for the number of words that take part in a signature computation. The higher the number, the less==quantRate e una misura del numero di parole che partecipano al calcolo della firma. Piu alto e il numero, meno
+For minTokenLen = 2 the quantRate value should not be below 0.24; for minTokenLen = 3 the quantRate value must be not below 0.5.==Per minTokenLen =2il valore QuantRate non deve essere inferiore a0.24; per minTokenLen =3il valore QuantRate non deve essere inferiore a0.5.
+This is the minimum length of a word which shall be considered as element of the signature. Should be either 2 or 3.==Questa e la lunghezza minima di una parola da considerare come elemento della firma. Dovrebbe essere 2 o 3.
+These are document analysis attributes.==Questi sono attributi di analisi dei documenti.
+words are used for the signature.==le parole sono usate per la firma.
+Content Analysis==Analisi dei contenuti
+minTokenLen==minTokenLen
+quantRate==QuantRate
+Double Content Detection==Rilevamento doppio contenuto
+Double-Content detection is done using a ranking on a 'unique'-Field, named 'fuzzy_signature_unique_b'.==Double-Content detection è fatto utilizzando una classifica su un 'unique'-Field, chiamato 'fuzzy_signature_unique_b'.
+"Re-Set to default"=="Riimposta a default"
+"Set"=="Imposta"
+#-----------------------------
+
+#File: CrawlMonitorRemoteStart.html
+#---------------------------
+Recently started remote crawls in progress==Crawl remoti avviati di recente in corso
+no==no
+yes==sì
+Accept '?' URLs==Accetta URL con ?
+Depth==Profondità
+Intention/Description==Intenzione/Descrizione
+Peer Name==Nome peer
+Remote crawl start points, crawl is ongoing==Punti di avvio del crawl remoto, crawl in corso
+Remote crawl start points, finished:==Punti di avvio del crawl remoto, completati:
+Start Time==Ora di inizio
+Start URL==Start URL
+#-----------------------------
+
+#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.==Quando un utente con diritti limitati (non autenticato o senza diritto di ricerca esteso) supera un limite, il ricorso ai risultati diventa applicabile solo su richiesta, lato server.
+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.==Quando un utente con diritti limitati (non autenticato o senza diritto di ricerca esteso) supera un limite, l'ambito di ricerca rientra solo in questo indice peer locale.
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the snippets fetch strategy falls back to 'CACHEONLY'==Quando un utente con diritti limitati (non autenticato o senza diritto di ricerca esteso) supera un limite, la strategia di recupero snippet rientra in "CACHEONLY"
+You can configure here limitations on access rate to this peer search interface by unauthenticated users and users without extended search right==È possibile configurare qui le limitazioni sulla velocità di accesso a questa interfaccia di ricerca peer da parte di utenti e utenti non autenticati senza il diritto di ricerca estesa
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the search is blocked.==Quando un utente con diritti limitati (non autenticato o senza diritto di ricerca esteso) supera un limite, la ricerca viene bloccata.
+Access rate limitations to the peer-to-peer search mode with browser-side JavaScript results resorting enabled==Limitazioni del tasso di accesso alla modalità di ricerca peer-to-peer con il browser-side JavaScript risultati ricorso abilitato
+Changes will take effect immediately.== Le modifiche avranno effetto immediatamente.
+Access rate limitations to the peer-to-peer search mode.==Limitazioni del tasso di accesso alla modalità di ricerca peer-to-peer.
+Access rate limitations to this peer search interface.==Limitazioni del tasso di accesso a questa interfaccia di ricerca tra peer.
+Peer-to-peer search with JavaScript results resorting==Ricerca peer-to-peer con JavaScript risultati ricorso
+Limitations on snippet loading from remote websites.==Limitazioni al caricamento di snippet da siti remoti.
+Local Search access rate limitations==Limitazioni del tasso di accesso alla ricerca locale
+Max searches in 10mn==Max searches in 10mn
+Max searches in 10mn==Ricerca massima in 10mn
+Max searches in 1mn==Max searches in 1mn
+Peer-to-peer search==Ricerca peer-to-peer
+Remote snippet load==Carico snippet remoto
+Max searches in 3s==Max searches in 3s
+Max searches in 3s==Ricerca massima in 3s
+limitations==limitazioni
+YaCy search==Ricerca YaCy
+"Set defaults"=="Imposta impostazioni predefinite"
+"Reset to defaults settings"=="Reimposta alle impostazioni predefinite"
+"Submit"=="Invia"
+#-----------------------------
+
+#File: Trails.html
+#---------------------------
+CyTag Trails==Sentieri CyTag
+#-----------------------------
+
+#File: TransNews_p.html
+#---------------------------
+You can share your local addition to translations and distribute it to other peers.==Puoi condividere la tua aggiunta locale alle traduzioni e distribuirla ad altri peer.
+Translation:==Traduzione:
+English:==Inglese:
+existing==esistente
+"negative vote"=="voto negativo"
+"positive vote"=="voto positivo"
+Originator==Originario
+Vote on this translation. If you vote positive the translation is added to your local translation list.==Vote on this translation. If you vote positive the translation is added to your local translation list.
+File:==File:
+The remote peer can vote on your translation and add it to its own local translation.==Il remoto peer può votare sulla vostra traduzione e aggiungerla alla propria traduzione locale.
+"Publish"=="Pubblica"
+#-----------------------------
+
+#File: VFS.html
+#---------------------------
+User storage in the browser cache with file-system-like navigation.==Memorizzazione utente nella cache del browser con navigazione tipo file system.
+No files yet. Upload a file or create a folder.==No files yet. Upload a file or create a folder.
+Virtual File System==File system virtuale
+Upload File==Carica file
+New Folder==Nuova cartella
+Edit file==Modifica file
+Preview==Anteprima
+Discard==Eliminare
+Save==Salva
+"File system browser"=="Browser del file system"
+"Root contents"=="Contenuti del piede"
+#-----------------------------
+
+#File: api/citation.html
+#---------------------------
+Similar documents from different hosts:==Documenti simili da diversi host:
+List of other web pages with citations==Elenco di altre pagine web con citazioni
+List of==Elenco di
+Cited==Citato
+filter cited sentences==filtro frasi citate
+filter off==filtra fuori
+#-----------------------------
+
+#File: YaCySearchPluginFF.html
+#---------------------------
+In Mozilla Firefox, you can the Search-Plugin via the search box on the toolbar. In Mozilla (Seamonkey) you can access the Search-Plugin via the Sidebar or the Location Bar.==In Mozilla Firefox, è possibile il Search-Plugin tramite la casella di ricerca sulla barra degli strumenti. In Mozilla (Seamonkey) è possibile accedere al Search-Plugin tramite la barra laterale o la barra posizione.
+Simply click on the link shown below to integrate the YaCy Firefox Search-Plugin into your browser.==Basta cliccare sul link qui sotto per integrare il plugin YaCy Firefox Search-Plugin nel browser.
+"YaCy-Logo"=="YaCy-Logo"
+Install the YaCy search plugin.==Installare il plugin di ricerca YaCy.
+YaCy Firefox Search-Plugin Installation:==Installazione del plugin di ricerca YaCy Firefox:
+#-----------------------------
+
+#File: env/templates/simpleSearchHeader.template
+#---------------------------
+external Community (Web Forums)==Comunità esterna (Forum Web)
+API Solr Default Core / JSON== API Solr Default Core / JSON
+API Solr Default Core / XML== API Solr Default Core / XML
+external Git Repository==Repository esterno Git
+external Download YaCy== esterno Scarica YaCy
+external Bugtracker== esterno Bugtracker
+JavaScript information==Informazioni JavaScript
+About This Page==Informazioni su questa pagina
+Compare Search==Confronta ricerca
+YaCy Tutorials==Tutorial YaCy
+File Search==Ricerca file
+Web Search==Ricerca web
+URL Viewer==URL Viewer
+"Help"=="Aiuto"
+"Log in to use extended search features"=="Accedere per utilizzare le funzionalità di ricerca estesa"
+Chat==Chat
+Search Interfaces==Interfacce di ricerca
+Toggle navigation==Commuta navigazione
+"Administration"=="Amministrazione"
+"Search Interfaces"=="Interfacce di ricerca"
+==
+API Solr RSS/Opensearch== API Solr RSS/Opensearch
+API Solr Webgraph Core / XML== API Solr Webgraph Core / XML
+API YaCy JSON== API YaCy JSON
+API YaCy RSS/Opensearch== API YaCy RSS/Opensearch
+Administration »==Amministrazione »
+Example Calls to the Search API:==Example Calls to the Search API:
+Log in==Accedi
+#-----------------------------
+
+#File: yacychat.html
+#---------------------------
+This Chat is private. YaCy does not keep any history — only your browser remembers the current conversation.==Questa chat è privata. YaCy non mantiene alcuna cronologia ® solo il browser ricorda la conversazione corrente.
+no search, allow attachments==nessuna ricerca, permetti allegati
+use global search==usa la ricerca globale
+use local search==usa la ricerca locale
+Download Chat==Scarica Chat
+Upload Chat==Carica chat
+Clear Chat==Pulisci conversazione
+YaCy Chat==Chat YaCy
+User==Utente
+"Attach a file"=="Attiva un file"
+"Attach search results by default"=="Attiva i risultati della ricerca per impostazione predefinita"
+"Clear chat"=="Chat pulita"
+"Download chat"=="Scarica chat"
+"Search"=="Cerca"
+"Send"=="Invia"
+"Show system prompt"=="Mostra prompt del sistema"
+"Upload chat"=="Carica chat"
+Attach PNG/JPG or text (.txt/.md/.tex)==Allega PNG/JPGo testo (.txt/.md/.tex)
+Attach Search Results==Allega i risultati della ricerca
+Default Dialog Augmentation:==Augmentazioni di dialogo predefinite:
+Show System==Mostra sistema
+#-----------------------------
+
+#File: jslicense.html
+#---------------------------
+License==Licenza
+Script==Script
+Source==Fonte
+YaCy JavaScript files license information==YaCy Informazioni sulla licenza dei file JavaScript
+YaCy JavaScript license information==YaCy JavaScript informazioni sulla licenza
+#-----------------------------
+
+#File: rct_p.html
+#---------------------------
+"retrieve"=="recuperare"
+Retrieve remote crawl url list==Recupera elenco URL crawl remoto
+Target Peer:==Peer bersaglio:
+remote crawl fetch test==prova di recupero crawl remoto
+select==seleziona
+#-----------------------------
+
+#File: yacysearchpagination.html
+#---------------------------
+"Next page"=="Pagina successiva"
+"Previous page"=="Pagina precedente"
+«==«
+»==»
+#-----------------------------
+
+#File: yacysearch_location.html
+#---------------------------
+The information that is presented on this page can also be retrieved as XML==Le informazioni presentate in questa pagina possono essere recuperate anche come XML
+Click the API icon to see the XML.==Click the API icon to see the XML.
+"API"=="API"
+search==ricerca
+"search"=="ricerca"
+#-----------------------------
+
+#File: api/push_p.html
+#---------------------------
+"Submit"=="Invia"
+Collection==Raccolta
+Content-Type==Tipo di contenuto
+Data==Dati
+Example usage is the direct attachment of a content management system to YaCy to push newly changed files directly to the YaCy indexer.==Esempio di utilizzo è l'allegato diretto di un sistema di gestione dei contenuti a YaCy per spingere i file modificati direttamente all'indexer YaCy.
+File Count==Conta file
+File Number==Numero file
+File Upload==Caricamento file
+Files to process:==File da elaborare:
+If you want to push again files, use this form to pre-define a number of upload forms:==Se si desidera spingere di nuovo i file, utilizzare questo modulo per predefinire un certo numero di moduli di caricamento:
+Item==Voce
+Last-Modified==Ultima modifica
+Media-Keywords ()==Media-Keywords ()
+Media-Title==Media-Titolo
+Message==Messaggio
+Result for the recently submitted file(s). You can also submit the same form using the servlet push_p.json to get push confirmations in json format.==Risultato per i file inviati di recente. E anche possibile inviare lo stesso modulo usando il servlet push_p.json per ottenere conferme push in formato JSON.
+Success==Successo
+The following attributes are only used for media type content==I seguenti attributi sono utilizzati solo per il contenuto del tipo di supporto
+This form can be used to upload a file and assign it to an url.==Questo modulo può essere utilizzato per caricare un file e assegnarlo a un URL.
+URL==URL
+commit==commit
+count==conta
+countfail==countfail
+countsuccess==conteggiosuccess
+fail==non riuscito
+false==falso
+ok==Ok.
+successall==successoall
+synchronous==sincrono
+true==vero
+#-----------------------------
+
+#File: env/grafics/donate.html
+#---------------------------
+"Donate!"=="Donate!"
+Github Sponsors==Sponsor Github
+Please support our work on YaCy!==Si prega di sostenere il nostro lavoro su YaCy!
+beneficial: 5 €==beneficial: 5 €
+generous: 25 €==generous: 25 €
+gracious: 50 €==gracious: 50 €
+#-----------------------------
+
+#File: processing/domaingraph/applet/index.html
+#---------------------------
+"Download Java Plug-in"=="Scarica Java Plug-in"
+"Processing.org"=="Processing.org"
+Built with Processing==Costruito con lavorazione
+Get the latest Java Plug-in here.==Ottieni l'ultimo plug-in Java qui.
+This browser does not have a Java Plug-in.==Questo browser non ha un plug-in Java.
+domaingraph : Built with Processing==domaingraph : Built with Processing
+#-----------------------------
+
+#File: proxymsg/urlproxyheader.html
+#---------------------------
+"add bookmark"=="aggiungi segnalibro"
+(Warning: secure target viewed over normal http)==(Attenzione: destinazione sicura visualizzata tramite normale HTTP)
+YaCy stop proxy==Proxy di arresto YaCy
+#-----------------------------
+
+#File: goto_p.html
+#---------------------------
+forward to remote peer==avanti al peer remoto
+forwarding==invio
+#-----------------------------
+
+#File: portalsearch/yacy-portalsearch.html
+#---------------------------
+YaCy Bookmarks==Segnalibri YaCy
+YaCy Portalsearch:==Ricerca portale YaCy:
+#-----------------------------
+
+#File: rssTerminal.html
+#---------------------------
+rss terminal==terminale rss
+#-----------------------------
diff --git a/locales/ja.lng b/locales/ja.lng
index d007f28e3..d9d2dbe30 100644
--- a/locales/ja.lng
+++ b/locales/ja.lng
@@ -8,47 +8,29 @@
# Frankfurt, Germany, 2005
#
-#File: ConfigLanguage_p.html
-#---------------------------
-# Thank you for your help!
-default(english)==Japanese
-
-#-----------------------------
-
#File: AccessGrid_p.html
#---------------------------
-YaCy Network Access==YaCy ネットワーク アクセス
Server Access Grid==サーヴァー アクセス グリッド
This images shows incoming connections to your YaCy peer and outgoing connections from your peer to other peers and web servers==この画像はあなたのYaCy ピアへの着信接続とあなたのピアから他のピアやウェブ サーヴァーへの発信接続を示します
#-----------------------------
#File: AccessTracker_p.html
#---------------------------
-Access Tracker==アクセス トラッカー
Server Access Overview==サーヴァー アクセス概要
-This is a list of #[num]# requests to the local http server within the last hour.==これは #[num]# ローカル http サーヴァーへの直近の1時間のリクエストの一覧です.
This is a list of requests (max. 1000) to the local http server within the last hour.==これはローカル http サーヴァーへの直近の1時間のリクエスト (max. 1000) の一覧です.
-Showing #[num]# requests.== #[num]# のリクエストを表示しています.
-#>Host<==>ホスト<
->Path<==>パス<
-Date<==日時<
Access Count During==アクセス計測の期間
last Second==最後の1秒
last Minute==最後の1分
last 10 Minutes==最後の10分
last Hour==最後の1時間
The following hosts are registered as source for brute-force requests to protected pages==次のホストは保護されたページヘのブルート-フォース リクエストのソースとして登録されています
-#>Host==>ホスト
Access Times==アクセス回数
Server Access Details==サーヴァー アクセスの詳細
Local Search Log==ローカル検索ログ
Local Search Host Tracker==ローカル検索ホスト トラッカー
Remote Search Log==リモート検索ログ
-#Total:==合計:
-Success:==成功:
Remote Search Host Tracker==リモート検索ホスト トラッカー
This is a list of searches that had been requested from this' peer search interface==これはこのピアの検索インターフェースからリクエストされた検索の一覧です.
-Showing #[num]# entries from a total of #[total]# requests.==合計 #[total]# のリクエストから #[num]# エントリーを表示しています.
Requesting Host==リクエストしているホスト
Offset==オフセット
Expected Results==期待される結果
@@ -58,43 +40,25 @@ Used Time (ms)==使用された時間 (ミリ秒)
URL fetch (ms)==URL フェッチ (ミリ秒)
Snippet comp (ms)==スニペット作成 (ミリ秒)
Query==クエリー
-#>User Agent<==>ユーザー エージェント<
Search Word Hashes==検索語のハッシュ
-Count==カウント
Queries Per Last Hour==最後の1時間毎のクエリー
Access Dates==アクセスの日時
-This is a list of searches that had been requested from remote peer search interface==これはリモート ピアの検索インターフェースからリクエストされた検索の一覧です.
+This is a list of searches that had been requested from remote peer search interface==これはリモート ピアの検索インターフェースからリクエストされた検索の一覧です.
#-----------------------------
#File: Settings_UrlProxyAccess.inc
#---------------------------
-Augmented Browsing<==増強されたブラウジング<
-URL Proxy Settings<==URL プロキシ設定<
-With this settings you can activate or deactivate URL proxy which is the method used for augmentation.==この設定であなたは増強の為に使用される方法であるURL プロキシを有効化または無効化できます.
-Service call: ==サーヴィス コール:
-, where parameter is the url of an external web page.==, ここでパラメーターは外部のウェブ ページのURLです.
-#URL proxy:==URL プロキシ:
->Enabled<==>有効<
-Globally enables or disables URL proxy via ==次を経由するURL プロキシをグローバルに有効化または無効化する:
Show search results via URL proxy:==次のURL プロキシを経由する検索結果を表示する:
Enables or disables URL proxy for all search results. If enabled, all search results will be tunneled through URL proxy.==全ての検索結果のURL プロキシを有効化または無効化する. もし有効の場合、全ての検索結果はURL プロキシをトンネルされます.
Restrict URL proxy use:==次を使用してURL プロキシを制限します:
-Define client filter. Default: ==クライアント フィルターを定義します. 既定:
URL substitution:==URLの置換:
Define URL substitution rules which allow navigating in proxy environment. Possible values: all, domainlist. Default: domainlist.==プロキシ環境でのナヴィゲーティングを可能にするURL置換の規則を定義します. 可能な値: all, domainlist. 既定: domainlist.
"Submit"=="確定する"
-Augmented Browsing Settings==増強されたブラウジングの設定
-With this settings you can activate or deactivate augmented browsing which happens usually via the URL proxy.==この設定であたなはURL プロキシを経由して通常起きる増強されたブラウジングを有効化または無効化できます.
-Augmented Browsing:==増強されたブラウジング:
-#>Enabled<==>有効<
-Enables or disables augmented browsing. If enabled, all websites will be modified during loading.==増強されたブラウジングの有効化または無効化. もし有効の場合、全てのウェブサイトは読み込みの間に変更されます.
-#"Submit"=="確定する"
#-----------------------------
#File: Blacklist_p.html
#---------------------------
Blacklist Administration==ブラックリスト管理
-#Used Blacklist engine:==使用されたブラックリスト エンジン:
This function provides an URL filter to the proxy; any blacklisted URL is blocked==この機能はプロキシにURL フィルターを提供します; ブラックリストに載ったいかなるURLもブロックします.
from being loaded. You can define several blacklists and activate them separately.==あなたは幾つかのブラックリストを定義してそれらを個別に有効化する事ができます.
You may also provide your blacklist to other peers by sharing them; in return you may==あなたはあなたのブラックリストを共有する事により他のピアに提供する事もできます.
@@ -102,35 +66,15 @@ collect blacklist entries from other peers.==他のピアからブラックリ
Active list:==アクティヴなリスト:
No blacklist selected==どのブラックリストも選択されていません
Select list to edit:==編集するリストを選択する:
-not shared::shared==共有されていません::共有されています
-"select"=="選択する"
Create new list:==新規のリストを作成する:
"create"=="作成する"
-Settings for this list==このリストの設定
"Save"=="保存する"
-Share/don't share this list==このリストを共有する/共有しない
-Delete this list==このリストを削除する
-Edit list==リストを編集する
-These are the domain name/path patterns in==これらは次の中のドメイン名/パスのパターンです
Blacklist Pattern==ブラックリストのパターン
Edit selected pattern(s)==選択されたパターンを編集する
Delete selected pattern(s)==選択されたパターンを削除する
Move selected pattern(s) to==選択されたパターンを次の所へ移動する
-#You can select them here for deletion==あなたはここで削除する為にそれらを選択できます
Add new pattern:==新規のパターンを追加する:
"Add URL pattern"=="URLのパターンを追加する"
-The right '*', after the '/', can be replaced by a=='/' の後の '*' は次のもので置き換える事ができます
->regular expression<==>正規表現<
-domain.net/fullpath<==domain.net/フルパス<
-#>domain.net/*<==>domain.net/*<
-#*.domain.net/*<==*.domain.net/*<
-#*.sub.domain.net/*<==*.sub.domain.net/*<
-#sub.domain.*/*<==sub.domain.*/*<
-#domain.*/*<==domain.*/*<
-(slow)==(遅い)
-#was removed from blacklist==はブラックリストから削除されました
-#was added to the blacklist==はブラックリストに追加されました
-Activate this list for==次の為にこのリストを有効化する
Show entries:==エントリーを表示する:
Entries per page:==ページ毎のエントリー:
"set"=="設定する"
@@ -146,11 +90,7 @@ Check list==リストをチェックする
"Check"=="チェックする"
Allow regular expressions in host part of blacklist entries.==ブラックリスト エントリーのホスト部分での正規表現を許可する.
The blacklist-cleaner only works for the following blacklist-engines up to now:==ブラックリスト-クリーナーは次の今までのブラックリスト-エンジンの為に働くだけです:
-Illegal Entries in #[blList]# for==次の為の #[blList]# の中の不正なエントリー
-Deleted #[delCount]# entries==#[delCount]# のエントリーを削除しました
-Altered #[alterCount]# entries!==#[alterCount]# の変更されたエントリー
Two wildcards in host-part==ホスト部分での2つのワイルドカード
-Either subdomain or wildcard==または ワイルドカードのどちらかのサブドメイン
Path is invalid Regex==パスが無効な正規表現です
Wildcard not on begin or end==始めまたは終わりではないワイルドカード
Host contains illegal chars==ホストが不正な文字を含んでいます
@@ -162,13 +102,10 @@ No Blacklist selected==ブラックリストが選択されていません
#File: BlacklistImpExp_p.html
#---------------------------
-#Blacklist Import==ブラックリストの取り込み
Used Blacklist engine:==使用されるブラックリスト エンジン:
Import blacklist items from...==次の場所からブラックリスト項目を取り込む
other YaCy peers:==他のYaCy ピア:
"Load new blacklist items"=="新しいブラックリスト項目を読み込む"
-#URL:==URL:
-plain text file:<==プレーン テキスト ファイル:<
XML file:==XML ファイル:
Upload a regular text file which contains one blacklist entry per line.==行毎に1つのブラックリストのエントリーを含む通常のテキスト ファイルをアップロードします.
Upload an XML file which contains one or more blacklists.==1つ以上のブラックリストを含むXML ファイルをアップロードします.
@@ -177,7 +114,6 @@ Here you can export a blacklist as an XML file. This file will contain additiona
information about which cases a blacklist is activated for.==このファイルはブラックリストがどの事例の為に有効化されるのかという追加の情報を含むでしょう.
"Export list as XML"=="XMLとしてリストを書き出す"
Here you can export a blacklist as a regular text file with one blacklist entry per line.==ここであなたは1行につき1つのブラックリスト エントリーの通常のテキスト ファイルとしてブラックリストを書き出す事ができます.
-This file will not contain any additional information==このファイルはいかなる追加の情報も含まないでしょう
"Export list as text"=="リストをテキストとして書き出す"
#-----------------------------
@@ -187,86 +123,49 @@ Blacklist Test==ブラックリスト テスト
Used Blacklist engine:==使用されるブラックリスト エンジン:
Test list:==リストを試す:
"Test"=="試す"
-The tested URL was==試したURLは次のものです
It is blocked for the following cases:==それは次の事例の為にブロックされます:
-#Crawling==クローリング
-#DHT==DHT
-#News==ニューズ
-#Proxy==プロキシ
Search==検索
Surftips==サーフティップス
#-----------------------------
#File: Blog.html
+Edit==編集
#---------------------------
-#by==by
-Comments==コメント
->edit==>編集
->delete==>削除
-Edit<==編集<
-previous entries==前のエントリー
-next entries==次のエントリー
-new entry==新しいエントリー
-import XML-File==XML-ファイルの取り込み
-export as XML==XMLとして書き出す
-Comments==コメント
Blog-Home==ブログ-ホーム
Author:==著者:
Subject:==題名:
-#Text:==テキスト:
-You can use==あなたはここで
-Yacy-Wiki Code==YaCy-Wiki コード
-here.==を使用できます.
Comments:==コメント:
deactivated==無効化されたもの
->activated==>有効化されたもの
moderated==変更されたもの
"Submit"=="確定する"
"Preview"=="プレヴュー"
"Discard"=="廃棄する"
->Preview==>プレヴュー
No changes have been submitted so far!==まだ変更が確定されていません!
Access denied==アクセスが拒否されました
To edit or create blog-entries you need to be logged in as Admin or User who has Blog rights.==ブログ-エントリーを編集または作成する為にあなたはブログの権利を持つ管理者またはユーザーとしてログインする必要があります.
-Are you sure==あなたは次のものを削除したいという事で
-that you want to delete==宜しいですか
Confirm deletion==削除を確認する
-Yes, delete it.==はい、それを削除します.
-No, leave it.==いいえ、それをそのままにして下さい.
Import was successful!==取り込みは成功しました!
Import failed, maybe the supplied file was no valid blog-backup?==取り込みは失敗しました。おそらく供給されたファイルは有効なブログ-バックアップではなかったのではないでしょうか?
Please select the XML-file you want to import:==あなたが取り込みたいXML-ファイルを選択して下さい:
#-----------------------------
#File: BlogComments.html
+Comments:==コメント:
#---------------------------
-#by==by
-Comments==コメント
-Login==ログイン
Blog-Home==ブログ-ホーム
-delete==削除
-allow==許可
Author:==著者:
Subject:==題名:
-#Text:==テキスト:
-You can use==あなたはここで
-Yacy-Wiki Code==YaCy-Wiki コード
-here.==を使用できます.
"Submit"=="確定する"
"Preview"=="プレヴュー"
"Discard"=="廃棄する"
#-----------------------------
#File: Bookmarks.html
+"Save"=="保存する"
#---------------------------
-YaCy '#[clientname]#': Bookmarks==YaCy '#[clientname]#': ブックマーク
The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.==ブックマークのリストはRSS フィードとして取得する事もできます. あなたが特定のタグを選択する時にこれを行う事もできます.
Click the API icon to load the RSS from the current selection.==現在選択されているものからRSSを読み込むにはAPIのアイコンをクリックして下さい.
-To see a list of all APIs, please visit the API wiki page.==全てのAPIの一覧を見る為には、API wiki ページを訪問して下さい.
-
Bookmarks==
ブックマーク
-Bookmarks (==ブックマーク (
-#Login==ログイン
List Bookmarks==ブックマークをリストにする
Add Bookmark==ブックマークを追加する
Import Bookmarks==ブックマークを取り込む
@@ -274,37 +173,26 @@ Import XML Bookmarks==XML ブックマークを取り込む
Import HTML Bookmarks==HTML ブックマークを取り込む
"import"=="取り込む"
Default Tags:==既定のタグ
-imported==読み込まれたもの
-#Edit Bookmark==ブックマークを編集する
-#URL:==URL:
Title:==題名:
Description:==説明:
Folder (/folder/subfolder):==フォルダー (/フォルダー/サブフォルダー):
Tags (comma separated):==タグ (コンマで区切られたもの):
->Public:==>パブリック:
yes==はい
no==いいえ
Bookmark is a newsfeed==ブックマークはニューズフィードです
"create"=="作成"
-"edit"=="編集"
File:==ファイル:
-import as Public==パブリックとして取り込む
"private bookmark"=="プライヴェート ブックマーク"
"public bookmark"=="パブリック ブックマーク"
-Tagged with==次のものでタグ付けされたもの:
-'Confirm deletion'=='削除を確認する'
Edit==編集
Delete==削除
Folders==フォルダー
Bookmark Folder==ブックマーク フォルダー
-#Tags==Tags
Bookmark List==ブックマークのリスト
previous page==前のページ
next page==次のページ
-All==全部
Show==表示する
Bookmarks per page.==ページ毎のブックマーク.
-#unsorted==ソートされていないもの
start autosearch of new bookmarks==新しいブックマークの自動検索を開始する
This starts a search of new or modified bookmarks since startup==これは "search" フォルダー内で "query=<original_search_term>" で
in folder "search" with "query=<original_search_term>"==起動してからの新しいまたは編集されたブックマークの検索を開始します
@@ -332,13 +220,9 @@ Search Result==検索結果
#---------------------------
User Accounts==ユーザーのアカウント
User Administration==ユーザーの管理
-User created:==作成されたユーザー:
-User changed:==変更されたユーザー:
Generic error.==一般的なエラー.
Passwords do not match.==パスワードが一致しません.
Username too short. Username must be >= 4 Characters.==ユーザー名が短過ぎます. ユーザー名 >= 4文字 でなければなりません.
-No password is set for the administration account.==管理アカウントの為に設定されたパスワードがありません.
-Please define a password for the admin account.==管理アカウントの為のパスワードを定めて下さい.
Admin Account==Admin Konto
Access from localhost without account==アカウント無しでのローカルホストからのアクセス
Access to your peer from your own computer (localhost access) is granted with administrator rights. No need to configure an administration account.==あなたの自分のコンピュータ(ローカルホストアクセス)からピアへのアクセスは管理者権限を付与されています. 管理アカウントを構成する必要はありません.
@@ -349,111 +233,60 @@ Repeat Peer Password:==ピアのパスワードを繰り返して下さい:
"Define Administrator"=="管理者を定義する"
Select user==ユーザーを選択する
New user==新規のユーザー
-Edit User==ユーザーを編集する
-Delete User==ユーザーを削除する
-Edit current user:==現在のユーザーを編集する:
-Username==ユーザー名
-Password==パスワード
Repeat password==パスワードを繰り返して下さい
First name==名
Last name==姓
Address==住所
-Rights==権利
Timelimit==期限
Time used==使われた時間
-Save User==ユーザーを保存する
#-----------------------------
#File: ConfigAppearance_p.html
+Text==テキスト
#---------------------------
Appearance and Integration==外観と統合
You can change the appearance of the YaCy interface with skins.==あなたはスキンによってYaCyのインターフェースの外観を変更する事ができます.
-#You can change the appearance of YaCy with skins==あなたはスキンによってYaCyのインターフェースの外観を変更する事ができます
The selected skin and language also affects the appearance of the search page.==選択されたスキンと言語は検索ページの外観にも影響を与えます.
-If you create a search portal with YaCy then you can==もしあなたがYaCyで検索ポータルを作成するならば
change the appearance of the search page here.==ここで検索ページの外観を変更できます.
-#and the default icons and links on the search page can be replaced with you own.==そして検索ページの既定のアイコンとリンクを自分のもので置き換える事ができます.
Skin Selection==スキンの選択
-Select one of the default skins, download new skins, or create your own skin.==既定のスキンの1つを選択する, 新しいスキンをダウンロードする, または自分のスキンを作成する.
Current skin==現在のスキン
Available Skins==利用可能なスキン
"Use"=="使用する"
"Delete"=="削除する"
->Skin Color Definition<==>スキンの色の定義<
The generic skin 'generic_pd' can be configured here with custom colors:==一般のスキン 'generic_pd' はここでカスタム カラーによる構成ができます:
->Background<==>背景<
-#>Text<==>テキスト<
->Legend<==>凡例<
->Table Header<==>テーブル ヘッダー<
->Table Item<==>テーブル 項目<
->Table Item 2<==>テーブル 項目 2<
->Table Bottom<==>テーブル ボトム<
->Border Line<==>境界 線<
->Sign 'bad'<==>サイン '悪い'<
->Sign 'good'<==>サイン '良い'<
->Sign 'other'<==>サイン 'その他'<
->Search Headline<==>検索 ヘッドライン<
->Search URL==>検索 URL
"Set Colors"=="色を設定する"
-#>Skin Download<==>スキンのダウンロード<
-Skins can be installed from download locations==スキンはダウンロードする場所からインストールする事ができます
Install new skin from URL==URLから新しいスキンをインストールする
Use this skin==このスキンを使用する
"Install"=="インストール"
Make sure that you only download data from trustworthy sources. The new Skin file==あなたは信頼できる提供元からのみデータをダウンロードするようにして下さい.
might overwrite existing data if a file of the same name exists already.==新しいスキン ファイルは既に同名のファイルが存在する場合には既存のデータを上書きするかもしれません.
->Unable to get URL:==>URLを取得できません:
Error saving the skin.==スキンの保存でのエラー.
#-----------------------------
#File: ConfigBasic.html
#---------------------------
-Access Configuration==アクセスの構成
Basic Configuration==基本的な構成
Your YaCy Peer needs some basic information to operate properly==あなたのYaCy ピアは正常に動作する為に幾つかの基本的な情報を必要とします
-Select a language for the interface==インターフェースの為の言語を選択して下さい
Use Case: what do you want to do with YaCy:==使用例: あなたはYaCyで何をする事を望みますか:
Community-based web search==コミュニティに基づくウェブ検索
Join and support the global network 'freeworld', search the web with an uncensored user-owned search network==グローバル ネットワーク 'フリーワールド' に加わり支援する, ユーザーが所有する検閲を受けていない検索ネットワークでウェブを検索する
Search portal for your own web pages==あなた自身のウェブ ページの為の検索ポータル
Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.==あなたのYaCyのインストレーションは他のピアから独立的に振る舞い、あなたは自分のウェブ クロールを開始する事により自身のウェブの索引を定義します. これはあなた自身のウェブ ページの検索またはトピック指向の検索ポータルの定義の為に使用できます.
-Files may also be shared with the YaCy server, assign a path here:==ファイルはYaCy サーヴァーと共有する事もできます, ここでパスを割り当てて下さい:
-This path can be accessed at ==このパスは次の所でアクセスできます
-Use that path as crawl start point.==そのパスをクロールの開始点として使用する.
Intranet Indexing==イントラネットの索引付け
-Create a search portal for your intranet or web pages or your (shared) file system.==あなたのイントラネットまたはウェブ ページまたはあなたの(共有された)ファイル システムの為の検索ポータルを作成する.
-URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form==URLは http/https/ftp そしてローカル ドメイン名またはIP, または次の形式のURLと共に使用できます
-or smb:==またはsmb:
Your peer name has not been customized; please set your own peer name==あなたのピア名はカスタマイズされていません; どうぞ自身のピア名を設定して下さい
You may change your peer name==あなたは自分のピア名を変更する事ができます
Peer Name:==ピア名:
-Your peer cannot be reached from outside==あなたのピアは外部から届く事ができません
-which is not fatal, but would be good for the YaCy network==これは致命的ではなく, YaCy ネットワークにとっては問題無いでしょう
-please open your firewall for this port and/or set a virtual server option in your router to allow connections on this port==どうぞこのポートの為にあなたのファイアーウォールを開いて、そして/または、このポートの接続を許可する為にあなたのルーターの仮想サーヴァーのオプションを設定して下さい
Your peer can be reached by other peers==あなたのピアは他のピアから届く事ができます
Peer Port:==ピアのポート:
-with SSL==SSLを用いる
-https enabled==httpsが利用可能
- on port == on ポート
Configure your router for YaCy using UPnP:==UPnPを使用してYaCyの為にあなたのルーターを構成する:
Configuration was not successful. This may take a moment.==構成は成功しませんでした. これには少々時間が掛かるかもしれません.
-Set Configuration==構成を設定する
What you should do next:==あなたが次にするべき事:
-Your basic configuration is complete! You can now (for example)==あなたの基本的な構成は完了しました! あなたは今次の事ができます (例)
-start an uncensored search==検閲を受けていない検索を開始する
-start your own crawl and contribute to the global index, or create your own private web index==自分のクロールを開始してグローバルな索引に貢献する, または自分のプライヴェートなウェブの索引を作成する
-set a personal peer profile (optional settings)==個人的なピアのプロファイルを設定する (オプショナルな設定)
-just monitor at the network page what the other peers are doing==ただ単に他のピアがしている事をネットワークのページでモニターする
Your Peer name is a default name; please set an individual peer name.==あなたのピア名は既定の名前です; どうぞ個人的なピア名を設定して下さい.
-You did not set a user name and/or a password.==あなたはユーザー名及び/またはパスワードを設定していません.
-Some pages are protected by passwords.==幾つかのページはパスワードによって保護されています.
-You should set a password at the Accounts Menu to secure your YaCy peer.::==あなたはあなたのYaCy ピアの安全の為にアカウント メニューでパスワードを設定するべきです.::
-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 recommended.==あなたはあなたのピアをポートの開放をせずに使用する事もできます, ですがこれは推奨されません.
#-----------------------------
#File: ConfigHeuristics_p.html
+"Save"=="保存する"
+Comment==コメント
#---------------------------
Heuristics Configuration==ヒューリスティクスの構成
#-----------------------------
@@ -466,7 +299,6 @@ Cleanup==クリーンアップ
Cache Deletion==キャッシュの削除
Delete HTTP & FTP Cache==HTTP & FTPのキャッシュを削除する
Delete robots.txt Cache==robots.txtのキャッシュを削除する
-Delete cached snippet-fetching failures during search==検索の間にキャッシュされたスニペット取得の失敗を削除する
"Delete"=="削除"
#-----------------------------
@@ -474,31 +306,23 @@ Delete cached snippet-fetching failures during search==検索の間にキャッ
#---------------------------
Language selection==言語の選択
You can change the language of the YaCy-webinterface with translation files.==あなたは翻訳ファイルによってYaCy-ウェブインターフェースの言語を変更する事ができます.
-Current language==現在の言語
-#default(english)==既定(english)
-Author(s) (chronological)==著者 (時間順)
-Send additions to maintainer
管理
System Administration==システムの管理
Index Administration==索引の管理
Filter & Blacklists==フィルター & ブラックリスト
@@ -1464,13 +850,7 @@ Ranking and Heuristics==順位付けとヒューリスティクス
#File: env/templates/simpleheader.template
#---------------------------
-#Administration<==管理<
->Web Search<==>ウェブ検索<
->File Search<==>ファイル検索<
->Compare Search<==>検索を比較する<
->Index Browser<==>索引ブラウザー<
About This Page==私達について
-Help / YaCy Wiki==ヘルプ / YaCy ウィキ
#-----------------------------
#File: env/templates/submenuAccessTracker.template
@@ -1480,11 +860,7 @@ Server Access==サーヴァー アクセス
Access Grid==アクセス グリッド
Incoming Requests Overview==着信したリクエストの概要
Incoming Requests Details==着信したリクエストの詳細
-All Connections<==全ての接続<
-Local Search<==ローカル検索<
-#Log==ログ
Host Tracker==ホスト トラッカー
-Remote Search<==リモート検索<
Cookie Menu==Cookie メニュー
#-----------------------------
@@ -1495,50 +871,14 @@ Blacklist Administration==ブラックリストの管理
Blacklist Cleaner==ブラックリスト クリーナー
Blacklist Test==ブラックリストのテスト
Import/Export==読み込み/書き出し
-Content Control==コンテントの制御
-#-----------------------------
-
-#File: env/templates/submenuComputation.template
-#---------------------------
->Application Status<==>アプリケーションの状態<
->Computation Monitor<==>計算モニター<
-## System Submenu
->System<==>システム<
->Status<==>状態<
-## Processes Submenu
->Processes<==>プロセス<
->Server Log<==>サーヴァー ログ<
->Thread Dump<==>スレッドのダンプ<
->Concurrent Indexing<==>同時並行の索引付け<
->Memory Usage<==>メモリーの使用方法<
->Search Sequence<==>検索シークエンス<
-## Messages Submenu
->Messages<==>メッセージ<
->Overview<==>概要<
->Incoming News<==>着信ニューズ<
->Processed News<==>処理されたニューズ<
->Outgoing News<==>発信ニューズ<
->Published News<==>公開されたニューズ<
-## Community Data Submenu
->Community Data<==>コミュニティ データ<
->Surftips<==>サーフティップス<
->Local Peer Wiki<==>ローカル ピア ウィキ<
#-----------------------------
#File: env/templates/submenuConfig.template
#---------------------------
System Administration==システムの管理
#UNUSED HERE
-#Peer Administration Console==ピア管理コンソール
-#Status==状態
-Network Configuration==ネットワークの構成
-Download System Update==システムの更新をダウンロードする
->Performance==>パフォーマンス
Advanced Settings==高度な設定
-Local robots.txt==ローカル robots.txt
-#Web Cache==ウェブのキャッシュ
Advanced Properties==高度な属性
-#>Thread Dump<==>スレッドのダンプ<
#-----------------------------
#File: env/templates/submenuCrawler.template
@@ -1548,103 +888,46 @@ Site Crawling==サイトのクローリング
Parser Configuration==構文解析器の構成
#-----------------------------
-#File: env/templates/submenuCrawlMonitor.template
-#---------------------------
-Overview==概要
-Receipts==受理
-Queries==クエリー
-DHT Transfer==DHTの転送
-#-----------------------------
-
-#File: env/templates/submenuDesign.template
-#-----------------------------
->Appearance==>外観
->Language==>言語
->Search Page Layout==>検索ページのレイアウト
-#-----------------------------
-
#File: env/templates/submenuIndexControl.template
#---------------------------
Index Administration==索引の管理
URL Database Administration==URL データベースの管理
Index Deletion==索引の削除
Index Sources & Targets==索引のソース & 対象
-#Solr Schema Editor==Solr スキーマ エディター
Field Re-Indexing==フィールドの再索引付け
Reverse Word Index==逆引き単語索引
-Index Cleaner==索引クリーナー
Content Analysis==コンテントの解析
-Web Cache==ウェブ キャッシュ
-Parser Configuration==パーサーの構成
#-----------------------------
#File: env/templates/submenuIndexCreate.template
#---------------------------
-#Web Crawler Control==ウェブ クローラーの制御
-#Start a Web Crawl==ウェブのクロールを開始する
-#Crawl Start==クロールを開始する
-#Crawl Profile Editor==クロール プロファイル エディター
-#Crawler Queues==クローラー キュー
-#Indexing<==索引付け<
-#Loader<==ローダー<
-#URLs to be processed==処理されるURL
-#Processing Queues==処理しているキュー
-#Local<==ローカル<
-#Global<==グローバル<
-#Remote<==リモート<
-#Overhang<==オーヴァーハング<
-#Media Crawl Queues==メディア クロール キュー
-#>Images==>画像
-#>Movies==>動画
-#>Music==>音楽
#--- New menu items ---
-Index Creation==索引の作成
-#Crawler/Spider<==クローラー/スパイダー<
-Full Site Crawl==全てのサイトのクロール
-Sitemap Loader==サイトマップ ローダー
-Crawl Start (Expert)==クロールの開始 (エキスパート)
-Network Scanner==ネットワーク スキャナー
-#>Intranet Scanner<==>イントラネット スキャナー<
Crawl Start (Expert)==クロールの開始 (エキスパート)
Crawling of MediaWikis==メディアウィキのクローリング
Crawling of phpBB3 Forums==phpBB3 フォーラムのクローリング
-Index Export/Import<==索引の書き出し/読み込み<
-Network Harvesting<==ネットワーク ハーヴェスティング<
Network Scanner==ネットワーク スキャナー
Remote Crawling==リモート クローリング
Scraping Proxy==スクラッピング プロキシ
-Database Reader<==データベース リーダー<
-for phpBB3 Forums==for phpBB3 フォーラム
-Dump Reader for==次のもののダンプ リーダー
-#MediaWiki dumps==メディアウィキ ダンプ
#-----------------------------
#File: env/templates/submenuPublication.template
+Blog==ブログ
#---------------------------
Publication==公開
-#Wiki==ウィキ
-#Blog==ブログ
-File Hosting==ファイルのホスティング
#-----------------------------
#File: env/templates/submenuSemantic.template
#---------------------------
Content Semantic==コンテント セマンティック
# Subemenu: Automated Annotation
->Automated Annotation<==>自動化されたアノテーション<
Auto-Annotation Vocabulary Editor==自動アノテーションの語彙エディター
Knowledge Loader==ナレッジ ローダー
# Submenu Augmented Content
->Augmented Content<==>増強されたコンテント<
-Augmented Browsing==増強されたブラウジング
-Filters and Modules==フィルターとモジュール
-Augmented Parsing==増強されたパーシング
#-----------------------------
#File: env/templates/submenuTargetAnalysis.template
#---------------------------
Target Analysis==対象の解析
-Robots.txt Database==Robots.txt データベース
Mass Crawl Check==大量のCrawlの確認
Regex Test==正規表現のテスト
#-----------------------------
@@ -1653,11 +936,11 @@ Regex Test==正規表現のテスト
#---------------------------
Use Case & Accounts==使用例 & アカウント
Basic Configuration==基本的な構成
->Accounts<==>アカウント<
Network Configuration==ネットワークの構成
#-----------------------------
#File: env/templates/submenuWebStructure.template
+Index Browser==索引ブラウザー
#---------------------------
Web Visualization==ウェブの視覚化
Web Structure==ウェブの構造
@@ -1667,8 +950,6 @@ Image Collage==画像のコラージュ
#File: proxymsg/authfail.inc
#---------------------------
Your Username/Password is wrong.==あなたの ユーザー名/パスワード は間違っています.
-Username==ユーザー名
-Password==パスワード
"login"=="ログイン"
#-----------------------------
@@ -1680,35 +961,252 @@ unspecified error==不特定のエラー
not-yet-assigned error==未割り当てのエラー
You don't have an active internet connection. Please go online.==あなたは有効なインターネット接続がありません. どうぞオンラインにして下さい.
Could not load resource. The file is not available.==リソースを読み込めませんでした. ファイルが利用できません.
-Exception occurred==例外が発生しました
-Generated #[date]# by==生成された #[date]# by
#-----------------------------
#File: proxymsg/proxylimits.inc
#---------------------------
Your Account is disabled for surfing.==あなたのアカウントはサーフィンでは無効です.
-Your Timelimit (#[timelimit]# Minutes per Day) is reached.==あなたはタイムリミット (1日当たり #[timelimit]# 分) に達しています.
#-----------------------------
#File: proxymsg/unknownHost.inc
#---------------------------
-The server==サーヴァー
-could not be found.==見つかりませんでした.
Did you mean:==もしかして:
#-----------------------------
-#File: js/Crawler.js
+#File: Autocrawl_p.html
#---------------------------
-"Continue this queue"=="このキューを続ける"
-"Pause this queue"=="このキューを一時停止する"
+"Save"=="保存する"
#-----------------------------
-#File: js/yacyinteractive.js
+#File: ConfigAccountList_p.html
#---------------------------
->total results==>総合的な結果
- topwords:== トップワード:
->Name==>名前
->Size==>大きさ
->Date==>日時
+Address==住所
+First name==名
+Last name==姓
+User Accounts==ユーザーのアカウント
#-----------------------------
+#File: ConfigUser_p.html
+#---------------------------
+Address==住所
+First name==名
+Generic error.==一般的なエラー.
+Last name==姓
+Passwords do not match.==パスワードが一致しません.
+Repeat password==パスワードを繰り返して下さい
+Time used==使われた時間
+Timelimit==期限
+Username too short. Username must be >= 4 Characters.==ユーザー名が短過ぎます. ユーザー名 >= 4文字 でなければなりません.
+#-----------------------------
+
+#File: Connections_p.html
+#---------------------------
+Incoming Connections==着信接続
+#-----------------------------
+
+#File: ContentAnalysis_p.html
+#---------------------------
+"Set"=="設定"
+Content Analysis==コンテントの解析
+#-----------------------------
+
+#File: CrawlMonitorRemoteStart.html
+#---------------------------
+Depth==深度
+no==いいえ
+yes==はい
+#-----------------------------
+
+#File: CrawlProfileEditor_p.html
+#---------------------------
+Depth==深度
+no==いいえ
+yes==はい
+#-----------------------------
+
+#File: Crawler_p.html
+#---------------------------
+"set"=="設定する"
+#-----------------------------
+
+#File: IndexControlURLs_p.html
+#---------------------------
+Cleanup==クリーンアップ
+Click the API icon to see an example call to the search rss API.==検索rss APIの呼び出しの例を見るにはAPIのアイコンをクリックして下さい.
+Delete HTTP & FTP Cache==HTTP & FTPのキャッシュを削除する
+Delete robots.txt Cache==robots.txtのキャッシュを削除する
+Index Deletion==索引の削除
+URL Database Administration==URL データベースの管理
+#-----------------------------
+
+#File: IndexCreateQueues_p.html
+#---------------------------
+Depth==深度
+Initiator==イニシエーター
+#-----------------------------
+
+#File: IndexDeletion_p.html
+#---------------------------
+Index Deletion==索引の削除
+hours==時間
+#-----------------------------
+
+#File: IndexFederated_p.html
+#---------------------------
+"Set"=="設定"
+Index Sources & Targets==索引のソース & 対象
+#-----------------------------
+
+#File: IndexImportJsonList_p.html
+#---------------------------
+File:==ファイル:
+#-----------------------------
+
+#File: IndexImportWarc_p.html
+#---------------------------
+File:==ファイル:
+#-----------------------------
+
+#File: IndexImportZim_p.html
+#---------------------------
+File:==ファイル:
+#-----------------------------
+
+#File: IndexReIndexMonitor_p.html
+#---------------------------
+Field Re-Indexing==フィールドの再索引付け
+Query==クエリー
+#-----------------------------
+
+#File: IndexSchema_p.html
+#---------------------------
+"Set"=="設定"
+Comment==コメント
+#-----------------------------
+
+#File: IndexShare_p.html
+#---------------------------
+"Set"=="設定"
+#-----------------------------
+
+#File: Load_RSS_p.html
+#---------------------------
+Description==説明
+hours==時間
+#-----------------------------
+
+#File: Network.html
+#---------------------------
+"Search"=="検索"
+The information that is presented on this page can also be retrieved as XML.==このページに表示されている情報はXMLとして取得する事もできます.
+#-----------------------------
+
+#File: QuickCrawlLink_p.html
+#---------------------------
+Title:==題名:
+#-----------------------------
+
+#File: RemoteCrawl_p.html
+#---------------------------
+"Save"=="保存する"
+#-----------------------------
+
+#File: Settings_Crawler.inc
+#---------------------------
+Changes will take effect immediately.==変更は即座に有効になります.
+#-----------------------------
+
+#File: Table_RobotsTxt_p.html
+#---------------------------
+The information that is presented on this page can also be retrieved as XML.==このページに表示されている情報はXMLとして取得する事もできます.
+#-----------------------------
+
+#File: TransNews_p.html
+#---------------------------
+"negative vote"=="ネガティヴな票"
+"positive vote"=="ポジティヴな票"
+File:==ファイル:
+#-----------------------------
+
+#File: ViewFile.html
+#---------------------------
+Description:==説明:
+no==いいえ
+yes==はい
+#-----------------------------
+
+#File: Vocabulary_p.html
+#---------------------------
+Delete==削除
+#-----------------------------
+
+#File: Wiki.html
+#---------------------------
+"Compare"=="比較"
+"Discard"=="廃棄する"
+"Preview"=="プレヴュー"
+Author:==著者:
+Edit==編集
+No changes have been submitted so far!==まだ変更が確定されていません!
+#-----------------------------
+
+#File: api/share.html
+#---------------------------
+File Share==ファイル共有
+#-----------------------------
+
+#File: api/yacydoc.html
+#---------------------------
+Click the API icon to see an example call to the search rss API.==検索rss APIの呼び出しの例を見るにはAPIのアイコンをクリックして下さい.
+Description==説明
+#-----------------------------
+
+#File: env/templates/simpleSearchHeader.template
+#---------------------------
+About This Page==私達について
+#-----------------------------
+
+#File: env/templates/submenuComputation.template
+#---------------------------
+Memory Usage==メモリーの使用方法
+Overview==概要
+Surftips==サーフティップス
+System==システム
+#-----------------------------
+
+#File: env/templates/submenuCrawlMonitor.template
+#---------------------------
+Overview==概要
+#-----------------------------
+
+#File: env/templates/submenuMaintenance.template
+#---------------------------
+RAM/Disk Usage & Updates==RAM/ストレージの使用方法 & 更新
+#-----------------------------
+
+#File: env/templates/submenuPortalConfiguration.template
+#---------------------------
+Portal Configuration==ポータルの構成
+#-----------------------------
+
+#File: env/templates/submenuRanking.template
+#---------------------------
+Ranking and Heuristics==順位付けとヒューリスティクス
+#-----------------------------
+
+#File: processing/domaingraph/applet/index.html
+#---------------------------
+Get the latest Java Plug-in here.==ここで最新のJavaのプラグ-インを入手して下さい.
+This browser does not have a Java Plug-in.==このブラウザーはJavaのプラグ-インがありません.
+#-----------------------------
+
+#File: yacychat.html
+#---------------------------
+"Search"=="検索"
+#-----------------------------
+
+#File: yacysearchtrailer.html
+#---------------------------
+Images==画像
+Video==動画
+#-----------------------------
diff --git a/locales/master.lng.xlf b/locales/master.lng.xlf
index 14043cd6e..e19e78dda 100644
--- a/locales/master.lng.xlf
+++ b/locales/master.lng.xlf
@@ -1,13 +1,214 @@
-
+
+
+
+ "Inference engine setup"
+
+
+ "Model assignment preview"
+
+
+ "Index creation"
+
+
+ "RAG configuration"
+
+
+ "Tools configuration"
+
+
+ "Log report monitor"
+
+
+ "Shield definition"
+
+
+ AI Lab Build System
+
+
+ Craft your AI toolkit
+
+
+ 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.
+
+
+ 0 / 6 unlocked
+
+
+ Mandatory
+
+
+ Needs setup
+
+
+ Bind an inference engine
+
+
+ Pick your host (Ollama, LM Studio, OpenAI-compatible) and give YaCy a place to send prompts.
+
+
+ Open engine setup
+
+
+ Set hoststub, API keys, and defaults to unlock downloads.
+
+
+ Populate the Production Models Matrix
+
+
+ Assign models for chat, search, translation, and more. This is your loadout bench.
+
+
+ Go to Production Models Matrix
+
+
+ Deploy at least one model, then assign capabilities (chat, search-query, tooling, vision).
+
+
+ Optional
+
+
+ Grow a search index
+
+
+ Create a local index for grounding: crawl a site or import a pack to give your AI facts to cite.
+
+
+ Start a crawl
+
+
+ Import an index pack
+
+
+ Indexed documents:
+
+
+ required to unlock (need at least 1000 documents).
+
+
+ Wire RAG retrieval
+
+
+ Map which production models answer search-query and Q/A pairs so the RAG proxy can mix search with chat.
+
+
+ Wire RAG prompts
+
+
+ Test in Chat
+
+
+ Set the search-query and qapairs columns to connect retrieval to your chat flow.
+
+
+ Enable/Disable Tools
+
+
+ Superpowers for the YaCy Chat
+
+
+ Open tools configuration
+
+
+ Tune descriptions and set maxCallsPerTurn per tool (0 disables a tool).
+
+
+ Monitor log reports
+
+
+ Assign a log-report model, then review generated hourly and daily self-enhancement reports.
+
+
+ Open log reports
+
+
+ Assign log-report model
+
+
+ Report generation stays inactive until a production model is assigned to the log-report role.
+
+
+ Define a shield
+
+
+ Add guardrails: access rates, grant or deny non-localhost access. Activate the front page link for chat to complete this quest.
+
+
+ Open shield settings
+
+
+ Store your shield directives (system prompts, stop words) as properties, then exercise them in chat.
+
+
+
+
+
+
+
+ Wire RAG Retrieval Shield
+
+
+ Control who can access the chat interface and rate-limit non-localhost clients to protect your peer and LLM backends from overload.
+
+
+ Overall Load Protection
+
+
+ Recent access volume across all clients (localhost included). You can enforce global limits here to protect the host.
+
+
+ Requests / minute
+
+
+ Requests / hour
+
+
+ Requests / day
+
+
+ Limit for all requests, including localhost
+
+
+ Per minute:
+
+
+ Per hour:
+
+
+ Per day:
+
+
+ Guest Access Control & Rate Limits
+
+
+ By default only localhost may reach the chat UI. Enable non-localhost access and throttle requests to reduce abuse.
+
+
+ Allow non-localhost clients to access the chat interface
+
+
+ Requests from non-localhost will be throttled using these caps:
+
+
+ Front Page Link
+
+
+ Expose a shortcut to the chat UI on the search front page if you want users to discover it.
+
+
+ Show a link to yacychat.html on the search front page
+
+
+ Save Shield Settings
+
+
+
+
-
- YaCy Network Access
+
+ "YaCy Access Grid"Server Access Grid
@@ -20,26 +221,11 @@
-
- Access Tracker
- Server Access Overview
-
- This is a list of #[num]# requests to the local http server within the last hour.
-
-
- Showing #[num]# requests.
-
-
- >Host<
-
-
- >Path<
-
-
- Date<
+
+ HostAccess Count During
@@ -65,30 +251,21 @@
Server Access Details
-
- Local Search Log
-
-
- Top Search Words (last 7 Days)
-
-
- Local Search Host Tracker
+
+ This is a list of requests (max. 1000) to the local http server within the last hour.
-
- Remote Search Log
+
+ Date
-
- Success:
+
+ Path
-
- Remote Search Host Tracker
+
+ Local Search LogThis is a list of searches that had been requested from this' peer search interface
-
- Showing #[num]# entries from a total of #[total]# requests.
- Requesting Host
@@ -101,6 +278,9 @@
Returned Results
+
+ Known Results
+ Used Time (ms)
@@ -113,11 +293,17 @@
Query
-
- Search Word Hashes
+
+ User Agent
-
- Count</td>
+
+ Top Search Words (last 7 Days)
+
+
+ Local Search Host Tracker
+
+
+ CountQueries Per Last Hour
@@ -125,81 +311,34 @@
Access Dates
+
+ Remote Search Log
+ This is a list of searches that had been requested from remote peer search interface
-
- This is a list of requests (max. 1000) to the local http server within the last hour.
-
-
-
-
-
-
-
- URL Proxy Settings<
-
-
- With this settings you can activate or deactivate URL proxy.
-
-
- Service call:
-
-
- , where parameter is the url of an external web page.
-
-
- >URL proxy:<
+
+ Peer Name
-
- >Enabled<
-
-
- Globally enables or disables URL proxy via
-
-
- Show search results via URL proxy:
-
-
- Enables or disables URL proxy for all search results. If enabled, all search results will be tunneled through URL proxy.
-
-
- Alternatively you may add this javascript to your browser favorites/short-cuts, which will reload the current browser address
-
-
- via the YaCy proxy servlet.
-
-
- or right-click this link and add to favorites:
-
-
- Restrict URL proxy use:
-
-
- Define client filter. Default:
-
-
- URL substitution:
-
-
- Define URL substitution rules which allow navigating in proxy environment. Possible values: all, domainlist. Default: domainlist.
+
+ Search Word Hashes
-
- "Submit"
+
+ Remote Search Host Tracker
-
+
-
- >Autocrawler<
+
+ "Save"
-
- Autocrawler automatically selects and adds tasks to the local crawl queue.
+
+ Autocrawler
-
- This will work best when there are already quite a few domains in the index.
+
+ Autocrawler automatically selects and adds tasks to the local crawl queue. This will work best when there are already quite a few domains in the index.Autocralwer Configuration
@@ -210,7 +349,7 @@
Enable Autocrawler:
-
+ Deep crawl every Nth document:
@@ -240,129 +379,380 @@
Index media:
-
- "Save"
-
-
+
-
- Blacklist Cleaner
+
+ "API"
-
- Here you can remove or edit illegal or double blacklist-entries.
+
+ "no previous page"
-
- Check list
+
+ "previous page"
-
- "Check"
+
+ "no next page"
-
- Allow regular expressions in host part of blacklist entries.
+
+ "next page"
-
- The blacklist-cleaner only works for the following blacklist-engines up to now:
+
+ "Apply edited next execution dates"
-
- Illegal Entries in #[blList]# for
+
+ "clone"
-
- Deleted #[delCount]# entries
+
+ "yyyy/MM/dd HH:mm:ss"
-
- Altered #[alterCount]# entries!
+
+ "Execute Selected Actions"
-
- Two wildcards in host-part
+
+ "Delete Selected Actions"
-
- Either subdomain <u>or</u> wildcard
+
+ "Delete all Actions which had been created before "
-
- Path is invalid Regex
+
+ Process Automation
-
- Wildcard not on begin or end
+
+ This table shows actions that had been issued on the YaCy interface.
-
- Host contains illegal chars
+
+ These recorded actions can be used to repeat specific actions and to send them
-
- Double
+
+ to a scheduler for a periodic execution.
-
- "Change Selected"
+
+ The information that is presented on this page can also be retrieved as XML.
-
- "Delete Selected"
+
+ Click the API icon to see the XML.
-
- No Blacklist selected
+
+ Recorded Actions
-
-
-
-
-
-
- Blacklist Import
+
+ Type
-
- Used Blacklist engine:
+
+ Comment
-
- Import blacklist items from...
+
+ Call Count
-
- other YaCy peers:
+
+ Recording Date
-
- "Load new blacklist items"
+
+ Last Exec Date
-
- URL:
+
+ Next Exec Date
-
- plain text file:<
+
+ Apply
-
- XML file:
+
+ Event Trigger
-
- Upload a regular text file which contains one blacklist entry per line.
+
+ Scheduler
-
- Upload an XML file which contains one or more blacklists.
+
+ URL
-
- Export blacklist items to...
+
+ no event
-
- Here you can export a blacklist as an XML file. This file will contain additional
+
+ activate event
-
- information about which cases a blacklist is activated for.
+
+ off
-
- "Export list as XML"
+
+ run once
-
- Here you can export a blacklist as a regular text file with one blacklist entry per line.
+
+ run regular
-
- This file will not contain any additional information
+
+ after start-up
-
+
+ at 00:00h
+
+
+ at 01:00h
+
+
+ at 02:00h
+
+
+ at 03:00h
+
+
+ at 04:00h
+
+
+ at 05:00h
+
+
+ at 06:00h
+
+
+ at 07:00h
+
+
+ at 08:00h
+
+
+ at 09:00h
+
+
+ at 10:00h
+
+
+ at 11:00h
+
+
+ at 12:00h
+
+
+ at 13:00h
+
+
+ at 14:00h
+
+
+ at 15:00h
+
+
+ at 16:00h
+
+
+ at 17:00h
+
+
+ at 18:00h
+
+
+ at 19:00h
+
+
+ at 20:00h
+
+
+ at 21:00h
+
+
+ at 22:00h
+
+
+ at 23:00h
+
+
+ no repetition
+
+
+ activate scheduler
+
+
+ minutes
+
+
+ hours
+
+
+ days
+
+
+ 1 day
+
+
+ 2 days
+
+
+ 3 days
+
+
+ 4 days
+
+
+ 5 days
+
+
+ 6 days
+
+
+ 1 week
+
+
+ 2 weeks
+
+
+ 3 weeks
+
+
+ 1 month
+
+
+ 2 months
+
+
+ 3 months
+
+
+ 6 months
+
+
+ 9 months
+
+
+ 1 year
+
+
+ 2 years
+
+
+ Result of API execution
+
+
+ Status
+
+
+
+
+
+
+
+ "Check"
+
+
+ "Change Selected"
+
+
+ "Delete Selected"
+
+
+ Blacklist Cleaner
+
+
+ Here you can remove or edit illegal or double blacklist-entries.
+
+
+ Check list
+
+
+ Allow regular expressions in host part of blacklist entries.
+
+
+ The blacklist-cleaner only works for the following blacklist-engines up to now:
+
+
+ Two wildcards in host-part
+
+
+ Either subdomain
+
+
+ or
+
+
+ wildcard
+
+
+ Path is invalid Regex
+
+
+ Wildcard not on begin or end
+
+
+ Host contains illegal chars
+
+
+ Double
+
+
+ Host is invalid Regex
+
+
+ No Blacklist selected
+
+
+
+
+
+
+
+ "Load new blacklist items"
+
+
+ "Export list as XML"
+
+ "Export list as text"
+
+ Blacklist Import
+
+
+ Used Blacklist engine:
+
+
+ Import blacklist items from...
+
+
+ other YaCy peers:
+
+
+ URL:
+
+
+ plain text file:
+
+
+ Upload a regular text file which contains one blacklist entry per line.
+
+
+ XML file:
+
+
+ Upload an XML file which contains one or more blacklists.
+
+
+ Export blacklist items to...
+
+
+ Here you can export a blacklist as an XML file. This file will contain additional
+
+
+ information about which cases a blacklist is activated for.
+
+
+ all
+
+
+ Here you can export a blacklist as a regular text file with one blacklist entry per line.
+
+
+ This file will not contain any additional information.
+
+
+ "Test"
+ Blacklist Test
@@ -372,26 +762,59 @@
Test list:
-
- "Test"
-
-
- The tested URL was
- It is blocked for the following cases:
+
+ is not blocked
+
+
+ Crawling
+
+
+ DHT
+
+
+ News
+
+
+ Proxy
+ SearchSurftips
+
+ The tested URL was not valid.
+
+
+ "create"
+
+
+ "Add URL pattern"
+
+
+ "set"
+
+
+ "Save URL pattern(s)"
+
+
+ "Share/don't share this list"
+
+
+ "Delete this list"
+
+
+ "Save"
+ Blacklist Administration
@@ -416,35 +839,38 @@
Select list to edit:
-
- not shared::shared
+
+ not shared
-
- "select"
+
+ sharedCreate new list:
-
- "create"
+
+ A legal name is made up from a letter, digit, minus, plus or underscore as the first character
-
- Settings for this list
+
+ followed by letters, digits, minus, plus, underscores or dots.
-
- "Save"
+
+ An error occurred while moving entries to the target list.
+
+
+ Add new pattern:
-
- Share/don't share this list
+
+ domain.net/fullpath
-
- Delete this list
+
+ domain.net/*
-
- Edit list
+
+ sub.domain.*/*
-
- These are the domain name/path patterns in
+
+ domain.*/*Blacklist Pattern
@@ -458,103 +884,67 @@
Move selected pattern(s) to
-
- Add new pattern:
-
-
- Add URL pattern
-
-
- The right '*', after the '/', can be replaced by a
-
-
- >regular expression<
-
-
- domain.net/fullpath<
-
-
- >domain.net/*<
-
-
- *.domain.net/*<
-
-
- *.sub.domain.net/*<
-
-
- (slow)
-
-
- Activate this list for
- Show entries:Entries per page:
-
- "set"
- Edit existing pattern(s):
-
- "Save URL pattern(s)"
+
+ An error occurred while editing the following entries. Please check syntax.
+
+
+ Activate this list for ...
-
- by
-
-
- Comments</a>
+
+ "RSS"
-
- >edit
+
+ "Submit"
-
- >delete
+
+ "Preview"
-
- Edit<
+
+ "Discard"
-
- previous entries
+
+ "Yes, delete it."
-
- next entries
+
+ "No, leave it."
-
- new entry
+
+ "Import"
-
- import XML-File
+
+ << previous entries
-
- export as XML
+
+ next entries >>Blog-Home
+
+ Edit
+ Author:Subject:
-
- You can use
-
-
- Yacy-Wiki Code
-
-
- here.
+
+ Text:Comments:
@@ -562,23 +952,14 @@
deactivated
-
- >activated
+
+ activatedmoderated
-
- "Submit"
-
-
- "Preview"
-
-
- "Discard"
-
-
- >Preview
+
+ PreviewNo changes have been submitted so far!
@@ -589,20 +970,14 @@
To edit or create blog-entries you need to be logged in as Admin or User who has Blog rights.
-
- Are you sure
-
-
- that you want to delete
+
+ Are you sure...Confirm deletion
-
- Yes, delete it.
-
-
- No, leave it.
+
+ XML-ImportImport was successful!
@@ -613,31 +988,37 @@
Please select the XML-file you want to import:
-
- Text:
-
-
- by
+
+ "Submit"
-
- Comments</a>
+
+ "Preview"
-
- Login
+
+ "Discard"Blog-Home
-
- delete</a>
+
+ Comments:
+
+
+ << previous entries
+
+
+ next entries >>
+
+
+ Comments are not allowed for this posting!
-
- allow</a>
+
+ Comment on this BlogAuthor:
@@ -645,46 +1026,46 @@
Subject:
-
- You can use
-
-
- Yacy-Wiki Code
-
-
- here.
-
-
- "Submit"
-
-
- "Preview"
-
-
- "Discard"
+
+ Text:
-
- YaCy '#[clientname]#': Bookmarks
+
+ "RSS"
-
- The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.
+
+ "create"
-
- Click the API icon to load the RSS from the current selection.
+
+ "Save"
+
+
+ "import"
+
+
+ "API"
-
- To see a list of all APIs, please visit the <a href="https://wiki.yacy.net/index.php/Dev:API" target="_blank">API wiki page</a>.
+
+ "start it"
-
- <h3>Bookmarks
+
+ "stop it"
-
- Bookmarks (
+
+ "private bookmark"
+
+
+ "public bookmark"
+
+
+ Bookmarks
+
+
+ LoginList Bookmarks
@@ -695,20 +1076,20 @@
Import Bookmarks
-
- Import XML Bookmarks
+
+ Bookmarks (XBEL)
-
- Import HTML Bookmarks
+
+ Bookmarks (XML)
-
- "import"
+
+ Bookmarks (RSS)
-
- Default Tags:
+
+ Edit Bookmark
-
- imported
+
+ URL:Title:
@@ -716,14 +1097,17 @@
Description:
+
+ Query:
+ Folder (/folder/subfolder):Tags (comma separated):
-
- >Public:
+
+ Public:yes
@@ -734,32 +1118,26 @@
Bookmark is a newsfeed
-
- "create"
+
+ Import XML BookmarksFile:
-
- import as Public
+
+ import as Public:
-
- "private bookmark"
-
-
- "public bookmark"
-
-
- Tagged with
+
+ Import HTML Bookmarks
-
- 'Confirm deletion'
+
+ Default Tags:
-
- Edit
+
+ The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.
-
- Delete
+
+ Click the API icon to load the RSS from the current selection.Folders
@@ -770,36 +1148,60 @@
Tags
+
+ Auto Search
+
+
+ start autosearch of new bookmarks
+
+
+ autosearch queue:
+
+
+ received results:
+
+
+ current query:
+
+
+ This starts a search of new or modified bookmarks since startup
+
+
+ in folder "search" with "query=<original_search_term>"
+
+
+ Every peer online will be ask for results.
+ Bookmark List
+
+ Tagged with |
+
+
+ Edit
+
+
+ Delete
+
+
+ Info
+
+
+ search
+ previous pagenext page
-
- All
- ShowBookmarks per page.
-
- start autosearch of new bookmarks
-
-
- This starts a search of new or modified bookmarks since startup
-
-
- in folder "search" with "query=<original_search_term>"
-
-
- Every peer online will be ask for results.
-
@@ -817,19 +1219,60 @@
-
+
+
+ User List
+ User Accounts
-
- User Administration
+
+ User
-
- User created:
+
+ First name
-
- User changed:
+
+ Last name
+
+
+ Address
+
+
+ Last Access
+
+
+ Rights
+
+
+ Time
+
+
+ Traffic
+
+
+
+
+
+
+
+ "Define Administrator"
+
+
+ "Set Access Rules"
+
+
+ "Edit User"
+
+
+ "Delete User"
+
+
+ "Save User"
+
+
+ User AdministrationGeneric error.
@@ -843,11 +1286,11 @@
Username already used (not allowed).
-
- No password is set for the administration account.
+
+ <b>WARNING</b> This YaCy instance can be administered with the account "admin" and the default password "yacy".
-
- Please define a password for the admin account.
+
+ Change the password as soon as possible!Admin Account
@@ -855,13 +1298,19 @@
Access from localhost without account
-
+ Access to your peer from your own computer (localhost access) is granted with administrator rights. No need to configure an administration account.
+
+ This setting is convenient but less secure than using a qualified admin account.
+
+
+ Please use with care, notably when you browse untrusted and potentially malicious websites while running your YaCy peer on the same computer.
+ Access only with qualified account
-
+ This is required if you want a remote access to your peer, but it also hardens access controls on administration operations of your peer.
@@ -873,17 +1322,14 @@
Repeat Peer Password:
-
- "Define Administrator"
-
-
- >Access Rules<
+
+ Access RulesProtection of all pages: if set to on, access to all pages need authorization; if off, only pages with "_p" extension are protected.
-
- Set Access Rules
+
+ User AccountsSelect user
@@ -891,20 +1337,11 @@
New user
-
- Edit User
-
-
- Delete User
-
-
- Edit current user:
-
-
- Username</label>
+
+ Username
-
- Password</label>
+
+ PasswordRepeat password
@@ -918,8 +1355,8 @@
Address
-
- Rights
+
+ Rights:Timelimit
@@ -927,20 +1364,23 @@
Time used
-
- Save User
-
-
- This setting is convenient but less secure than using a qualified admin account.
-
-
- Please use with care, notably when you browse untrusted and potentially malicious websites while running your YaCy peer on the same computer.
-
+
+ "Use"
+
+
+ "Delete"
+
+
+ "Set Colors"
+
+
+ "Install"
+ Appearance and Integration
@@ -950,17 +1390,14 @@
The selected skin and language also affects the appearance of the search page.
-
- If you <a href="ConfigPortal_p.html">create a search portal with YaCy</a> then you can
- change the appearance of the search page here.Skin Selection
-
- Select one of the default skins, download new skins, or create your own skin.
+
+ Select one of the default skins. <b>After selection it might be required to reload the web page while holding the shift key to refresh cached style files.</b>Current skin
@@ -968,65 +1405,59 @@
Available Skins
-
- "Use"
-
-
- "Delete"
-
-
- >Skin Color Definition<
+
+ Skin Color DefinitionThe generic skin 'generic_pd' can be configured here with custom colors:
-
- >Background<
+
+ Background
-
- >Text<
+
+ Text
-
- >Legend<
+
+ Legend
-
- >Table Header<
+
+ Table Header
-
- >Table Item<
+
+ Table Item
-
- >Table Item 2<
+
+ Table Item 2
-
- >Table Bottom<
+
+ Table Bottom
-
- >Border Line<
+
+ Border Line
-
- >Sign 'bad'<
+
+ Sign 'bad'
-
- >Sign 'good'<
+
+ Sign 'good'
-
- >Sign 'other'<
+
+ Sign 'other'
-
- >Search Headline<
+
+ Search Headline
-
- >Search URL
+
+ Search URL
-
- "Set Colors"
+
+ Search URL + hover
-
- >Skin Download<
+
+ Skin Download
-
- Skins can be installed from download locations
+
+ Skins can be installed from download locations:Install new skin from URL
@@ -1034,18 +1465,12 @@
Use this skin
-
- "Install"
- Make sure that you only download data from trustworthy sources. The new Skin filemight overwrite existing data if a file of the same name exists already.
-
- >Unable to get URL:
- Error saving the skin.
@@ -1054,8 +1479,32 @@
-
- Access Configuration
+
+ "ok"
+
+
+ "Use the browser preferred language if available"
+
+
+ "Click to generate translated pages"
+
+
+ "Active : translated pages are available"
+
+
+ "Usecase Freeworld"
+
+
+ "Usecase Portal"
+
+
+ "Usecase Intranet"
+
+
+ "warning"
+
+
+ "Set Configuration"Basic Configuration
@@ -1063,17 +1512,20 @@
Your port has changed. Please wait 10 seconds.
-
- Your browser will be redirected to the new <a href="http://#[host]#:#[port]#/ConfigBasic.html">location</a> in 5 seconds.
-
-
- The peer port was changed successfully.
+
+ <b>WARNING</b> This YaCy instance can be administered with the account "admin" and the default password "yacy".Your YaCy Peer needs some basic information to operate properly
-
- Select a language for the interface
+
+ Select a language for the interface:
+
+
+ Browser
+
+
+ EnglishDeutsch
@@ -1081,47 +1533,44 @@
Français
-
- 汉语/漢語
-
-
- Русский
-
-
- Українська
+
+ Greek
-
- हिन्दी
+
+ Italiano
-
- 日本語
+
+ EspañolUse Case: what do you want to do with YaCy:
+
+ Can not leave from Intranet Indexing : one or more remote Solr instances are attached and may contain private documents indexed.
+
+
+ One or more remote Solr instances are attached and may contain indexed public documents irrelevant to your local domain.
+
+
+ One or more remote Solr instances are attached.
+ Community-based web search
-
- Join and support the global network 'freeworld', search the web with an uncensored user-owned search network
- Search portal for your own web pages
-
- Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.
- Intranet Indexing
-
- Create a search portal for your intranet or web pages or your (shared) file system.
+
+ Join and support the global network 'freeworld', search the web with an uncensored user-owned search network
-
- URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form
+
+ Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.
-
- or smb:
+
+ Create a search portal for your intranet or web pages or your (shared) file system. URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form file:///<path> or smb://<server>/<path>Your peer name has not been customized; please set your own peer name
@@ -1132,41 +1581,14 @@
Peer Name:
-
- Your peer cannot be reached from outside
-
-
- which is not fatal, but would be good for the YaCy network
-
-
- please open your firewall for this port and/or set a virtual server option in your router to allow connections on this port
-
-
- Opening a router port is <i>not</i> a YaCy-specific task;
-
-
- you can see instruction videos everywhere in the internet, just search for <a href="http://www.youtube.com/results?search_query=Open+Ports+on+a+Router">Open Ports on a <our-router-type> Router</a> and add your router type as search term.
-
-
- However: if you fail to open a router port, you can nevertheless use YaCy with full functionality, the only function that is missing is on the side of the other YaCy users because they cannot see your peer.
- Your peer can be reached by other peersPeer Port:
-
- Set by system property
-
-
- with SSL
-
-
- https enabled
-
-
- on port
+
+ with SSL (https enabledConfigure your router for YaCy using UPnP:
@@ -1174,56 +1596,38 @@
Configuration was not successful. This may take a moment.
-
- Set Configuration
-
-
- Your basic configuration is complete! You can now (for example)
-
-
- just <
+
+ Your Browser will reload the YaCy UI with the new port in 5 seconds...
-
- start an uncensored search
-
-
- start your own crawl</a> and contribute to the global index, or create your own private web index
-
-
- set a personal peer profile</a> (optional settings)
+
+ What you should do next:
-
- monitor at the network page</a> what the other peers are doing
+
+ Your basic configuration is complete! You can now (for example):Your Peer name is a default name; please set an individual peer name.
-
- You did not set a user name and/or a password.
-
-
- 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>::
-
-
- 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.
-
-
- What you should do next:
+
+ 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 recommended.
+
+ "A cache hit occurs when the requested data can be found in a cache."
+
+
+ "Concurrent access timeout info"
+
+
+ "Set"
+
+
+ "Delete"
+ Hypertext Cache Configuration
@@ -1236,20 +1640,35 @@
HTCache Configuration
+
+ Cache hits
+ The path where the cache is storedThe current size of the cache
-
- >#[actualCacheSize]# MB for #[actualCacheDocCount]# files, #[docSizeAverage]# KB / file in average
- The maximum size of the cache
-
- "Set"
+
+ MB
+
+
+ Compression level
+
+
+ Concurrent access timeout
+
+
+ The maximum time to wait for acquiring a synchronization lock on concurrent get/store cache operations.
+
+
+ Beyond this limit, the crawler or proxy falls back to regular remote resource loading.
+
+
+ millisecondsCleanup
@@ -1263,40 +1682,43 @@
Delete robots.txt Cache
-
- "Delete"
-
-
- Heuristics Configuration
+
+ "heuristic:<name> (redundant)"
+
+
+ "heuristic:<name> (new link)"
+
+
+ "add"
-
- A <a href="http://en.wikipedia.org/wiki/Heuristic" target="_blank">heuristic</a> is an 'experience-based technique that help in problem solving, learning and discovery' (wikipedia).
+
+ "Save"
-
- The search heuristics that can be switched on here are techniques that help the discovery of possible search results based on link guessing, in-search crawling and requests to other search engines.
+
+ "reset to default list"
-
- When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content.
+
+ "discover from index"
-
- This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.
+
+ "switch Solr fields on"
-
- The success of heuristics are marked with an image
+
+ Heuristics Configuration
-
- heuristic:<name>
+
+ When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content. This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.
-
- (new link)
+
+ The success of heuristics are marked with an image (
-
- below the favicon left from the search result entry:
+
+ ) below the favicon left from the search result entry:The search result was discovered by a heuristic, but the link was already known by YaCy
@@ -1319,6 +1741,9 @@
search-result: shallow crawl on all displayed search results
+
+ add as global crawl job
+ When a search is made then all displayed result links are crawled with a depth-1 crawl.
@@ -1331,59 +1756,35 @@
Default is to add the links to the local crawl queue (your peer crawls the linked pages).
-
- add as global crawl job
- opensearch load external search result list from active systems belowWhen using this heuristic, then every new search request line is used for a call to listed opensearch systems.
-
- 20 results are taken from remote system and loaded simultanously, parsed and indexed immediately.
-
-
- To find out more about OpenSearch see
+
+ 20 results are taken from remote system and loaded simultaneously, parsed and indexed immediately.Available/Active Opensearch System
-
- >Active<
-
-
- >Title<
-
-
- >Comment<
-
-
- Url <small>(format opensearch
-
-
- Url template syntax
-
-
- >delete<
-
-
- >new<
+
+ Active
-
- "add"
+
+ Title
-
- "Save"
+
+ Comment
-
- "reset to default list"
+
+ Url
-
- "discover from index" class
+
+ delete
-
- start background task, depending on index size this may run a long time
+
+ newWith the button "discover from index" you can search within the metadata of your local index (Web Structure Index) to find systems which support the Opensearch specification.
@@ -1391,37 +1792,19 @@
The task is started in the background. It may take some minutes before new entries appear (after refreshing the page).
-
- Alternatively you may
-
-
- >copy & paste a example config file<
-
-
- located in <i>defaults/heuristicopensearch.conf</i> to the DATA/SETTINGS directory.
-
-
- 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>.
-
-
- "switch Solr fields on"
-
-
- ('modify Solr Schema')
-
-
- <!-- lang -->default(english)
+
+ "Use"
-
- <!-- author -->
+
+ "Delete"
-
- <!-- maintainer -->
+
+ "Install"Language selection
@@ -1429,17 +1812,26 @@
You can change the language of the YaCy-webinterface with translation files.
-
- Current language</label>
+
+ Current language
+
+
+ default(english)
-
- Author(s) (chronological)</label>
+
+ Author(s) (chronological)
-
- Send additions to maintainer</em>
+
+ Send additions to maintainer
+
+
+ Available Languages
+
+
+ Download Language File
-
- Available Languages</label>
+
+ Supported formats are the internal language file (extension .lng) or XLIFF (extension .xlf) format.Install new language from URL
@@ -1447,67 +1839,52 @@
Use this language
-
- "Use"
-
-
- "Delete"
-
-
- "Install"
-
-
- Unable to get URL:
-
-
- Error saving the language file.
- Make sure that you only download data from trustworthy sources. The new language filemight overwrite existing data if a file of the same name exists already.
-
- Download Language File
-
-
- Supported formats are the internal language file (extension .lng) or XLIFF (extension .xlf) format.
-
-
- Simple Editor
-
-
- to add untranslated text
+
+ Error saving the language file.
-
- <html lang="en">
+
+ "Change Network"
+
+
+ "Save"
+
+
+ "Transport Layer Security"
+
+
+ "Secure Sockets Layer"Network Configuration
-
- No changes were made!
+
+ Accepted Changes.
-
- Accepted Changes
+
+ Inapplicable Setting Combination:
-
- Inapplicable Setting Combination
+
+ No changes were made!
-
- For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration
+
+ For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration.Global Search in P2P configuration is only allowed, if index receive is switched on. You have a P2P configuration, but are not allowed to search other peers.
-
- For Robinson Mode, index distribution and receive is switched off
+
+ For Robinson Mode, index distribution and receive is switched off.Network and Domain Specification
@@ -1521,15 +1898,15 @@
this network definition must be equal to all members of the same YaCy network.
-
- >Network Definition<
-
-
- Remote Network Definition URL
+
+ Network DefinitionEnter custom URL...
+
+ Remote Network Definition URL
+ Network Nick
@@ -1539,35 +1916,35 @@
Indexing Domain
-
- "Change Network"
+
+ DHTDistributed Computing Network for Domain
-
+ Enable Peer-to-Peer Mode to participate in the global YaCy network,
-
+ or if you want your own separate search cluster with or without connection to the global network.
-
+ Enable 'Robinson Mode' for a completely independent search engine instance,
-
+ without any data exchange between your peer and other peers.Peer-to-Peer Mode
-
- >Index Distribution
+
+ Index Distribution
-
- This enables automated, DHT-ruled Index Transmission to other peers
+
+ This enables automated, DHT-ruled Index Transmission to other peers.
-
- >enabled
+
+ enableddisabled during crawling
@@ -1575,92 +1952,104 @@
disabled during indexing
-
- >Index Receive
+
+ Index Receive
-
- Accept remote Index Transmissions
+
+ Accept remote Index Transmissions.
-
- This works only if you have a senior peer. The DHT-rules do not work without this function
+
+ This works only if you have a senior peer. The DHT-rules do not work without this function.
-
- >reject
+
+ rejectaccept transmitted URLs that match your blacklist
-
- >allow
+
+ allowdeny remote search
-
- >Robinson Mode
+
+ Robinson Mode
+
+
+ If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers.
-
- If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers
+
+ There is no index receive and no index distribution between your peer and any other peer.
-
- There is no index receive and no index distribution between your peer and any other peer
+
+ In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster.
-
- >Private Peer
+
+ Private Peer
-
- Your search engine will not contact any other peer, and will reject every request
+
+ Your search engine will not contact any other peer, and will reject every request.
-
- >Public Cluster
+
+ Public Peer
-
- Your peer is part of a public cluster within the YaCy network
+
+ You are visible to other peers and contact them to distribute your presence.
+
+
+ Your peer does not accept any outside index data, but responds on all remote search requests.
+
+
+ Public Cluster
+
+
+ Your peer is part of a public cluster within the YaCy network.Index data is not distributed, but remote crawl requests are distributed and accepted
-
- Search requests are spread over all peers of the cluster, and answered from all peers of the cluster
+
+ Search requests are spread over all peers of the cluster, and answered from all peers of the cluster.List of .yacy or .yacyh - domains of the cluster: (comma-separated)
-
- >Public Peer
-
-
- You are visible to other peers and contact them to distribute your presence
+
+ Peer Tags
-
- Your peer does not accept any outside index data, but responds on all remote search requests
+
+ When you allow access from the YaCy network, your data is recognized using keywords.
-
- >Peer Tags
-
-
- When you allow access from the YaCy network, your data is recognized using keywords
-
-
- Please describe your search portal with some keywords (comma-separated)
+
+ Please describe your search portal with some keywords (comma-separated).If you leave the field empty, no peer asks your peer. If you fill in a '*', your peer is always asked.
-
- "Save"
+
+ Outgoing communications encryption
-
- Network Definition
+
+ Protocol operations encryption
+
+
+ Prefer HTTPS for outgoing connexions to remote peers.
+
+
+ When <abbr title="Transport Layer Security">TLS</abbr>/<abbr title="Secure Sockets Layer">SSL</abbr> is enabled on remote peers, it should be used to encrypt outgoing communications with them (for operations such as network presence, index transfer, remote crawl...).
-
- In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster
+
+ Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.
+
+ "Submit"
+ Parser Configuration
@@ -1673,55 +2062,61 @@
For a detailed description of the various MIME-types take a look at
-
- If you want to test a specific parser you can do so using the
-
-
- >File Viewer<
+
+ Extension
-
- >Extension<
-
-
- >Mime-Type<
-
-
- "Submit"
+
+ Mime-Type
+
+ "Remote results resorting can be triggered once the 'Refresh sorting' button (near the 'Search' button) becomes available."
+
+
+ "This usually improves ranking accuracy, but doesn't work well for users who have Javascript disabled, are using screen readers, or are on slow computers."
+
+
+ "idea"
+
+
+ "Detailed statistics"
+
+
+ "Change Search Page"
+
+
+ "Set to Default Values"
+ Integration of a Search PortalIf you like to integrate YaCy as portal for your web pages, you may want to change icons and messages on the search page.
-
- The search page may be customized.
-
-
- You can change the 'corporate identity'-images, the greeting line
+
+ The search page may be customized. You can change the 'corporate identity'-images, the greeting lineand a link to a home page that is reached when the 'corporate identity'-images are clicked.
-
- To change also colours and styles use the <a href="ConfigAppearance_p.html">Appearance Servlet</a> for different skins and languages.
+
+ Greeting Line
-
- Greeting Line<
+
+ URL of Home Page
-
- URL of Home Page<
+
+ URL of a Small Corporate Image
-
- URL of a Small Corporate Image<
+
+ URL of a Large Corporate Image
-
- URL of a Large Corporate Image<
+
+ Alternative text for Corporate ImagesEnable Search for Everyone?
@@ -1729,15 +2124,78 @@
Search is available for everyone
-
+ 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)
+
+
+ Show Advanced Search Options on Search Page?
+
+
+ Show Advanced Search Options on index.html
+
+
+ do not show Advanced Search
+
+
+ Media Search
+
+
+ Extended
+
+
+ Strict
+
+
+ Control whether media search results are as default strictly limited to indexed documents matching exactly the desired content domain (images, videos or applications specific),
+
+
+ or extended to pages including such medias (provide generally more results, but eventually less relevant).
+
+
+ Remote results resorting
+
+
+ On demand, server-side
+
+
+ Automated, with JavaScript in the browser.
+
+
+ Automated results resorting with JavaScript makes the browser load the full result set of each search request.
+
+
+ This may lead to high system loads on the server.
+
+
+ Remote search encryption
+
+
+ Prefer https for search queries on remote peers.
+
+
+ When SSL/TLS is enabled on remote peers, https should be used to encrypt data exchanged with them when performing peer-to-peer searches.
+
+
+ Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.
+ Snippet Fetch Strategy & Link VerificationSpeed up search results with this option! (use CACHEONLY or FALSE to switch off verification)
+
+ Counts by origin :
+ NOCACHE: no use of web cache, load all snippets online
@@ -1759,41 +2217,32 @@
Greedy Learning Mode
-
- load documents linked in search results, will be deactivated automatically when index size
-
-
- Show Navigation Bar on Search Page?
-
-
- Show Navigation Top-Menu
-
-
- no link to YaCy Menu (admin must navigate to /Status.html manually)
+
+ Index remote results
-
- Show Advanced Search Options on Search Page?
+
+ add remote search results to the local index <b>( default=on, it is recommended to enable this option ! )</b>
-
- Show Advanced Search Options on index.html
+
+ Limit size of indexed remote results
-
- do not show Advanced Search
+
+ maximum allowed size in kbytes for each remote search result to be added to the local index (for example, a 1000kbytes limit might be useful if you are running YaCy with a low memory setup)
-
- Default Pop-Up Page<
+
+ Default Pop-Up Page
-
- >Status Page
+
+ Status Page
-
- >Search Front Page
+
+ Search Front Page
-
- >Search Page (small header)
+
+ Search Page (small header)
-
- >Interactive Search Page
+
+ Interactive Search PageDefault maximum number of results per page
@@ -1822,11 +2271,11 @@
Special Target as Exception for an URL-Pattern
-
- Pattern:<
+
+ Pattern:
-
- >Exclude Hosts<
+
+ Exclude HostsList of hosts that shall be excluded from search results by default but can be included using the site:<host> operator:
@@ -1834,21 +2283,12 @@
'About' Column<br/>(shown in a column alongside<br/>with the search result page)
-
- (Headline)
+
+ (Headline)</br>(Content)
-
- "Change Search Page"
-
-
- "Set to Default Values"
-
-
- You have to <a href="ConfigAccounts_p.html">set a remote user/password</a> to change this options.
- The search page can be integrated in your own web pages with an iframe. Simply use the following code:
@@ -1861,58 +2301,58 @@
A third option is the interactive search. Use this code:
-
- You have
-
-
- set a remote user/password
-
-
- to change this options.
-
+
+ "Save"
+ Your Personal ProfileYou can create a personal profile here, which can be seen by other YaCy-members
-
- or <a href="ViewProfile.html?hash=localhash">in the public</a> using a <a href="ViewProfile.rdf?hash=localhash">FOAF RDF file</a>.
-
-
- >Name<
+
+ NameNick Name
-
- Homepage (appears on every <a href="Supporter.html">Supporter Page</a> as long as your peer is online)
- eMail
-
- Comment
+
+ ICQ
+
+
+ Jabber
+
+
+ Yahoo!
-
- "Save"
+
+ MSN
-
- You can use <
+
+ Skype
-
- > here.
+
+ Comment
+
+ "Save"
+
+
+ "Clear"
+ Advanced Config
@@ -1925,29 +2365,41 @@
For explanation please look into defaults/yacy.init
-
- "Save"
-
-
- "Clear"
-
+
+ "Save restrictions"
+ Exclude Web-SpidersHere you can set up a robots.txt for all webcrawlers that try to access the webinterface of your peer.
-
+
+ robots.txt
+
+ is a voluntary agreement most search-engines (including YaCy) follow.It disallows crawlers to access webpages or even entire domains.
+
+ Unable to access the local file:
+
+
+ Deletion of
+
+
+ htroot/robots.txt
+
+
+ failed
+ Deny access to
@@ -1969,6 +2421,9 @@
Blog
+
+ Wiki
+ Public bookmarks
@@ -1981,35 +2436,32 @@
Impressum
-
- "Save restrictions"
-
-
- Wiki
-
+
+ "Search"
+ Integration of a Search BoxWe give information how to integrate a search box on any web page that
+
+ calls the normal YaCy search window.
+ Simply use the following code:
-
- MySearch
-
-
- "Search"
- This would look like:
+
+ MySearch
+ This does not use a style sheet file to make the integration into another web page with a different style sheet easier.
@@ -2022,210 +2474,303 @@
Replace the word "MySearch" with your own message
-
- calls the normal YaCy search window.
-
-
- Search Page<
-
-
- >Search Result Page Layout Configuration<
+
+ "Top navigation bar"
-
- Below is a generic template of the search result page. Mark the check boxes for features you would like to be displayed.
+
+ "Enable login link/status"
-
- To change colors and styles use the
+
+ "Log in to use extended search features"
-
- >Appearance<
+
+ "You are authenticated as userName"
-
- menu for different skins.
+
+ "Help"
-
- Other portal settings can be adjusted in <a href="ConfigPortal_p.html">Generic Search Portal</a> menu.
+
+ "Protocols"
-
- >Page Template<
+
+ "Tag cloud"
-
- >Text<
+
+ "earthsearchlogo"
-
- >Images<
+
+ "Delete navigator"
-
- >Audio<
+
+ "Sorted by descending counts"
-
- >Video<
+
+ "Sorted by ascending counts"
-
- >Applications<
+
+ "Sorted by descending labels"
-
- >more options<
+
+ "Sorted by ascending labels"
-
- >Tag<
+
+ "search..."
-
- >Topics<
+
+ "Maximum days number in the histogram. Beware that a large value may trigger high CPU loads both on the server and on the browser with large result sets."
-
- >Cloud<
+
+ "info"
-
- >Protocol<
+
+ "Website favicon"
-
- >Filetype<
+
+ "Last known modification date"
-
- >Wiki Name Space<
+
+ "Browse index"
-
- >Language<
+
+ "Raw ranking score value"
-
- >Author<
+
+ "Date"
-
- >Vocabulary<
+
+ "Size"
-
- >Provider<
+
+ "Add navigator"
-
- >Collection<
+
+ "Save Settings"
-
- >Title of Result<
+
+ "Set Default Values"
-
- Description and text snippet of the search result
+
+ Search Result Page Layout Configuration
-
- 42 kbyte<
+
+ Below is a generic template of the search result page. Mark the check boxes for features you would like to be displayed.
-
- >Metadata<
+
+ Page Template
-
- >Parser<
+
+ Toggle navigation
-
- >Citation<
+
+ Log in
-
- >Pictures<
+
+ userName
-
- >Cache<
+
+ Search Interfaces<b class="caret"></b>
-
- <html lang="en">
+
+ Administration »
-
- "Date"
+
+ http
-
- "Size"
+
+ https
-
- "Browse index"
+
+ ftp
-
- For this option URL proxy must be enabled.
+
+ smb
-
- max. items
+
+ file
-
- "Save Settings"
+
+ Tag
-
- "Set Default Values"
+
+ Topics
-
- "Top navigation bar"
+
+ Cloud
-
- >Location<
+
+ Locationshow search results on map
+
+ Sort by
+
+
+ Descending counts
+
+
+ Ascending counts
+
+
+ Descending labels
+
+
+ Ascending labels
+
+
+ Vocabulary
+
+
+ search
+
+
+ Text
+
+
+ Images
+
+
+ Audio
+
+
+ Video
+
+
+ Applications
+
+
+ more options
+ Date NavigationMaximum range (in days)
-
- Maximum days number in the histogram. Beware that a large value may trigger high CPU loads both on the server and on the browser with large result sets.
+
+ Show websites favicon
-
- keyword subject keyword2 keyword3
+
+ Not showing websites favicon can help you save some CPU time and network bandwidth.
-
- View via Proxy
+
+ Title of Result
+
+
+ Description and text snippet of the search result
-
- >JPG Snapshot<
+
+ http://url-of-the-search-result.net
-
- "Raw ranking score value"
+
+ Tags
+
+
+ keyword
+
+
+ subject
+
+
+ keyword2
+
+
+ keyword3
+
+
+ Max. tags initially displayed
+
+
+ (remaining can then be expanded)
+
+
+ 42 kbyte
+
+
+ Metadata
+
+
+ Parser
+
+
+ Citation
+
+
+ Pictures
+
+
+ Cache
+
+
+ View via ProxyRanking: 1.12195955E9
-
- "Delete navigator"
+
+ For this option URL proxy must be enabled.
+
+
+ menu: System Administration > Advanced Settings
+
+
+ Menu: System Administration > Advanced Settings > Debug/Analysis SettingsAdd Navigators
-
- "Add navigator"
-
-
- >append
+
+ append
-
- http://url-of-the-search-result.net
+
+ max. items
-
- >System Update<
+
+ "Download Release"
-
- Manual System Update
+
+ "Check for new Release"
-
- Current installed Release
+
+ "Install Release"
+
+
+ "Delete Release"
+
+
+ "Check + Download + Install Release Now"
+
+
+ "Submit"
+
+
+ System Update
-
- Available Releases
+
+ Release will be installed. Please wait.
-
- >changelog<
+
+ This servlet can only be used on operating systems that are currently supported for deploy functions.
-
- > and <
+
+ If you see this message this means that your operation system is not supported.
+
+
+ Manual System Update
-
- > RSS feed<
+
+ Current installed Release(unsigned)
@@ -2233,56 +2778,32 @@
(signed)
-
- "Download Release"
-
-
- "Check for new Release"
- Downloaded ReleasesNo downloaded releases available for deployment.
+
+ (no signature)
+ no automated installation on development environments
-
- "Install Release"
-
-
- "Delete Release"
- Automatic Updatecheck for new releases, download if available and restart with downloaded release
-
- "Check + Download + Install Release Now"
-
-
- Download of release #[downloadedRelease]# finished. Restart Initiated.
- No more recent release found.
-
- Release will be installed. Please wait.
-
-
- You installed YaCy with a package manager.
-
-
- To update YaCy, use the package manager:
- Omitting update because this is a development environment.
-
- Omitting update because download of release #[downloadedRelease]# failed.
+
+ Omitting update because an error occurred while trying to deploy the release.Automated System Update
@@ -2296,9 +2817,6 @@
automatic update
-
- add the following line to
- updates are made within fixed cycles:
@@ -2311,44 +2829,109 @@
Release blacklist
-
- regex on release number strings
+
+ (regex on release number strings)
+
+
+ Release type
+
+
+ only main releases
+
+
+ any release including developer releases
+
+
+ Signed autoupdate:
+
+
+ only accept signed files
+
+
+ Accepted Changes.
+
+
+ System Update Statistics
+
+
+ Last System Lookup
+
+
+ never
+
+
+ Last Release Download
+
+
+ Last Deploy
+
+
+ You installed YaCy with a package manager. To update YaCy, use the package manager:
+
+
+ manual update:<br/>apt-get update && apt-get install yacy
+
+
+ automatic update: add the following line to /etc/crontab<br/>0 6 * * * root apt-get update && apt-get -y --force-yes install yacy
+
+
+
+
+
+
+
+ "Save User"
+
+
+ "Delete User"
+
+
+ "ConfigAccountList_p.html"
+
+
+ User Account Editor
+
+
+ Generic error.
+
+
+ Passwords do not match.
-
- Release type
+
+ Username too short. Username must be >= 4 Characters.
-
- only main releases
+
+ Username already used (not allowed).
-
- any release including developer releases
+
+ Username
-
- Signed autoupdate:
+
+ Password
-
- only accept signed files
+
+ Repeat password
-
- "Submit"
+
+ First name
-
- Accepted Changes.
+
+ Last name
-
- System Update Statistics
+
+ Address
-
- Last System Lookup
+
+ Rights:
-
- never
+
+ Timelimit
-
- Last Release Download
+
+ Time used
-
- Last Deploy
+
+ back to user list
@@ -2361,41 +2944,41 @@
Incoming Connections
-
- Showing #[numActiveRunning]# active connections from a max. of #[numMax]# allowed incoming connections.
-
-
- Protocol</td>
+
+ ProtocolDuration
-
- Up-Bytes
- Source IP[:Port]
-
- Dest. IP[:Port]
+
+ Command
-
- Command</td>
+
+ IDOutgoing Connections
-
- Showing #[clientActive]# pooled outgoing connections used as:
+
+ Up-Bytes
-
- Connection Tracking
+
+ Dest. IP[:Port]
+
+ "Set"
+
+
+ "Re-Set to default"
+ Content Analysis
@@ -2408,9 +2991,15 @@
Double-Content detection is done using a ranking on a 'unique'-Field, named 'fuzzy_signature_unique_b'.
+
+ minTokenLen
+ This is the minimum length of a word which shall be considered as element of the signature. Should be either 2 or 3.
+
+ quantRate
+ The quantRate is a measurement for the number of words that take part in a signature computation. The higher the number, the less
@@ -2420,61 +3009,52 @@
For minTokenLen = 2 the quantRate value should not be below 0.24; for minTokenLen = 3 the quantRate value must be not below 0.5.
-
- "Set"
-
-
- "Re-Set to default"
-
+
+ "Check database connection"
+
+
+ "Export Content to Packs"
+
+
+ "Import Dump"
+ Content Integration: Retrieval from phpBB3 DatabasesIt is possible to extract texts directly from mySQL and postgreSQL databases.
+
+ Each extraction is specific to the data that is hosted in the database.
+ This interface gives you access to the phpBB3 forums software content.If you read from an imported database, here are some hints to get around problems when importing dumps in phpMyAdmin:
-
- before importing large database dumps, set
-
-
- the following Line in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB)
+
+ before importing large database dumps, set the following Line in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB):deselect the partial import flag
-
+ When an export is started, pack files are generated into DATA/PACKS/load which are automatically fetched by an indexer thread.
-
+ All indexed pack files are then moved to DATA/PACKS/loaded and can be re-cycled when an index is deleted.
-
- The URL stub
-
-
- like https://community.searchlab.eu
-
-
- this must be the path right in front of '/viewtopic.php?'
-
-
- Type
-
-
- > of database<
+
+ <b>The URL stub</b>,<br />like http://forum.yacy-websuche.de<br />this must be the path right in front of '/viewtopic.php?'
-
- use either 'mysql' or 'pgsql'
+
+ <b>Type</b> of database<br />(use either 'mysql' or 'pgsql')<b>Host</b> of the database
@@ -2494,20 +3074,11 @@
<b>Password</b> for the account of that user given above
-
+ <b>Posts per file</b><br />in exported packs
-
- Check database connection
-
-
- Export Content to Packs
-
-
- Import a database dump
-
-
- Import Dump
+
+ <b>Import a database dump</b>,Posts in database
@@ -2518,76 +3089,19 @@
last entry
-
- Info failed:
-
-
- Export successful! Wrote #[files]# files in DATA/PACKS/load
-
-
- Export failed:
- Import successful!
-
- Import failed:
-
-
- Each extraction is specific to the data that is hosted in the database.
-
-
- in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB)
-
-
- Host
-
-
- of database service
-
-
- usually 3306 for mySQL
-
-
- Name of the database
-
-
- on the host
-
-
- > of the database<
-
-
- Table prefix string
-
-
- for table names
-
-
- User
-
-
- that can access the database
-
-
- Password
-
-
- for the account of that user given above
-
-
- Posts per file
-
-
- in exported packs
-
-
- Incoming Cookies Monitor
+
+ "Enable Cookie Monitoring"
+
+
+ "Disable Cookie Monitoring"Cookie Monitor: Incoming Cookies
@@ -2595,34 +3109,28 @@
This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:
-
- Showing #[num]# entries from a total of #[total]# Cookies.
- Sending Host
-
- Date</td>
+
+ DateReceiving Client
-
- >Cookie<
-
-
- "Enable Cookie Monitoring"
-
-
- "Disable Cookie Monitoring"
+
+ Cookie
-
- Outgoing Cookies Monitor
+
+ "Enable Cookie Monitoring"
+
+
+ "Disable Cookie Monitoring"Cookie Monitor: Outgoing Cookies
@@ -2630,32 +3138,26 @@
This is a list of cookies that browsers using the YaCy proxy sent to webservers:
-
- Showing #[num]# entries from a total of #[total]# Cookies.
- Receiving Host
-
- Date</td>
+
+ DateSending Client
-
- >Cookie<
-
-
- "Enable Cookie Monitoring"
-
-
- "Disable Cookie Monitoring"
+
+ Cookie
+
+ "Check given urls"
+ Crawl Check
@@ -2665,40 +3167,93 @@
List of possible crawl start URLs
-
- "Check given urls"
+
+ Analysis
+
+
+ URL
+
+
+ Access
+
+
+ Robots
-
- >Analysis<
+
+ Crawl-Delay
-
- >Access<
+
+ Sitemap
-
- >Robots<
+
+
+
+
+
+
+ Recently started remote crawls in progress
+
+
+ Remote crawl start points, crawl is ongoing
+
+
+ Start Time
+
+
+ Peer Name
+
+
+ Start URL
+
+
+ Intention/Description
+
+
+ Depth
+
+
+ Accept '?' URLs
+
+
+ no
-
- >Crawl-Delay<
+
+ yes
-
- >Sitemap<
+
+ Remote crawl start points, finished:
-
- Crawl Profile Editor
+
+ "Terminate"
+
+
+ "Delete"
+
+
+ "Delete finished crawls"
+
+
+ "Edit profile"
+
+
+ "Submit changes"
+
+
+ Crawler Steering
-
- >Crawler Steering<
+
+ Crawl Scheduler
-
- >Crawl Scheduler<
+
+ Scheduled Crawls can be modified in this table
-
- >Scheduled Crawls can be modified in this table<
+
+ Crawl Profile EditorCrawl profiles hold information about a crawl process that is currently ongoing.
@@ -2709,11 +3264,14 @@
Crawl Thread
+
+ Collections
+ Status
-
- >Depth</strong>
+
+ DepthMust Match
@@ -2721,14 +3279,17 @@
Must Not Match
+
+ Recrawl if older than
+ Domain Counter Content
-
- Max Page Per Domain</strong>
+
+ Max Page Per Domain
-
- Accept
+
+ Accept '?' URLsFill Proxy Cache
@@ -2742,49 +3303,49 @@
Remote Indexing
-
- no::yes
- Running
-
- "Terminate"
- Finished
-
- "Delete"
+
+ no
-
- "Delete finished crawls"
+
+ yesSelect the profile to edit
-
- "Edit profile"
-
-
- An error occurred during editing the crawl profile:
+
+ false
-
- Edit Profile
-
-
- "Submit changes"
+
+ true
-
- Crawl Results<
+
+ "An illustration how yacy works"
+
+
+ "delete all"
+
+
+ "del & blacklist"
+
+
+ "clear list"
-
- >Crawl Results Overview<
+
+ "delete"
+
+
+ Crawl Results OverviewThese are monitoring pages for the different indexing queues.
@@ -2804,7 +3365,7 @@
since it shows crawl requests from other peers.
-
+ Case (7) occurs if pack files are imported
@@ -2825,15 +3386,12 @@
This is the 'mirror'-case of process (6).
-
- <em>Use Case:</em> You get entries here, if you start a local crawl on the '<a href="CrawlStartExpert.html">Advanced Crawler</a>' page and check the
-
-
- 'Do Remote Indexing'-flag, and if you checked the 'Accept Remote Crawl Requests'-flag on the '<a href="RemoteCrawl_p.html">Remote Crawling</a>' page.
-
-
+ Every page that a remote peer indexes upon this peer's request is reported back and can be monitored here.
+
+ No remote crawl results can currently been added to the local index as the remote crawler is disabled on this peer.
+ (2) Results for Result of Search Queries
@@ -2867,8 +3425,8 @@
These web pages had been indexed as result of your proxy usage.
-
- No personal or protected page is indexed
+
+ <strong>No personal or protected page is indexed</strong>;such pages are detected by Cookie-Use or POST-Parameters (either in URL or as HTTP protocol)
@@ -2882,6 +3440,9 @@
Set the proxy settings of your browser to the same port as given
+
+ on the 'Settings'-page in the 'Proxy and Administration Port' field.
+ (5) Results for Local Crawling
@@ -2900,76 +3461,91 @@
This is the 'mirror'-case of process (1).
-
- <em>Use Case:</em> This list may fill if you check the 'Accept Remote Crawl Requests'-flag on the '<a href="RemoteCrawl_p.html">Remote Crawling</a>' page
-
-
- The stack is empty.
-
-
- Statistics about #[domains]# domains in this stack:
+
+ The remote crawler is currently disabled
-
+ (7) Results from pack import
-
+ These records had been imported from pack files in DATA/PACKS/load
-
- <em>Use Case:</em> place files with dublin core metadata content into DATA/PACKS/load or use an index import method
-
-
- (i.e. <a href="IndexImportMediawiki_p.html">MediaWiki import</a>, <a href="IndexImportOAIPMH_p.html">OAI-PMH retrieval</a>)
-
-
- >Domain
+
+ The stack is empty.
-
- "delete all"
+
+ Domain
-
- Showing all #[all]# entries in this stack.
+
+ URLs
-
- Showing latest #[count]# lines from a stack of #[all]# entries.
+
+ Blacklist to use
-
- "clear list"
+
+ Collection
-
- >Executor
+
+ Initiator
-
- >Modified
+
+ Executor
-
- >Words
+
+ Modified
-
- >Title
+
+ Words
-
- "delete"
+
+ Title
-
- >Collection
+
+ Country
-
- Blacklist to use
+
+ IP of Host
-
- "del & blacklist"
+
+ URL
-
- on the 'Settings'-page in the 'Proxy and Administration Port' field.
+
+ no title
-
- <html lang="en">
+
+ "API"
+
+
+ "info"
+
+
+ "empty"
+
+
+ "Show all links"
+
+
+ "Media Type checking info"
+
+
+ "Media Type filter info"
+
+
+ "Solr query filter info"
+
+
+ "Clean up search events cache info"
+
+
+ "Start New Crawl Job"
+
+
+ Click on this API button to see a documentation of the POST request parameter for crawl starts.Expert Crawl Start
@@ -2986,26 +3562,14 @@
This is repeated as long as specified under "Crawling Depth".
-
- A crawl can also be started using wget and the
-
-
- >post arguments<
-
-
- > for this web page.
-
-
- Click on this API button to see a documentation of the POST request parameter for crawl starts.
-
-
- >Crawl Job<
+
+ Crawl JobA Crawl Job consist of one or more start point, crawl limitations and document freshness rules.
-
- >Start Point<
+
+ Start PointOne Start URL or a list of URLs:<br/>(must start with http:// https:// ftp:// smb:// file://)
@@ -3016,8 +3580,11 @@
Each of these URLs are the root for a crawl start, existing start URLs are always re-loaded.
-
- >From Link-List of URL<
+
+ Other already visited URLs are sorted out as "double", if they are not allowed using the re-crawl option.
+
+
+ From Link-List of URLFrom Sitemap
@@ -3025,170 +3592,194 @@
From File (enter a path<br/>within your local file system)
-
- Other already visited URLs are sorted out as "double", if they are not allowed using the re-crawl option.
+
+ Index Attributes
-
- A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,
+
+ Add Crawl result to collection<br>(important for Index Pack generation)
-
- then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,
+
+ A crawl result can be tagged with names which are candidates for a collection request.
-
- Use filter
+
+ Do not use underline '_' in collection name, use '-' instead. When useful, add a language code to the collection name, e.g. 'top-100-en'.
-
- Restrict to start domain(s)
+
+ Time Zone Offset
-
- Restrict to sub-path(s)
+
+ The time zone is required when the parser detects a date in the crawled web page. Content can be searched with the on: - modifier which
-
- Example: to allow only urls that contain the word 'science', set the must-match filter to '.*science.*'.
+
+ requires also a time zone when a query is made. To normalize all given dates, the date is stored in UTC time zone. To get the right offset
-
- You can also use an automatic domain-restriction to fully crawl a single domain.
+
+ from dates without time zones to UTC, this offset must be given here. The offset is given in minutes;
-
- Attention: you can test the functionality of your regular expressions using the <a href="RegexTest.html">Regular Expression Tester</a> within YaCy</a>.
+
+ Time zone offsets for locations east of UTC must be negative; offsets for zones west of UTC must be positve.
-
- You can limit the maximum number of pages that are fetched and indexed from a single domain with this option.
+
+ Crawler Filter
-
- You can combine this limitation with the 'Auto-Dom-Filter', so that the limit is applied to all the domains within
+
+ These are limitations on the crawl stacker. The filters will be applied before a web page is loaded.
-
- the given depth. Domains outside the given depth are then sorted-out anyway.
+
+ Indexing
-
- Document Cache<
+
+ This enables indexing of the webpages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the
-
- Store to Web Cache
+
+ Document Cache without indexing.
-
- This option is used by default for proxy prefetch, but is not needed for explicit crawling.
+
+ index text
-
- A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled.
+
+ index media
-
- However, there are sometimes web pages with static content that
+
+ Do Remote Indexing
-
- is accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.
+
+ If checked, the crawler will contact other peers and use them as remote indexers for your crawl.
-
- Accept URLs with query-part ('?'):
+
+ If you need your crawling results locally, you should switch this off.
-
- Obey html-robots-noindex:
+
+ Only senior and principal peers can initiate or receive remote crawls.
-
- Policy for usage of Web Cache
+
+ <strong>A YaCyNews message will be created to inform all peers about a global crawl</strong>,
-
- The caching policy states when to use the cache during crawling:
+
+ so they can omit starting a crawl with the same start point.
-
- no cache
+
+ Remote crawl results won't be added to the local index as the remote crawler is disabled on this peer.
-
- if fresh
+
+ Describe your intention to start this global crawl (optional)
-
- if exist
+
+ This message will appear in the 'Other Peer Crawl Start' table of other peers.
-
- cache only
+
+ Crawling Depth
-
- never use the cache, all content from fresh internet source;
+
+ This defines how often the Crawler will follow links (of links..) embedded in websites.
-
- use the cache if the cache exists and is fresh using the proxy-fresh rules;
+
+ 0 means that only the page you enter under "Starting Point" will be added
-
- use the cache if the cache exist. Do no check freshness. Otherwise use online source;
+
+ to the index. 2-4 is good for normal indexing. Values over 8 are not useful, since a depth-8 crawl will
-
- never go online, use all content from cache. If no cache exist, treat content as unavailable
+
+ index approximately 25.600.000.000 pages, maybe this is the whole WWW.
-
- >Snapshot Creation<
+
+ also all linked non-parsable documents
-
- Max Depth for Snapshots
+
+ Unlimited crawl depth for URLs matching with
-
- Multiple Snapshot Versions
+
+ Maximum Pages per Domain
-
- replace old snapshots with new one
+
+ You can limit the maximum number of pages that are fetched and indexed from a single domain with this option.
-
- add new versions for each crawl
+
+ You can combine this limitation with the 'Auto-Dom-Filter', so that the limit is applied to all the domains within
-
- Snapshots are xml metadata and pictures of web pages that can be created during crawling time.
+
+ the given depth. Domains outside the given depth are then sorted-out anyway.
-
- The xml data is stored in the same way as a Solr search result with one hit and the pictures will be stored as pdf into subdirectories
+
+ Use
-
- of HTCACHE/snapshots/. From the pdfs the jpg thumbnails are computed. Snapshot generation can be controlled using a depth parameter; that
+
+ Page-Count
-
- means a snapshot is only be generated if the crawl depth of a document is smaller or equal to the given number here. If the number is set to -1,
+
+ misc. Constraints
-
- no snapshots are generated.
+
+ A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled.
-
- >Crawler Filter<
+
+ However, there are sometimes web pages with static content that
-
- These are limitations on the crawl stacker. The filters will be applied before a web page is loaded.
+
+ is accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.
-
- Crawling Depth<
+
+ Following frames is NOT done by Gxxg1e, but we do by default to have a richer content. 'nofollow' in robots metadata can be overridden; this does not affect obeying of the robots.txt which is never ignored.
-
- This defines how often the Crawler will follow links (of links..) embedded in websites.
+
+ Accept URLs with query-part ('?'):
-
- 0 means that only the page you enter under "Starting Point" will be added
+
+ Obey html-robots-noindex:
-
- to the index. 2-4 is good for normal indexing. Values over 8 are not useful, since a depth-8 crawl will
+
+ Obey html-robots-nofollow:
-
- index approximately 25.600.000.000 pages, maybe this is the whole WWW.
+
+ Media Type detection
-
- also all linked non-parsable documents
+
+ Not loading URLs with unsupported file extension is faster but less accurate.
-
- Unlimited crawl depth for URLs matching with
+
+ Indeed, for some web resources the actual Media Type is not consistent with the URL file extension. Here are some examples:
-
- Maximum Pages per Domain
+
+ Do not load URLs with an unsupported file extension
-
- >Use<
+
+ Always cross check file extension against Content-Type header
-
- >Page-Count<
+
+ Load Filter on URLs
-
- misc. Constraints
+
+ Example: to allow only urls that contain the word 'science', set the must-match filter to '.*science.*'.
+
+
+ You can also use an automatic domain-restriction to fully crawl a single domain.
+
+
+ must-match
+
+
+ Restrict to start domain(s)
+
+
+ Restrict to sub-path(s)
+
+
+ Use filter
+
+
+ (must not be empty)
+
+
+ must-not-match
-
- >Load Filter on URLs<
+
+ Load Filter on URL origin of links
-
- >Load Filter on IPs<
+
+ Example: to allow loading only links from pages on example.org domain, set the must-match filter to '.*example.org.*'.
+
+
+ Load Filter on IPsMust-Match List for Country Codes
@@ -3202,65 +3793,74 @@
no country code restriction
-
- Filter on URLs
- Document FilterThese are limitations on index feeder. The filters will be applied after a web page was loaded.
-
- >Filter on URLs<
-
-
- The filter is a
-
-
- >regular expression<
+
+ Filter on URLsthat <b>must not match</b> with the URLs to allow that the content of the url is indexed.
-
- > must-match<
-
-
- > must-not-match<
-
-
- (must not be empty)
+
+ No Indexing when Canonical present and Canonical != URLFilter on Content of Document<br/>(all visible text, including camel-case-tokenized url and title)
-
- Clean-Up before Crawl Start
+
+ Filter on Document Media Type (aka MIME type)
-
- >No Deletion<
+
+ that <b>must match</b> with the document Media Type (also known as MIME Type) to allow the URL to be indexed.
-
- >Re-load<
+
+ Each parsed document is checked against the given Solr query before being added to the index.
-
- For each host in the start url list, delete all documents (in the given subpath) from that host.
+
+ The embedded local Solr index must be connected to use this kind of filter.
-
- Delete sub-path
+
+ Content Filter
-
- Delete only old
+
+ These are limitations on parts of a document. The filter will be applied after a web page was loaded.
-
- Do not delete any document before the crawl is started.
+
+ You can choose to:
-
- Treat documents that are loaded
+
+ Evaluate by default
+
+
+ Use all words in document by default until a CSS class as listed below appears; then ignore all
+
+
+ Ignore by default
+
+
+ Ignore all words in document by default until a CSS class as listed below appears, then evaluate all
+
+
+ Filter div or nav class names
+
+
+ comma-separated list of <div> or <nav> element class names which should be filtered out/in according to switch above.
+
+
+ Clean-Up before Crawl Start
+
+
+ Clean up search events cache
+
+
+ Check this option to be sure to get fresh search results including newly crawled documents. Beware that it will also interrupt any refreshing/resorting of search results currently requested from browser-side.
-
- > ago as stale and delete them before the crawl is started.
+
+ No DeletionAfter a crawl was done in the past, document may become stale and eventually they are also deleted on the target host.
@@ -3271,113 +3871,128 @@
to delete them because they simply do not exist any more. Use this in combination with re-crawl while this time should be longer.
+
+ Do not delete any document before the crawl is started.
+
+
+ Delete sub-path
+
+
+ For each host in the start url list, delete all documents (in the given subpath) from that host.
+
+
+ Delete only old
+
+
+ Treat documents that are loaded
+
+
+ ago as stale and delete them before the crawl is started.
+ Double-Check RulesNo Doubles
+
+ A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,
+
+
+ then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,
+ to use that check the 're-load' option.
-
- > ago as stale and load them again. If they are younger, they are ignored.
- Never load any page that is already known. Only the start-url may be loaded again.
-
- Robot Behaviour
-
-
- Use Special User Agent and robot identification
-
-
- You are running YaCy in non-p2p mode and because YaCy can be used as replacement for commercial search appliances
-
-
- (like the GSA) the user must be able to crawl all web pages that are granted to such commercial plattforms.
+
+ Re-load
-
- Not having this option would be a strong handicap for professional usage of this software. Therefore you are able to select
+
+ ago as stale and load them again. If they are younger, they are ignored.
-
- alternative user agents here which have different crawl timings and also identify itself with another user agent and obey the corresponding robots rule.
+
+ Document Cache
-
- index text
+
+ Store to Web Cache
-
- index media
+
+ This option is used by default for proxy prefetch, but is not needed for explicit crawling.
-
- This enables indexing of the webpages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the
+
+ Policy for usage of Web Cache
-
- Document Cache without indexing.
+
+ The caching policy states when to use the cache during crawling:
-
- Do Remote Indexing
+
+ <b>no cache</b>: never use the cache, all content from fresh internet source;
-
- Describe your intention to start this global crawl (optional)
+
+ <b>if fresh</b>: use the cache if the cache exists and is fresh using the proxy-fresh rules;
-
- This message will appear in the 'Other Peer Crawl Start' table of other peers.
+
+ <b>if exist</b>: use the cache if the cache exist. Do no check freshness. Otherwise use online source;
-
- If checked, the crawler will contact other peers and use them as remote indexers for your crawl.
+
+ <b>cache only</b>: never go online, use all content from cache. If no cache exist, treat content as unavailable
-
- If you need your crawling results locally, you should switch this off.
+
+ no cache
-
- Only senior and principal peers can initiate or receive remote crawls.
+
+ if fresh
-
- A YaCyNews message will be created to inform all peers about a global crawl
+
+ if exist
-
- so they can omit starting a crawl with the same start point.
+
+ cache only
-
- Add Crawl result to collection(s)
+
+ Robot Behaviour
-
- A crawl result can be tagged with names which are candidates for a collection request.
+
+ Use Special User Agent and robot identification
-
- These tags can be selected with the
+
+ Because YaCy can be used as replacement for commercial search appliances
-
- GSA interface
+
+ (like the Google Search Appliance aka GSA) the user must be able to crawl all web pages that are granted to such commercial platforms.
-
- using the 'site' operator.
+
+ Not having this option would be a strong handicap for professional usage of this software. Therefore you are able to select
-
- To use this option, the 'collection_sxt'-field must be switched on in the
+
+ alternative user agents here which have different crawl timings and also identify itself with another user agent and obey the corresponding robots rule.
-
- Solr Schema
+
+ Enrich Vocabulary
-
- "Start New Crawl Job"
+
+ Scraping Fields
-
- Restrict to start domain
+
+ You can use class names to enrich the terms of a vocabulary based on the text content that appears on web pages. Please write the names of classes into the matrix.
-
- Restrict to sub-path
+
+ Vocabulary
-
- Following frames is NOT done by Gxxg1e, but we do by default to have a richer content. 'nofollow' in robots metadata can be overridden; this does not affect obeying of the robots.txt which is never ignored.
+
+ Class
+
+ "Scan"
+ Network Scanner
@@ -3390,17 +4005,8 @@
it is possible to select servers that had been found for a full-site crawl.
-
- No servers had been detected in the given IP range
-
-
- Please enter a different IP range for another scan.
-
-
- Please wait...
-
-
- >Scan the network<
+
+ Scan the networkScan Range
@@ -3408,38 +4014,56 @@
Scan sub-range with given host
-
- Full Intranet Scan:
- Do not use intranet scan results, you are not in an intranet environment!All known hosts in the search index (/31 subnet recommended!)
-
- only the given host(s)
+
+ Subnet
+
+
+ /31 (only the given host(s))
+
+
+ /24 (254 addresses)
+
+
+ /20 (4064 addresses)
-
- addresses)
+
+ /16 (65024 addresses)
-
- Subnet<
+
+ Time-Out
-
- Time-Out<
+
+ ms
-
- >Scan Cache<
+
+ Scan Cacheaccumulate scan results with access type "granted" into scan cache (do not delete old scan result)
-
- >Service Type<
+
+ Service Type
+
+
+ ftp
+
+
+ smb
+
+
+ http
+
+
+ https
-
- >Scheduler<
+
+ Schedulerrun only a scan
@@ -3447,17 +4071,17 @@
scan and add all sites with granted access automatically. This disables the scan cache accumulation.
-
- Look every
+
+ Look every
-
- >minutes<
+
+ minutes
-
- >hours<
+
+ hours
-
- >days<
+
+ daysagain and add new sites automatically to indexer.
@@ -3465,19 +4089,22 @@
Sites that do not appear during a scheduled scan period will be excluded from search results.
-
- "Scan"
-
-
- YaCy '#[clientname]#': Crawl Start
+
+ "empty"
+
+
+ "Show all links"
+
+
+ "Start New Crawl"
-
- >Site Crawling<
+
+ Site CrawlingSite Crawler:
@@ -3485,14 +4112,14 @@
Download all web pages from a given domain or base URL.
-
- >Site Crawl Start<
+
+ Site Crawl Start
-
- >Site<
+
+ Site
-
- Start URL (must start with
+
+ Start URL (must start with<br/>http:// https:// ftp:// smb:// file://)Link-List of URL
@@ -3500,8 +4127,8 @@
Sitemap URL
-
- >Path<
+
+ Pathload all files in domain
@@ -3509,41 +4136,38 @@
load only files in a sub-path of given url
-
- >Limitation<
-
-
- not more than <
+
+ Limitation
-
- >documents<
+
+ not more than
-
- Collection<
+
+ documents
-
- >Start<
+
+ Collection
-
- "Start New Crawl"
+
+ Start
-
- Hints<
+
+ Hints
-
- >Crawl Speed Limitation<
+
+ Crawl Speed Limitation
-
- No more that two pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.
+
+ No more that four pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.
-
- >Target Balancer<
+
+ Target BalancerA second crawl for a different host increases the throughput to a maximum of 240 documents per minute since the crawler balances the load over all hosts.
-
- >High Speed Crawling<
+
+ High Speed CrawlingA 'shallow crawl' which is not limited to a single host (or site)
@@ -3551,193 +4175,196 @@
can extend the pages per minute (ppm) rate to unlimited documents per minute when the number of target hosts is high.
-
- This can be done using the <a href="CrawlStartExpert.html">Expert Crawl Start</a> servlet.
-
-
- >Scheduler Steering<
-
-
- The scheduler on crawls can be changed or removed using <a href="Automation_p.html">Automation</a>.
+
+ Scheduler Steering
-
- Click on this API button to see an XML with information about the crawler status
-
-
- >Crawler<
-
-
- >Queues<
-
-
- >Queue<
-
-
- Crawler PPM
+
+ "API"
-
- Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db
+
+ "Pages Per Minute"
-
- and restart.
+
+ "Latency Factor"
-
- Error:
+
+ "Max same Host in queue"
-
- Application not yet initialized. Sorry. Please wait some seconds and repeat
+
+ "set"
-
- ERROR: Crawl filter
+
+ "Set PPM to the default minimum value"
-
- does not match with
+
+ "Set PPM to the default maximum value"
-
- crawl root
+
+ "Terminate"
-
- Please try again with different
+
+ "show link structure"
-
- filter. ::
+
+ "hide graphic"
-
- Crawling of
+
+ Click on this API button to see an XML with information about the crawler status
-
- failed. Reason:
+
+ Crawler
-
- Error with URL input
+
+ (Please enable JavaScript to automatically update this page!)
-
- Error with file input
+
+ Queues
-
- started.
+
+ Queue
-
- Please wait some seconds,
+
+ Size
-
- it may take some seconds until the first result appears there.
+
+ Local Crawler
-
- If you crawl any un-wanted pages,
+
+ Limit Crawler
-
- you can delete them <a href="IndexCreateQueues_p.html?stack=LOCAL">here</a>.<br />
+
+ Remote Crawler
-
- >Size
+
+ No-Load Crawler
-
- >Progress<
+
+ Terminate All
-
- "set"
+
+ Index Size
-
- Loader
+
+ Database
-
- >Index Size<
+
+ EntriesSeg-<br/>ments
-
- >Documents<
-
-
- >solr search api<
-
-
- >Webgraph Edges<
- Citations<br/>(reverse link index)RWIs<br/>(P2P Chunks)
-
- Local Crawler
-
-
- Limit Crawler
+
+ Progress
-
- Remote Crawler
+
+ Indicator
-
- No-Load Crawler
+
+ LevelSpeed / PPM<br/>(Pages Per Minute)
-
- Database
+
+ <abbr title="Pages Per Minute">PPM</abbr>
-
- Entries
+
+ <abbr title="Latency Factor">LF</abbr>
-
- Indicator
+
+ <abbr title="Max same Host in queue">MH</abbr>
-
- Level
+
+ Crawler PPMPostprocessing Progress
+
+ pending:
+ Traffic (Crawler)
-
- >Load<
+
+ MB
-
- pending:
+
+ Load
+
+
+ Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db
+
+
+ and restart.
+
+
+ Application not yet initialized. Sorry. Please wait some seconds and repeat
+
+
+ the request.
+
+
+ filter.
+
+
+ it may take some seconds until the first result appears there.</strong>
+
+
+ No embedded local Solr index is connected. This is required to use a Solr query filter.
-
- >Running Crawls
+
+ The Solr filter query syntax is not valid :
+
+
+ Could not parse the Solr filter query :
+
+
+ You asked for remote indexing, but remote crawl results won't be added to the local index as the remote crawler is currently disabled on this peer.Name
+
+ Count
+ StatusRunning
-
- Terminate All
-
-
- Confirm Termination of All Crawls
-
-
- "Terminate"
- Crawled Pages
-
- Load<
-
+
+ "Load"
+
+
+ "Deactivate"
+
+
+ "Remove"
+
+
+ "Activate"
+ Knowledge Loader
@@ -3750,159 +4377,162 @@
You can download additional files here.
-
- >Geolocalization<
+
+ GeolocalizationGeolocalization will enable YaCy to present locations from OpenStreetMap according to given search words.
-
- >GeoNames<
+
+ GeoNamesWith this file it is possible to find cities all over the world.
-
- Content<
+
+ Contentcities with a population > 1000 all over the world
-
- cities with a population > 5000 all over the world
-
-
- cities with a population > 100000 all over the world (the set is is reduced to cities > 100000)
-
-
- >Download from<
-
-
- >Storage location<
+
+ Download from
-
- >Status<
+
+ Storage location
-
- >not loaded<
-
-
- >loaded<
+
+ Status
-
- :deactivated
+
+ not loaded
-
- >Action<
+
+ loaded
-
- >Result<
+
+ deactivated
-
- "Load"
+
+ Action
-
- "Deactivate"
+
+ Result
-
- "Remove"
+
+ loaded and activated dictionary file
-
- "Activate"
+
+ deactivated and removed dictionary file
-
- >loaded and activated dictionary file<
+
+ deactivated dictionary file
-
- >loading of dictionary file failed: #[error]#<
+
+ activated dictionary file
-
- >deactivated and removed dictionary file<
+
+ cities with a population > 5000 all over the world
-
- >cannot remove dictionary file: #[error]#<
+
+ cities with a population > 100000 all over the world (the set is is reduced to cities > 100000)
-
- >deactivated dictionary file<
+
+ OpenGeoDB
-
- >cannot deactivate dictionary file: #[error]#<
+
+ With this file it is possible to find locations in Germany using the location (city) name, a zip code, a car sign or a telephone pre-dial number.
-
- >activated dictionary file<
+
+ Downloaded from
-
- >cannot activate dictionary file: #[error]#<
+
+ loaded - can be upgraded using the Load button for the new URL
-
- >With this file it is possible to find locations in Germany using the location (city) name, a zip code, a car sign or a telephone pre-dial number.<
+
+ loaded and upgraded dictionary file
-
- Suggestions<
+
+ SuggestionsSuggestion dictionaries will help YaCy to provide better suggestions during the input of search words
+
+ DeReWo - Korpusbasierte Grund-/Wortformenlisten (German) of 'Institut für Deutsche Sprache'
+ This file provides 100000 most common german words for suggestions
+
+ Synonyms
+
+
+ Synonyms are used to find not only the searched word but also their synonyms. This is done by adding all synonyms of words in documents to the document and searching the synonyms as well.
+
+
+ OpenThesaurus - German Thesaurus from http://www.openthesaurus.de
+
+
+ The data from this source was converted to the YaCy synonym file format and part of the YaCy distribution.
+
+
+ Deactivated
+
+
+ Activated
+
+
+ Moby Lexicon - English Thesaurus from https://www.gutenberg.org/ebooks/3202
+
+
+ Russian Thesaurus
+
+
+ The data was converted to the YaCy synonym file format and part of the YaCy distribution.
+
-
- >Tutorial
+
+ YaCy: Tutorial
-
- You are using the administration interface of your own search engine
+
+ Tutorial
-
- You can create your own search index with YaCy
+
+ You are using the administration interface of your own search engine. You can create your own search index with YaCy.
-
- To learn how to do that, watch one of the demonstration videos below
+
+ To learn how to do that, watch one of the demonstration videos below:twitter this video
-
- Download from Vimeo
- More Tutorials
-
- Please see the tutorials on
-
-
- YaCy: Tutorial
-
-
- Index Browser
-
-
- Browse the index of #[ucount]# documents.
-
-
- Enter a host or an URL for a file list or view a list of
+
+ "Delete Subpath"
-
- >all hosts<
+
+ "Re-load load-failure docs (404s etc)"
-
- >only hosts with urls pending in the crawler<
+
+ "Directory"
-
- > or <
+
+ "Delete Load Errors"
-
- >only with load errors<
+
+ Index BrowserHost/URL
@@ -3910,20 +4540,11 @@
Browse Host
-
- "Delete Subpath"
-
-
- Browser for
-
-
- "Re-load load-failure docs (404s etc)"
+
+ Host List
-
- Confirm Deletion
-
-
- >Host List<
+
+ URLsCount Colors:
@@ -3934,41 +4555,38 @@
Pending in Crawler
-
- Crawler Excludes<
-
-
- Load Errors<
+
+ Crawler Excludes
-
- documents stored for host: #[hostsize]#
+
+ Load Errors
-
- documents stored for subpath: #[subpathloadsize]#
+
+ Host Analysis
-
- unloaded documents detected in subpath: #[subpathdetectedsize]#
+
+ Add to blacklist
-
- >Path<
+
+ Path
-
- >stored<
+
+ stored
-
- >linked<
+
+ linked
-
- >pending<
+
+ pending
-
- >excluded<
+
+ excluded
-
- >failed<
+
+ failed
-
- Show Metadata
+
+ Metadatalink, detected from context
@@ -3976,29 +4594,11 @@
load & index
-
- >indexed<
-
-
- >loading<
-
-
- Outbound Links, outgoing from #[host]# - Host List
-
-
- Inbound Links, incoming to #[host]# - Host List
-
-
- <html lang="en">
-
-
- 'number of documents about this date'
-
-
- "show link structure graph"
+
+ indexed
-
- Host has load error(s)
+
+ loadingAdministration Options
@@ -4006,102 +4606,52 @@
Delete all
-
- >Load Errors<
- from index
-
- "Delete Load Errors"
-
-
+
-
- Index Cleaner
-
-
- >URL-DB-Cleaner
-
-
- Total URLs searched:
-
-
- Blacklisted URLs found:
-
-
- Percentage blacklisted:
-
-
- last searched URL:
-
-
- last blacklisted URL found:
-
-
- >RWI-DB-Cleaner
-
-
- RWIs at Start:
-
-
- RWIs now:
+
+ "Show URL Entries for Word"
-
- wordHash in Progress:
+
+ "Show URL Entries for Word-Hash"
-
- last wordHash with deleted URLs:
+
+ "Generate List"
-
- Number of deleted URLs in on this Hash:
+
+ "List Selected URLs"
-
- URL-DB-Cleaner - Clean up the database by deletion of blacklisted urls:
+
+ "Delete Word"
-
- Start/Resume
+
+ "Transfer to other peer"
-
- Stop
+
+ "Delete reference to selected URLs"
-
- Pause
+
+ "Add selected URLs to blacklist"
-
- RWI-DB-Cleaner - Clean up the database by deletion of words with reference to blacklisted urls:
+
+ "Add selected domains to blacklist"
-
-
-
-
-
Reverse Word Index Administration
-
- The local index currently contains #[wcount]# reverse word indexes
- RWI Retrieval (= search for a single word)
-
- Retrieve by Word:<
-
-
- "Show URL Entries for Word"
-
-
- Retrieve by Word-Hash
-
-
- "Show URL Entries for Word-Hash"
+
+ Retrieve by Word:
-
- "Generate List"
+
+ Retrieve by Word-Hash:Limitations
@@ -4118,110 +4668,107 @@
(this causes that old references are deleted if that limit is reached)
-
- >Set References Limit<
-
-
- No entry for word '#[word]#'
+
+ Set References Limit
-
- No entry for word hash
+
+ Search result:
-
- Search result
+
+ total URLs
-
- total URLs</td>
+
+ appearance in
-
- appearance in</td>
+
+ in link type
-
- in link type</td>
+
+ document type
-
- document type</td>
+
+ description
-
- <td>description</td>
+
+ title
-
- <td>title</td>
+
+ creator
-
- <td>creator</td>
+
+ subject
-
- <td>subject</td>
+
+ url
-
- <td>url</td>
+
+ emphasized
-
- <td>emphasized</td>
+
+ image
-
- <td>image</td>
+
+ audio
-
- <td>audio</td>
+
+ video
-
- <td>video</td>
+
+ app
-
- <td>app</td>
+
+ index of
-
- index of</td>
-
-
- >Selection</td>
+
+ SelectionDisplay URL List
-
- Number of lines
+
+ Number of lines:all lines
-
- "List Selected URLs"
+
+ Word Deletion
-
- Transfer RWI to other Peer
+
+ delete also the referenced URL (recommended, may produce unresolved references
-
- Transfer by Word-Hash
+
+ at other word indexes but they do not harm)
-
- "Transfer to other peer"
+
+ for every resolvable and deleted URL reference, delete the same reference at every other word where
+
+
+ the reference exists (very extensive, but prevents further unresolved references)
+
+
+ Transfer RWI to other Peer
-
- to Peer
+
+ Transfer by Word-Hash:
-
- <dd>select
+
+ to Peer:
-
- or enter a hash
+
+ select
-
- or peer name:
+
+ or enter a hash or peer name:
-
- Sequential List of Word-Hashes
+
+ Sequential List of Word-Hashes:No URL entries related to this word hash
-
- >#[count]# URL entries related to this word hash
-
-
- Resource</td>
+
+ ResourceNegative Ranking Factors
@@ -4229,127 +4776,118 @@
Positive Ranking Factors
+
+ props
+ Reverse Normalized Weighted Ranking Sum
-
- hash</td>
+
+ hash
+
+
+ dom length
-
- dom length</td>
+
+ url comps
-
- url length</td>
+
+ url length
-
- pos in text</td>
+
+ pos in text
-
- pos of phrase</td>
+
+ pos of phrase
-
- pos in phrase</td>
+
+ pos in phrase
-
- <td>authority</td>
+
+ term frequency
-
- <td>date</td>
+
+ authority
-
- words in title</td>
+
+ date
-
- words in text</td>
+
+ words in title
-
- local links</td>
+
+ words in text
-
- remote links</td>
+
+ local links
-
- hitcount</td>
+
+ remote links
+
+
+ hitcountunresolved URL Hash
-
- Word Deletion
- Deletion of selected URLs
-
- delete also the referenced URL (recommended, may produce unresolved references
-
-
- at other word indexes but they do not harm)
-
-
- for every resolvable and deleted URL reference, delete the same reference at every other word where
-
-
- the reference exists (very extensive, but prevents further unresolved references)
-
-
- "Delete reference to selected URLs"
-
-
- "Delete Word"
- Blacklist Extension
-
- "Add selected URLs to blacklist"
-
-
- "Add selected domains to blacklist"
-
-
- These document details can be retrieved as <a href="http://www.w3.org/TR/xhtml-rdfa-primer/" target="_blank">XHTML+RDFa</a>
+
+ "API"
+
+
+ "Show Details for URL"
+
+
+ "Show Details for URL-Hash"
+
+
+ "Delete"
+
+
+ "Optimize Solr"
+
+
+ "Shut Down and Re-Start Solr"
+
+
+ "Generate Statistics"
-
- document containg <a href="http://www.w3.org/RDF/" target="_blank">RDF</a> annotations in <a href="http://dublincore.org/" target="_blank">Dublin Core</a> vocabulary.
+
+ "delete all"
+
+
+ "Show Content"
-
- The XHTML+RDFa data format is both a XML content format and a HTML display format and is considered as an important <a href="http://www.w3.org/2001/sw/" target="_blank">Semantic Web</a> content format.
+
+ "Delete URL"
-
- The same content can also be retrieved as pure <a href="api/yacydoc.xml?urlhash=#[urlhash]#">XML metadata</a> with DC tag name vocabulary.
+
+ "Delete URL and remove all references from words"Click the API icon to see an example call to the search rss API.
-
- To see a list of all APIs, please visit the <a href="https://wiki.yacy.net/index.php/Dev:API" target="_blank">API wiki page</a>.
- URL Database Administration
-
- The local index currently contains #[ucount]# URL references
- URL Retrieval
-
- Retrieve by URL:<
-
-
- "Show Details for URL"
+
+ Retrieve by URL:
-
- Retrieve by URL-Hash
-
-
- "Show Details for URL-Hash"
+
+ Retrieve by URL-Hash:Cleanup
@@ -4381,11 +4919,20 @@
Delete robots.txt Cache
-
- "Delete"
+
+ Optimize Solr
+
+
+ merge to max.
+
+
+ segments
+
+
+ Reboot Solr Core
-
- Confirm Deletion
+
+ This feature is available when using exclusively a local embedded Solr.Statistics about top-domains in URL Database
@@ -4396,57 +4943,15 @@
domains from all URLs.
-
- "Generate Statistics"
-
-
- Statistics about the top-#[domains]# domains in the database:
-
-
- "delete all"
-
-
- >Domain<
-
-
- >Optimize Solr<
-
-
- merge to max. <
-
-
- > segments
-
-
- "Optimize Solr"
-
-
- Reboot Solr Core
-
-
- "Shut Down and Re-Start Solr"
-
-
- query
+
+ Domain
-
- No entry found for URL-hash
-
-
- "Show Content"
-
-
- "Delete URL"
+
+ URLsthis may produce unresolved references at other word indexes but they do not harm
-
- "Delete URL and remove all references from words"
-
-
- Optimize Solr
- delete the reference to this url at every other word where the reference exists (very extensive, but prevents unresolved references)
@@ -4461,9 +4966,6 @@
The loader set is empty
-
- There are #[num]# entries in the loader set:
- Initiator
@@ -4473,52 +4975,49 @@
Status
+
+ URL
+
-
- Parser Errors
-
-
- Rejected URLs
-
-
- There are #[num]# entries in the rejected-urls list.
-
-
- Showing latest #[num]# entries.
- "show more""clear list"
+
+ Rejected URLs
+ Time
+
+ URL
+ Fail-Reason
-
- Rejected URL List:
-
-
- There are #[num]# entries in the rejected-queue:
-
-
- This crawler queue is empty
+
+ "API"
+
+
+ "Delete"Click on this API button to see an XML with information about the crawler latency and other statistics.
+
+ This crawler queue is empty
+ Delete Entries:
@@ -4537,6 +5036,9 @@
Anchor Name
+
+ URL
+ Count
@@ -4546,40 +5048,37 @@
Host
-
- "Delete"
-
-
- Crawl Queue<
-
-
- >Count<
-
-
- >Initiator<
-
-
- >Profile<
-
-
- >Depth<
-
-
- Index Deletion<
+
+ "Simulate Deletion"
+
+
+ "no actual deletion, generates only a deletion count"
+
+
+ "Engage Deletion"
+
+
+ "simulate a deletion first to calculate the deletion count"
+
+
+ "engaged"
-
- The search index contains #[doccount]# documents. You can delete them here.
+
+ Index DeletionDeletions are made concurrently which can cause that recently deleted documents are not yet reflected in the document count.
-
- Delete by URL Matching<
+
+ Index deletion will not immediately reduce the storage size on disk because entries are only marked as deleted in a first step.
+
+
+ Delete by URL MatchingDelete all documents within a sub-path of the given urls. That means all documents must start with one of the url stubs as given here.
@@ -4587,8 +5086,8 @@
One URL stub, a list of URL stubs<br/>or a regular expression
-
- Matching Method<
+
+ Matching Methodsub-path of given URLs
@@ -4596,97 +5095,117 @@
matching with regular expression
-
- "Simulate Deletion"
+
+ Delete by Age
-
- "no actual deletion, generates only a deletion count"
+
+ Delete all documents which are older than a given time period.
-
- "Engage Deletion"
+
+ Time Period
-
- "simulate a deletion first to calculate the deletion count"
+
+ All documents older than
-
- "engaged"
+
+ years
-
- selected #[count]# documents for deletion
+
+ months
-
- deleted #[count]# documents
+
+ days
-
- Delete by Age<
+
+ hours
-
- Delete all documents which are older than a given time period.
+
+ Age Identification
-
- Time Period<
+
+ load date
-
- All documents older than
+
+ last-modified
+
+
+ Delete Collections
+
+
+ Delete all documents which are inside specific collections.
+
+
+ Not Assigned
+
+
+ Delete all documents which are not assigned to any collection
-
- years<
+
+ Assigned
-
- months<
+
+ Delete all documents which are assigned to the following collection(s)
-
- days<
+
+ Delete by Solr Query
-
- hours<
+
+ This is the most generic option: select a set of documents using a solr query.
-
- Age Identification<
+
+ Core
-
- >load date
+
+
+
+
+
+
+ "Create Dump"
-
- >last-modified
+
+ "Restore Dump"
-
- Delete Collections<
+
+ Solr Index Export/Import
-
- Delete all documents which are inside specific collections.
+
+ Dump and Restore of Solr Index
-
- Not Assigned<
+
+ This feature is available only when a local embedded Solr is active.
-
- Delete all documents which are not assigned to any collection
+
+ (This may take several minutes. Please be patient and wait until the page reloads.)
-
- , separated by ',' (comma) or '|' (vertical bar); or
+
+ Dump File (full path)
-
- >generate the collection list...
+
+ Could not create the Solr dump : no embedded Solr is available.
-
- Assigned<
+
+ An error occurred while trying to create the Solr dump.
-
- Delete all documents which are assigned to the following collection(s)
+
+ Successfully restored Solr index from dump file!
-
- Delete by Solr Query<
+
+ Could not restore the Solr dump : no embedded Solr is available.
-
- This is the most generic option: select a set of documents using a solr query.
+
+ An error occurred while trying to restore the Solr dump.
-
- The local index currently contains #[ucount]# documents.
+
+ "Export"
+
+
+ Index ExportLoaded URL Export
@@ -4697,23 +5216,29 @@
URL Filter
-
- >query<
+
+ query
+
+
+ maximum age (seconds)
-
- maximum age (seconds, -1 = unlimited)
+
+ maximum number of records per chunk
-
- Export Format
+
+ if exceeded: several chunks are stored; -1 = unlimited (makes only one chunk)
-
- Full Data Records:
+
+ Export Size
-
- (Rich and full-text Solr data, one document per line in one large xml file, can be processed with shell tools, can be imported with DATA/PACKS/load/)
+
+ full size, all fields:
-
- (Rich and full-text Elasticsearch data, one document per line in one flat JSON file, can be bulk-imported to elasticsearch with the command "curl -XPOST localhost:9200/collection1/yacy/_bulk --data-binary @yacy_dump_XXX.flatjson")
+
+ minified; only fields sku, date, title, description, text_t
+
+
+ Export FormatFull URL List:
@@ -4733,49 +5258,28 @@
HTML (domains as URLs, no title)
-
- >Only Text:
+
+ Only Text:Fulltext of Search Index Text
-
- Export to file #[exportfile]# is running .. #[urlcount]# Documents so far
-
-
- Finished export of #[urlcount]# Documents to file
-
-
+ Import this file by moving it to DATA/PACKS/load
-
- Export to file #[exportfile]# failed:
-
-
- Dump and Restore of Solr Index
-
-
- "Create Dump"
-
-
- Dump File
-
-
- "Restore Dump"
-
-
- Stored a solr dump to file
-
+
+ "Set"
+ Index Sources & Targets
-
- YaCy supports multiple index storage locations.
+
+ YaCy supports multiple index storage locations.As an internal indexing database a deep-embedded multi-core Solr is used and it is possible to attach also a remote Solr.
@@ -4783,35 +5287,26 @@
Solr Search Index
-
- 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>.
-
-
- Lazy Value Initialization
+
+ Lazy Value InitializationIf checked, only non-zero values and non-empty strings are written to Solr fields.
-
- Use deep-embedded local Solr
-
-
- This will write the YaCy-embedded Solr index which stored within the YaCy DATA directory.
+
+ Use deep-embedded local Solr
-
- The Solr native search interface is accessible at<br/>
+
+ This will write the YaCy-embedded Solr index which is stored within the YaCy DATA directory.
-
- <a href="solr/select?q=*:*&start=0&rows=3&core=collection1">/solr/select?q=*:*&start=0&rows=3&core=collection1</a>
+
+ The Solr native search interface is accessible at
-
- for the default search index (core: collection1) and at<br/>
+
+ /solr/select?q=*:*&start=0&rows=3&core=collection1
-
- <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/>
+
+ for the default search index (core: collection1) and atIf you switch off this index, a remote Solr must be activated.
@@ -4819,6 +5314,15 @@
Use remote Solr server(s)
+
+ 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.
+
+
+ Allow self-signed certificates
+
+
+ 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>.
+ Solr Hosts
@@ -4828,26 +5332,20 @@
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>.
-
-
- 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 URL(s)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.
-
- 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/>
+
+ Sharding Methodwrite-enabled (if unchecked, the remote server(s) will only be used as search peers)
@@ -4855,8 +5353,8 @@
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).
+
+ 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).use citation reference index (lightweight and fast)
@@ -4864,9 +5362,6 @@
use webgraph search index (rich information in second Solr core)
-
- "Set"
- Peer-to-Peer Operation
@@ -4876,28 +5371,111 @@
support peer-to-peer index transmission (DHT RWI index)
+
+ Block known error URLs in DHT
+
+
+ Reject URLs/RWIs with known errors from peers. Disable to opt out.
+
+
+ Retry after (days)
+
+
+ for temporary errors; permanent errors stay blocked.
+
+
+ Permanent error statuses
+
+
+ comma-separated (default: 404,410,-1; -1=DNS/network errors)
+
+
+
+
+
+
+
+ "Import JsonList File"
+
+
+ "Stop"
+
+
+ JSON List Index Dump File Import
+
+
+ No import thread is running, you can start a new thread here
+
+
+ JsonList File Selection: select an jsonlist file (which may be gz compressed)
+
+
+ File:
+
+
+ or
+
+
+ Url:
+
+
+ Import Process
+
+
+ Thread:
+
+
+ JsonList File:
+
+
+ Processed:
+
+
+ Speed:
+
+
+ Running Time:
+
+
+ Remaining Time:
+
+
+ "Uniform Resource Locator"
+
+
+ "Dump file path on this YaCy server file system, or any remote URL"
+
+
+ "Import MediaWiki Dump"
+ MediaWiki Dump ImportNo import thread is running, you can start a new thread here
-
- Bad input data:
+
+ Error : dump <abbr title="Uniform Resource Locator">URL</abbr> is malformed.
-
- MediaWiki Dump File Selection: select an XML file (which may be bz2- or gz-encoded)
+
+ MediaWiki Dump File Selection
-
- You can import <a href="https://dumps.wikimedia.org/backup-index-bydb.html" target="_blank">MediaWiki dumps</a> here. An example is the file
+
+ Dumps can be stored in the local file system or on a remote server in XML format and may be compressed in gz or bz2.
-
- "Import MediaWiki Dump"
+
+ Dump file path or <abbr title="Uniform Resource Locator">URL</abbr>
+
+
+ Import only when modified since last import
+
+
+ When checked, the dump file is imported only if its last modified date is unknown or is after the last import execution date on this same fileWhen the import is started, the following happens:
@@ -4905,19 +5483,19 @@
The dump is extracted on the fly and wiki entries are translated into Dublin Core data format. The output looks like this:
-
+ Each 10000 wiki records are combined in one output file which is written to /DATA/PACKS/load into a temporary file.When each of the generated output file is finished, it is renamed to a .xml file
-
+ Each time a xml pack file appears in /DATA/PACKS/load, the YaCy indexer fetches the file and indexes the record entries.
-
+ When a pack file is finished with indexing, it is moved to /DATA/PACKS/loaded
-
+ You can recycle processed pack files by moving them from /DATA/PACKS/loaded to /DATA/PACKS/load
@@ -4926,352 +5504,573 @@
Thread:
+
+ started
+
+
+ running
+ Dump:Processed:
-
- Wiki Entries
+
+ Speed:
+
+
+ Running Time:
+
+
+ Remaining Time:
+
+
+
+
+
+
+
+ "Load Selected Sources"
+
+
+ Source
+
+
+ Import List
+
+
+ Thread
+
+
+ Processed<br />Chunks
+
+
+ Imported<br />Records
+
+
+ Complete at<br /># Records
+
+
+ Speed<br />(records/second)
+
+
+
+
+
+
+
+ "Import OAI-PMH source"
+
+
+ "import this source"
+
+
+ "import from a list"
+
+
+ OAI-PMH Import
+
+
+ Single request import
+
+
+ This will submit only a single request as given here to a OAI-PMH server and imports records into the index
+
+
+ Source:
+
+
+ Processed:
+
+
+ ResumptionToken:
+
+
+ Import all Records from a server
+
+
+ Import all records that follow according to resumption elements into index
+
+
+ or
+
+
+ Import started!
+
+
+
+
+
+
+
+ "Import Warc File"
+
+
+ "Stop"
+
+
+ Web Archive File Import
+
+
+ No import thread is running, you can start a new thread here
+
+
+ Warc File Selection: select an warc file (which may be gz compressed)
+
+
+ You can download warc archives for example here
+
+
+ File:
+
+
+ or
+
+
+ Url:
+
+
+ Collection:
+
+
+ Import Process
+
+
+ Thread:
+
+
+ Warc File:
+
+
+ Processed:
+
+
+ Speed:
+
+
+ Running Time:
+
+
+ Remaining Time:
+
+
+
+
+
+
+
+ "Import ZIM File"
+
+
+ "Stop"
+
+
+ ZIM File Import
+
+
+ No import thread is running, you can start a new thread here
+
+
+ Zim File Selection: select a '.zim' file
+
+
+ You can download ZIM files for example here
+
+
+ File:
+
+
+ Collection:
+
+
+ Import Process
+
+
+ Thread:
+
+
+ ZIM File:
+
+
+ Processed:
+
+
+ Speed:
+
+
+ Running Time:
+
+
+ Remaining Time:
+
+
+
+
+
+
+
+ YaCy Pack Downloader
+
+
+ Available Packs
+
+
+ Source
+
+
+ Repo ID
+
+
+ File
+
+
+ Process
+
+
+
+
+
+
+
+ "info"
+
+
+ "Generate Data Pack"
+
+
+ YaCy Pack Generator
-
- Speed:
+
+ Index Pack Generator
-
- articles per second<
+
+ Set a Category (this goes into the filename)
-
- Running Time:
+
+ mix - a mix of document types, for content from wide web crawls
-
- hours,
+
+ core - technical documentation, operating systems, computer hardware, open source and free software, manuals, protocol standards
-
- minutes<
+
+ scroll - non-technical documents: knowledge, encyclopedia, linguistic corpora, dictionaries, translation memories, texts, non-fiction books, historical books
-
- Remaining Time:
+
+ regula - non-technical standards: industry standards, laws, rules, compliance
-
-
-
-
-
-
- List of #[num]# OAI-PMH Servers
+
+ gem - research, papers, university publications, science
-
- "Load Selected Sources"
+
+ fiction - fictional documents: movies, stories, series, books (fiction, science-fiction)
-
- OAI-PMH source import list
+
+ map - geological data, geolocation-data, earth/world information
-
- >Source<
+
+ echo – micro-content (tweets, toots, short headlines, SMS corpora), podcasts, radio archives, audio lectures, spoken-word datasets, logs, incidents, telemetry
-
- Import List
+
+ spirit – related to non-textual data (possibly only metadata): art, music, game assets, creative-commons media (non-text culture loot)
-
- >Thread<
+
+ vault - sensitive data: secrets, leaks, non-public documents, security advisories
-
- >Processed<br />Chunks<
+
+ Index Collection
-
- >Imported<br />Records<
+
+ 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.
-
- >Speed<br />(records/second)
+
+ Slug - describe the content<br>(only if collection is "user")
-
- Complete at
+
+ 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"
-
-
-
-
-
-
- OAI-PMH Import
+
+ URL Filter
-
- Results from the import can be monitored in the <a href="CrawlResults.html?process=7">indexing results for packs
+
+ Search Query -
-
- Single request import
+
+ Export Format
-
- This will submit only a single request as given here to a OAI-PMH server and imports records into the index
+
+ This JSON is an elasticsearch index dump format and can be bulk-imported to elasticsearch. Here is an example for opensearch, using docker:
-
- "Import OAI-PMH source"
+
+ Start docker container of opensearch:
-
- Source:
+
+ Unblock index creation:
-
- Processed:
+
+ Create the search index:
-
- records<
+
+ Bulk-upload the index file:
-
- ResumptionToken:
+
+ Make a search, get 10 results, search in fields text_t, title, description with boosts:
-
- Import failed:
+
+ JSON (Rich and full-text Elasticsearch data, one document per line in one flat JSON file)
-
- Import all Records from a server
+
+ XML (Rich and full-text Solr data, one document per line in one large xml file,
-
- Import all records that follow according to resumption elements into index
+
+ can be processed with shell tools, can be imported with DATA/PACKS/load/)
-
- "import this source"
+
+ XML (RSS)
-
- ::or
+
+ Import this file by moving it to DATA/PACKS/load
-
- "import from a list"
+
+ Pack List
-
- Import started!
+
+ Pack
+
+
+ Process
-
- Bad input data:
+
+ Size (KB)
-
+
-
- Warc Import
+
+ YaCy Pack Manager
-
- Web Archive File Import
+
+ Pack Folders
-
- No import thread is running, you can start a new thread here
+
+ Packs: Hold List
-
- Warc File Selection: select an warc file (which may be gz compressed)
+
+ Size (KB)
-
- You can download warc archives for example here
+
+ Process
-
- Internet Archive
+
+ Packs: Load List
-
- Import Warc File
+
+ Packs: Loaded List
-
- Import Process
+
+
+
+
+
+
+ "refresh page"
-
- Thread:
+
+ "start reindex job now"
-
- Warc File:
+
+ "stop reindexing"
-
- Processed:
+
+ "Simulate"
-
- Entries
+
+ "Check only how many documents would be selected for recrawl"
-
- Speed:
+
+ "Set defaults"
-
- pages per second
+
+ "Reset to default values"
-
- Running Time:
+
+ "start recrawl job now"
-
- hours,
+
+ "update"
-
- minutes<
+
+ "stop recrawl job"
-
- Remaining Time:
+
+ "Automatically refreshing"
-
-
-
-
-
-
- Field Re-Indexing<
+
+ "An error occurred while trying to refresh automatically"
+
+
+ "URLs added to the crawler queue for recrawl"
+
+
+ "URLs rejected for some reason by the crawl stacker or the crawler queue. Please check the logs for more details."
+
+
+ Field Re-IndexingIn case that an index schema of the embedded/local index has changed, all documents with missing field entries can be indexed again with a reindex job.
-
- "refresh page"
-
-
- Documents in current queue<
+
+ Documents in current queue
-
- Documents processed<
+
+ Documents processedcurrent select query
-
- "start reindex job now"
-
-
- "stop reindexing"
- Remaining field listreindex documents containing these fields:
+
+ Field
+
+
+ count
+ Re-Crawl Index DocumentsSearches the local index and selects documents to add to the crawler (recrawl the document).
-
- This runs transparent as background job.
-
-
- Documents are added to the crawler only if no other crawls are active
+
+ This runs transparent as background job. Documents are added to the crawler only if no other crawls are activeand are added in small chunks.
-
- "start recrawl job now"
-
-
- "stop recrawl job"
-
-
- Re-Crawl Query Details
+
+ Re-crawl works only with an embedded local Solr index!
-
- Documents to process
+
+ Solr query
-
- Current Query
+
+ document(s)
-
- Edit Solr Query
+
+ selected for recrawl.
-
- update
+
+ An error occurred when trying to run the selection query.
-
- to re-crawl documents selected with the given query.
+
+ The Solr index is not connected. Please restart your peer.Include failed URLs
-
- >Field<
-
-
- >count<
-
-
- Re-crawl works only with an embedded local Solr index!
-
-
- Simulate
+
+ Delete URLs
-
- Check only how many documents would be selected for recrawl
+
+ to re-crawl documents selected with the given query.
-
- "Browse metadata of the #[rows]# first selected documents"
+
+ Re-Crawl Query Details
-
- document(s)</a>#(/showSelectLink)# selected for recrawl.
+
+ Documents to process
-
- >Solr query <
+
+ Current Query
-
- Set defaults
+
+ Edit Solr Query
-
- "Reset to default values"
+
+ Include failed urls
-
- Last #(/jobStatus)#Re-Crawl job report
+
+ Delete urls
-
- Automatically refreshing
+
+ Last
-
- An error occurred while trying to refresh automatically
+
+ Re-Crawl job reportThe job terminated early due to an error when requesting the Solr index.
-
- >Status<
-
-
- "Running"
-
-
- "Shutdown in progress"
-
-
- "Terminated"
-
-
- Running::Shutdown in progress::Terminated
+
+ Status
-
- >Query<
+
+ Running
-
- >Start time<
+
+ Shutdown in progress
-
- >End time<
+
+ Terminated
-
- URLs added to the crawler queue for recrawl
+
+ Query
-
- >Recrawled URLs<
+
+ Start time
-
- URLs rejected for some reason by the crawl stacker or the crawler queue. Please check the logs for more details.
+
+ End time
-
- >Rejected URLs<
+
+ Recrawled URLs
-
- >Malformed URLs<
+
+ Rejected URLs
-
- "#[malformedUrlsDeletedCount]# deleted from the index"
+
+ Malformed URLs
-
- > Refresh<
+
+ Refresh
+
+ "API"
+
+
+ "active"
+
+
+ "disabled"
+
+
+ "Required for proper operation"
+
+
+ "Set"
+
+
+ "reset selection to default"
+
+
+ "reindex Solr"
+
+
+ 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.
+ Solr Schema Editor
@@ -5281,9 +6080,6 @@
Select a core:
-
- the core can be searched at
- Active
@@ -5305,14 +6101,8 @@
show disabled
-
- "Set"
-
-
- "reset selection to default"
-
-
- >Reindex documents<
+
+ Reindex documentsIf you unselected some fields, old documents in the index still contain the unselected fields.
@@ -5323,19 +6113,206 @@
Here you can reindex all documents with inactive fields.
-
- "reindex Solr"
+
+
+
+
+
+
+ "Set"
+
+
+ Index Sharing
+
+
+ Index:
+
+
+ distribute
+
+
+ receive
+
+
+ receive grant default:
+
+
+ for each remote peer
+
+
+ links/minute
+
+
+ words/minute
+
+
+
+
+
+
+
+ "info"
+
+
+ LLM Selection
+
+
+ Here you can pick models from an LLM model service to select them as production model.
+
+
+ In the "Production Models Matrix" you can then assign each selected model a function inside YaCy
+
+
+ Service Selection
+
+
+ service
+
+
+ Ollama
+
+
+ LMStudio
+
+
+ OpenAI
+
+
+ Open Router
+
+
+ This makes a preset to the Hoststub value
+
+
+ hoststub
+
+
+ you can probably leave this to the default value
+
+
+ api_key
+
+
+ (not required for Ollama or LMStudio)
+
+
+ Services
+
+
+ <b>num_ctx</b> is the context window (in tokens) of the inference service — a per-service
+
+
+ value, shared by all models on that endpoint. It is the total budget for prompt <i>plus</i>
+
+
+ generated output; YaCy uses it to size prompts so they leave room to generate. The row for the
+
+
+ service selected above appears here automatically with its stored (or default) window.
+
+
+ This value is <b>advisory</b>: set it to match the window your backend actually serves
+
+
+ Context Length setting). YaCy does not enforce it on the backend.
+
+
+ num_ctx
+
+
+ Model Downloads
+
+
+ Production Models Matrix
+
+
+ model
+
+
+ max_tokens
+
+
+ search-answers
+
+
+ This model creates answers for search requests
-
- You may monitor progress (or stop the job) under <a href="IndexReIndexMonitor_p.html">IndexReIndexMonitor_p.html</a>
+
+ chat
+
+
+ This model is used in the chat interface and as default for the RAG proxy
+
+
+ translation
+
+
+ This model can be used to make translations of the web UI
+
+
+ classification
+
+
+ This model is used to classify prompts to find out what they demand
+
+
+ search-query
+
+
+ This model produces search queries to YaCy search from prompts in RAG or chat
+
+
+ qa-pairs
+
+
+ This model can be used to produce query-answer pairs which enhance search from chat prompts
+
+
+ tldr-shortener
+
+
+ This model is used to make summaries from web content
+
+
+ log-report
+
+
+ This model evaluates YaCy runtime logs and creates self-enhancement reports
+
+
+ thinking
+
+
+ we detect thinking only to be able to suppress thinking. thinking is not used in YaCy
+
+
+ tooling
+
+
+ tooling is required for agentic abilities.
+
+
+ vision
+
+
+ this enables image recognition in the chat
+
+
+ format
+
+
+ this is required for classification
+
+
+ Actions
-
- YaCy '#[clientname]#': Configuration of a Wiki Search
+
+ "Get content of Wiki: crawl wiki pages"Integration in MediaWiki
@@ -5352,23 +6329,14 @@
The following form is a simplified crawl start that uses the proper values for a wiki crawl.
-
- Just insert the front page URL of your wiki.
-
-
- After you started the crawl you may want to get back
+
+ Just insert the front page URL of your wiki. After you started the crawl you may want to get backto this page to read the integration hints below.
-
- URL of the wiki main page
-
-
- This is a crawl start point
-
-
- "Get content of Wiki: crawl wiki pages"
+
+ <b>URL of the wiki main page</b><br />This is a crawl start pointInserting a Search Window to MediaWiki
@@ -5394,12 +6362,6 @@
Insert the following code:
-
- Search with YaCy in this Wiki:
-
-
- value="Search"
- Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name
@@ -5409,16 +6371,13 @@
To see all options for the search widget, look at the more generic description of search widgets at
-
- the <a href="ConfigLiveSearch.html">configuration for live search</a>.
-
-
- Configuration of a phpBB3 Search
+
+ "Get content of phpBB3: crawl forum pages"Integration in phpBB3
@@ -5438,14 +6397,8 @@
This information is in an bad annotated form in web pages delivered by the forum software.
-
- It is much better to retrieve the forum postings directly from the database.
-
-
- This will cause that YaCy is able to offer nice navigation features after searches.
-
-
- YaCy has a phpBB3 extraction feature, please go to the <a href="ContentIntegrationPHPBB3_p.html">phpBB3 content integration</a> servlet for direct database imports.
+
+ It is much better to retrieve the forum postings directly from the database. This will cause that YaCy is able to offer nice navigation features after searches.Retrieval of phpBB3 Forum Pages using a web crawl
@@ -5459,14 +6412,8 @@
to this page to read the integration hints below.
-
- URL of the phpBB3 forum main page
-
-
- This is a crawl start point
-
-
- "Get content of phpBB3: crawl forum pages"
+
+ <b>URL of the phpBB3 forum main page</b><br />This is a crawl start pointInserting a Search Window to phpBB3
@@ -5477,23 +6424,14 @@
There are several templates that can be used for phpBB3, but in this guide we consider that
-
- you are using the default template, 'prosilver'
+
+ you are using the default template, 'prosilver':open 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
-
-
- Insert the following code right behind the div tag
-
-
- YaCy Forum Search
-
-
- ;YaCy Search
+
+ Insert the following code right behind the div tag:Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name
@@ -5504,19 +6442,37 @@
To see all options for the search widget, look at the more generic description of search widgets at
-
- the <a href="ConfigLiveSearch.html">configuration for live search</a>.
-
-
- Configuration of a RSS Search
+
+ "Show RSS Items"
+
+
+ "Add All Items to Index (full content of url)"
+
+
+ "Remove Selected Feeds from Scheduler"
+
+
+ "Remove All Feeds from Scheduler"
+
+
+ "Remove Selected Feeds from Feed List"
+
+
+ "Remove All Feeds from Feed List"
+
+
+ "Add Selected Feeds to Scheduler"
-
- Loading of RSS Feeds<
+
+ "Add Selected Items to Index (full content of url)"
+
+
+ Loading of RSS FeedsRSS feeds can be loaded into the YaCy search index.
@@ -5527,11 +6483,8 @@
URL of the RSS feed
-
- >Preview<
-
-
- "Show RSS Items"
+
+ PreviewIndexing
@@ -5539,143 +6492,169 @@
Available after successful loading of rss feed in preview
-
- "Add All Items to Index (full content of url)"
+
+ once
-
- >once<
+
+ load this feed once now
-
- >load this feed once now<
+
+ scheduled
-
- >scheduled<
+
+ repeat the feed loading every
-
- >repeat the feed loading every<
+
+ minutes
-
- >minutes<
+
+ hours
-
- >hours<
+
+ days
-
- >days<
+
+ automatically.
-
- > automatically.
+
+ collection
-
- >List of Scheduled RSS Feed Load Targets<
+
+ List of Scheduled RSS Feed Load Targets
-
- >Title<
+
+ Title
-
- >URL/Referrer<
+
+ URL/Referrer
-
- >Recording<
+
+ Recording
-
- >Last Load<
+
+ Last Load
-
- >Next Load<
+
+ Next Load
-
- >Last Count<
+
+ Last Count
-
- >All Count<
+
+ All Count
-
- >Avg. Update/Day<
+
+ Avg. Update/Day
-
- "Remove Selected Feeds from Scheduler"
+
+ Available RSS Feed List
-
- "Remove All Feeds from Scheduler"
+
+ Author
+
+
+ Description
-
- >Available RSS Feed List<
+
+ Language
-
- "Remove Selected Feeds from Feed List"
+
+ Date
-
- "Remove All Feeds from Feed List"
+
+ Time-to-live
-
- "Add Selected Feeds to Scheduler"
+
+ Docs
+
+
+ State
-
- >new<
+
+ URL
-
- >enqueued<
+
+ new
-
- >indexed<
+
+ enqueued
-
- >RSS Feed of
+
+ indexed
-
- >Author<
+
+ Attached media
-
- >Description<
+
+
+
+
+
+
+ "delete this report"
-
- >Language<
+
+ Log Reports
-
- >Date<
+
+ run report now
-
- >Time-to-live<
+
+ Generating report from the current-hour log lines — the LLM call can take a while …
-
- >Docs<
+
+ seconds elapsed
-
- >State<
+
+ No log lines were found for the current hour.
-
- "Add Selected Items to Index (full content of url)"
+
+ No production model is configured for the log-report role. Assign one in the
+
+
+ No production model is configured for the log-report role. Log report generation stays inactive until a model is assigned in the
+
+
+ Feeds:
+
+
+ JSON
+
+
+ RSS
+
+
+ The report directory does not exist yet. Reports will appear here after the scheduler has generated the first completed hourly report.
+
+
+ ×
+
+
+ Report generation in progress …
+
+
+ the report below is completed live while the model is writing
+
+
+ No generated log reports were found.
+
+ "Enter"
+
+
+ "Preview"
+ Send message
-
- You cannot send a message to
- The peer does not respond. It was now removed from the peer-list.
-
- The peer <b>
-
-
- is alive and responded:
-
-
- You are allowed to send me a message
-
-
- kb and an
-
-
- attachment ≤
- Your Message
@@ -5685,17 +6664,8 @@
Text:
-
- "Enter"
-
-
- "Preview"
-
-
- You can use
-
-
- Wiki Code</a> here.
+
+ The peer is alive but cannot respond. Sorry.Preview message
@@ -5703,8 +6673,8 @@
The message has not been sent yet!
-
- The peer is alive but cannot respond. Sorry.
+
+ Message:Your message has been sent. The target peer responded:
@@ -5720,24 +6690,45 @@
-
- >Messages
+
+ "RSS"
+
+
+ "Compose"
+
+
+ Messages
+
+
+ Compose Message
+
+
+ Send message to peer
-
- Date</td>
+
+ Date
-
- From</td>
+
+ From
-
- To</td>
+
+ To
-
- >Subject
+
+ SubjectAction
+
+ view
+
+
+ reply
+
+
+ delete
+ From:
@@ -5747,27 +6738,15 @@
Date:
-
- >view
-
-
- reply
-
-
- >delete
-
-
- Compose Message
-
-
- Send message to peer
-
-
- "Compose"
+
+ Subject:Message:
+
+ Action:
+ inbox
@@ -5776,243 +6755,294 @@
-
- YaCy Search Network
+
+ "API"
-
- YaCy Network<
+
+ "Search"
-
- The information that is presented on this page can also be retrieved as XML.
+
+ "https supported"
-
- Click the API icon to see the XML.
+
+ "Type: Junior | Contact: passive"
-
- To see a list of all APIs, please visit the <a href="https://wiki.yacy.net/index.php/Dev:API" target="_blank">API wiki page</a>.
+
+ "Junior passive"
-
- Network Overview
+
+ "Type: Junior | Contact: direct"
-
- Active Principal and Senior Peers
+
+ "Junior direct"
-
- Passive Senior Peers
+
+ "Type: Junior | Contact: offline"
-
- Junior (fragment) Peers
+
+ "Junior offline"
-
- Network History
+
+ "Type: Senior | Contact: passive"
-
- <b>Count of Connected Senior Peers</b> in the last two days, scale = 1h
+
+ "senior passive"
-
- <b>Count of all Active Peers Per Day</b> in the last week, scale = 1d
+
+ "Type: Senior | Contact: direct"
-
- <b>Count of all Active Peers Per Week</b> in the last 30d, scale = 7d
+
+ "Senior direct"
-
- <b>Count of all Active Peers Per Month</b> in the last 365d, scale = 30d
+
+ "Type: Senior | Contact: offline"
-
- Active Principal and Senior Peers in '#[networkName]#' Network
+
+ "Senior offline"
-
- Passive Senior Peers in '#[networkName]#' Network
+
+ "Type: Principal | Contact: passive | Seed download: possible"
-
- Junior Peers (a fragment) in '#[networkName]#' Network
+
+ "Principal passive"
-
- Manually contacting Peer
+
+ "Type: Principal | Contact: direct | Seed download: possible"
-
- no remote #[peertype]# peer for this list known
+
+ "Principal active"
-
- Showing #[num]# entries from a total of #[total]# peers.
+
+ "Type: Principal | Contact: offline | Seed download: ?"
-
- send <strong>M</strong>essage/<br/>show <strong>P</strong>rofile/<br/>edit <strong>W</strong>iki/<br/>browse <strong>B</strong>log
+
+ "Principal offline"
-
- Search for a peername (RegExp allowed)
+
+ "Accept Crawl: no"
-
- "Search"
+
+ "no crawl"
-
- Name
+
+ "Accept Crawl: yes"
-
- Address
+
+ "crawl possible"
-
- Hash
+
+ "no DHT receive"
-
- Type
+
+ "DHT Receive: yes"
-
- Release<
+
+ "DHT receive enabled"
-
- Last<br/>Seen
+
+ "Profile updated"
-
- Location
+
+ "Wiki updated"
-
- Offset
+
+ "Blog updated"
-
- Send message to peer
+
+ "Crawl"
-
- View profile of peer
+
+ "The YaCy Network"
-
- Read and edit wiki on peer
+
+ "Type: Virgin"
-
- Browse blog of peer
+
+ "Virgin"
-
- "DHT Receive: yes"
+
+ "Type: Junior"
-
- "DHT receive enabled"
+
+ "Junior"
+
+
+ "Type: Senior"
-
- "DHT Receive: no; #[peertags]#"
+
+ "Senior"
+
+
+ "Type: Principal"
+
+
+ "Principal"
+
+
+ "Crawl enabled""DHT Receive: no"
-
- "no DHT receive"
+
+ "DHT Receive enabled"
-
- "Accept Crawl: no"
+
+ "add Peer"
-
- "no crawl"
+
+ "contact current peer from this peer"
-
- "Accept Crawl: yes"
+
+ YaCy Network
-
- "crawl possible"
+
+ Network Overview
+
+
+ Active Principal and Senior Peers
+
+
+ Passive Senior Peers
+
+
+ Junior (fragment) Peers
+
+
+ Network History
+
+
+ The information that is presented on this page can also be retrieved as XML.
+
+
+ Click the API icon to see the XML.
+
+
+ Manually contacting Peer
+
+
+ Search for a peername (RegExp allowed)
+
+
+ Hash
+
+
+ Name
+
+
+ Info
+
+
+ Release
+
+
+ Age
+
+
+ con/h<br/>
+
+
+ PPM
+
+
+ QPH
+
+
+ Last<br/>Seen
+
+
+ <strong>UTC</strong><br/>Offset
+
+
+ Uptime
-
- Contact: passive
+
+ Links
-
- Contact: direct
+
+ RWIs
-
- Seed download: possible
+
+ URLs<br/>for<br/>Remote<br/>Crawl
-
- runtime:
+
+ Sent DHT<br/>Word Chunks
-
- >Network<
+
+ Sent<br/>URLs
-
- >Online Peers<
+
+ Received DHT<br/>Word Chunks
+
+
+ Received<br/>URLs
-
- >Number of<br/>Documents<
+
+ Location
-
- Indexing Speed:
+
+ user agent<br/>
-
- Pages Per Minute (PPM)
+
+ send <strong>M</strong>essage/<br/>show <strong>P</strong>rofile/<br/>edit <strong>W</strong>iki/<br/>browse <strong>B</strong>log
-
- Query Frequency:
+
+ Network
-
- Queries Per Hour (QPH)
+
+ Online Peers
-
- >Today<
+
+ Number of<br/>Documents
-
- >Last Week<
+
+ Indexing Speed:<br/>Pages Per Minute (PPM)
-
- >Last Month<
+
+ Query Frequency:<br/>Queries Per Hour (QPH)Last Hour
-
- >Now<
-
-
- >Active Senior<
+
+ Today
-
- >Passive Senior<
+
+ Last Week
-
- >Junior (fragment)<
+
+ Last Month
-
- >This Peer<
-
-
- URLs for<br/>Remote Crawl
+
+ Now
-
- "The YaCy Network"
+
+ Active Senior
-
- Indexing<br/>PPM
+
+ Passive Senior
-
- (public local)
+
+ Junior (fragment)
-
- (remote)
+
+ This PeerYour Peer:
-
- >Name<
-
-
- >Info<
-
-
- >Version<
-
-
- >UTC<
+
+ Version
-
- >Uptime<
+
+ UTC
-
- >Links<
-
-
- Sent<br/>URLs
+
+ URLs for<br/>Remote CrawlSent<br/>DHT Word Chunks
-
- Received<br/>URLs
- Received<br/>DHT Word Chunks
@@ -6022,20 +7052,29 @@
Connects<br/>per hour
-
- >dark green font<
+
+ Indexing<br/>PPM
+
+
+ QPH<br/>(public local)
+
+
+ QPH<br/>(remote)
+
+
+ dark green fontsenior/principal peers
-
- >light green font<
+
+ light green font
-
- >passive peers<
+
+ passive peers
-
- >pink font<
+
+ pink fontjunior peers
@@ -6046,59 +7085,74 @@
this peer
-
- >grey waves<
+
+ grey waves
+
+
+ crawling activity
-
- >crawling activity<
+
+ green radiation
-
- >green radiation<
+
+ strong query activity
-
- >strong query activity<
+
+ red lines
-
- >red lines<
+
+ DHT-out
-
- >DHT-out<
+
+ green lines
-
- >green lines<
+
+ DHT-in
-
- >DHT-in<
+
+ Peer Hash
-
- Count of Connected Senior Peers
+
+ Peer IP
-
- in the last two days, scale = 1h
+
+ Peer Port
-
- Count of all Active Peers Per Day
+
+ Contacting current peer from another:
-
- in the last week, scale = 1d
+
+ ip:port
-
- Count of all Active Peers Per Week
+
+ <b>Count of Connected Senior Peers</b> in the last two days, scale = 1h
-
- in the last 30d, scale = 7d
+
+ <b>Count of all Active Peers Per Day</b> in the last week, scale = 1d
-
- Count of all Active Peers Per Month
+
+ <b>Count of all Active Peers Per Week</b> in the last 30d, scale = 7d
-
- in the last 365d, scale = 30d
+
+ <b>Count of all Active Peers Per Month</b> in the last 365d, scale = 30d
+
+ "Incoming News"
+
+
+ "Processed News"
+
+
+ "Outgoing News"
+
+
+ "Published News"
+ Overview
@@ -6135,26 +7189,14 @@
profile entries on the Network page, where that profile change is visualized with a '*' beside the 'P' (profile) - selector.
-
- Publishing of added or modified translation for the user interface.
-
-
- Other peers may include it in their local translation list.
-
-
- To publish a translation, use the integrated
+
+ Publishing of added or modified translation for the user interface. Other peers may include it in their local translation list.
-
- translation editor
-
-
- to add a translation and publish it afterwards.
-
-
- Above you can see four menues:
+
+ More news services will follow.
-
- <strong>Incoming News (#[insize]#)</strong>: latest news that arrived your peer.
+
+ Above you can see four menus:Only these news will be used to display specific news services as explained above.
@@ -6162,18 +7204,9 @@
You can process these news with a button on the page to remove their appearance from the IndexCreate and Network page
-
- <strong>Processed News (#[prsize]#)</strong>: this is simply an archive of incoming news that you removed by processing.
-
-
- <strong>Outgoing News (#[ousize]#)</strong>: here your can see news entries that you have created. These news are currently broadcasted to other peers.
- you can stop the broadcast if you want.
-
- <strong>Published News (#[pusize]#)</strong>: your news that have been broadcasted sufficiently or that you have removed from the broadcast list.
- Originator
@@ -6192,33 +7225,6 @@
Attributes
-
- Process Selected News
-
-
- Delete Selected News
-
-
- Abort Publication of Selected News
-
-
- Process All News
-
-
- Delete All News
-
-
- Abort Publication of All News
-
-
- "#(page)#::Process Selected News::Delete Selected News::Abort Publication of Selected News::Delete Selected News#(/page)#"
-
-
- "#(page)#::Process All News::Delete All News::Abort Publication of All News::Delete All News#(/page)#"
-
-
- More news services will follow.
-
@@ -6230,6 +7236,9 @@
serverProcessor Objects
+
+ Thread
+ Queue Size<br />Current
@@ -6242,8 +7251,8 @@
Concurrency:<br />Maximum Number of Threads
-
- Childs
+
+ ChildrenAverage<br />Block Time<br />Reading
@@ -6265,6 +7274,9 @@
+
+ "PerformanceGraph"
+ Performance Settings for Memory
@@ -6274,17 +7286,26 @@
simulate short memory status
-
- use Standard Memory Strategy</label> (current: #[memoryStrategy]#)
+
+ use Standard Memory Strategy
-
+ Memory Usage
+
+ Type
+ After Startup
-
- After Initializations
+
+ After Initializations<br />before GC
+
+
+ After Initializations<br />after GC
+
+
+ Nowbefore GC
@@ -6292,202 +7313,187 @@
after GC
-
- >Now
-
-
- before <
- Description
+
+ Max
+ maximum memory that the JVM will attempt to use
-
- >Available<
+
+ Availabletotal available memory including free for the JVM within maximum
-
- >Max<
-
-
- >Total<
+
+ Totaltotal memory taken from the OS
-
- >Free<
+
+ Freefree memory in the JVM within total amount
-
- >Used<
+
+ Usedused memory in the JVM within total amount
-
- Solr Resources
-
-
- >Class<
-
-
- >Type<
-
-
- >Statistics<
-
-
- >Size<
-
-
+ Table RAM Index
-
- >Key
+
+ Table
+
+
+ Size
-
- >Value
+
+ Key
-
- Table</td>
+
+ Value
-
- Chunk Size<
+
+ Chunk Size
-
- Used Memory<
+
+ Used Memory
-
+ Object Index CachesNeeded Memory
-
- Object Read Caches
+
+ Other Caching Structures
-
- >Read Hit Cache<
+
+ Hit
-
- >Read Miss Cache<
+
+ Miss
-
- >Read Hit<
+
+ Insert
-
- >Read Miss<
+
+ Delete
-
- Write Unique<
+
+ DNSCache/Hit
-
- Write Double<
+
+ (ARC)
-
- Deletes<
+
+ DNSCache/Miss
-
- Flushes<
+
+ DNSNoCache
-
- Total Mem
+
+ HashBlacklistedCache
-
- MB (hit)
+
+ Search Event Cache
-
- MB (miss)
+
+
+
+
+
+
+ "Submit New Delay Values"
-
- Stop Grow when less than #[objectCacheStopGrow]# MB available left
+
+ "Re-set to default"
-
- Start Shrink when less than #[objectCacheStartShrink]# MB availabe left
+
+ "When the system load average is over the specified value, that type of remote search request is not used to fill search results."
-
- Other Caching Structures
+
+ "Reverse Word Index"
-
- >Hit<
+
+ "Submit New Values"
-
- >Miss<
+
+ "Enter New Cache Size"
-
- Insert<
+
+ "Enter new Threadpool Configuration"
-
- Delete<
+
+ "Total maximum number of simultaneously open connections in the pool"
-
- Search Event Cache<
+
+ "Number of connections currently being used to execute requests."
+
+
+ "Number of reusable idle connections"
+
+
+ "Number of connection requests being blocked awaiting a free connection"
-
-
-
-
-
Performance Settings of Queues and ProcessesScheduled tasks overview and waiting time settings:
-
- >Thread<
+
+ ThreadQueue Size
-
- >Total
+
+ Total<br />Block Time
-
- Cycles
+
+ Total<br />Sleep Time
-
- Block Time
+
+ Total<br />Exec Time
-
- Sleep Time
-
-
- Exec Time
+
+ Total<br />Cycles
-
- <td>Idle
+
+ Idle<br />Cycles
-
- >Busy
+
+ Busy<br />CyclesShort Mem<br />Cycles
-
- >per Cycle
+
+ High CPU<br />Cycles
-
- >per Busy-Cycle
+
+ Sleep Time<br />per Cycle<br />(millis)
-
- >Memory Use
+
+ Exec Time<br />per Busy-Cycle<br />(millis)
-
- >Delay between
+
+ Memory Use<br />per Busy-Cycle<br />(kbytes)
-
- >idle loops
+
+ Delay between<br />idle loops
-
- >busy loops
+
+ Delay between<br />busy loopsMinimum of<br />Required Memory
@@ -6498,29 +7504,50 @@
Full Description
-
- Submit New Delay Values
+
+ milliseconds
+
+
+ kbytes
-
- Re-set to default
+
+ loadChanges take effect immediately
+
+ Remote search requests:
+
+
+ Type
+
+
+ Maximum system load
+
+
+ <abbr title="Reverse Word Index">RWI</abbr>
+
+
+ Search requests performed on remote peers distributed Reverse Word Index
+
+
+ Solr
+
+
+ Search requests performed on remote peers Solr indexes
+ Cache Settings:RAM Cache
-
- <td>Description
-
-
- Words in RAM cache:
+
+ Description
-
- (Size in KBytes)
+
+ Words in RAM cache:<br />(Size in KBytes)This is the current size of the word caches.
@@ -6564,9 +7591,6 @@
flushed to disc; this may last some minutes.
-
- Enter New Cache Size
- Thread Pool Settings:
@@ -6579,25 +7603,40 @@
current Active
-
- Enter new Threadpool Configuration
+
+ Outgoing connections pools settings :
+
+
+ Connection Pool
-
- milliseconds<
+
+ Total maximum
-
- kbytes<
+
+ Current statistics
-
- load<
+
+ Active
+
+
+ Idle
+
+
+ Pending
+
+
+ General
+
+
+ Remote Solr servers
-
- Performance Settings of Search Sequence
+
+ "Search event picture"Search Sequence Timing
@@ -6608,14 +7647,17 @@
Query
-
- Event<
+
+ Event
-
- Comment<
+
+ Comment
+
+
+ Time
-
- Time<
+
+ Delta (ms)Duration (ms)
@@ -6632,100 +7674,121 @@
green -> request has terminated
-
- grey -> the search target hash order position(s) (more targets if a dht partition is used)<
-
-
- "Search event picture"
+
+ grey -> the search target hash order position(s) (more targets if a dht partition is used)
-
+
-
- <html lang="en">
+
+ "PerformanceGraph"
-
- Performance Settings
+
+ "Java Virtual Machine"
-
- Memory Settings
+
+ "Set"
-
- Memory reserved for <abbr title="Java Virtual Machine">JVM</abbr>
+
+ "Restart now"
-
- MByte
+
+ "Amount of space (in Mebibytes) that should be kept free as steady state"
-
- "Set"
+
+ "Mebibyte"
-
- Resource Observer
+
+ "Amount of space (in Megabytes) that should at least be kept free as hard limit"
-
- Memory state
+
+ "Distributed Hash Table"
-
- >proper<
+
+ "Free space disk autoregulation info"
-
- >exhausted<
+
+ "Maximum amount of space (in Mebibytes) that should be used as steady state"
-
- Reset state
+
+ "Maximum amount of space (in Mebibytes) that should be used as hard limit"
-
- Manually reset to 'proper' state
+
+ "Used space disk autoregulation info"
-
- Enough memory is available for proper operation.
+
+ "Random Access Memory"
-
- Within the last eleven minutes, at least four operations have tried to request memory that would have reduced free space within the minimum required.
+
+ "Proper state info"
-
- Minimum required
+
+ "Exhausted state info"
+
+
+ "Reset state"
+
+
+ "Manually reset to 'proper' state"
+
+
+ "Amount of memory (in Mebibytes) that should at least be free for proper operation"
+
+
+ "Save"
+
+
+ "Enter New Parameters"
+
+
+ Performance Settings
+
+
+ refresh graph
+
+
+ Memory Settings
+
+
+ Memory reserved for <abbr title="Java Virtual Machine">JVM</abbr>
+
+
+ MByte
-
- Amount of memory (in Mebibytes) that should at least be free for proper operation
+
+ Accepted change. This will take effect after <strong>restart</strong> of YaCy.
-
- Disable <abbr title="Distributed Hash Table">DHT</abbr>-in below.
+
+ Restart now
+
+
+ Resource Observer
-
+ Free space diskSteady-state minimum
-
- Amount of space (in Mebibytes) that should be kept free as steady state
-
-
- <abbr title="Mebibyte">MiB</abbr>
-
-
- Disable crawls when free space is below.
+
+ <abbr title="Mebibyte">MiB</abbr>. Disable crawls when free space is below.Absolute minimum
-
- Amount of space (in Mebibytes) that should at least be kept free as hard limit
-
-
- Disable <abbr title="Distributed Hash Table">DHT</abbr>-in when free space is below.
+
+ <abbr title="Mebibyte">MiB</abbr>. Disable <abbr title="Distributed Hash Table">DHT</abbr>-in when free space is below.
-
- >Autoregulate<
+
+ Autoregulatewhen absolute minimum limit has been reached.
-
- The autoregulation task performs the following sequence of operations, stopping once free space disk is over the steady-state value
+
+ The autoregulation task performs the following sequence of operations, stopping once free space disk is over the steady-state value :delete old releases
@@ -6757,53 +7820,44 @@
Steady-state maximum
-
- Maximum amount of space (in Mebibytes) that should be used as steady state
-
-
- Disable crawls when used space is over.
+
+ <abbr title="Mebibyte">MiB</abbr>. Disable crawls when used space is over.Absolute maximum
-
- Maximum amount of space (in Mebibytes) that should be used as hard limit
-
-
- Disable <abbr title="Distributed Hash Table">DHT</abbr>-in when used space is over.
+
+ <abbr title="Mebibyte">MiB</abbr>. Disable <abbr title="Distributed Hash Table">DHT</abbr>-in when used space is over.when absolute maximum limit has been reached.
-
- The autoregulation task performs the following sequence of operations, stopping once used space disk is below the steady-state value
-
-
- > free space
-
-
- disable <abbr title="Distributed Hash Table">DHT</abbr>-in below
+
+ The autoregulation task performs the following sequence of operations, stopping once used space disk is below the steady-state value:
-
+ <abbr title="Random Access Memory">RAM</abbr>
-
- Accepted change. This will take effect after <strong>restart</strong> of YaCy
+
+ Memory state :
-
- restart now</a>
+
+ proper
-
- Confirm Restart
+
+ Enough memory is available for proper operation.
-
- refresh graph
+
+ <strong aria-describedby="exhaustedStateInfo">exhausted</strong>
-
- Save
+
+ Within the last eleven minutes, at least four operations have tried to request memory that would have reduced free space within the minimum required.
-
- Changes take effect immediately
+
+ Minimum required
+
+
+ <abbr title="Mebibyte">MiB</abbr> free space. Disable <abbr title="Distributed Hash Table">DHT</abbr>-in below.Online Caution Settings:
@@ -6817,17 +7871,17 @@
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:
@@ -6835,17 +7889,17 @@
Remote Search:
-
- "Enter New Parameters"
-
-
- Online Caution Settings
+
+ Changes take effect immediately
+
+ "Set proxy profile"
+ Indexing with Proxy
@@ -6858,20 +7912,8 @@
those pages are detected by properties in the HTTP header (like Cookie-Use, or HTTP Authorization)
-
- or by POST-Parameters (either in URL or as HTTP protocol)
-
-
- and automatically excluded from indexing.
-
-
- You have to
-
-
- >setup the proxy<
-
-
- before use.
+
+ or by POST-Parameters (either in URL or as HTTP protocol) and automatically excluded from indexing.Proxy Auto Config:
@@ -6879,9 +7921,6 @@
this controls the proxy auto configuration script for browsers at http://localhost:8090/autoconfig.pac
-
- .yacy-domains only
- whether the proxy should only be used for .yacy-Domains
@@ -6891,6 +7930,9 @@
this is an automated html page loading procedure that takes actual proxy-requested
+
+ URLs as crawling start points for crawling.
+ Prefetch Depth
@@ -6945,60 +7987,42 @@
The path where the pages are stored (max. length 300)
-
- Size</label>
+
+ SizeThe size in MB of the cache.
-
- "Set proxy profile"
-
-
- The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.
+
+ <strong>The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.
-
- Please delete that file and restart.
+
+ Please delete that file and restart.</strong>
-
- Pre-fetch is now set to depth
+
+ <strong>Caching is now
-
- Caching is now #(caching)#off::on#(/caching)#.
+
+ off
-
- Local Text Indexing is now #(indexingLocalText)#off::on
+
+ on
-
- Local Media Indexing is now #(indexingLocalMedia)#off::on
+
+ <strong>Local Text Indexing is now
-
- Remote Indexing is now #(indexingRemote)#off::on
+
+ <strong>Local Media Indexing is now
-
- Cachepath is now set to '#[return]#'.</strong> Please move the old data in the new directory.
-
-
- Cachesize is now set to #[return]#MB.
+
+ <strong>Remote Indexing is nowChanges will take effect after restart only.
-
- An error has occurred:
- You can see a snapshot of recently indexed pages
-
- on the
-
-
- URLs as crawling start points for crawling.
-
-
- Page.
-
@@ -7007,6 +8031,12 @@
Quickly adding Bookmarks:
+
+ Simply drag and drop the link shown below to your Browsers Toolbar/Link-Bar.
+
+
+ If you click on it while browsing, the currently viewed website will be inserted into the YaCy crawling queue for indexing.
+ Crawl with YaCy
@@ -7016,37 +8046,69 @@
Link:
-
- Status:
+
+ Status:
+
+
+ URL successfully added to Crawler Queue
+
+
+ Malformed URL
+
+
+
+
+
+
+
+ Wire RAG Retrieval
+
+
+ Tune how YaCy constructs prompts and search queries for Retrieval Augmented Generation.
+
+
+ System Prompt
-
- URL successfully added to Crawler Queue
+
+ This is sent as the system message for chats. Keep it concise and friendly.
-
- Malformed URL
+
+ User Retrieval Prefix
-
- Unable to create new crawling profile for URL:
+
+ Prepended before attached search snippets in RAG mode to tell the LLM how to use them.
-
- Unable to add URL to crawler queue:
+
+ Query Generator Prefix
-
- Quick Crawl Link
+
+ Prompt given to the model that generates search queries from user requests.
-
- Simply drag and drop the link shown below to your Browsers Toolbar/Link-Bar.
+
+ Search Document Max Length
-
- If you click on it while browsing, the currently viewed website will be inserted into the YaCy crawling queue for indexing.
+
+ 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.
+
+
+ Save RAG Settings
-
- RWI Ranking Configuration<
+
+ "info"
+
+
+ "Set as Default Ranking"
+
+
+ "Re-Set to Built-In Ranking"
+
+
+ RWI Ranking ConfigurationThe document ranking influences the order of the search result entities.
@@ -7060,142 +8122,79 @@
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.
-
- Pre-Ranking
-
-
- >Post-Ranking<
-
-
- "Set as Default Ranking"
-
-
- "Re-Set to Built-In Ranking"
+
+ Post-Ranking
-
- Solr Ranking Configuration<
-
-
- These are ranking attributes for Solr. This ranking applies for internal and remote (P2P or shard) Solr access.
-
-
- Select a profile:
-
-
- >Boost Function<
-
-
- To see all available fields, see the
-
-
- >YaCy Solr Schema<
-
-
- and look for numeric values (these are names with suffix '_i').
-
-
- To find out which kind of operations are possible, see the
-
-
- >Solr Function Query<
-
-
- documentation.
-
-
- Example: to order by date, use
- "Set Boost Function""Re-Set to default"
-
- You can boost with vocabularies, use the occurrence counters
-
-
- >Filter Query<
-
-
- The Filter Query is attached to every query.
-
-
- Use this to statically add a selection criteria to reduce the set of results.
-
-
- Example: "http_unique_b:true AND www_unique_b:true" will filter out all results where urls appear also with/without http(s) and/or with/without 'www.' prefix.
-
-
- To find appropriate fields for this query, see the
-
-
- YaCy Solr Schema
-
-
- Warning: bad expressions here will cause that you don't have any search result!
+
+ "Set Boost Query""Set Filter Query"
-
- >Boost Query<
-
-
- Example: "fuzzy
-
-
- To find appropriate fields for this query, see the
-
-
- and look for boolean values (with suffix '_b') or tags inside string fields (with suffix '_s' or '_sxt').
-
-
- "Set Boost Query"
-
-
- field not in local index (boost has no effect)
+
+ "Set Field Boosts"
-
- You can boost with vocabularies, use the field
+
+ Solr Ranking Configuration
-
- with values
+
+ These are ranking attributes for Solr. This ranking applies for internal and remote (P2P or shard) Solr access.
-
- You can also boost on logarithmic occurrence counters of the fields
+
+ Select a profile:
-
- "Set Field Boosts"
+
+ Boost FunctionA Boost Function can combine numeric values from the result document to produce a number which is multiplied with the score value from the query result.
+
+ Example: to order by date, use "recip(ms(NOW,last_modified),3.16e-11,1,1)", to order by crawldepth, use "div(100,add(crawldepth_i,1))".
+
+
+ Boost Query
+ The Boost Query is attached to every query. Use this to statically boost specific content in the index.
-
- means that documents, identified as 'double' are ranked very bad and appended to the end of all results (because the unique are ranked high).
+
+ Example: "fuzzy_signature_unique_b:true^100000.0f" means that documents, identified as 'double' are ranked very bad and appended to the end of all results (because the unique are ranked high).
+
+
+ Filter Query
-
- This is the set of searchable fields (see
+
+ The Filter Query is attached to every query. Use this to statically add a selection criteria to reduce the set of results.
-
- Entries without a boost value are not searched.
+
+ Example: "http_unique_b:true AND www_unique_b:true" will filter out all results where urls appear also with/without http(s) and/or with/without 'www.' prefix.
-
- Boost values make hits inside the corresponding field more important.
+
+ Solr Boosts
+
+
+ field not in local index (boost has no effect)
@@ -7211,34 +8210,25 @@
Regular Expression
-
- This is a
-
-
- Java Pattern
-
-
- Result<
-
-
- no match<
+
+ Result
-
- > match<
+
+ no match
-
- error in expression:
+
+ match
-
- Remote Crawl Configuration
+
+ "Save"
-
- >Remote Crawler<
+
+ Remote CrawlerThe remote crawler is a process that requests urls from other peers.
@@ -7255,8 +8245,8 @@
Your peer cannot accept remote crawls because you need senior or principal peer status for that!
-
- >Accept Remote Crawl Requests<
+
+ Accept Remote Crawl RequestsPerform web indexing upon request of another peer.
@@ -7267,141 +8257,209 @@
pages per minute
-
- "Save"
-
-
- Crawl results will appear in the
-
-
- >Crawl Result Monitor<
- Peers offering remote crawl URLsIf the remote crawl option is switched on, then this peer will load URLs from the following remote peers:
-
- >Name<
+
+ NameURLs for<br/>Remote<br/>Crawl
-
- >Release<
+
+ Release
+
+
+ PPM
-
- >PPM<
+
+ QPH
-
- >QPH<
+
+ Last<br/>Seen
-
- >Last<br/>Seen<
+
+ <strong>UTC</strong><br/>Offset
-
- >UTC</strong><br/>Offset<
+
+ Uptime
-
- >Uptime<
+
+ Links
-
- >Links<
+
+ RWIs
-
- >Age<
+
+ Age
-
+
-
- >Protocol<
+
+ "Submit"
+
+
+ "Set defaults"
+
+
+ "Reset to defaults settings"
+
+
+ limitations
+
+
+ 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
+
+
+ YaCy search
+
+
+ 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.
+
+
+ Max searches in 3s
+
+
+ Max searches in 1mn
+
+
+ Max searches in 10mn
-
- >IP<
+
+ Peer-to-peer search
-
- >URL<
+
+ Access rate limitations to the peer-to-peer search mode.
-
- >Access<
+
+ 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.
-
- >Process<
+
+ Max searches in 10mn
-
- >empty<
+
+ Peer-to-peer search with JavaScript results resorting
-
- >granted<
+
+ Access rate limitations to the peer-to-peer search mode with browser-side JavaScript results resorting enabled
-
- >denied<
+
+ When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, results resorting becomes only applicable on demand, server-side.
-
- >not in index<
+
+ Remote snippet load
-
- >indexed<
+
+ Limitations on snippet loading from remote websites.
+
+ When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the snippets fetch strategy falls back to 'CACHEONLY'
+
+
+ Max searches in 3s
+
+
+ <em id="changeInfo">Changes will take effect immediately.</em>
+
+
+
+
+
+
"Add Selected Servers to Crawler"
+
+ Network Scanner Monitor
+ The following servers can be searched:Available server within the given IP range
-
- >inaccessible<
+
+ Protocol
+
+
+ IP
+
+
+ URL
+
+
+ Access
+
+
+ Process
+
+
+ inaccessible
+
+
+ empty
+
+
+ granted
+
+
+ denied
+
+
+ not in index
+
+
+ indexed
-
- YaCy '#[clientname]#': Settings Acknowledge
- Settings Receipt:No information has been submitted
+
+ Nothing changed.
+ Error with submitted information.
-
- Nothing changed.</p>
- The user name must be given.
-
- Your request cannot be processed.
+
+ Your request cannot be processed.<br />Nothing changed.
-
- 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>Shutting down.</strong><br />Application will terminate after working off all crawling tasks.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.
-
-
- Your proxy access setting has been changed.
+
+ <strong>Your proxy access setting has been changed.
-
- Your proxy account check has been disabled.
+
+ Your proxy account check has been disabled.</strong>The new proxy IP filter is set to
@@ -7412,11 +8470,14 @@
Port rebinding will be done in a few seconds.
-
- You can reach your YaCy server under the new location
+
+ Your proxy access setting has been changed.
+
+
+ If you open any public web page through the proxy, you must log-in.
-
- Your server access filter is now set to
+
+ Port rebinding will be done in a view seconds.Auto pop-up of the Status page is now <strong>disabled</strong>
@@ -7424,23 +8485,20 @@
Auto pop-up of the Status page is now <strong>enabled</strong>
-
- You are now permanently <strong>online</strong>.
-
-
- After a short while you should see the effect on the
-
-
- status</a> page.
- The Peer Name is:Your static Ip(or DynDns) is:
-
- Seed Settings changed.#(success)#::You are now a principal peer.
+
+ Your public port is:
+
+
+ <strong>Seed Settings changed.
+
+
+ You are now a principal peer.Seed Settings changed, but something is wrong.
@@ -7454,24 +8512,24 @@
The remote-proxy setting has been changed
-
- If you open any public web page through the proxy, you must log-in.
- The new setting is effective immediately, you don't need to re-start.
-
- The submitted peer name is already used by another peer. Please choose a different name.</strong> The Peer name has not been changed.
+
+ <strong>The submitted peer name is already used by another peer. Please choose a different name.</strong> The Peer name has not been changed.Your Peer Language is:
+
+ <strong>The submitted peer name is not well-formed. Please choose a different name.</strong> The Peer name has not been changed.
+
+
+ Peer names must not contain characters other than (a-z, A-Z, 0-9, '-', '_') and must not be longer than 80 characters.
+ Seed Upload method was changed successfully.
-
- You are now a principal peer.
- Seed Upload Method:
@@ -7484,6 +8542,15 @@
Transparent Proxy Support is:
+
+ Always Fresh is:
+
+
+ Send via header is:
+
+
+ Send X-Forwarded-For header is:
+ Your message forwarding settings have been changed.
@@ -7496,26 +8563,8 @@
Recipient Address:
-
- You are now <strong>event-based online</strong>.
-
-
- You are now in <strong>Cache Mode</strong>.
-
-
- Only Proxy-cache ist available in this mode.
-
-
- You can now go back to the
-
-
- Settings</a> page if you want to make more changes.
-
-
- Send via header is:
-
-
- Send X-Forwarded-For header is:
+
+ Invalid IP-Number filter:Your crawler settings have been changed.
@@ -7535,80 +8584,263 @@
ftp Crawler Settings:
+
+ Maximum FTP Filesize:
+
+
+ smb Crawler Settings:
+ Maximum SMB Filesize:Maximum file Filesize:
-
- Maximum FTP Filesize:
+
+ Invalid crawler timeout value:
+
+
+ Invalid maximum file size for http crawler:
+
+
+ Invalid maximum file size for ftp crawler:
+
+
+ HTTPS port is now:
+
+
+ the change will take effect after restart.
+
+
+ URL Proxy settings have been saved.
+
+
+ Debug/Analysis settings have been saved.
+
+
+ Referrer policy settings have been saved.
+
+
+ The ports are now configured as follows (active on next start).
+
+
+ HTTP port
+
+
+ HTTPS port
+
+
+ Shutdown port
+
+
+ Compression settings have been saved.
+
+
+ HTTP client settings have been saved.
+
+
+ Your need to restart YaCy to activate the changes.
+
+
+
+
+
+
+
+ "Submit"
+
+
+ Crawler Settings
+
+
+ <strong>Generic Crawler Settings</strong>:
+
+
+ Timeout:
+
+
+ HTTP Crawler Settings:
+
+
+ Maximum Filesize:
+
+
+ Please note that if the crawler uses content compression, this limit is used to check the compressed content size.</em>
+
+
+ <strong>FTP Crawler Settings</strong>:
+
+
+ <strong>SMB Crawler Settings</strong>:
+
+
+ <strong>Local File Crawler Settings</strong>:
+
+
+ Changes will take effect immediately.
+
+
+
+
+
+
+
+ "Extensible Markup Language"
+
+
+ "Distributed Hash Table"
+
+
+ "Reverse Word Index"
+
+
+ "Submit"
+
+
+ Debug/Analysis Settings
+
+
+ Be careful with these advanced settings, they can deeply affect the search process! You probably don't need to modify them for normal use.
+
+
+ Solr communication
+
+
+ Enable remote Solr binary responses
+
+
+ When checked (default), responses from remote Solr index instances are transferred using an efficient binary data format.
+
+
+ When unchecked, responses are transferred as <abbr title="Extensible Markup Language">XML</abbr>,
+
+
+ which can be captured and parsed by any external XML aware tool for debug/analysis.
+
+
+ Search data sources
+
+
+ By default all data sources are enabled to obtain search results,
+
+
+ but you can here disable one or more ones to check the behavior of the process.
+
+
+ Local <abbr title="Distributed Hash Table">DHT</abbr>/<abbr title="Reverse Word Index">RWI</abbr>
+
+
+ Local Solr index
+
+
+ Remote <abbr title="Distributed Hash Table">DHT</abbr>/<abbr title="Reverse Word Index">RWI</abbr>
+
+
+ Remote Solr indexes
+
+
+ Search testing tweaks
+
+
+ Override <abbr title="Distributed Hash Table">DHT</abbr> peers selection by local only
+
+
+ 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.
+
+
+ Override Solr peers selection by local only
+
+
+ When checked, the remote Solr peers selection is overridden and only this peer is selected to provide remote Solr search results.
+
+
+ Ranking information
+
+
+ Show search results scores
-
- smb Crawler Settings:
+
+ When checked, the raw ranking score value is displayed for each text search result in the HTML results page.
-
- Your need to restart YaCy to activate the changes.
+
+ Text snippets statistics
-
- URL Proxy settings have been saved.
+
+ Enable text snippets statistics
+
+
+ <em id="submitInfo">Changes will take effect immediately.</em>
-
-
+
-
- >Crawler Settings<
+
+ "Transport Layer Security"
-
- Generic Crawler Settings
+
+ "Server Name Indication"
-
- Connection timeout in ms
+
+ "Submit"
-
- means unlimited
+
+ HTTP client settings
-
- HTTP Crawler Settings:
+
+ You can configure here some advanced settings of the clients used by YaCy to handle outgoing HTTP connections.
-
- Maximum Filesize
+
+ About Server Name Indication (SNI):
-
- FTP Crawler Settings
+
+ 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
-
- SMB Crawler Settings
+
+ Received fatal alert: handshake_failure
-
- Local File Crawler Settings
+
+ 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
-
- Maximum allowed file size in bytes that should be downloaded
+
+ javax.net.ssl.SSLProtocolException: "handshake alert: unrecognized_name"
-
- Larger files will be skipped
+
+ Controlling <abbr title="Server Name Indication">SNI</abbr> extension activation can also be done with the JVM option
-
- Please note that if the crawler uses content compression, this limit is used to check the compressed content size
+
+ jsse.enableSNIExtension
-
- Submit
+
+ , 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).
-
- Changes will take effect immediately
+
+ General HTTP client
-
- Timeout:
+
+ Configuration settings for the main HTTP client, used notably to crawl websites and communicate with other YaCy peers.
+
+
+ Enable <abbr title="Server Name Indication">SNI</abbr> extension to <abbr title="Transport Layer Security">TLS</abbr>
+
+
+ Remote Solr HTTP client
+
+
+ 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).
+
+
+ <em id="submitInfo">Changes will take effect immediately.</em>
+
+ "Submit"
+ Message Forwarding
@@ -7624,20 +8856,17 @@
Forwarding Command
-
- The command-line program that should be used to forward the message.<br />
+
+ <i>The command-line program that should be used to forward the message.
+
+
+ e.g.:</i>Forwarding To
-
- The recipient email-address.<br />
-
-
- e.g.:
-
-
- "Submit"
+
+ <i>The recipient email-address.Changes will take effect immediately.
@@ -7647,14 +8876,17 @@
+
+ "Submit"
+ Remote Proxy (optional)YaCy can use another proxy to connect to the internet. You can enter the address for the remote proxy here:
-
- Use remote proxy</label>
+
+ Use remote proxyEnables the usage of the remote proxy by yacy
@@ -7674,32 +8906,35 @@
Remote proxy port
+
+ the port of the remote proxy
+ Remote proxy userRemote proxy password
-
- No-proxy adresses
+
+ No-proxy addressesIP addresses for which the remote proxy should not be used
-
- "Submit"
- Changes will take effect immediately.
-
- the port of the remote proxy
-
+
+ "Submit"
+
+
+ "change"
+ Proxy Settings
@@ -7709,8 +8944,8 @@
With this you can specify if YaCy can be used as transparent proxy.
-
- Hint: On linux you can configure your firewall to transparently redirect all http traffic through yacy using this iptables rule
+
+ <em>Hint: On linux you can configure your firewall to transparently redirect all http traffic through yacy using this iptables rule</em>:Always Fresh
@@ -7724,9 +8959,6 @@
Send "Via" Header
-
- Specifies if the proxy should send the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.45" target="_blank">Via</a>
- http header according to RFC 2616 Sect 14.45.
@@ -7736,26 +8968,17 @@
Specifies if the proxy should send the X-Forwarded-For http header.
-
- "Submit"
-
-
- HTTP Server Port
-
-
- HTTPS Server Port
-
-
- "change"
- Proxy Access SettingsThese settings configure the access method to your own http proxy and server.
-
- 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.
+
+
+ HTTPS Server Port:Server Access Restrictions
@@ -7787,14 +9010,151 @@
IP-Number filter
-
- Use <a
+
+ Accounts
+
+
+
+
+
+
+
+ "'Referer' section from the standard IETF specification"
+
+
+ "Link types section at W3C HTML specification"
+
+
+ "Submit"
+
+
+ Referrer Policy Settings
+
+
+ When loading pages and navigating through links, a web browser sends some information about the origin of the request,
+
+
+ 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.
+
+
+ This page offers some configuration settings to instruct your browser how it should fill this referrer information.
+
+
+ Beware that every browser behaves differently: some settings may be unsupported by your particular browser and therefore ignored.
+
+
+ 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.
+
+
+ Global policy
+
+
+ This referrer policy applies for every page on this peer. It is set by the "meta" HTML tag.
+
+
+ Values are sorted by decreasing privacy level.
+
+
+ no-referrer
+
+
+ Highest privacy setting: referrer information should never be sent, even when navigating on this peer internal links.
+
+
+ Be careful with this: some websites might reject requests with no referrer.
+
+
+ same-origin
+
+
+ Peer internal links: referrer information should be stripped from any private data and contain only this peer host name.
+
+
+ External links: referrer information should never be sent.
+
+
+ strict-origin
+
+
+ Peer internal and external links: referrer information should be stripped from any private data and contain only this peer host name.
+
+
+ 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.
+
+
+ origin
+
+
+ strict-origin-when-cross-origin
+
+
+ Peer internal links: referrer information should contain full URLs.
+
+
+ External links: referrer information should be stripped from any private data and contain only this peer host name.
+
+
+ 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.
+
+
+ origin-when-cross-origin
+
+
+ no-referrer-when-downgrade
+
+
+ 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).
+
+
+ empty value
+
+
+ Default browser behavior: it should correspond to "no-referrer-when-downgrade".
+
+
+ unsafe-url
+
+
+ Unsafe setting: referrer information should always contain full URLs.
+
+
+ Custom setting: probably manually edited, be sure this value is the desired one.
+
+
+ Search results links
+
+
+ Add the "noreferrer" link type to search results links
+
+
+ When checked, this overrides the global referrer policy and adds the standard "noreferrer"
+
+
+ thus instructing the browser that it should not send any referrer information at all when visiting them.
+
+
+ It is a standard HTML5 attribute value,
+
+
+ supported by many more browsers than the meta tag: if you want a higher level of privacy but use an old or incompatible browser,
+
+
+ this can be a valuable option.
+
+
+ <em id="submitInfo">Changes will take effect immediately.</em>
+
+ "Submit"
+
+
+ "Retry Uploading"
+ Seed Upload Settings
@@ -7819,49 +9179,49 @@
Upload Method
-
- "Submit"
-
-
- >URL<
-
-
- Retry Uploading
+
+ Here you can specify which upload method should be used. Select 'none' to deactivate uploading.
-
- Here you can specify which upload method should be used.
-
-
- Select 'none' to deactivate uploading.
+
+ URLThe URL that can be used to retrieve the uploaded seed file, like
+
+ http://www.<my-host>.net/yacy/seed.txt'
+
+
+ "Submit"
+ Store into filesystem:You must configure this if you want to store the seed-list file onto the file system.
-
- File Location
+
+ File Location:Here you can specify the path within the filesystem where the seed-list file should be stored.
-
- "Submit"
+
+ current:
+
+ "Submit"
+ Uploading via FTP:
@@ -7877,49 +9237,46 @@
but only if there had been changes to the seed-list.
-
- The host where you have a FTP account, like
+
+ Server
-
- Path</label>
+
+ The host where you have a FTP account, like 'ftp.<my-host>.net'
-
- The remote path on the FTP server, like
+
+ Path
-
- Missing sub-directories are NOT created automatically.
+
+ The remote path on the FTP server, like 'yacy/seed.txt'. Missing sub-directories are NOT created automatically.Username
-
- >Server<
- Your log-in at the FTP server
-
- Password</label>
+
+ PasswordThe password
-
- "Submit"
-
+
+ "Submit"
+ Uploading via SCP:This is the account for a server where you are able to login via ssh.
-
- >Server<
+
+ ServerThe host where you have an account, like 'my.host.net'
@@ -7930,8 +9287,8 @@
The sshd port of the host, like '22'
-
- Path</label>
+
+ PathThe remote path on the server, like '~/yacy/seed.txt'. Missing sub-directories are NOT created automatically.
@@ -7942,34 +9299,31 @@
Your log-in at the server
-
- Password</label>
+
+ PasswordThe password
-
- "Submit"
-
+
+ "Submit"
+ Server Access SettingsIP-Number filter:
-
- requires restart
-
-
- Here you can restrict access to the server.
+
+ (requires restart)
-
- By default, the access is not limited,
+
+ <strong>Here you can restrict access to the server.</strong> By default, the access is not limited,because this function is needed to spawn the p2p index-sharing function.
@@ -7986,14 +9340,14 @@
company's own web pages.
-
- Filter have to be entered as IP, IP range or first part of allowed IP's separated by comma (e.g. 10.100.0-100.0-100, 127. )
+
+ Filter have to be entered as IP, IP range or using CIDR notation separated by comma (e.g. 192.168.1.1,2001:db8
-
- further details on format see Jetty
+
+ ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)
-
- fileHost:
+
+ further details on format see JettystaticIP (optional):
@@ -8019,17 +9373,38 @@
you don't need to set anything here, please leave it blank.
-
- ATTENTION: Your current IP is recognized as "#[clientIP]#".
- If the value you enter here does not match with this IP,you will not be able to access the server pages anymore.
-
- value="Submit"
+
+ publicPort (optional):
+
+
+ <strong>The publicPort can help that your peer can be reached by other peers in case that your
+
+
+ peer is behind a reverse proxy.</strong>
+
+
+ If the port used to access YaCy is the same port the application is listening on,
+
+
+ fileHost:
+
+
+ Set this to avoid error-messages like 'proxy use not allowed / granted' on accessing your Peer by its hostname.
+
+
+ Virtual host for httpdFileServlet access for example http://FILEHOST/ shall access the file servlet and
+
+
+ return the defaultFile at rootPath either way, http://FILEHOST/ denotes the same as http://localhost:<port>/
+
+
+ for the preconfigured value 'localpeer', the URL is: http://localpeer/.Server Port Settings
@@ -8037,23 +9412,91 @@
Server port:
-
- This is the main port for all http communication (default is 8090).
-
-
- A change requires a restart.
+
+ This is the main port for all http communication (default is 8090). A change requires a restart.Server ssl port:
-
- This is the port to connect via https (default is 8443).
+
+ This is the port to connect via https (default is 8443). A change requires a restart.Shutdown port:
-
- This is the local port on the loopback address (127.0.0.1 or :1) to listen for a shutdown signal to stop the YaCy server (-1 disables the shutdown port, recommended default is 8005).
+
+ This is the local port on the loopback address (127.0.0.1 or :1) to listen for a shutdown signal to stop the YaCy server (-1 disables the shutdown port, recommended default is 8005). A change requires a restart.
+
+
+ Compression settings
+
+
+ Compress responses with gzip
+
+
+ When checked (default), HTTP responses can be compressed using gzip.
+
+
+ The requesting user-agent (a web browser, another YaCy peer or any other tool) uses the header 'Accept-Encoding' to tell whether it accepts gzip compression or not.
+
+
+ This adds some processing overhead, but can significantly reduce the amount of bytes transmitted over the network.
+
+
+ <em id="submitInfo">Changes need a server restart.</em>
+
+
+
+
+
+
+
+ "Submit"
+
+
+ URL Proxy Settings
+
+
+ With this settings you can activate or deactivate URL proxy.
+
+
+ Service call: http://localhost:8090/proxy.html?url=parameter, where parameter is the url of an external web page.
+
+
+ URL proxy:
+
+
+ Enabled
+
+
+ Globally enables or disables URL proxy via http://yourpeer:yourport/proxy.html?url=http://externalurl/
+
+
+ Show search results via URL proxy:
+
+
+ Enables or disables URL proxy for all search results. If enabled, all search results will be tunneled through URL proxy.
+
+
+ Alternatively you may add this javascript to your browser favorites/short-cuts, which will reload the current browser address
+
+
+ via the YaCy proxy servlet.
+
+
+ or right-click this link and add to favorites:
+
+
+ Restrict URL proxy use:
+
+
+ Define client filter. Default: 127.0.0.1,0:0:0:0:0:0:0:1.
+
+
+ URL substitution:
+
+
+ Define URL substitution rules which allow navigating in proxy environment. Possible values: all, domainlist. Default: domainlist.
@@ -8075,28 +9518,64 @@
Server Access Settings
-
- Proxy Access Settings
+
+ Referrer Policy SettingsCrawler Settings
-
- Remote Proxy (optional)
- Seed Upload SettingsMessage Forwarding (optional)
+
+ Transparent Proxy Access Settings
+
+
+ URL/Web Proxy Access Settings
+
+
+ Remote Proxy (optional)
+
+
+ Debug/Analysis Settings
+
+
+ HTTP client Settings
+
-
- Console Status
+
+ "Fork me on GitHub"
+
+
+ "YaCy Websearch"
+
+
+ "PerformanceGraph"
+
+
+ "banner"
+
+
+ "bad"
+
+
+ "idea"
+
+
+ "Update YaCy"
+
+
+ "lock icon"
+
+
+ "good"Log-in as administrator to see full status
@@ -8107,21 +9586,18 @@
Your settings are _not_ protected!
-
- Please open the <a href="ConfigAccounts_p.html">accounts configuration</a> page <strong>immediately</strong>
- and set an administration password.
-
- Access is unrestricted from localhost (this includes administration features).
-
-
- Please check the <a href="ConfigAccounts_p.html">accounts configuration</a> page to ensure that the settings match the security level you need.
- You have not published your peer seed yet. This happens automatically, just wait.
+
+ Your network configuration is in private mode. Your peer seed will not be published.
+
+
+ Access is unrestricted from localhost (this includes administration features).
+ The peer must go online to get a peer address.
@@ -8131,24 +9607,9 @@
A possible reason is that you are behind a firewall, NAT or Router.
-
- But you can <a href="index.html">search the internet</a> using the other peers'
- global index on your own search page.
-
- "bad"
-
-
- "idea"
-
-
- "good"
-
-
- "Follow YaCy on Twitter"
- We encourage you to open your firewall for the port you configured (usually: 8090),
@@ -8158,56 +9619,26 @@
Please be fair, contribute your own index to the global index.
-
- Free disk space is lower than #[minSpace]#. Crawling has been disabled. Please fix
- it as soon as possible and restart YaCy.
-
- Free memory is lower than #[minSpace]#. DHT-in has been disabled. Please fix
- Crawling is paused! If the crawling was paused automatically, please check your disk space.
-
- Latest public version is
- You can download a more recent version of YaCy. Click here to install this update and restart YaCy:
-
- Install YaCy
-
-
- You can download the latest releases here:
- You are running a server in senior mode and you support the global internet index,
-
- which you can also <a href="index.html">search yourself</a>.
- You have a principal peer because you publish your seed-list to a public accessible server
-
- where it can be retrieved using the URL
-
-
- Your Web Page Indexer is idle. You can start your own web crawl <a href="CrawlStartSite.html">here</a>
-
-
- Your Web Page Indexer is busy. You can <a href="Crawler_p.html">monitor your web crawl</a> here.
- If you need professional support, please write to
-
- For community support, please visit our
-
-
- >forum<
+
+ support@yacy.net
@@ -8220,68 +9651,29 @@
System
-
- YaCy version
- Unknown
-
- Uptime:
-
-
- Processors:
-
-
- Load:
-
-
- Threads:
-
-
- peak:
-
-
- total:
- Protection
-
- Password is missing
+
+ Default password is not changed
+
+
+ [Configure]password-protected
-
- Unrestricted access from localhost
-
-
- Address</dt>
+
+ Addresspeer address not assigned
-
- Host:
-
-
- Public Address:
-
-
- YaCy Address:
-
-
- Proxy</dt>
-
-
- Transparent
-
-
- not used
-
-
- broken::connected
+
+ Port Forwarding Hostbroken
@@ -8289,29 +9681,26 @@
connected
-
- Used for YaCy -> YaCy communication:
+
+ Proxy
-
- WARNING:
+
+ Transparent
-
- You do this on your own risk.
+
+ on
-
- If you do this without YaCy running on a desktop-pc, this will possibly break startup.
+
+ off
-
- In this case, you will have to edit the configuration manually in DATA/SETTINGS/yacy.conf
+
+ URLRemote:
-
- Tray-Icon
-
-
- Experimental<
+
+ not usedYes
@@ -8322,17 +9711,11 @@
Auto-popup on start-up
-
- Disabled
-
-
- Enable]
-
-
- Enabled
+
+ Tray-Icon
-
- Disable]
+
+ ExperimentalMemory Usage
@@ -8346,54 +9729,21 @@
DISK used:
-
- (approx.)
- DISK free:
-
- on::off
-
-
- Configure
-
-
- max:
-
-
- Traffic
-
-
- >Reset
-
-
- Proxy:
-
-
- Crawler:
- Incoming Connections
-
- Active:
-
-
- Max:
-
-
- Loader Queue
-
-
- paused
-
-
- >Queues<
+
+ QueuesLocal Crawl
+
+ (paused)
+ Remote triggered Crawl
@@ -8403,74 +9753,44 @@
Seed server
-
- Enabled: Updating to server
-
-
- Last upload: #[lastUpload]# ago.
-
-
- Enabled: Updating to file
-
-
- YaCy version:
-
-
- Java version:
-
-
- >Experimental<
-
-
- Enabled <a
-
-
- Reset</a>
+
+ Disabled.
-
- Steering</title>
+
+ "Kaskelix"
-
- Checking peer status...
+
+ "Restart"
-
- Peer is online again, forwarding to status page...
-
-
- Peer is not online yet, will check again in a few seconds...
+
+ "Shutdown"No action submitted
-
- Go back to the <a href="Settings_p.html">Settings</a> page
+
+ Re-Start
+
+
+ ShutdownYour system is not protected by a password
-
- Please go to the <a href="ConfigAccounts_p.html">User Administration</a> page and set an administration password.
- You don't have the correct access right to perform this task.Please log in.
-
- You can now go back to the <a href="Settings_p.html">Settings</a> page if you want to make more changes.
- See you soon!
-
- Just a moment, please!
- Application will terminate after working off all scheduled tasks.
@@ -8486,26 +9806,14 @@
Please send us feed-back about your experience with an
-
- >anonymous message<
-
-
- or a<
-
-
- posting to our
-
-
- web forums
+
+ or a
-
- >bug report<
+
+ Professional Support
-
- >Professional Support<
-
-
- If you are a professional user and you would like to use YaCy in your company in combination with consulting services by YaCy specialists, please see
+
+ Just a moment, please!Then YaCy will restart.
@@ -8513,28 +9821,22 @@
If you can't reach YaCy's interface after 5 minutes restart failed.
-
- Installing release
+
+ YaCy will be restarted after installation.
+
+
+ <b>The file you are trying to install is not located in the release directory.
-
- YaCy will be restarted after installation
+
+ You are in a development environment or the file you are trying to install is empty.
-
- Supporter<
-
-
- Please enter a comment to your link recommendation.
-
-
- Your Vote is also considered without a comment.
-
-
- Supporter are switched off for users without authorization
+
+ "YaCy Supporter""bookmark"
@@ -8554,66 +9856,69 @@
"Give negative vote"
-
- provided by YaCy peers with an URL in their profile. This shows only URLs from peers that are currently online.
+
+ Supporter
+
+
+ Supporter are switched off for users without authorization
-
- Surftips</title>
+
+ "YaCy Surftips"
-
- Surftips</h2>
-
-
- Surftips are switched off
-
-
- title="bookmark"
+
+ "bookmark"
-
- alt="Add to bookmarks"
+
+ "Add to bookmarks"
-
- title="positive vote"
+
+ "positive vote"
-
- alt="Give positive vote"
+
+ "Give positive vote"
-
- title="negative vote"
+
+ "negative vote"
-
- alt="Give negative vote"
+
+ "Give negative vote"
-
- YaCy Supporters<
+
+ "authentication required"
-
- >a list of home pages of yacy users<
+
+ Surftips
-
- provided by YaCy peers using public bookmarks, link votes and crawl start points
+
+ Surftips are switched off for users without authorization
-
- "Please enter a comment to your link recommendation. (Your Vote is also considered without a comment.)"
+
+ YaCy Supporters
-
- Hide surftips for users without autorization
+
+ a list of home pages of yacy usersShow surftips to everyone
+
+ Hide surftips for users without authorization
+
-
+
-
- : Peer Steering
+
+ "robots.txt Table"
+
+
+ "API"The information that is presented on this page can also be retrieved as XML.
@@ -8621,241 +9926,34 @@
Click the API icon to see the XML.
-
- To see a list of all APIs, please visit the
-
-
- API wiki page
-
-
- >Process Scheduler<
-
-
- This table shows actions that had been issued on the YaCy interface
-
-
- to change the configuration or to request crawl actions.
-
-
- These recorded actions can be used to repeat specific actions and to send them
-
-
- to a scheduler for a periodic execution.
-
-
- >Recorded Actions<
-
-
- "next page"
-
-
- "previous page"
-
-
- of #[of]#
-
-
- >Type
-
-
- >Comment
-
-
- Call Count<
-
-
- Recording Date
-
-
- Last Exec Date
-
-
- Next Exec Date
-
-
- >Event Trigger<
-
-
- "clone"
-
-
- >Scheduler<
-
-
- >no event<
-
-
- >activate event<
-
-
- >no repetition<
-
-
- >activate scheduler<
-
-
- >off<
-
-
- >run once<
-
-
- >run regular<
-
-
- >after start-up<
-
-
- at 00:00h
-
-
- at 01:00h
-
-
- at 02:00h
-
-
- at 03:00h
-
-
- at 04:00h
-
-
- at 05:00h
-
-
- at 06:00h
-
-
- at 07:00h
-
-
- at 08:00h
-
-
- at 09:00h
-
-
- at 10:00h
-
-
- at 11:00h
-
-
- at 12:00h
-
-
- at 13:00h
-
-
- at 14:00h
-
-
- at 15:00h
-
-
- at 16:00h
-
-
- at 17:00h
-
-
- at 18:00h
-
-
- at 19:00h
-
-
- at 20:00h
-
-
- at 21:00h
-
-
- at 22:00h
-
-
- at 23:00h
-
-
- "Execute Selected Actions"
-
-
- "Delete Selected Actions"
-
-
- "Delete all Actions which had been created before "
-
-
- day<
-
-
- days<
-
-
- week<
-
-
- weeks<
-
-
- month<
-
-
- months<
-
-
- year<
-
-
- years<
-
-
- >Result of API execution
-
-
- >minutes<
-
-
- >hours<
-
-
- Scheduled actions are executed after the next execution date has arrived within a time frame of #[tfminutes]# minutes.
-
-
- To see a list of all APIs, please visit the
+
+ robots.txt table
-
+
-
- Table Viewer
+
+ "Tables"
-
- The information that is presented on this page can also be retrieved as XML.
-
-
- Click the API icon to see the XML.
+
+ "Search"
-
- To see a list of all APIs, please visit the
+
+ "Edit Selected Row"
-
- API wiki page
+
+ "Add a new Row"
-
- >robots.txt table<
+
+ "Delete Selected Rows"
-
-
-
-
-
-
-
- Table Viewer
+
+ "Delete Table"
+
+
+ "Commit"Table Administration
@@ -8869,32 +9967,20 @@
show max.
-
- >all<
+
+ all
-
- entries
+
+ entries,
+
+
+ reverse:search rows for
-
- "Search"
-
-
- Table Editor: showing table
-
-
- "Edit Selected Row"
-
-
- "Add a new Row"
-
-
- "Delete Selected Rows"
-
-
- "Delete Table"
+
+ PKRow Editor
@@ -8902,114 +9988,118 @@
Primary Key
-
- "Commit"
-
-
- entries,
-
-
- YaCy Debugging: Thread Dump
-
-
- Threaddump<
- "Single Threaddump""Multiple Dump Statistic"
+
+ YaCy Debugging: Thread Dump
+
+
+ Threaddump
+
-
+
-
- Translation News for Language
+
+ Tools
-
- Translation News
+
+ Add superpowers to the YaCy Chat. Tools may be disabled by setting maxCallsPerTurn to 0.
-
- You can share your local addition to translations and distribute it to other peers.
+
+ Tool settings were saved.
+
+
+ Basic Tools
+
+
+ maxCallsPerTurn
-
- The remote peer can vote on your translation and add it to the own local translation.
+
+ disable
-
- entries available
+
+ Visualization Tools
+
+ Data Retrieval Tools
+
+
+ Save Tools Configuration
+
+
+
+
+
+
+
+ CyTag Trails
+
+
+
+
+
+
"Publish"
-
- You can check your outgoing messages
+
+ "negative vote"
+
+
+ "positive vote"
-
- >here<
+
+ You can share your local addition to translations and distribute it to other peers.
-
- To edit or add local translations you can use
+
+ The remote peer can vote on your translation and add it to its own local translation.File:
-
- >Originator<
+
+ OriginatorEnglish:
-
- >existing<
+
+ existingTranslation:
-
- >score
-
-
- negative vote
-
-
- positive vote
-
-
- Vote on this translation.
-
-
- If you vote positive the translation is added to your local translation list.
+
+ Vote on this translation. If you vote positive the translation is added to your local translation list.
+
+ "Save translation"
+ Translation Editor
-
- Translate untranslated text of the user interface (current language).
-
-
- The modified translation file is stored in DATA/LOCALE directory.
+
+ Translate untranslated text of the user interface (current language). The modified translation file is stored in DATA/LOCALE directory.UI Translation
-
- Target Language:
-
-
- activate a different language
- Source File
@@ -9022,59 +10112,62 @@
Source Text
-
- Translated Text
-
-
- Save translation
-
-
- Check for remote translation proposals and/or share your own added translations
-
+
+ "login"
+
+
+ "logout"
+
+
+ "red bar"
+
+
+ "green bar"
+
+
+ "Change"
+ User Page
-
- You are not logged in.<br />
+
+ You are not logged in.Username:
-
- Password: <input
+
+ Password:
-
- "login"
+
+ (Identified by
-
- You are currently logged in as #[username]#.
+
+ IP
-
- You have used
+
+ Username/Password
+
+
+ Cookieold Password
-
- new Password<
+
+ new Passwordnew Password(repetition)
-
- "Change"
- You are currently logged in as admin.
-
- value="logout"
- (after logout you will be prompted for your password again. simply click "cancel")
@@ -9090,25 +10183,51 @@
New Password is empty.
-
- minutes of your onlinetime limit of
+
+
+
+
+
+
+ "File system browser"
+
+
+ "Root contents"
+
+
+ Virtual File System
+
+
+ User storage in the browser cache with file-system-like navigation.
+
+
+ New Folder
+
+
+ Upload File
-
- minutes per day.
+
+ No files yet. Upload a file or create a folder.
+
+
+ Preview
+
+
+ Edit file
+
+
+ Discard
+
+
+ Save
-
- See the page info about the url.
-
-
- View URL Content
-
-
- >Get URL Viewer<
+
+ "API""Show Metadata"
@@ -9116,45 +10235,75 @@
"Browse Host"
-
- >URL Metadata<
+
+ "Show Snippet"
+
+
+ "Show"
+
+
+ "action"
+
+
+ See the page info about the url.
+
+
+ View URL Content
+
+
+ Get URL Viewer
+
+
+ URL:Search in Document:
-
- "Show Snippet"
-
-
- Hash
+
+ URL Metadata
-
- (click this for full metadata)
+
+ Hash:In Metadata:
+
+ no
+
+
+ yes
+ In Cache:
-
- Word Count
+
+ First Seen:
-
- Description
+
+ Word Count:
-
- Size
+
+ Description:
+
+
+ Size:MimeType:
-
- Collections
+
+ Collections:View as
+
+ Original from Web
+
+
+ Original from Cache
+ Plain Text
@@ -9170,12 +10319,12 @@
Link List
+
+ Schema Fields
+ Citation Report
-
- "Show"
- Unable to find URL Entry in DB
@@ -9191,48 +10340,114 @@
Unsupported protocol.
-
- >Original Content from Web<
+
+ Snippet
+
+
+ Headline
+
+
+ Teaser Text
+
+
+ Original Content from WebParsed Content
-
- >Original from Web<
+
+ dc:title
+
+
+ dc:creator
+
+
+ dc:subject
+
+
+ dc:description
+
+
+ dc:publisher
+
+
+ dc:format
+
+
+ dc:identifier
+
+
+ dc:source
-
- >Original from Cache<
+
+ geo:lat & geo:long
-
- >Parsed Tokens<
+
+ nr
+
+
+ type
+
+
+ name
+
+
+ link
+
+
+ text
+
+
+ rel
+
+
+ Parsed Tokens
+
+
+ CitationReport
+
+ "refresh"
+ Server Log
-
- Lines
- reversed order
-
- "refresh"
+
+ regex
+
+
+ terms
+
+
+ Invalid regular expression filter.
+
+ "vCard"
+
+
+ "rdf:foaf"
+
+
+ "Onlinestatus"
+ Local Peer Profile:
-
- Remote Peer Profile
+
+ Remote Peer Profile:Wrong access of this page
@@ -9243,17 +10458,8 @@
The profile can't be fetched.
-
- The peer
-
-
- is not online.
-
-
- This is the Profile of
-
-
- >Name
+
+ NameNick Name
@@ -9264,28 +10470,49 @@
eMail
-
- Comment
+
+ ICQ
+
+
+ Jabber
+
+
+ Yahoo!
+
+
+ MSN
-
- View this profile as
+
+ Skype
-
- > or
+
+ Comment
-
- You can edit your profile <a href="ConfigProfile_p.html">here</a>
+
+ vCard
-
- <html lang="en">
+
+ "API"
+
+
+ "View"
+
+
+ "Uniform Resource Locator"
+
+
+ "Standard CSV field delimiter"
+
+
+ "Create"
-
- YaCy '#[clientname]#': Federated Index
+
+ "Submit"The information that is presented on this page can also be retrieved as XML
@@ -9293,9 +10520,6 @@
Click the API icon to see the RDF Ontology definition for this vocabulary.
-
- To see a list of all APIs, please visit the <a href="https://wiki.yacy.net/index.php/Dev:API" target="_blank">API wiki page</a>.
- Vocabulary Administration
@@ -9314,27 +10538,60 @@
Vocabulary Name
-
- "View"
- Vocabulary Production
+
+ Please provide a CSV file path or <abbr title="Uniform Resource Locator">URL</abbr>.
+ Empty VocabularyAuto-Discover
+
+ from file name
+
+
+ from page title
+
+
+ from page title (split)
+
+
+ from page author
+
+
+ Objectspace
+
+
+ It is possible to produce a vocabulary out of the existing search index. This is done using a given 'objectspace' which you can enter as a URL Stub.
+
+
+ This stub is used to find all matching URLs. If the remaining path from the matching URLs then denotes a single file, the file name is used as vocabulary term.
+
+
+ This works best with wikis. Try to use a wiki url as objectspace path.
+ Import from a csv file
-
- File Path
+
+ File Path or <abbr title="Uniform Resource Locator">URL</abbr>
+
+
+ Start line
+
+
+ (first has index 0)Column for Literals
+
+ Synonyms
+ no Synonyms
@@ -9344,82 +10601,100 @@
Read Column
-
- first has index
-
-
- if unused set
- Column for Object Link (optional)
+
+ (first has index 0, if unused set -1)
+ Charset of Import File
-
- It is possible to produce a vocabulary out of the existing search index. This is done using a given 'objectspace' which you can enter as a URL Stub.
+
+ Column separator
-
- This stub is used to find all matching URLs. If the remaining path from the matching URLs then denotes a single file, the file name is used as vocabulary term.
+
+ Comma ','
-
- This works best with wikis. Try to use a wiki url as objectspace path.
+
+ Semicolon ';'
-
- Objectspace
+
+ Vocabulary Editor
-
- from file name
+
+ File
-
- from page title
+
+ [automatically generated, not stored, cannot be edited]
-
- from page title (splitted)
+
+ Size
-
- from page author
+
+ Namespace
-
- "Create"
+
+ Predicate
-
- Vocabulary Editor
+
+ Prefix
+
+
+ Is Facet?
-
- >Modify<
+
+ (If checked, this vocabulary is used for search facets. Not feasible for large vocabularies!)
-
- >Delete<
+
+ Match terms from
-
- >Literal<
+
+ Cleartext
+
+
+ Linked data/Semantic web annotations
+
+
+ Modify
+
+
+ Delete
-
- >Synonyms<
+
+ Literal
-
- >Object Link<
+
+ Object Link
-
- >add<
+
+ addclear table (remove all terms)
-
- delete vocabulary<
-
-
- "Submit"
+
+ delete vocabulary
-
- Web Structure
+
+ "API"
+
+
+ "minus"
+
+
+ "plus"
+
+
+ "change"
+
+
+ "WebStructurePicture"The data that is visualized here can also be retrieved in a XML file, which lists the reference relation between the domains.
@@ -9433,119 +10708,101 @@
Click the API icon to see the XML file.
-
- To see a list of all APIs, please visit the
-
-
- API wiki page
-
-
- >Host List<
-
-
- >#[count]# outlinks
-
-
- host<
+
+ Web Structure
-
- depth<
+
+ Host List
-
- nodes<
+
+ host
-
- time<
+
+ depth
-
- size<
+
+ nodes
-
- >Background<
+
+ time
-
- >Text<
+
+ size
-
- >Line<
+
+ Background
-
- >Pivot Dot<
+
+ Color
-
- >Other Dot<
+
+ Text
-
- >Dot-end<
+
+ Line
-
- >Color <
+
+ Pivot Dot
-
- "change"
+
+ Other Dot
-
- "WebStructurePicture"
+
+ Dot-end
-
- YaCyWiki page:
-
-
- last edited by
-
-
- change date
+
+ "all"
-
- Edit<
+
+ "admin"
-
- only granted to admin
-
-
- Grant Write Access to
+
+ "Submit"
-
- Start Page
+
+ "Preview"
-
- Index
+
+ "Discard"
-
- Versions
+
+ "Show"
-
- Author:
+
+ "Compare"
-
- You can use
+
+ (only granted to admin)
-
- Wiki Code</a> here.
+
+ Index -
-
- "edit"
+
+ Grant Write Access to
-
- "Submit"
+
+ Edit
-
- "Preview"
+
+ Author:
-
- "Discard"
+
+ Text:
-
- >Preview
+
+ PreviewNo changes have been submitted so far!
+
+ Index
+ Subject
@@ -9555,29 +10812,23 @@
Last Author
-
- IO Error reading wiki database:
+
+ Start Page
-
- Select versions of page
+
+ VersionsCompare version from
-
- "Show"
- with version from
-
- "current"
-
-
- "Compare"
+
+ Error
-
- Return to
+
+ You can useChanges will be published as announcement on YaCyNews
@@ -9587,9 +10838,6 @@
-
- Wiki Help
- Wiki-Code
@@ -9605,23 +10853,35 @@
Description
-
- These tags create headlines. If a page has three or more headlines, a table of content will be created automatically.
+
+ These tags create headlines. If a page has three or more headlines, a table of content will be created automatically. Headlines of level 1 will be ignored in the table of content.
-
- Headlines of level 1 will be ignored in the table of content.
+
+ ''text''<br />'''text'''<br />'''''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.
+
+ the second one emphasizes it more strongly (i.e. bold) and the last tags create a combination of both.
+
+
+ <s>text</s>
+
+
+ Text will be displayed
+
+
+ struck through
-
- Text will be displayed <span class="strike">stricken through</span>.
+
+ <u>text</u>
-
- Text will be displayed <span class="underline">underlined</span>.
+
+ underlined
+
+
+ textLines will be indented. This tag is supposed to mark citations, but may as well be used for styling purposes.
@@ -9632,26 +10892,74 @@
These tags create an unnumbered list.
+
+ ;word 1:definition 1
+
+
+ ;word 2:definition 2
+
+
+ ;;word 3:definition 3
+
+
+ ;word 4:definition 4
+ These tags create a definition list.This tag creates a horizontal line.
+
+ [[pagename]]
+
+
+ [[pagename|description]]
+ This tag creates links to other pages of the wiki.
+
+ [url]
+
+
+ [url description]
+
+
+ This tag creates links to external websites.
+
+
+ [[Image:url]]
+
+
+ [[Image:url|alt text]]
+
+
+ [[Image:url|align|alt text]]
+ This tag displays an image, it can be aligned left, right or center.
+
+ [[Youtube:id]]
+
+
+ [[Vimeo:id]]
+ This tag displays a Youtube or Vimeo video with the id specified and fixed width 425 pixels and height 350 pixels.
-
- i.e. use
+
+ i.e. use [[Youtube:QZsWG4-7Qfk]] to embed this video: https://www.youtube.com/watch?v=QZsWG4-7Qfk
+
+
+ i.e. use [[Vimeo:32200946]] to embed this video: http://vimeo.com/32200946
-
- to embed this video:
+
+ ||row 1, col 1||row 1, col 2
+
+
+ ||row 2, col 1||row 2, col 2These tags create a table, whereas the first marks the beginning of the table, the second starts
@@ -9662,186 +10970,476 @@
closes the table.
+
+ <pre> text </pre>
+ A text between these tags will keep all the spaces and linebreaks in it. Great for ASCII-art and program code.
+
+ text<br /> text<br />text
+ If a line starts with a space, it will be displayed in a non-proportional font.
-
- This tag creates links to external websites.
+
+
+
+
+
+
+ "YaCy-Logo"
+
+
+ YaCy Firefox Search-Plugin Installation:
+
+
+ Simply click on the link shown below to integrate the YaCy Firefox Search-Plugin into your browser.
+
+
+ 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.
+
+
+ Install the YaCy search plugin.
+
+
+
+
+
+
+
+ Similar documents from different hosts:
+
+
+ List of
+
+
+ Cited
+
+
+ filter cited sentences
+
+
+ filter off
+
+
+ List of other web pages with citations
+
+
+
+
+
+
+
+ "Submit"
+
+
+ File Upload
+
+
+ This form can be used to upload a file and assign it to an url.
+
+
+ Example usage is the direct attachment of a content management system to YaCy to push newly changed files directly to the YaCy indexer.
+
+
+ File Count
+
+
+ synchronous
+
+
+ commit
+
+
+ Files to process:
-
- =headline
+
+ File Number
-
- point
+
+ Data
-
- something<
+
+ URL
-
- another thing
+
+ Collection
-
- and yet another
+
+ Last-Modified
-
- something else
+
+ Content-Type
-
- word
+
+ The following attributes are only used for media type content
-
- :definition
+
+ Media-Title
-
- pagename
+
+ Media-Keywords ()
-
- description]]
+
+ Result for the recently submitted file(s). You can also submit the same form using the servlet push_p.json to get push confirmations in json format.
-
- url description
+
+ count
-
- alt text
+
+ successall
+
+
+ false
+
+
+ true
+
+
+ countsuccess
+
+
+ countfail
+
+
+ Item
+
+
+ Success
+
+
+ Message
+
+
+ fail
+
+
+ ok
+
+
+ If you want to push again files, use this form to pre-define a number of upload forms:
-
+
-
- Document Citations for
+
+ "Submit"
-
- List of other web pages with citations
+
+ File Share
-
- Similar documents from different hosts:
+
+ This form can be used to share a (index) file
+
+
+ Files to process:
+
+
+ Result for the recently submitted file(s). You can also submit the same form using the servlet share.json to get push confirmations in json format.
+
+
+ successall
+
+
+ false
+
+
+ true
+
+
+ countsuccess
+
+
+ countfail
+
+
+ Item
+
+
+ URL
+
+
+ Success
+
+
+ Message
+
+
+ fail
+
+
+ ok
+
+
+ If you want to push again files, use this form to pre-define a number of upload forms:
-
- Table Viewer
+
+ "Table""Edit Table"
+
+ PK
+
-
- >Author<
+
+ "API"
+
+
+ This search result can also be retrieved as XML.
+
+
+ Click the API icon to see an example call to the search rss API.
+
+
+ Title
+
+
+ Author
+
+
+ Description
+
+
+ Subject
+
+
+ Publisher
+
+
+ Contributor
-
- >Description<
+
+ Date
-
- >Subject<
+
+ Type
+
+
+ YaCy Identifier
+
+
+ Identifier
+
+
+ Language
+
+
+ Collections
-
- >Date<
+
+ Load Date
-
- >Type<
+
+ Referrer Identifier
-
- >Identifier<
+
+ Referrer URL
-
- >Language<
+
+ Document size
-
- >Load Date<
+
+ Number of Words
-
- >Referrer Identifier<
+
+ Inbound Links (anchors)
-
- >Document size<
+
+ Outbound Links (anchors)
-
- >Number of Words<
+
+ Incoming Links (citation)
-
- >Title<
+
+ Location
+
+ "Compare"
+ Websearch Comparison
-
- Left Search Engine
+
+ Left Search Engine
+
+
+ Right Search Engine
+
+
+ Search Result
+
+
+ loading....
+
+
+
+
+
+
+
+ "Donate!"
+
+
+ Please support our work on YaCy!
+
+
+ Github Sponsors
+
+
+ beneficial: 5 €
+
+
+ generous: 25 €
+
+
+ gracious: 50 €
+
+
+
+
+
+
+
+ "YaCy"
+
+
+ "Search..."
+
+
+ "Restart"
+
+
+ "Shutdown"
+
+
+ "Community"
+
+
+ "Help"
+
+
+ "Chat"
+
+
+ "Search"
+
+
+ Administration
+
+
+ Toggle navigation
+
+
+ Re-Start
+
+
+ Shutdown
+
+
+ Forum
+
+
+ Help
+
+
+ About This Page
+
+
+ JavaScript information
+
+
+ <i>external</i> YaCy Tutorials
+
+
+ <i>external</i> Download YaCy
+
+
+ <i>external</i> Community (Web Forums)
-
- Right Search Engine
+
+ <i>external</i> Git Repository
-
- "Compare"
+
+ Sponsor
-
- Search Result
+
+ YaCy is free software, so we need the help of many to support the development.<br/><b>You</b> can help by joining a sponsoring plan:
-
-
-
-
-
-
- Administration
+
+ <i>external</i> <b>become a Github Sponsor</b>
-
- Toggle navigation
+
+ <i>external</i> <b>become a YaCy Patreon</b>
-
- Re-Start<
+
+ Please help! We need financial help to move on with the development!
-
- Shutdown<
+
+ Chat
-
- Download YaCy
+
+ Search
-
- Community (Web Forums)
+
+ First Steps
-
- Project Wiki
+
+ Use Case & Account
-
- Search Interface
+
+ Grab a whole site
-
- About This Page
+
+ Monitoring
-
- Portal Configuration
+
+ System Status
-
- Portal Design
+
+ Peer-to-Peer Network
-
- Ranking and Heuristics
+
+ Index Browser
+
+
+ Network AccessCrawler Monitor
-
- Index Administration
+
+ Production
-
- Filter & Blacklists
+
+ Crawler
+
+
+ AI Lab
+
+
+ Automation
+
+
+ YaCy Packs & Import/ExportContent Semantic
@@ -9849,174 +11447,218 @@
Target Analysis
-
- Process Scheduler
+
+ Index Administration
-
- Monitoring
+
+ System Administration
-
- Index Browser
+
+ Filter & Blacklists
-
- Network Access
+
+ RAM/Disk Usage & Updates
+
+
+ Search Portal Integration
-
- >Terminal
+
+ Portal Configuration
-
- Confirm Re-Start
+
+ Portal Design
-
- Confirm Shutdown
+
+ Ranking and Heuristics
-
- Project Wiki<
+
+
+
+
+
+
+ "Log in to use extended search features"
-
- Git Repository
+
+ "Search Interfaces"
-
- Bugtracker
+
+ "Help"
-
- "Search..."
+
+ "Administration"
-
- "You just started a YaCy peer!"
+
+ Toggle navigation
-
- "As a first-time-user you see only basic functions. Set a use case or name your peer to see more options. Start a first web crawl to see all monitoring options."
+
+ Log in
-
- "You did not yet start a web crawl!"
+
+ Search Interfaces<b class="caret"></b>
-
- "You do not see all monitoring options here, because some belong to crawl result monitoring. Start a web crawl to see that!"
+
+ <b class="caret"></b>
-
- First Steps
+
+ Web Search
-
- Use Case & Account
+
+ File Search
-
- Load Web Pages, Crawler
+
+ Compare Search
-
- RAM/Disk Usage & Updates
+
+ Chat
-
- System Status
+
+ URL Viewer
-
- Peer-to-Peer Network
+
+ Example Calls to the Search API:
-
- Advanced Crawler
+
+ <i>API</i> YaCy JSON
-
- Index Export/Import
+
+ <i>API</i> YaCy RSS/Opensearch
-
- System Administration
+
+ <i>API</i> Solr RSS/Opensearch
-
- Configuration
+
+ <i>API</i> Solr Default Core / JSON
-
- Production
+
+ <i>API</i> Solr Default Core / XML
-
- >Administration<
+
+ <i>API</i> Solr Webgraph Core / XML
-
- Search Portal Integration
+
+ About This Page
-
- You just started a YaCy peer!
+
+ YaCy Tutorials
-
- As a first-time-user you see only basic functions. Set a use case or name your peer to see more options. Start a first web crawl to see all monitoring options.
+
+ JavaScript information
-
- You did not yet start a web crawl!
+
+ <i>external</i> Download YaCy
-
- You do not see all monitoring options here, because some belong to crawl result monitoring. Start a web crawl to see that!
+
+ <i>external</i> Community (Web Forums)
-
- Design
+
+ <i>external</i> Git Repository
-
-
-
-
-
-
- English, Englisch
+
+ <i>external</i> Bugtracker
+
+
+ Administration »
+
+ "Help"
+ Toggle navigation
-
- Search Interfaces
+
+ Search Interfaces<b class="caret"></b>
-
- Administration »
+
+ Web Search
-
- >Web Search<
+
+ File Search
-
- >File Search<
+
+ Compare Search
-
- >Compare Search<
+
+ Chat
-
- >Index Browser<
-
-
- >URL Viewer<
+
+ URL ViewerExample Calls to the Search API:
-
- Solr Default Core
-
-
- Solr Webgraph Core
+
+ <i>API</i> YaCy JSON
-
- Google Appliance API
+
+ <i>API</i> YaCy RSS/Opensearch
-
- Download YaCy
+
+ <i>API</i> Solr RSS/Opensearch
-
- Community (Web Forums)
+
+ <i>API</i> Solr Default Core / JSON
-
- Project Wiki
+
+ <i>API</i> Solr Default Core / XML
-
- Search Interface
+
+ <i>API</i> Solr Webgraph Core / XMLAbout This Page
-
- Bugtracker
+
+ YaCy Tutorials
+
+
+ JavaScript information
+
+
+ <i>external</i> Download YaCy
+
+
+ <i>external</i> Community (Web Forums)
+
+
+ <i>external</i> Git Repository
+
+
+ <i>external</i> Bugtracker
+
+
+ Administration »
+
+
+
+
+
+
+
+ AI Lab
+
+
+ LLM Selection
+
+
+ RAG Config
+
+
+ Tools Config
-
- Git Repository
+
+ Log Reports
+
+
+ AI Shield
+
+
+ Chat
@@ -10038,11 +11680,11 @@
Incoming Requests Details
-
- All Connections<
+
+ All Connections
-
- Local Search<
+
+ Local SearchLog
@@ -10050,8 +11692,11 @@
Host Tracker
-
- Remote Search<
+
+ Access Rate Limitations
+
+
+ Remote SearchCookie Menu
@@ -10082,70 +11727,70 @@
Import/Export
-
- Content Control
-
-
- >Application Status<
-
-
- >Status<
+
+ Application StatusSystem
-
- Thread Dump
+
+ Status
-
- >Processes<
+
+ Processes
-
- >Server Log<
+
+ Server Log
-
- >Concurrent Indexing<
+
+ Log Reports
-
- >Memory Usage<
+
+ Thread Dump
-
- >Search Sequence<
+
+ Concurrent Indexing
-
- >Messages<
+
+ Memory Usage
-
- >Overview<
+
+ Search Sequence
-
- >Incoming News<
+
+ Messages
-
- >Processed News<
+
+ Overview
-
- >Outgoing News<
+
+ Incoming News
-
- >Published News<
+
+ Processed News
-
- >Community Data<
+
+ Outgoing News
-
- >Surftips<
+
+ Published News
-
- >Local Peer Wiki<
+
+ Community Data
-
- UI Translations
+
+ Surftips
+
+
+ Local Peer Wiki
+
+
+ Bookmarks
@@ -10158,67 +11803,43 @@
Advanced Settings
-
- Advanced Properties
+
+ Performance Settings of Busy QueuesViewer and administration for database tables
-
- Performance Settings of Busy Queues
+
+ Advanced Properties
-
- >Performance
+
+ UI Translations
-
- Overview</a>
-
-
- Receipts</a>
-
-
- Queries</a>
-
-
- DHT Transfer
-
-
- Proxy Use
-
-
- Local Crawling</a>
-
-
- Global Crawling</a>
-
-
- Pack Import
-
-
- Crawl Results
+
+ Web CrawlerProcessing Monitor
-
- Crawler<
+
+ Crawler
-
- Loader<
+
+ LoaderRejected URLs
-
- >Queues<
+
+ Queues
-
- Local<
+
+ LocalGlobal
@@ -10232,12 +11853,39 @@
Crawler Steering
-
- Scheduler and Profile Editor<
+
+ Scheduler and Profile Editorrobots.txt Monitor
+
+ Crawl Results
+
+
+ Overview
+
+
+ (1) Receipts
+
+
+ (2) Queries
+
+
+ (3) DHT Transfer
+
+
+ (4) Proxy Use
+
+
+ (5) Local Crawling
+
+
+ (6) Global Crawling
+
+
+ (7) Pack Import
+
@@ -10257,23 +11905,17 @@
-
- >Appearance<
-
-
- >Language<
-
-
- Search Page Layout
- Design
-
- >Appearance
+
+ Appearance
+
+
+ Language
-
- >Language
+
+ Search Page Layout
@@ -10309,23 +11951,26 @@
-
- Crawler/Spider<
+
+ Advanced Crawler
+
+
+ Crawler/SpiderCrawl Start (Expert)
-
- Network Scanner
- Crawling of MediaWikis
-
- >Crawling of phpBB3 Forums<
+
+ Crawling of phpBB3 Forums
-
- Network Harvesting<
+
+ Network Harvesting
+
+
+ Network ScannerRemote Crawling
@@ -10333,31 +11978,64 @@
Scraping Proxy
-
- Advanced Crawler
-
-
- Crawling of phpBB3 Forums
+
+ Autocrawl
-
- >Database Reader<
+
+ Content Export / Import
+
+
+ YaCy Packs
+
+
+ Pack Generator
-
- RSS Feed Importer
+
+ Pack Downloader
-
- OAI-PMH Importer
+
+ Pack Manager
-
- Database Reader for phpBB3 Forums
+
+ Export
-
- Dump Reader for MediaWiki dumps
+
+ Index Export
+
+
+ Solr Dump Export/Import
+
+
+ Import
+
+
+ RSS
+
+
+ OAI-PMH
+
+
+ WARC
+
+
+ ZIM
+
+
+ JsonList
+
+
+ Database Reader
+
+
+ phpBB3 Database
+
+
+ MediaWiki Dump
@@ -10367,8 +12045,8 @@
RAM/Disk Usage & Updates
-
- >Performance<
+
+ PerformanceWeb Cache
@@ -10381,21 +12059,21 @@
-
- Search Box Anywhere
+
+ Portal ConfigurationGeneric Search Portal
+
+ Search Box Anywhere
+ User ProfileLocal robots.txt
-
- Portal Configuration
-
@@ -10404,25 +12082,28 @@
Publication
-
- File Hosting
+
+ Wiki
+
+
+ Blog
+
+ Ranking and Heuristics
+ Solr Ranking ConfigRWI Ranking Config
-
- >Heuristics<
-
-
- Ranking and Heuristics
+
+ Heuristics
@@ -10432,8 +12113,8 @@
Content Semantic
-
- >Automated Annotation<
+
+ Automated AnnotationAuto-Annotation Vocabulary Editor
@@ -10466,8 +12147,8 @@
Basic Configuration
-
- >Accounts<
+
+ AccountsNetwork Configuration
@@ -10480,28 +12161,42 @@
Web Visualization
+
+ Index Browser
+ Web StructureImage Collage
-
- Index Browser
+
+
+
+
+
+
+ forwarding
+
+
+ forward to remote peer
-
- <html lang="en">
+
+ "Extend media search results (images, videos or applications specific) to pages including such medias (provides generally more results, but eventually less relevant)."
+
+
+ "Strictly limit media search results (images, videos or applications specific) to indexed documents matching exactly the desired content domain."
-
- YaCy '#[clientname]#': Search Page
+
+ "Reference alpha-2 language codes list"
-
- >Search<
+
+ SearchText
@@ -10527,8 +12222,14 @@
Resource
-
- global
+
+ the peer-to-peer network
+
+
+ only the local index
+
+
+ Prefer maskrestrict on
@@ -10536,20 +12237,20 @@
show all
-
- Prefer mask
-
-
- Constraints
+
+ Constraints:only index pages
-
- the peer-to-peer network
+
+ Media search
-
- only the local index
+
+ Extended
+
+
+ StrictQuery Operators
@@ -10557,102 +12258,129 @@
restrictions
+
+ inurl:<phrase>
+ only urls with the <phrase> in the url
+
+ inlink:<phrase>
+ only urls with the <phrase> within outbound links of the document
-
- only urls with extension
+
+ filetype:<ext>
-
- only urls from host
+
+ only urls with extension <ext>
-
- only pages with as-author-anotated
+
+ site:<host>
-
- only pages from top-level-domains
+
+ only urls from host <host>
-
- only pages with a date between <date1> and <date2> in content
+
+ author:<author>
+
+
+ only pages with as-author-annotated <author>
+
+
+ tld:<tld>
+
+
+ only pages from top-level-domains <tld>
+
+
+ on:<date>only pages with <date> in content
-
- only resources from http or https servers
+
+ from:<date1> to:<date2>
+
+
+ only pages with a date between <date1> and <date2> in content
+
+
+ keyword:<phrase>
-
- only resources from ftp servers
+
+ only pages with keyword anotation containing <phrase>
-
- they are rare
+
+ /http
-
- crawl them yourself
+
+ only resources from http or https servers
-
- only resources from smb servers
+
+ /ftp
-
- Intranet Indexing</a> must be selected
+
+ /smb
-
- only files from a local file system
+
+ /filespatial restrictions
+
+ /location
+ only documents having location metadata (geographical coordinates)
+
+ /radius/<latitude>/<longitude>/<distance>
+ only documents within a square zone embracing a circle of given radius (in decimal degrees) around the specified latitude and longitude (in decimal degrees)
-
- >ranking modifier<
+
+ ranking modifier
+
+
+ /date
-
- sort by date
+
+ sort by date (latest first)
-
- latest first
+
+ /nearmultiple words shall appear near
-
- doublequotes
-
-
- prefer given language
+
+ "" (doublequotes)
-
- an <a href="http://www.loc.gov/standards/iso639-2/php/English_list.php" title="Reference alpha-2 language codes list">ISO 639-1</a> 2-letter code
+
+ /language/<lang>heuristics
-
- add search results from
+
+ /heuristic
+
+
+ add search results from external opensearch systemsSearch Navigation
-
+ keyboard shortcuts
-
- <a href="https://en.wikipedia.org/wiki/Access_key">Access key</a> modifier + n
- next result page
-
- <a href="https://en.wikipedia.org/wiki/Access_key">Access key</a> modifier + p
- previous result page
@@ -10668,71 +12396,82 @@
search as rss feed
-
- click on the red icon in the upper right after a search.
-
-
- this works good in combination with the '/date' ranking modifier.
-
-
- See an
-
-
- >example
- json search resultsfor ajax developers: get the search rss feed and replace the '.rss' extension in the search result url with '.json'
-
- ranking modifier
+
+
+
+
+
+
+ YaCy JavaScript license information
-
- add search results from external opensearch systems
+
+ YaCy JavaScript files license information
+
+
+ Script
-
- click on the red icon in the upper right after a search. this works good in combination with the
+
+ License
+
+
+ Source
-
+
-
- "Continue this queue"
+
+ YaCy Bookmarks
-
- "Pause this queue"
+
+ YaCy Portalsearch:
-
+
-
- >Size
+
+ "Download Java Plug-in"
+
+
+ "Processing.org"
+
+
+ domaingraph : Built with Processing
+
+
+ This browser does not have a Java Plug-in.
+
+
+ Get the latest Java Plug-in here.
-
- >Date
+
+ Built with Processing
+
+ "login"
+ Your Username/Password is wrong.
-
- Username</label>
-
-
- Password</label>
+
+ Username
-
- "login"
+
+ Password
@@ -10742,6 +12481,9 @@
YaCy: Error Message
+
+ YaCy
+ request:
@@ -10757,12 +12499,6 @@
Could not load resource. The file is not available.
-
- Exception occurred
-
-
- Generated #[date]# by
-
@@ -10771,30 +12507,69 @@
Your Account is disabled for surfing.
-
- Your Timelimit (#[timelimit]# Minutes per Day) is reached.
-
-
- The server
-
-
- could not be found.
- Did you mean:
+
+
+
+ "add bookmark"
+
+
+ YaCy stop proxy
+
+
+ (Warning: secure target viewed over normal http)
+
+
+
+
+
+
+
+ "retrieve"
+
+
+ remote crawl fetch test
+
+
+ Retrieve remote crawl url list
+
+
+ Target Peer:
+
+
+ select
+
+
+
+
+
+
+
+ rss terminal
+
+
+
+
-
- Shared Blacklist
+
+ "select all"
+
+
+ "deselect all"
+
+
+ "add"Add Items to Blacklist
@@ -10802,14 +12577,26 @@
Unable to store the items into the blacklist file:
-
- YaCy-Peer "<span class="settingsValue">#[name]#</span>" not found.
+
+ File Error! Unable to fetch data from file.
+
+
+ YaCy-Peer "
+
+
+ " not found.
-
- not found or empty list.
+
+ URL "
-
- Wrong Invocation! Please invoke with
+
+ " not found or empty list.
+
+
+ Wrong Invocation! Please invoke with sharedBlacklist.html?name=PeerName
+
+
+ Parse Error! An error occured while parsing XML data. Please check if the XML is valid.Blacklist source:
@@ -10820,40 +12607,40 @@
Blacklist item
-
- "select all"
-
-
- "deselect all"
-
-
- value="add"
-
-
- YaCy System Terminal Monitor
+
+ "YaCy"
+
+
+ "Download Java Plug-in"
-
- YaCy Peer Live Monitoring Terminal
+
+ "PerformanceGraph"
-
- Search Form
+
+ "WebStructurePicture"
-
- Crawl Start
+
+ "The yacy Network"
-
- Status Page
+
+ YaCy System Terminal Monitor
+
+
+ <Search Form>
+
+
+ <Crawl Start>
-
- Confirm Shutdown
+
+ <Status Page>
-
- ><Shutdown
+
+ <Shutdown>Event Terminal
@@ -10864,9 +12651,6 @@
Domain Monitor
-
- "Loading Processing software..."
- This browser does not have a Java Plug-in.
@@ -10882,142 +12666,190 @@
-
+
-
- 'Displaying {from} to {to} of {total} items'
+
+ "Attach search results by default"
-
- 'Processing, please wait ...'
+
+ "Search"
-
- 'No items'
+
+ "Attach a file"
-
-
-
-
-
-
- Loading…
+
+ "Send"
-
-
-
-
-
-
- Loading…
+
+ "Clear chat"
+
+
+ "Download chat"
+
+
+ "Upload chat"
+
+
+ "Show system prompt"
+
+
+ YaCy Chat
+
+
+ This Chat is private. YaCy does not keep any history — only your browser remembers the current conversation.
+
+
+ Default Dialog Augmentation:
+
+
+ no search, allow attachments
+
+
+ use local search
+
+
+ use global search
+
+
+ User
+
+
+ Attach Search Results
+
+
+ Attach PNG/JPG or text (.txt/.md/.tex)
+
+
+ Clear Chat
+
+
+ Download Chat
+
+
+ Upload Chat
+
+
+ Show System
-
-
- YaCy Interactive Search
-
-
- This search result can also be retrieved as RSS/<a href="http://www.opensearch.org" target="_blank">opensearch</a> output.
+
+ "Search..."
-
- The query format is similar to
+
+ "Search"
-
- SRU
+
+ YaCy Interactive SearchClick the API icon to see an example call to the search rss API.
-
- To see a list of all APIs, please visit the
-
-
- API wiki page
- loading from local index...
-
- e="Search"
-
-
- "Search..."
+
+ onkeyup="xmlhttpPost(); return false;"
-
- Search Page
+
+ "Refresh sorting. Depending on their rank, some results fetched in background may then appear on this page."
-
- This search result can also be retrieved as RSS/<a href="http://www.opensearch.org" target="_blank">opensearch</a> output.
+
+ "YaCy server is fetching results from available data sources."
-
- "search"
+
+ "Show anyway links to images that could not be rendered"
-
- "search again"
+
+ "Hide links to images that could not be rendered"
-
- Illegal URL mask:
+
+ "Play all"
-
- (not a valid regular expression), mask ignored.
+
+ "Stop all"
-
- Illegal prefer mask:
+
+ Click the RSS icon to see this search result as RSS message stream.
-
- Did you mean:
+
+ Use the RSS search result format to add static searches to your RSS reader, if you use one.
-
- The following words are stop-words and had been excluded from the search:
+
+ searchNo Results.
-
- length of search words must be at least 1 character
+
+ No Results. (length of search words must be at least 1 character)
-
- Searching the web with this peer is disabled for unauthorized users. Please
+
+ You are not allowed to search the web with this peer.
-
- >log in<
+
+ You have reached the maximum allowed number of accesses to this search page within ten minutes.
-
- as administrator to use the search function
+
+ Please try again later or log in as administrator or as a user with extended search right.
+
+
+ You have reached the maximum allowed number of accesses to this search page within one minute.
+
+
+ You have reached the maximum allowed number of accesses to this search page within three seconds.
+
+
+ Did you mean:Location -- click on map to enlarge
-
- Map (c) by <
+
+ Failed to render <strong id="imageErrorsCount">0</strong> thumbnail(s).
+
+
+ Show
+
+
+ Hide
+
+
+ Media
-
- and contributors, CC-BY-SA
+
+ URL
-
- >Media<
+
+ Player
-
- > of
+
+
+
+
+
+
+ "API"
-
- > local,
+
+ "search"
-
- remote from
+
+ The information that is presented on this page can also be retrieved as XML
-
- YaCy peers).
+
+ Click the API icon to see the XML.
-
- >search<
+
+ search
@@ -11033,41 +12865,136 @@
"delete"
+
+ "blacklist host"
+
+
+ "Show all"
+
+
+ "Last known modification date"
+
+
+ "Browse index"
+
+
+ "Raw ranking score value"
+
+
+ Tags:
+
+
+ Metadata
+
+
+ Parser
+
+
+ Citations
+ Pictures
+
+ Cache
+
+
+ View via proxy
+
+
+ Not supported
+
+
+
+
+
+
+
+ "Previous page"
+
+
+ "Next page"
+
+
+ «
+
+
+ »
+
-
- show search results for "#[query]#" on map
+
+ "global"
+
+
+ "local"
+
+
+ "Use the default ranking profile (customizable), ordering results by score."
+
+
+ "Use the 'Date' ranking profile, ordering results by default on each document last modification date."
+
+
+ "text"
-
- >Provider
+
+ "image"
-
- >Name Space
+
+ "audio"
-
- >Author
+
+ "video"
-
- >Filetype
+
+ "app"
-
- >Language
+
+ "false"
-
- >Peer-to-Peer<
+
+ "Extend media search results to pages including such medias (provides generally more results, but eventually less relevant)"
-
+
+ "true"
+
+
+ "Strictly limit media search results to indexed documents matching exactly the desired content domain."
+
+
+ "earthsearchlogo"
+
+
+ "Sorted by descending counts"
+
+
+ "Sorted by ascending counts"
+
+
+ "Sorted by descending labels"
+
+
+ "Sorted by ascending labels"
+
+
+ "click to expand facet"
+
+
+ Peer-to-Peer
+
+ Stealth Mode
-
+ Privacy
+
+ Stealth Mode
+ Context Ranking
@@ -11080,23 +13007,23 @@
Images
-
- Your search is done using peers in the YaCy P2P network.
+
+ Audio
-
- You can switch to 'Stealth Mode' which will switch off P2P, giving you full privacy. Expect less results then, because then only your own search index is used.
+
+ Video
-
- Your search is done using only your own peer, locally.
+
+ Apps
-
- You can switch to 'Peer-to-Peer Mode' which will cause that your search is done using the other peers in the YaCy network.
+
+ Extended
-
- >Documents
+
+ Strict
-
- >Images
+
+ Location
diff --git a/locales/pl.lng b/locales/pl.lng
new file mode 100644
index 000000000..0aca009a6
--- /dev/null
+++ b/locales/pl.lng
@@ -0,0 +1,4777 @@
+# pl.lng
+# English-->Polish
+# -----------------------
+# This is a part of YaCy, a peer-to-peer based web search engine
+#
+# (C) by Michael Peter Christen; mc@anomic.de
+# first published on http://www.anomic.de
+# Frankfurt, Germany, 2005
+#
+# Testing the new SVN Properties http://forum.yacy-websuche.de/viewtopic.php?f=15&t=2906
+#
+# $Revision:: $
+# $Date:: $
+# $Tag:: $
+# $Author:: $
+#
+# This file was initially created by translation from the German locale (de.lng).
+#
+# If you find any mistakes or untranslated strings in this file please don't hesitate to email them to the maintainer.
+
+#File: AILab.html
+#---------------------------
+"Inference engine setup"=="Konfiguracja silnika wnioskowania"
+"Model assignment preview"=="Podgląd przypisania modeli"
+"Index creation"=="Tworzenie indeksu"
+"RAG configuration"=="Konfiguracja RAG"
+"Tools configuration"=="Konfiguracja narzędzi"
+"Log report monitor"=="Monitor raportów logów"
+"Shield definition"=="Konfiguracja zabezpieczeń"
+AI Lab Build System==System budowania Laboratorium AI
+Craft your AI toolkit==Zbuduj swój zestaw narzędzi AI
+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.==Wykonaj poniższe zadania, aby włączyć pomocnika AI YaCy: podłącz silnik wnioskowania, załaduj modele robocze, powiąż je ze swoim indeksem, a następnie skonfiguruj RAG i zabezpieczenia.
+0 / 6 unlocked==0 / 6 odblokowanych
+Mandatory==Obowiązkowe
+Needs setup==Wymaga konfiguracji
+Bind an inference engine==Podłącz silnik wnioskowania
+Pick your host (Ollama, LM Studio, OpenAI-compatible) and give YaCy a place to send prompts.==Wybierz host (Ollama, LM Studio albo zgodny z OpenAI) i wskaż YaCy, dokąd ma wysyłać prompty.
+Open engine setup==Otwórz konfigurację silnika
+Set hoststub, API keys, and defaults to unlock downloads.==Ustaw hoststub, klucze API i wartości domyślne, aby odblokować pobieranie.
+Populate the Production Models Matrix==Wypełnij macierz modeli roboczych
+Assign models for chat, search, translation, and more. This is your loadout bench.==Przypisz modele do czatu, wyszukiwania, tłumaczenia i innych zadań. To panel konfiguracji modeli.
+Go to Production Models Matrix==Przejdź do macierzy modeli roboczych
+Deploy at least one model, then assign capabilities (chat, search-query, tooling, vision).==Wdróż co najmniej jeden model, a następnie przypisz możliwości (czat, search-query, narzędzia, wizja).
+Optional==Opcjonalne
+Grow a search index==Rozbuduj indeks wyszukiwania
+Create a local index for grounding: crawl a site or import a pack to give your AI facts to cite.==Utwórz lokalny indeks jako podstawę faktów: przeskanuj witrynę lub zaimportuj pakiet, aby AI mogła cytować fakty.
+Start a crawl==Rozpocznij skanowanie
+Import an index pack==Zaimportuj pakiet indeksu
+Indexed documents:==Zindeksowane dokumenty:
+required to unlock (need at least 1000 documents).==wymagane do odblokowania (potrzeba co najmniej 1000 dokumentów).
+Wire RAG retrieval==Skonfiguruj pobieranie RAG
+Map which production models answer search-query and Q/A pairs so the RAG proxy can mix search with chat.==Określ, które modele robocze odpowiadają za search-query oraz pary Q/A, aby proxy RAG mogło łączyć wyszukiwanie z czatem.
+Wire RAG prompts==Skonfiguruj prompty RAG
+Test in Chat==Przetestuj w czacie
+Set the search-query and qapairs columns to connect retrieval to your chat flow.==Ustaw kolumny search-query i qapairs, aby połączyć pobieranie z przepływem czatu.
+Enable/Disable Tools==Włącz/wyłącz narzędzia
+Superpowers for the YaCy Chat==Supermoce dla czatu YaCy
+Open tools configuration==Otwórz konfigurację narzędzi
+Tune descriptions and set maxCallsPerTurn per tool (0 disables a tool).==Dostosuj opisy i ustaw maxCallsPerTurn dla każdego narzędzia (0 wyłącza narzędzie).
+Monitor log reports==Monitoruj raporty logów
+Assign a log-report model, then review generated hourly and daily self-enhancement reports.==Przypisz model log-report, a następnie przeglądaj generowane godzinowe i dzienne raporty samodoskonalenia.
+Open log reports==Otwórz raporty logów
+Assign log-report model==Przypisz model log-report
+Report generation stays inactive until a production model is assigned to the log-report role.==Generowanie raportów pozostaje nieaktywne, dopóki do roli log-report nie zostanie przypisany model roboczy.
+Define a shield==Skonfiguruj zabezpieczenia
+Add guardrails: access rates, grant or deny non-localhost access. Activate the front page link for chat to complete this quest.==Dodaj zabezpieczenia: częstotliwości dostępu, przyznaj lub odmów dostępu spoza localhost. Aktywuj link do czatu na stronie głównej, aby ukończyć to zadanie.
+Open shield settings==Otwórz ustawienia zabezpieczeń
+Store your shield directives (system prompts, stop words) as properties, then exercise them in chat.==Zapisz dyrektywy zabezpieczeń (prompty systemowe, słowa stop) jako właściwości, a następnie przetestuj je w czacie.
+#-----------------------------
+
+#File: AIShield_p.html
+#---------------------------
+Wire RAG Retrieval Shield==Skonfiguruj zabezpieczenia pobierania RAG
+Control who can access the chat interface and rate-limit non-localhost clients to protect your peer and LLM backends from overload.==Kontroluj, kto może uzyskać dostęp do interfejsu czatu, i ogranicz częstotliwość klientów spoza localhost, aby chronić swojego peera i backendy LLM przed przeciążeniem.
+Overall Load Protection==Ogólna ochrona przed obciążeniem
+Recent access volume across all clients (localhost included). You can enforce global limits here to protect the host.==Ostatni wolumen dostępu wszystkich klientów (łącznie z localhost). Tutaj możesz wymusić globalne limity, aby chronić hosta.
+Requests / minute==Żądania / minutę
+Requests / hour==Żądania / godzinę
+Requests / day==Żądania / dzień
+Limit for all requests, including localhost==Limit dla wszystkich żądań, w tym localhost
+Per minute:==Na minutę:
+Per hour:==Na godzinę:
+Per day:==Na dzień:
+Guest Access Control & Rate Limits==Kontrola dostępu gości i limity częstotliwości
+By default only localhost may reach the chat UI. Enable non-localhost access and throttle requests to reduce abuse.==Domyślnie tylko localhost może uzyskać dostęp do interfejsu czatu. Włącz dostęp spoza localhost i ogranicz żądania, aby zmniejszyć nadużycia.
+Allow non-localhost clients to access the chat interface==Zezwól klientom spoza localhost na dostęp do interfejsu czatu
+Requests from non-localhost will be throttled using these caps:==Żądania spoza localhost będą ograniczane za pomocą tych limitów:
+Front Page Link==Link strony głównej
+Expose a shortcut to the chat UI on the search front page if you want users to discover it.==Udostępnij skrót do interfejsu czatu na stronie głównej wyszukiwania, jeśli chcesz, aby użytkownicy go odkryli.
+Show a link to yacychat.html on the search front page==Pokaż link do yacychat.html na stronie głównej wyszukiwania
+Save Shield Settings==Zapisz ustawienia zabezpieczeń
+#-----------------------------
+
+#File: AccessGrid_p.html
+#---------------------------
+"YaCy Access Grid"=="Siatka dostępu YaCy"
+Server Access Grid==Siatka dostępu do serwera
+This images shows incoming connections to your YaCy peer and outgoing connections from your peer to other peers and web servers==Te obrazy pokazują przychodzące połączenia do Twojego peera YaCy oraz połączenia wychodzące od Twojego peera do innych peerów i serwerów WWW.
+#-----------------------------
+
+#File: AccessTracker_p.html
+#---------------------------
+Server Access Overview==Przegląd dostępu do serwera
+Host==Host
+Access Count During==Liczba dostępów w ciągu
+last Second==ostatniej sekundy
+last Minute==ostatniej minuty
+last 10 Minutes==ostatnich 10 minut
+last Hour==ostatniej godziny
+The following hosts are registered as source for brute-force requests to protected pages==Następujące hosty zostały zarejestrowane jako źródło żądań brute-force do chronionych stron
+Access Times==Czasy dostępu
+Server Access Details==Szczegóły dostępu do serwera
+This is a list of requests (max. 1000) to the local http server within the last hour.==To jest lista żądań (maks. 1000) do lokalnego serwera HTTP w ciągu ostatniej godziny.
+Date==Data
+Path==Ścieżka
+Local Search Log==Dziennik wyszukiwania lokalnego
+This is a list of searches that had been requested from this' peer search interface==To jest lista wyszukiwań, które zostały wykonane przez interfejs wyszukiwania tego peera.
+Requesting Host==Host żądający
+Offset==Przesunięcie
+Expected Results==Oczekiwane wyniki
+Returned Results==Zwrócone wyniki
+Known Results==Znane wyniki
+Used Time (ms)==Zużyty czas (ms)
+URL fetch (ms)==Pobranie URL (ms)
+Snippet comp (ms)==Generowanie podglądu (ms)
+Query==Zapytanie
+User Agent==User-Agent
+Top Search Words (last 7 Days)==Najczęstsze słowa wyszukiwania (ostatnie 7 dni)
+Local Search Host Tracker==Śledzenie hostów wyszukiwania lokalnego
+Count==Liczba
+Queries Per Last Hour==Zapytania w ostatniej godzinie
+Access Dates==Czasy dostępu
+Remote Search Log==Dziennik wyszukiwania zdalnego
+This is a list of searches that had been requested from remote peer search interface==To jest lista wyszukiwań, które zostały zażądane przez interfejs wyszukiwania zdalnego peera.
+Peer Name==Nazwa peera
+Search Word Hashes==Skróty (hash) słów wyszukiwania
+Remote Search Host Tracker==Śledzenie hostów wyszukiwania zdalnego
+#-----------------------------
+
+#File: Autocrawl_p.html
+#---------------------------
+"Save"=="Zapisz"
+Autocrawler==Autocrawler
+Autocrawler automatically selects and adds tasks to the local crawl queue. This will work best when there are already quite a few domains in the index.==Autocrawler automatycznie wybiera i dodaje zadania do lokalnej kolejki crawlowania. Działa najlepiej, gdy w indeksie znajduje się już sporo domen.
+Autocralwer Configuration==Konfiguracja Autocrawlera
+You need to restart for some settings to be applied==Aby zastosować niektóre ustawienia, konieczne jest ponowne uruchomienie
+Enable Autocrawler:==Włącz Autocrawler:
+Deep crawl every Nth document:==Głęboki crawl dla co N-tego dokumentu:
+Warning: if this is bigger than "Rows to fetch" only shallow crawls will run.==Ostrzeżenie: jeśli ta wartość jest większa niż "Rows to fetch", wykonywane będą tylko płytkie crawle.
+Rows to fetch at once:==Wiersze do pobrania naraz:
+Recrawl only older than # days:==Ponownie crawluj tylko starsze niż # dni:
+Get hosts by query:==Pobierz hosty według zapytania:
+Can be any valid Solr query.==Może to być dowolne prawidłowe zapytanie Solr.
+Shallow crawl depth (0 to 2):==Głębokość płytkiego crawla (0 do 2):
+Deep crawl depth (1 to 5):==Głębokość głębokiego crawla (1 do 5):
+Index text:==Indeksuj tekst:
+Index media:==Indeksuj media:
+#-----------------------------
+
+#File: Automation_p.html
+#---------------------------
+"API"=="API"
+"no previous page"=="brak poprzedniej strony"
+"previous page"=="Poprzednia strona"
+"no next page"=="brak następnej strony"
+"next page"=="Następna strona"
+"Apply edited next execution dates"=="Zastosuj edytowane daty następnego wykonania"
+"clone"=="Klonuj zdarzenie"
+"yyyy/MM/dd HH:mm:ss"=="rrrr/MM/dd GG:mm:ss"
+"Execute Selected Actions"=="Wykonaj wybrane akcje"
+"Delete Selected Actions"=="Usuń wybrane akcje"
+"Delete all Actions which had been created before "=="Usuń wszystkie akcje, które zostały utworzone przed "
+Process Automation==Automatyzacja procesów
+This table shows actions that had been issued on the YaCy interface.==Ta tabela pokazuje akcje wywołane w interfejsie YaCy.
+These recorded actions can be used to repeat specific actions and to send them==Te zarejestrowane akcje można wykorzystać do powtarzania określonych akcji i wysyłania ich
+to a scheduler for a periodic execution.==do harmonogramu w celu okresowego wykonywania.
+The information that is presented on this page can also be retrieved as XML.==Informacje przedstawione na tej stronie można również pobrać w formacie XML.
+Click the API icon to see the XML.==Kliknij ikonę API, aby zobaczyć plik XML.
+Recorded Actions==Zarejestrowane akcje
+Type==Typ
+Comment==Komentarz
+Call Count==Liczba wywołań
+Recording Date==Data rejestracji
+Last Exec Date==Data ostatniego wykonania
+Next Exec Date==Data następnego wykonania
+Apply==Zastosuj
+Event Trigger==Wyzwalacz zdarzenia
+Scheduler==Harmonogram
+URL==URL
+no event==brak zdarzenia
+activate event==aktywuj zdarzenie
+off==wyłączone
+run once==wykonaj raz
+run regular==wykonuj regularnie
+after start-up==po uruchomieniu
+at 00:00h==o godz. 00:00
+at 01:00h==o godz. 01:00
+at 02:00h==o godz. 02:00
+at 03:00h==o godz. 03:00
+at 04:00h==o godz. 04:00
+at 05:00h==o godz. 05:00
+at 06:00h==o godz. 06:00
+at 07:00h==o godz. 07:00
+at 08:00h==o godz. 08:00
+at 09:00h==o godz. 09:00
+at 10:00h==o godz. 10:00
+at 11:00h==o godz. 11:00
+at 12:00h==o godz. 12:00
+at 13:00h==o godz. 13:00
+at 14:00h==o godz. 14:00
+at 15:00h==o godz. 15:00
+at 16:00h==o godz. 16:00
+at 17:00h==o godz. 17:00
+at 18:00h==o godz. 18:00
+at 19:00h==o godz. 19:00
+at 20:00h==o godz. 20:00
+at 21:00h==o godz. 21:00
+at 22:00h==o godz. 22:00
+at 23:00h==o godz. 23:00
+no repetition==brak powtórzeń
+activate scheduler==aktywuj harmonogram
+minutes==minuty
+hours==godziny
+days==dni
+1 day==1 dzień
+2 days==2 dni
+3 days==3 dni
+4 days==4 dni
+5 days==5 dni
+6 days==6 dni
+1 week==1 tydzień
+2 weeks==2 tygodnie
+3 weeks==3 tygodnie
+1 month==1 miesiąc
+2 months==2 miesiące
+3 months==3 miesiące
+6 months==6 miesięcy
+9 months==9 miesięcy
+1 year==1 rok
+2 years==2 lata
+Result of API execution==Wynik wykonania API
+Status==Status
+#-----------------------------
+
+#File: BlacklistCleaner_p.html
+#---------------------------
+"Check"=="Sprawdź"
+"Change Selected"=="Zmień zaznaczone"
+"Delete Selected"=="Usuń zaznaczone"
+Blacklist Cleaner==Czyszczenie czarnej listy
+Here you can remove or edit illegal or double blacklist-entries.==Tutaj możesz usunąć lub edytować nieprawidłowe lub podwójne wpisy czarnej listy.
+Check list==Sprawdź listę
+Allow regular expressions in host part of blacklist entries.==Zezwól na wyrażenia regularne w części hosta wpisów czarnej listy.
+The blacklist-cleaner only works for the following blacklist-engines up to now:==Czyszczenie czarnej listy działa obecnie tylko z następującymi silnikami czarnych list:
+Two wildcards in host-part==Dwa symbole wieloznaczne w części hosta
+Either subdomain==Albo subdomena
+or==lub
+wildcard==symbol wieloznaczny
+Path is invalid Regex==Ścieżka jest nieprawidłowym wyrażeniem regularnym
+Wildcard not on begin or end==Symbol wieloznaczny nie na początku ani na końcu
+Host contains illegal chars==Host zawiera nieprawidłowe znaki
+Double==Podwójny
+Host is invalid Regex==Host jest nieprawidłowym wyrażeniem regularnym
+No Blacklist selected==Nie wybrano czarnej listy
+#-----------------------------
+
+#File: BlacklistImpExp_p.html
+#---------------------------
+"Load new blacklist items"=="Wczytaj nowe wpisy czarnej listy"
+"Export list as XML"=="Eksportuj listę jako XML"
+"Export list as text"=="Eksportuj listę jako tekst"
+Blacklist Import==Import czarnej listy
+Used Blacklist engine:==Używany silnik czarnej listy:
+Import blacklist items from...==Importuj wpisy czarnej listy z...
+other YaCy peers:==innych peerów YaCy:
+URL:==URL:
+plain text file:==plik tekstowy:
+Upload a regular text file which contains one blacklist entry per line.==Prześlij zwykły plik tekstowy zawierający jeden wpis czarnej listy w wierszu.
+XML file:==Plik XML:
+Upload an XML file which contains one or more blacklists.==Prześlij plik XML zawierający jedną lub więcej czarnych list.
+Export blacklist items to...==Eksportuj wpisy czarnej listy do...
+Here you can export a blacklist as an XML file. This file will contain additional==Tutaj możesz wyeksportować czarną listę jako plik XML. Plik ten będzie zawierać dodatkowe
+information about which cases a blacklist is activated for.==informacje o tym, w jakich przypadkach czarna lista jest aktywowana.
+all==wszystkie
+Here you can export a blacklist as a regular text file with one blacklist entry per line.==Tutaj możesz wyeksportować czarną listę jako zwykły plik tekstowy z jednym wpisem czarnej listy w wierszu.
+This file will not contain any additional information.==Plik ten nie będzie zawierać żadnych dodatkowych informacji.
+#-----------------------------
+
+#File: BlacklistTest_p.html
+#---------------------------
+"Test"=="Testuj"
+Blacklist Test==Test czarnej listy
+Used Blacklist engine:==Używany silnik czarnej listy:
+Test list:==Testuj listę:
+It is blocked for the following cases:==Jest blokowany w następujących przypadkach:
+is not blocked==nie jest blokowany
+Crawling==Crawling
+DHT==DHT
+News==Aktualności
+Proxy==Proxy
+Search==Wyszukiwanie
+Surftips==Porady surfowania
+The tested URL was not valid.==Testowany URL był nieprawidłowy.
+#-----------------------------
+
+#File: Blacklist_p.html
+#---------------------------
+"create"=="Utwórz"
+"Add URL pattern"=="Dodaj wzorzec URL"
+"set"=="Ustaw"
+"Save URL pattern(s)"=="Zapisz wzorce URL"
+"Share/don't share this list"=="Udostępnij/nie udostępniaj tej listy"
+"Delete this list"=="Usuń tę listę"
+"Save"=="Zapisz"
+Blacklist Administration==Zarządzanie czarną listą
+This function provides an URL filter to the proxy; any blacklisted URL is blocked==Ta funkcja udostępnia filtr URL dla proxy; każdy URL z czarnej listy jest blokowany
+from being loaded. You can define several blacklists and activate them separately.==i nie zostaje załadowany. Możesz zdefiniować kilka czarnych list i aktywować je osobno.
+You may also provide your blacklist to other peers by sharing them; in return you may==Możesz również udostępnić swoją czarną listę innym peerom; w zamian możesz
+collect blacklist entries from other peers.==pobierać wpisy z czarnych list od innych peerów.
+Active list:==Aktywna lista:
+No blacklist selected==Nie wybrano czarnej listy
+Select list to edit:==Wybierz listę do edycji:
+not shared==nieudostępniona
+shared==udostępniona
+Create new list:==Utwórz nową listę:
+A legal name is made up from a letter, digit, minus, plus or underscore as the first character==Prawidłowa nazwa składa się z litery, cyfry, minusa, plusa lub podkreślenia jako pierwszego znaku
+followed by letters, digits, minus, plus, underscores or dots.==po których następują litery, cyfry, minusy, plusy, podkreślenia lub kropki.
+An error occurred while moving entries to the target list.==Podczas przenoszenia wpisów do listy docelowej wystąpił błąd.
+Add new pattern:==Dodaj nowy wzorzec:
+domain.net/fullpath==domain.net/fullpath
+domain.net/*==domain.net/*
+sub.domain.*/*==sub.domain.*/*
+domain.*/*==domain.*/*
+Blacklist Pattern==Wzorzec czarnej listy
+Edit selected pattern(s)==Edytuj wybrane wzorce
+Delete selected pattern(s)==Usuń wybrane wzorce
+Move selected pattern(s) to==Przenieś wybrane wzorce do
+Show entries:==Pokaż wpisy:
+Entries per page:==Wpisów na stronę:
+Edit existing pattern(s):==Edytuj istniejące wzorce:
+An error occurred while editing the following entries. Please check syntax.==Podczas edycji następujących wpisów wystąpił błąd. Sprawdź składnię.
+Activate this list for ...==Aktywuj tę listę dla ...
+#-----------------------------
+
+#File: Blog.html
+#---------------------------
+"RSS"=="RSS"
+"Submit"=="Wyślij"
+"Preview"=="Podgląd"
+"Discard"=="Odrzuć"
+"Yes, delete it."=="Tak, usuń."
+"No, leave it."=="Nie, zostaw."
+"Import"=="Importuj"
+<< previous entries==<< poprzednie wpisy
+next entries >>==następne wpisy >>
+Blog-Home==Strona główna bloga
+Edit==Edytuj
+Author:==Autor:
+Subject:==Temat:
+Text:==Tekst:
+Comments:==Komentarze:
+deactivated==wyłączone
+activated==aktywne
+moderated==moderowane
+Preview==Podgląd
+No changes have been submitted so far!==Nie przesłano jeszcze żadnych zmian!
+Access denied==Odmowa dostępu
+To edit or create blog-entries you need to be logged in as Admin or User who has Blog rights.==Aby edytować lub tworzyć wpisy na blogu, musisz być zalogowany jako administrator lub użytkownik z uprawnieniami do bloga.
+Are you sure...==Czy na pewno...
+Confirm deletion==Potwierdź usunięcie
+XML-Import==Import XML
+Import was successful!==Import zakończył się powodzeniem!
+Import failed, maybe the supplied file was no valid blog-backup?==Import nie powiódł się, być może podany plik nie był prawidłową kopią zapasową bloga?
+Please select the XML-file you want to import:==Wybierz plik XML, który chcesz zaimportować:
+#-----------------------------
+
+#File: BlogComments.html
+#---------------------------
+"Submit"=="Wyślij"
+"Preview"=="Podgląd"
+"Discard"=="Odrzuć"
+Blog-Home==Strona główna bloga
+Comments:==Komentarze:
+<< previous entries==<< poprzednie wpisy
+next entries >>==następne wpisy >>
+Comments are not allowed for this posting!==Komentarze do tego wpisu są niedozwolone!
+Comment on this Blog==Skomentuj ten blog
+Author:==Autor:
+Subject:==Temat:
+Text:==Tekst:
+#-----------------------------
+
+#File: Bookmarks.html
+#---------------------------
+"RSS"=="RSS"
+"create"=="Utwórz"
+"Save"=="Zapisz"
+"import"=="Importuj"
+"API"=="API"
+"start it"=="uruchom"
+"stop it"=="zatrzymaj"
+"private bookmark"=="Prywatna zakładka"
+"public bookmark"=="Publiczna zakładka"
+Bookmarks==Zakładki
+Login==Logowanie
+List Bookmarks==Lista zakładek
+Add Bookmark==Dodaj zakładkę
+Import Bookmarks==Importuj zakładki
+Bookmarks (XBEL)==Zakładki (XBEL)
+Bookmarks (XML)==Zakładki (XML)
+Bookmarks (RSS)==Zakładki (RSS)
+Edit Bookmark==Edytuj zakładkę
+URL:==URL:
+Title:==Tytuł:
+Description:==Opis:
+Query:==Zapytanie:
+Folder (/folder/subfolder):==Folder (/folder/podfolder):
+Tags (comma separated):==Tagi (oddzielone przecinkami):
+Public:==Publiczne:
+yes==tak
+no==nie
+Bookmark is a newsfeed==Zakładka jest kanałem aktualności
+Import XML Bookmarks==Importuj zakładki XML
+File:==Plik:
+import as Public:==importuj jako publiczne:
+Import HTML Bookmarks==Importuj zakładki HTML
+Default Tags:==Domyślne tagi:
+The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.==Listę zakładek można również pobrać jako kanał RSS. Jest to możliwe także po wybraniu określonego tagu.
+Click the API icon to load the RSS from the current selection.==Kliknij ikonę API, aby wczytać kanał RSS bieżącego wyboru.
+Folders==Foldery
+Bookmark Folder==Folder zakładek
+Tags==Tagi
+Auto Search==Automatyczne wyszukiwanie
+start autosearch of new bookmarks==uruchom automatyczne wyszukiwanie nowych zakładek
+autosearch queue:==kolejka automatycznego wyszukiwania:
+received results:==otrzymane wyniki:
+current query:==bieżące zapytanie:
+This starts a search of new or modified bookmarks since startup==Uruchamia wyszukiwanie nowych lub zmodyfikowanych zakładek od uruchomienia programu
+in folder "search" with "query=<original_search_term>"==w folderze "search" z "query=<original_search_term>"
+Every peer online will be ask for results.==Każdy peer online zostanie zapytany o wyniki.
+Bookmark List==Lista zakładek
+Tagged with |==Otagowane |
+Edit==Edytuj
+Delete==Usuń
+Info==Info
+search==szukaj
+previous page==poprzednia strona
+next page==następna strona
+Show==Pokaż
+Bookmarks per page.==zakładek na stronę.
+#-----------------------------
+
+#File: Collage.html
+#---------------------------
+Image Collage==Kolaż obrazów
+Private Queue==Kolejka prywatna
+Public Queue==Kolejka publiczna
+#-----------------------------
+
+#File: ConfigAccountList_p.html
+#---------------------------
+User List==Lista użytkowników
+User Accounts==Konta użytkowników
+User==Użytkownik
+First name==Imię
+Last name==Nazwisko
+Address==Adres
+Last Access==Ostatni dostęp
+Rights==Uprawnienia
+Time==Czas
+Traffic==Ruch
+#-----------------------------
+
+#File: ConfigAccounts_p.html
+#---------------------------
+"Define Administrator"=="Zdefiniuj administratora"
+"Set Access Rules"=="Ustaw reguły dostępu"
+"Edit User"=="Edytuj użytkownika"
+"Delete User"=="Usuń użytkownika"
+"Save User"=="Zapisz użytkownika"
+User Administration==Zarządzanie użytkownikami
+Generic error.==Błąd ogólny.
+Passwords do not match.==Hasła nie są zgodne.
+Username too short. Username must be >= 4 Characters.==Nazwa użytkownika jest zbyt krótka. Nazwa użytkownika musi mieć >= 4 znaki.
+Username already used (not allowed).==Nazwa użytkownika jest już używana (niedozwolone).
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==OSTRZEŻENIE Tą instancją YaCy można administrować za pomocą konta "admin" i domyślnego hasła "yacy".
+Change the password as soon as possible!==Zmień hasło jak najszybciej!
+Admin Account==Konto administratora
+Access from localhost without account==Dostęp z localhost bez konta
+Access to your peer from your own computer (localhost access) is granted with administrator rights. No need to configure an administration account.==Dostęp do Twojego peera z własnego komputera (dostęp localhost) jest przyznawany z uprawnieniami administratora. Nie ma potrzeby konfigurowania konta administracyjnego.
+This setting is convenient but less secure than using a qualified admin account.==To ustawienie jest wygodne, ale mniej bezpieczne niż użycie uprawnionego konta administratora.
+Please use with care, notably when you browse untrusted and potentially malicious websites while running your YaCy peer on the same computer.==Używaj ostrożnie, zwłaszcza gdy przeglądasz niezaufane i potencjalnie złośliwe strony, podczas gdy Twój peer YaCy działa na tym samym komputerze.
+Access only with qualified account==Dostęp tylko z uprawnionym kontem
+This is required if you want a remote access to your peer, but it also hardens access controls on administration operations of your peer.==Jest to wymagane, jeśli chcesz mieć zdalny dostęp do swojego peera, ale zwiększa też bezpieczeństwo kontroli dostępu do operacji administracyjnych peera.
+Peer User:==Użytkownik peera:
+New Peer Password:==Nowe hasło peera:
+Repeat Peer Password:==Powtórz hasło peera:
+Access Rules==Reguły dostępu
+Protection of all pages: if set to on, access to all pages need authorization; if off, only pages with "_p" extension are protected.==Ochrona wszystkich stron: jeśli włączona, dostęp do wszystkich stron wymaga autoryzacji; jeśli wyłączona, chronione są tylko strony z rozszerzeniem "_p".
+User Accounts==Konta użytkowników
+Select user==Wybierz użytkownika
+New user==Nowy użytkownik
+Username==Nazwa użytkownika
+Password==Hasło
+Repeat password==Powtórz hasło
+First name==Imię
+Last name==Nazwisko
+Address==Adres
+Rights:==Uprawnienia:
+Timelimit==Limit czasu
+Time used==Zużyty czas
+#-----------------------------
+
+#File: ConfigAppearance_p.html
+#---------------------------
+"Use"=="Użyj"
+"Delete"=="Usuń"
+"Set Colors"=="Zastosuj kolory"
+"Install"=="Zainstaluj"
+Appearance and Integration==Wygląd i integracja
+You can change the appearance of the YaCy interface with skins.==Możesz zmienić wygląd interfejsu YaCy za pomocą skórek.
+The selected skin and language also affects the appearance of the search page.==Wybrana skórka i język wpływają również na wygląd strony wyszukiwania.
+change the appearance of the search page here.==zmień tutaj wygląd strony wyszukiwania.
+Skin Selection==Wybór skórki
+Select one of the default skins. After selection it might be required to reload the web page while holding the shift key to refresh cached style files.==Wybierz jedną z domyślnych skórek. Po wyborze może być konieczne ponowne wczytanie strony z wciśniętym klawiszem Shift, aby odświeżyć zapisane w pamięci podręcznej pliki stylów.
+Current skin==Bieżąca skórka
+Available Skins==Dostępne skórki
+Skin Color Definition==Definicja kolorów skórki
+The generic skin 'generic_pd' can be configured here with custom colors:==Ogólną skórkę 'generic_pd' można skonfigurować tutaj z własnymi kolorami:
+Background==Tło
+Text==Tekst
+Legend==Legenda
+Table Header==Nagłówek tabeli
+Table Item==Element tabeli
+Table Item 2==Element tabeli 2
+Table Bottom==Stopka tabeli
+Border Line==Linia ramki
+Sign 'bad'==Znak 'zły'
+Sign 'good'==Znak 'dobry'
+Sign 'other'==Znak 'inny'
+Search Headline==Nagłówek wyszukiwania
+Search URL==URL wyszukiwania
+Search URL + hover==URL wyszukiwania + najechanie
+Skin Download==Pobieranie skórki
+Skins can be installed from download locations:==Skórki można instalować z lokalizacji pobierania:
+Install new skin from URL==Zainstaluj nową skórkę z adresu URL
+Use this skin==Użyj tej skórki
+Make sure that you only download data from trustworthy sources. The new Skin file==Upewnij się, że pobierasz dane tylko z zaufanych źródeł. Nowy plik skórki
+might overwrite existing data if a file of the same name exists already.==może nadpisać istniejące dane, jeśli plik o tej samej nazwie już istnieje.
+Error saving the skin.==Błąd podczas zapisywania skórki.
+#-----------------------------
+
+#File: ConfigBasic.html
+#---------------------------
+"ok"=="ok"
+"Use the browser preferred language if available"=="Użyj preferowanego języka przeglądarki, jeśli jest dostępny"
+"Click to generate translated pages"=="Kliknij, aby wygenerować przetłumaczone strony"
+"Active : translated pages are available"=="Aktywne: przetłumaczone strony są dostępne"
+"Usecase Freeworld"=="Przypadek użycia Freeworld"
+"Usecase Portal"=="Przypadek użycia Portal"
+"Usecase Intranet"=="Przypadek użycia Intranet"
+"warning"=="Ostrzeżenie"
+"Set Configuration"=="Ustaw konfigurację"
+Basic Configuration==Konfiguracja podstawowa
+Your port has changed. Please wait 10 seconds.==Twój port został zmieniony. Poczekaj 10 sekund.
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==OSTRZEŻENIE Tą instancją YaCy można administrować za pomocą konta "admin" i domyślnego hasła "yacy".
+Your YaCy Peer needs some basic information to operate properly==Twój peer YaCy potrzebuje kilku podstawowych informacji, aby działać poprawnie
+Select a language for the interface:==Wybierz język interfejsu:
+Browser==Przeglądarka
+English==Angielski
+Deutsch==Niemiecki
+Français==Francuski
+Greek==Grecki
+Italiano==Włoski
+Español==Hiszpański
+Use Case: what do you want to do with YaCy:==Przypadek użycia: co chcesz robić z YaCy:
+Can not leave from Intranet Indexing : one or more remote Solr instances are attached and may contain private documents indexed.==Nie można opuścić indeksowania intranetu: podłączona jest jedna lub więcej zdalnych instancji Solr, które mogą zawierać zindeksowane prywatne dokumenty.
+One or more remote Solr instances are attached and may contain indexed public documents irrelevant to your local domain.==Podłączona jest jedna lub więcej zdalnych instancji Solr, które mogą zawierać zindeksowane publiczne dokumenty nieistotne dla Twojej lokalnej domeny.
+One or more remote Solr instances are attached.==Podłączona jest jedna lub więcej zdalnych instancji Solr.
+Community-based web search==Wyszukiwanie w sieci oparte na społeczności
+Search portal for your own web pages==Portal wyszukiwania dla Twoich własnych stron internetowych
+Intranet Indexing==Indeksowanie intranetu
+Join and support the global network 'freeworld', search the web with an uncensored user-owned search network==Dołącz do globalnej sieci 'freeworld' i wspieraj ją, przeszukuj sieć za pomocą nieocenzurowanej, należącej do użytkowników sieci wyszukiwania
+Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.==Twoja instalacja YaCy działa niezależnie od innych peerów i możesz zdefiniować własny indeks sieci, uruchamiając własny crawl. Można to wykorzystać do przeszukiwania własnych stron internetowych lub do zbudowania tematycznego portalu wyszukiwania.
+Create a search portal for your intranet or web pages or your (shared) file system. URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form file:///<path> or smb://<server>/<path>==Utwórz portal wyszukiwania dla swojego intranetu, stron internetowych lub (udostępnionego) systemu plików. Adresy URL mogą używać http/https/ftp oraz lokalnej nazwy domeny lub adresu IP, albo mieć postać file:///<path> lub smb://<server>/<path>
+Your peer name has not been customized; please set your own peer name==Nazwa Twojego peera nie została dostosowana; ustaw własną nazwę peera
+You may change your peer name==Możesz zmienić nazwę swojego peera
+Peer Name:==Nazwa peera:
+Your peer can be reached by other peers==Twój peer może być osiągalny dla innych peerów
+Peer Port:==Port peera:
+with SSL (https enabled==z SSL (HTTPS włączone
+Configure your router for YaCy using UPnP:==Skonfiguruj router dla YaCy za pomocą UPnP:
+Configuration was not successful. This may take a moment.==Konfiguracja nie powiodła się. Może to chwilę potrwać.
+Your Browser will reload the YaCy UI with the new port in 5 seconds...==Twoja przeglądarka przeładuje interfejs YaCy z nowym portem za 5 sekund...
+What you should do next:==Co powinieneś zrobić dalej:
+Your basic configuration is complete! You can now (for example):==Twoja podstawowa konfiguracja jest zakończona! Możesz teraz (na przykład):
+Your Peer name is a default name; please set an individual peer name.==Nazwa Twojego peera jest nazwą domyślną; ustaw indywidualną nazwę peera.
+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 recommended.==Nie otworzyłeś portu w zaporze sieciowej lub Twój router nie przekierowuje portu serwera do Twojego peera. Jest to konieczne, jeśli chcesz w pełni uczestniczyć w sieci YaCy. Możesz też używać peera bez otwierania portu, ale nie jest to zalecane.
+#-----------------------------
+
+#File: ConfigHTCache_p.html
+#---------------------------
+"A cache hit occurs when the requested data can be found in a cache."=="Trafienie w pamięci podręcznej występuje, gdy żądane dane można znaleźć w pamięci podręcznej."
+"Concurrent access timeout info"=="Informacja o limicie czasu przy równoczesnym dostępie"
+"Set"=="Ustaw"
+"Delete"=="Usuń"
+Hypertext Cache Configuration==Konfiguracja pamięci podręcznej hipertekstu
+The HTCache stores content retrieved by the HTTP and FTP protocol. Documents from smb:// and file:// locations are not cached.==HTCache przechowuje treści pobrane za pomocą protokołów HTTP i FTP. Dokumenty z lokalizacji smb:// i file:// nie są buforowane.
+The cache is a rotating cache: if it is full, then the oldest entries are deleted and new one can fill the space.==Pamięć podręczna jest rotacyjna: gdy się zapełni, najstarsze wpisy są usuwane, a nowe mogą zająć zwolnione miejsce.
+HTCache Configuration==Konfiguracja HTCache
+Cache hits==Trafienia pamięci podręcznej
+The path where the cache is stored==Ścieżka, w której przechowywana jest pamięć podręczna
+The current size of the cache==Bieżący rozmiar pamięci podręcznej
+The maximum size of the cache==Maksymalny rozmiar pamięci podręcznej
+MB==MB
+Compression level==Poziom kompresji
+Concurrent access timeout==Limit czasu równoczesnego dostępu
+The maximum time to wait for acquiring a synchronization lock on concurrent get/store cache operations.==Maksymalny czas oczekiwania na uzyskanie blokady synchronizacji przy równoczesnych operacjach get/store pamięci podręcznej.
+Beyond this limit, the crawler or proxy falls back to regular remote resource loading.==Powyżej tego limitu crawler lub proxy wraca do zwykłego wczytywania zdalnego zasobu.
+milliseconds==milisekundy
+Cleanup==Czyszczenie
+Cache Deletion==Usuwanie pamięci podręcznej
+Delete HTTP & FTP Cache==Usuń pamięć podręczną HTTP & FTP
+Delete robots.txt Cache==Usuń pamięć podręczną robots.txt
+#-----------------------------
+
+#File: ConfigHeuristics_p.html
+#---------------------------
+"heuristic:<name> (redundant)"=="heuristic:<name> (nadmiarowy)"
+"heuristic:<name> (new link)"=="heuristic:<name> (nowy link)"
+"add"=="Dodaj"
+"Save"=="Zapisz"
+"reset to default list"=="Przywróć listę domyślną"
+"discover from index"=="odkryj z indeksu"
+"switch Solr fields on"=="Włącz pola Solr"
+Heuristics Configuration==Konfiguracja heurystyk
+When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content. This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==Gdy używana jest heurystyka wyszukiwania, wynikowe linki nie są używane bezpośrednio jako wynik wyszukiwania; zamiast tego wczytane strony są indeksowane i przechowywane jak inne treści. Dzięki temu można używać czarnych list oraz mieć pewność, że wyszukiwane słowo rzeczywiście występuje na stronie odkrytej przez heurystykę.
+The success of heuristics are marked with an image (==Sukces heurystyk jest oznaczany obrazkiem (
+) below the favicon left from the search result entry:==) pod ikoną favicon po lewej stronie wpisu wyniku wyszukiwania:
+The search result was discovered by a heuristic, but the link was already known by YaCy==Wynik wyszukiwania został odkryty przez heurystykę, ale link był już znany YaCy
+The search result was discovered by a heuristic, not previously known by YaCy==Wynik wyszukiwania został odkryty przez heurystykę, wcześniej nieznany YaCy.
+'site'-operator: instant shallow crawl==operator 'site': natychmiastowy płytki crawl
+When a search is made using a 'site'-operator (like: 'download site:yacy.net') then the host of the site-operator is instantly crawled with a host-restricted depth-1 crawl.==Gdy wyszukiwanie jest wykonywane z użyciem operatora 'site' (np.: 'download site:yacy.net'), host operatora site jest natychmiast crawlowany z ograniczonym do hosta crawlem o głębokości 1.
+That means: right after the search request the portal page of the host is loaded and every page that is linked on this page that points to a page on the same host.==Oznacza to: zaraz po żądaniu wyszukiwania wczytywana jest strona główna hosta oraz każda strona, do której prowadzi link na tej stronie i która wskazuje na stronę na tym samym hoście.
+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).==Ponieważ ten 'natychmiastowy crawl' musi przestrzegać pliku robots.txt oraz minimalnego czasu dostępu między dwiema kolejnymi stronami, heurystyka ta jest raczej wolna, ale może odkryć wszystkie pożądane wyniki wyszukiwania przy drugim wyszukiwaniu (po krótkiej przerwie kilku sekund).
+search-result: shallow crawl on all displayed search results==wynik wyszukiwania: płytki crawl wszystkich wyświetlonych wyników wyszukiwania
+add as global crawl job==dodaj jako globalne zadanie crawlowania
+When a search is made then all displayed result links are crawled with a depth-1 crawl.==Gdy wykonywane jest wyszukiwanie, wszystkie wyświetlone linki wyników są crawlowane z crawlem o głębokości 1.
+This means: right after the search request every page is loaded and every page that is linked on this page.==Oznacza to: zaraz po żądaniu wyszukiwania wczytywana jest każda strona oraz każda strona, do której prowadzi link na tej stronie.
+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).==Jeśli zaznaczysz 'dodaj jako globalne zadanie crawlowania', strony do crawlowania są dodawane do globalnej kolejki crawlowania (zdalne peery mogą pobierać strony do crawlowania).
+Default is to add the links to the local crawl queue (your peer crawls the linked pages).==Domyślnie linki są dodawane do lokalnej kolejki crawlowania (Twój peer crawluje połączone strony).
+opensearch load external search result list from active systems below==opensearch: wczytaj zewnętrzną listę wyników wyszukiwania z aktywnych systemów poniżej
+When using this heuristic, then every new search request line is used for a call to listed opensearch systems.==Gdy używana jest ta heurystyka, każdy nowy wiersz żądania wyszukiwania jest wykorzystywany do wywołania wymienionych systemów opensearch.
+20 results are taken from remote system and loaded simultaneously, parsed and indexed immediately.==20 wyników jest pobieranych ze zdalnego systemu i wczytywanych jednocześnie, natychmiast analizowanych i indeksowanych.
+Available/Active Opensearch System==Dostępne/aktywne systemy OpenSearch
+Active==Aktywne
+Title==Tytuł
+Comment==Komentarz
+Url==URL
+delete==usuń
+new==nowy
+With the button "discover from index" you can search within the metadata of your local index (Web Structure Index) to find systems which support the Opensearch specification.==Za pomocą przycisku "odkryj z indeksu" możesz przeszukać metadane swojego lokalnego indeksu (Web Structure Index), aby znaleźć systemy obsługujące specyfikację OpenSearch.
+The task is started in the background. It may take some minutes before new entries appear (after refreshing the page).==Zadanie jest uruchamiane w tle. Może minąć kilka minut, zanim pojawią się nowe wpisy (po odświeżeniu strony).
+#-----------------------------
+
+#File: ConfigLanguage_p.html
+#---------------------------
+"Use"=="Użyj"
+"Delete"=="Usuń"
+"Install"=="Zainstaluj"
+Language selection==Wybór języka
+You can change the language of the YaCy-webinterface with translation files.==Możesz zmienić język interfejsu webowego YaCy za pomocą plików tłumaczeń.
+Current language==Bieżący język
+default(english)==domyślny (angielski)
+Author(s) (chronological)==Autor(zy) (chronologicznie)
+Send additions to maintainer==Wyślij uzupełnienia do opiekuna
+Available Languages==Dostępne języki
+Download Language File==Pobierz plik języka
+Supported formats are the internal language file (extension .lng) or XLIFF (extension .xlf) format.==Obsługiwane formaty to wewnętrzny plik języka (rozszerzenie .lng) lub format XLIFF (rozszerzenie .xlf).
+Install new language from URL==Zainstaluj nowy język z adresu URL
+Use this language==Użyj tego języka
+Make sure that you only download data from trustworthy sources. The new language file==Upewnij się, że pobierasz dane tylko z zaufanych źródeł. Nowy plik języka
+might overwrite existing data if a file of the same name exists already.==może nadpisać istniejące dane, jeśli plik o tej samej nazwie już istnieje.
+Error saving the language file.==Błąd podczas zapisywania pliku języka.
+#-----------------------------
+
+#File: ConfigNetwork_p.html
+#---------------------------
+"Change Network"=="Zmień sieć"
+"Save"=="Zapisz"
+"Transport Layer Security"=="Transport Layer Security"
+"Secure Sockets Layer"=="Secure Sockets Layer"
+Network Configuration==Konfiguracja sieci
+Accepted Changes.==Zmiany zaakceptowane.
+Inapplicable Setting Combination:==Nieprawidłowa kombinacja ustawień:
+No changes were made!==Nie wprowadzono żadnych zmian!
+For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration.==Do działania P2P musi być ustawiona co najmniej dystrybucja DHT lub odbiór DHT (albo oba). Zdefiniowałeś zatem konfigurację Robinson.
+Global Search in P2P configuration is only allowed, if index receive is switched on. You have a P2P configuration, but are not allowed to search other peers.==Globalne wyszukiwanie w konfiguracji P2P jest dozwolone tylko wtedy, gdy odbiór indeksu jest włączony. Masz konfigurację P2P, ale nie możesz przeszukiwać innych peerów.
+For Robinson Mode, index distribution and receive is switched off.==W trybie Robinson dystrybucja i odbiór indeksu są wyłączone.
+Network and Domain Specification==Specyfikacja sieci i domeny
+YaCy can operate a computing grid of YaCy peers or as a stand-alone node.==YaCy może działać jako siatka obliczeniowa peerów YaCy lub jako samodzielny węzeł.
+To control that all participants within a web indexing domain have access to the same domain,==Aby zapewnić, że wszyscy uczestnicy w obrębie domeny indeksowania sieci mają dostęp do tej samej domeny,
+this network definition must be equal to all members of the same YaCy network.==ta definicja sieci musi być taka sama dla wszystkich członków tej samej sieci YaCy.
+Network Definition==Definicja sieci
+Enter custom URL...==Wprowadź niestandardowy adres URL...
+Remote Network Definition URL==URL zdalnej definicji sieci
+Network Nick==Nazwa sieci
+Long Description==Długi opis
+Indexing Domain==Domena indeksowania
+DHT==DHT
+Distributed Computing Network for Domain==Rozproszona sieć obliczeniowa dla domeny
+Enable Peer-to-Peer Mode to participate in the global YaCy network,==Włącz tryb Peer-to-Peer, aby uczestniczyć w globalnej sieci YaCy,
+or if you want your own separate search cluster with or without connection to the global network.==lub jeśli chcesz mieć własny odrębny klaster wyszukiwania, z połączeniem do globalnej sieci lub bez.
+Enable 'Robinson Mode' for a completely independent search engine instance,==Włącz 'tryb Robinson', aby uzyskać całkowicie niezależną instancję wyszukiwarki,
+without any data exchange between your peer and other peers.==bez jakiejkolwiek wymiany danych między Twoim peerem a innymi peerami.
+Peer-to-Peer Mode==Tryb Peer-to-Peer
+Index Distribution==Dystrybucja indeksu
+This enables automated, DHT-ruled Index Transmission to other peers.==Włącza to automatyczną, sterowaną przez DHT transmisję indeksu do innych peerów.
+enabled==włączone
+disabled during crawling==wyłączone podczas crawlowania
+disabled during indexing==wyłączone podczas indeksowania
+Index Receive==Odbiór indeksu
+Accept remote Index Transmissions.==Akceptuj zdalne transmisje indeksu.
+This works only if you have a senior peer. The DHT-rules do not work without this function.==Działa to tylko wtedy, gdy masz peera typu senior. Reguły DHT nie działają bez tej funkcji.
+reject==odrzuć
+accept transmitted URLs that match your blacklist==akceptuj przesyłane adresy URL pasujące do Twojej czarnej listy
+allow==zezwól
+deny remote search==odmów zdalnego wyszukiwania
+Robinson Mode==Tryb Robinson
+If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers.==Jeśli Twój peer działa w 'trybie Robinson', uruchamiasz YaCy jako wyszukiwarkę dla własnego portalu wyszukiwania bez wymiany danych z innymi peerami.
+There is no index receive and no index distribution between your peer and any other peer.==Nie ma odbioru ani dystrybucji indeksu między Twoim peerem a jakimkolwiek innym peerem.
+In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster.==W przypadku klastrowania Robinson możliwe jest akceptowanie żądań zdalnego crawlowania od peerów tego klastra.
+Private Peer==Prywatny peer
+Your search engine will not contact any other peer, and will reject every request.==Twoja wyszukiwarka nie będzie kontaktować się z żadnym innym peerem i odrzuci każde żądanie.
+Public Peer==Publiczny peer
+You are visible to other peers and contact them to distribute your presence.==Jesteś widoczny dla innych peerów i kontaktujesz się z nimi, aby rozpowszechnić swoją obecność.
+Your peer does not accept any outside index data, but responds on all remote search requests.==Twój peer nie akceptuje żadnych zewnętrznych danych indeksu, ale odpowiada na wszystkie zdalne żądania wyszukiwania.
+Public Cluster==Publiczny klaster
+Your peer is part of a public cluster within the YaCy network.==Twój peer jest częścią publicznego klastra w sieci YaCy.
+Index data is not distributed, but remote crawl requests are distributed and accepted==Dane indeksu nie są rozpowszechniane, ale żądania zdalnego crawlowania są rozpowszechniane i akceptowane
+Search requests are spread over all peers of the cluster, and answered from all peers of the cluster.==Żądania wyszukiwania są rozprowadzane po wszystkich peerach klastra i odpowiadane przez wszystkie peery klastra.
+List of .yacy or .yacyh - domains of the cluster: (comma-separated)==Lista domen .yacy lub .yacyh klastra: (oddzielone przecinkami)
+Peer Tags==Tagi peera
+When you allow access from the YaCy network, your data is recognized using keywords.==Gdy zezwalasz na dostęp z sieci YaCy, Twoje dane są rozpoznawane za pomocą słów kluczowych.
+Please describe your search portal with some keywords (comma-separated).==Opisz swój portal wyszukiwania kilkoma słowami kluczowymi (oddzielonymi przecinkami).
+If you leave the field empty, no peer asks your peer. If you fill in a '*', your peer is always asked.==Jeśli pozostawisz to pole puste, żaden peer nie będzie odpytywał Twojego peera. Jeśli wpiszesz '*', Twój peer będzie zawsze odpytywany.
+Outgoing communications encryption==Szyfrowanie komunikacji wychodzącej
+Protocol operations encryption==Szyfrowanie operacji protokołu
+Prefer HTTPS for outgoing connexions to remote peers.==Preferuj HTTPS dla połączeń wychodzących do zdalnych peerów.
+When TLS/SSL is enabled on remote peers, it should be used to encrypt outgoing communications with them (for operations such as network presence, index transfer, remote crawl...).==Gdy TLS/SSL jest włączone na zdalnych peerach, powinno być używane do szyfrowania komunikacji wychodzącej z nimi (dla operacji takich jak obecność w sieci, transfer indeksu, zdalny crawl ...).
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Zwróć uwagę, że w przeciwieństwie do ścisłego TLS certyfikaty nie są weryfikowane względem zaufanych urzędów certyfikacji (CA), co pozwala peerom YaCy używać certyfikatów samopodpisanych.
+#-----------------------------
+
+#File: ConfigParser_p.html
+#---------------------------
+"Submit"=="Zapisz"
+Parser Configuration==Konfiguracja parsera
+Content Parser Settings==Ustawienia parsera treści
+With this settings you can activate or deactivate parsing of additional content-types based on their MIME-types.==Za pomocą tych ustawień możesz włączyć lub wyłączyć analizowanie dodatkowych typów treści na podstawie ich typów MIME.
+For a detailed description of the various MIME-types take a look at==Szczegółowy opis różnych typów MIME znajdziesz w
+Extension==Rozszerzenie
+Mime-Type==Typ MIME
+#-----------------------------
+
+#File: ConfigPortal_p.html
+#---------------------------
+"Remote results resorting can be triggered once the 'Refresh sorting' button (near the 'Search' button) becomes available."=="Ponowne sortowanie wyników zdalnych można uruchomić, gdy przycisk 'Odśwież sortowanie' (obok przycisku 'Szukaj') stanie się dostępny."
+"This usually improves ranking accuracy, but doesn't work well for users who have Javascript disabled, are using screen readers, or are on slow computers."=="Zwykle poprawia to dokładność rankingu, ale nie działa dobrze dla użytkowników z wyłączonym JavaScript, korzystających z czytników ekranu lub pracujących na wolnych komputerach."
+"idea"=="Pomysł"
+"Detailed statistics"=="Szczegółowe statystyki"
+"Change Search Page"=="Zmień stronę wyszukiwania"
+"Set to Default Values"=="Ustaw wartości domyślne"
+Integration of a Search Portal==Integracja portalu wyszukiwania
+If you like to integrate YaCy as portal for your web pages, you may want to change icons and messages on the search page.==Jeśli chcesz zintegrować YaCy jako portal dla swoich stron internetowych, możesz zmienić ikony i komunikaty na stronie wyszukiwania.
+The search page may be customized. You can change the 'corporate identity'-images, the greeting line==Stronę wyszukiwania można dostosować. Możesz zmienić obrazy 'corporate identity', wiersz powitania
+and a link to a home page that is reached when the 'corporate identity'-images are clicked.==oraz link do strony głównej, do której prowadzi kliknięcie obrazów 'corporate identity'.
+Greeting Line==Wiersz powitania
+URL of Home Page==URL strony głównej
+URL of a Small Corporate Image==URL małego obrazu Corporate
+URL of a Large Corporate Image==URL dużego obrazu Corporate
+Alternative text for Corporate Images==Tekst alternatywny dla obrazów Corporate
+Enable Search for Everyone?==Włączyć wyszukiwanie dla wszystkich?
+Search is available for everyone==Wyszukiwanie jest dostępne dla wszystkich
+Only the administrator is allowed to search==Tylko administrator może wyszukiwać
+Show Navigation Bar on Search Page?==Pokazać pasek nawigacji na stronie wyszukiwania?
+Show Navigation Top-Menu==Pokaż górne menu nawigacji
+no link to YaCy Menu (admin must navigate to /Status.html manually)==brak odnośnika do menu YaCy (administrator musi ręcznie przejść do /Status.html)
+Show Advanced Search Options on Search Page?==Pokazać zaawansowane opcje wyszukiwania na stronie wyszukiwania?
+Show Advanced Search Options on index.html==Pokaż zaawansowane opcje wyszukiwania na index.html
+do not show Advanced Search==nie pokazuj wyszukiwania zaawansowanego
+Media Search==Wyszukiwanie multimediów
+Extended==Rozszerzone
+Strict==Ścisłe
+Control whether media search results are as default strictly limited to indexed documents matching exactly the desired content domain (images, videos or applications specific),==Określa, czy wyniki wyszukiwania multimediów są domyślnie ściśle ograniczone do zindeksowanych dokumentów dokładnie pasujących do pożądanej domeny treści (specyficznych dla obrazów, filmów lub aplikacji),
+or extended to pages including such medias (provide generally more results, but eventually less relevant).==lub rozszerzone na strony zawierające takie multimedia (dostarcza zazwyczaj więcej wyników, ale ewentualnie mniej trafnych).
+Remote results resorting==Ponowne sortowanie wyników zdalnych
+On demand, server-side==Na żądanie, po stronie serwera
+Automated, with JavaScript in the browser.==Automatycznie, za pomocą JavaScript w przeglądarce.
+Automated results resorting with JavaScript makes the browser load the full result set of each search request.==Automatyczne ponowne sortowanie wyników za pomocą JavaScript sprawia, że przeglądarka wczytuje pełny zestaw wyników każdego żądania wyszukiwania.
+This may lead to high system loads on the server.==Może to prowadzić do wysokiego obciążenia systemu na serwerze.
+Remote search encryption==Szyfrowanie wyszukiwania zdalnego
+Prefer https for search queries on remote peers.==Preferuj HTTPS dla zapytań wyszukiwania na zdalnych peerach.
+When SSL/TLS is enabled on remote peers, https should be used to encrypt data exchanged with them when performing peer-to-peer searches.==Gdy SSL/TLS jest włączone na zdalnych peerach, do szyfrowania danych wymienianych z nimi podczas wyszukiwań peer-to-peer należy używać HTTPS.
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Zwróć uwagę, że w przeciwieństwie do ścisłego TLS certyfikaty nie są weryfikowane względem zaufanych urzędów certyfikacji (CA), co pozwala peerom YaCy używać certyfikatów samopodpisanych.
+Snippet Fetch Strategy & Link Verification==Strategia pobierania podglądów & weryfikacja linków
+Speed up search results with this option! (use CACHEONLY or FALSE to switch off verification)==Przyspiesz wyniki wyszukiwania za pomocą tej opcji! (użyj CACHEONLY lub FALSE, aby wyłączyć weryfikację)
+Counts by origin :==Liczba według pochodzenia:
+NOCACHE: no use of web cache, load all snippets online==NOCACHE: bez użycia pamięci podręcznej sieci, wczytuj wszystkie podglądy online
+IFFRESH: use the cache if the cache exists and is fresh otherwise load online==IFFRESH: użyj pamięci podręcznej, jeśli istnieje i jest aktualna, w przeciwnym razie wczytaj online
+IFEXIST: use the cache if the cache exist or load online==IFEXIST: użyj pamięci podręcznej, jeśli istnieje, w przeciwnym razie wczytaj online
+If verification fails, delete index reference==Jeśli weryfikacja się nie powiedzie, usuń odwołanie w indeksie
+CACHEONLY: never go online, use all content from cache. If no cache entry exist, consider content nevertheless as available and show result without snippet==CACHEONLY: nigdy nie łącz się online, używaj całej treści z pamięci podręcznej. Jeśli nie istnieje wpis w pamięci podręcznej, mimo to uznaj treść za dostępną i pokaż wynik bez podglądu
+FALSE: no link verification and not snippet generation: all search results are valid without verification==FALSE: bez weryfikacji linków i bez generowania podglądów: wszystkie wyniki wyszukiwania są ważne bez weryfikacji
+Greedy Learning Mode==Tryb szybkiego uczenia
+Index remote results==Indeksuj wyniki zdalne
+add remote search results to the local index ( default=on, it is recommended to enable this option ! )==dodaj zdalne wyniki wyszukiwania do lokalnego indeksu (domyślnie=włączone, zaleca się włączenie tej opcji!)
+Limit size of indexed remote results==Ogranicz rozmiar indeksowanych wyników zdalnych
+maximum allowed size in kbytes for each remote search result to be added to the local index (for example, a 1000kbytes limit might be useful if you are running YaCy with a low memory setup)==maksymalny dozwolony rozmiar w kilobajtach dla każdego zdalnego wyniku wyszukiwania dodawanego do lokalnego indeksu (na przykład limit 1000 kilobajtów może być przydatny, jeśli uruchamiasz YaCy z małą ilością pamięci)
+Default Pop-Up Page==Domyślna strona wyskakująca
+Status Page==Strona statusu
+Search Front Page==Strona główna wyszukiwania
+Search Page (small header)==Strona wyszukiwania (mały nagłówek)
+Interactive Search Page==Interaktywna strona wyszukiwania
+Default maximum number of results per page==Domyślna maksymalna liczba wyników na stronę
+Default index.html Page (by forwarder)==Domyślna strona index.html (przez przekierowanie)
+Target for Click on Search Results==Cel kliknięcia w wynik wyszukiwania
+"_blank" (new window)=="_blank" (nowe okno)
+"_self" (same window)=="_self" (to samo okno)
+"_parent" (the parent frame of a frameset)=="_parent" (ramka nadrzędna zestawu ramek)
+"_top" (top of all frames)=="_top" (najwyższa ramka)
+"searchresult" (a default custom page name for search results)=="searchresult" (domyślna konfigurowalna nazwa strony dla wyników wyszukiwania)
+Special Target as Exception for an URL-Pattern==Specjalny cel jako wyjątek dla wzorca URL
+Pattern:==Wzorzec:
+Exclude Hosts==Wyklucz hosty
+List of hosts that shall be excluded from search results by default but can be included using the site:<host> operator:==Lista hostów, które mają być domyślnie wykluczone z wyników wyszukiwania, ale mogą zostać uwzględnione za pomocą operatora site:<host>:
+'About' Column (shown in a column alongside with the search result page)=='O' Kolumna (wyświetlana w kolumnie obok strony wyników wyszukiwania)
+(Headline)==(Nagłówek)
+(Content)==(Treść)
+The search page can be integrated in your own web pages with an iframe. Simply use the following code:==Stronę wyszukiwania można zintegrować z własnymi stronami internetowymi za pomocą elementu iframe. Po prostu użyj następującego kodu:
+This would look like:==Wyglądałoby to tak:
+For a search page with a small header, use this code:==Dla strony wyszukiwania z małym nagłówkiem użyj tego kodu:
+A third option is the interactive search. Use this code:==Trzecią opcją jest wyszukiwanie interaktywne. Użyj tego kodu:
+#-----------------------------
+
+#File: ConfigProfile_p.html
+#---------------------------
+"Save"=="Zapisz"
+Your Personal Profile==Twój profil osobisty
+You can create a personal profile here, which can be seen by other YaCy-members==Tutaj możesz utworzyć profil osobisty, który mogą zobaczyć inni członkowie YaCy
+Name==Nazwa
+Nick Name==Pseudonim
+eMail==E-mail
+ICQ==ICQ
+Jabber==Jabber
+Yahoo!==Yahoo!
+MSN==MSN
+Skype==Skype
+Comment==Komentarz
+#-----------------------------
+
+#File: ConfigProperties_p.html
+#---------------------------
+"Save"=="Zapisz"
+"Clear"=="Wyczyść"
+Advanced Config==Konfiguracja zaawansowana
+Here are all configuration options from YaCy.==Oto wszystkie opcje konfiguracji YaCy.
+You can change anything, but some options need a restart, and some options can crash YaCy, if wrong values are used.==Możesz zmienić wszystko, ale niektóre opcje wymagają ponownego uruchomienia, a niektóre mogą spowodować awarię YaCy, jeśli użyto błędnych wartości.
+For explanation please look into defaults/yacy.init==Wyjaśnienie znajdziesz w pliku defaults/yacy.init
+#-----------------------------
+
+#File: ConfigRobotsTxt_p.html
+#---------------------------
+"Save restrictions"=="Zapisz ograniczenia"
+Exclude Web-Spiders==Wyklucz roboty sieciowe
+Here you can set up a robots.txt for all webcrawlers that try to access the webinterface of your peer.==Tutaj możesz skonfigurować plik robots.txt dla wszystkich crawlerów sieciowych, które próbują uzyskać dostęp do interfejsu webowego Twojego peera.
+robots.txt==robots.txt
+is a voluntary agreement most search-engines (including YaCy) follow.==to dobrowolne porozumienie, którego przestrzega większość wyszukiwarek (w tym YaCy).
+It disallows crawlers to access webpages or even entire domains.==Zabrania on crawlerom dostępu do stron internetowych lub nawet całych domen.
+Unable to access the local file:==Nie można uzyskać dostępu do lokalnego pliku:
+Deletion of==Usunięcie
+htroot/robots.txt==htroot/robots.txt
+failed==nie powiodło się
+Deny access to==Odmów dostępu do
+Entire Peer==całego peera
+Status page==strony statusu
+Network pages==stron sieci
+Surftips==porad surfowania
+News pages==stron aktualności
+Blog==bloga
+Wiki==wiki
+Public bookmarks==publicznych zakładek
+Home Page==strony głównej
+File Share==udziału plików
+Impressum==Nota prawna
+#-----------------------------
+
+#File: ConfigSearchBox.html
+#---------------------------
+"Search"=="Szukaj"
+Integration of a Search Box==Integracja pola wyszukiwania
+We give information how to integrate a search box on any web page that==Podajemy informacje, jak zintegrować pole wyszukiwania na dowolnej stronie internetowej, które
+calls the normal YaCy search window.==wywołuje zwykłe okno wyszukiwania YaCy.
+Simply use the following code:==Po prostu użyj następującego kodu:
+This would look like:==Wyglądałoby to tak:
+MySearch==MojeWyszukiwanie
+This does not use a style sheet file to make the integration into another web page with a different style sheet easier.==Nie używa to pliku arkusza stylów, aby ułatwić integrację z inną stroną internetową o innym arkuszu stylów.
+You would need to change the following items:==Musisz zmienić następujące elementy:
+Replace the given colors #eeeeee (box background) and #cccccc (box border)==Zastąp podane kolory #eeeeee (tło pola) i #cccccc (obramowanie pola)
+Replace the word "MySearch" with your own message==Zastąp słowo "MySearch" własnym komunikatem
+#-----------------------------
+
+#File: ConfigSearchPage_p.html
+#---------------------------
+"Top navigation bar"=="Górny pasek nawigacji"
+"Enable login link/status"=="Włącz link/status logowania"
+"Log in to use extended search features"=="Zaloguj się, aby korzystać z rozszerzonych funkcji wyszukiwania"
+"You are authenticated as userName"=="Jesteś uwierzytelniony jako userName"
+"Help"=="Pomoc"
+"Protocols"=="Protokoły"
+"Tag cloud"=="Chmura tagów"
+"earthsearchlogo"=="earthsearchlogo"
+"Delete navigator"=="Usuń nawigator"
+"Sorted by descending counts"=="Sortowane według malejącej liczby"
+"Sorted by ascending counts"=="Sortowane według rosnącej liczby"
+"Sorted by descending labels"=="Sortowane według malejących etykiet"
+"Sorted by ascending labels"=="Sortowane według rosnących etykiet"
+"search..."=="szukaj..."
+"Maximum days number in the histogram. Beware that a large value may trigger high CPU loads both on the server and on the browser with large result sets."=="Maksymalna liczba dni na histogramie. Pamiętaj, że duża wartość może powodować wysokie obciążenie procesora zarówno na serwerze, jak i w przeglądarce przy dużych zestawach wyników."
+"info"=="Info"
+"Website favicon"=="Favicon strony internetowej"
+"Last known modification date"=="Ostatnia znana data modyfikacji"
+"Browse index"=="Przeglądaj indeks"
+"Raw ranking score value"=="Surowa wartość wyniku rankingu"
+"Date"=="Data"
+"Size"=="Rozmiar"
+"Add navigator"=="Dodaj nawigator"
+"Save Settings"=="Zapisz ustawienia"
+"Set Default Values"=="Ustaw wartości domyślne"
+Search Result Page Layout Configuration==Konfiguracja układu strony wyników wyszukiwania
+Below is a generic template of the search result page. Mark the check boxes for features you would like to be displayed.==Poniżej znajduje się ogólny szablon strony wyników wyszukiwania. Zaznacz pola wyboru dla funkcji, które chcesz wyświetlić.
+Page Template==Szablon strony
+Toggle navigation==Przełącz nawigację
+Log in==Zaloguj się
+userName==Nazwa użytkownika
+Search Interfaces==Interfejsy wyszukiwania
+Administration »==Administracja »
+http==http
+https==https
+ftp==ftp
+smb==smb
+file==file
+Tag==Tag
+Topics==Tematy
+Cloud==Chmura
+Location==Lokalizacja
+show search results on map==pokaż wyniki wyszukiwania na mapie
+Sort by==Sortuj według
+Descending counts==Malejąca liczba
+Ascending counts==Rosnąca liczba
+Descending labels==Malejące etykiety
+Ascending labels==Rosnące etykiety
+Vocabulary==Słownictwo
+search==szukaj
+Text==Tekst
+Images==Obrazy
+Audio==Audio
+Video==Wideo
+Applications==Aplikacje
+more options==więcej opcji
+Date Navigation==Nawigacja po dacie
+Maximum range (in days)==Maksymalny zakres (w dniach)
+Show websites favicon==Pokaż favicon stron internetowych
+Not showing websites favicon can help you save some CPU time and network bandwidth.==Ukrycie favicon stron internetowych może pomóc zaoszczędzić czas procesora i przepustowość sieci.
+Title of Result==Tytuł wyniku
+Description and text snippet of the search result==Opis i fragment tekstu wyniku wyszukiwania
+http://url-of-the-search-result.net==http://url-of-the-search-result.net
+Tags==Tagi
+keyword==słowo kluczowe
+subject==temat
+keyword2==słowo kluczowe2
+keyword3==słowo kluczowe3
+Max. tags initially displayed==Maks. tagów wyświetlanych początkowo
+(remaining can then be expanded)==(pozostałe można następnie rozwinąć)
+42 kbyte==42 KB
+Metadata==Metadane
+Parser==Parser
+Citation==Cytat
+Pictures==Zdjęcia
+Cache==Pamięć podręczna
+View via Proxy==Wyświetl przez proxy
+Ranking: 1.12195955E9==Ranking: 1.12195955E9
+For this option URL proxy must be enabled.==Dla tej opcji musi być włączone proxy URL.
+menu: System Administration > Advanced Settings==menu: Administracja systemu > Ustawienia zaawansowane
+Menu: System Administration > Advanced Settings > Debug/Analysis Settings==Menu: Administracja systemu > Ustawienia zaawansowane > Ustawienia debugowania/analizy
+Add Navigators==Dodaj nawigatory
+append==dołącz
+max. items==maks. elementów
+#-----------------------------
+
+#File: ConfigUpdate_p.html
+#---------------------------
+"Download Release"=="Pobierz wersję"
+"Check for new Release"=="Sprawdź nową wersję"
+"Install Release"=="Zainstaluj wersję"
+"Delete Release"=="Usuń wersję"
+"Check + Download + Install Release Now"=="Sprawdź + pobierz + zainstaluj wersję teraz"
+"Submit"=="Zapisz"
+System Update==Aktualizacja systemu
+Release will be installed. Please wait.==Wersja zostanie zainstalowana. Poczekaj.
+This servlet can only be used on operating systems that are currently supported for deploy functions.==Ten serwlet może być używany tylko w systemach operacyjnych obecnie obsługiwanych dla funkcji instalacji.
+If you see this message this means that your operation system is not supported.==Jeśli widzisz ten komunikat, oznacza to, że Twój system operacyjny nie jest obsługiwany.
+Manual System Update==Ręczna aktualizacja systemu
+Current installed Release==Aktualnie zainstalowana wersja
+(unsigned)==(niepodpisana)
+(signed)==(podpisana)
+Downloaded Releases==Pobrane wersje
+No downloaded releases available for deployment.==Brak pobranych wersji dostępnych do instalacji.
+(no signature)==(brak podpisu)
+no automated installation on development environments==brak automatycznej instalacji w środowiskach deweloperskich
+Automatic Update==Automatyczna aktualizacja
+check for new releases, download if available and restart with downloaded release==sprawdź nowe wersje, pobierz jeśli dostępne i uruchom ponownie z pobraną wersją
+No more recent release found.==Nie znaleziono nowszej wersji.
+Omitting update because this is a development environment.==Pominięto aktualizację, ponieważ jest to środowisko deweloperskie.
+Omitting update because an error occurred while trying to deploy the release.==Pominięto aktualizację, ponieważ podczas instalacji wersji wystąpił błąd.
+Automated System Update==Automatyczna aktualizacja systemu
+manual update==aktualizacja ręczna
+no automatic look-up, updates can be made manually using this interface (see options above)==brak automatycznego sprawdzania, aktualizacje można wykonywać ręcznie za pomocą tego interfejsu (zobacz opcje powyżej)
+automatic update==aktualizacja automatyczna
+updates are made within fixed cycles:==aktualizacje wykonywane są w stałych cyklach:
+Time between lookup==Czas między sprawdzeniami
+hours==godzin
+Release blacklist==Czarna lista wersji
+(regex on release number strings)==(wyrażenie regularne dla numerów wersji)
+Release type==Typ wersji
+only main releases==tylko wersje główne
+any release including developer releases==dowolna wersja, w tym wersje deweloperskie
+Signed autoupdate:==Podpisana automatyczna aktualizacja:
+only accept signed files==akceptuj tylko podpisane pliki
+Accepted Changes.==Zmiany zaakceptowane.
+System Update Statistics==Statystyki aktualizacji systemu
+Last System Lookup==Ostatnie sprawdzenie systemu
+never==nigdy
+Last Release Download==Ostatnie pobranie wersji
+Last Deploy==Ostatnia instalacja
+You installed YaCy with a package manager. To update YaCy, use the package manager:==Zainstalowałeś YaCy za pomocą menedżera pakietów. Aby zaktualizować YaCy, użyj menedżera pakietów:
+manual update: apt-get update && apt-get install yacy==ręczna aktualizacja: apt-get update && apt-get install yacy
+automatic update: add the following line to /etc/crontab 0 6 * * * root apt-get update && apt-get -y --force-yes install yacy==automatyczna aktualizacja: dodaj następujący wiersz do /etc/crontab 0 6 * * * root apt-get update && apt-get -y --force-yes install yacy
+#-----------------------------
+
+#File: ConfigUser_p.html
+#---------------------------
+"Save User"=="Zapisz użytkownika"
+"Delete User"=="Usuń użytkownika"
+"ConfigAccountList_p.html"=="ConfigAccountList_p.html"
+User Account Editor==Edytor konta użytkownika
+Generic error.==Błąd ogólny.
+Passwords do not match.==Hasła nie są zgodne.
+Username too short. Username must be >= 4 Characters.==Nazwa użytkownika jest zbyt krótka. Nazwa użytkownika musi mieć >= 4 znaki.
+Username already used (not allowed).==Nazwa użytkownika jest już używana (niedozwolone).
+Username==Nazwa użytkownika
+Password==Hasło
+Repeat password==Powtórz hasło
+First name==Imię
+Last name==Nazwisko
+Address==Adres
+Rights:==Uprawnienia:
+Timelimit==Limit czasu
+Time used==Zużyty czas
+back to user list==powrót do listy użytkowników
+#-----------------------------
+
+#File: Connections_p.html
+#---------------------------
+Server Connection Tracking==Śledzenie połączeń serwera
+Incoming Connections==Połączenia przychodzące
+Protocol==Protokół
+Duration==Czas trwania
+Source IP[:Port]==Źródłowy IP[:Port]
+Command==Polecenie
+ID==ID
+Outgoing Connections==Połączenia wychodzące
+Up-Bytes==Bajty wysłane
+Dest. IP[:Port]==Docelowy IP[:Port]
+#-----------------------------
+
+#File: ContentAnalysis_p.html
+#---------------------------
+"Set"=="Ustaw"
+"Re-Set to default"=="Przywróć wartości domyślne"
+Content Analysis==Analiza treści
+These are document analysis attributes.==To są atrybuty analizy dokumentów.
+Double Content Detection==Wykrywanie zduplikowanej treści
+Double-Content detection is done using a ranking on a 'unique'-Field, named 'fuzzy_signature_unique_b'.==Wykrywanie zduplikowanej treści odbywa się za pomocą rankingu na polu 'unique' o nazwie 'fuzzy_signature_unique_b'.
+minTokenLen==minTokenLen
+This is the minimum length of a word which shall be considered as element of the signature. Should be either 2 or 3.==To jest minimalna długość słowa, które ma być traktowane jako element sygnatury. Powinna wynosić 2 lub 3.
+quantRate==quantRate
+The quantRate is a measurement for the number of words that take part in a signature computation. The higher the number, the less==quantRate to miara liczby słów biorących udział w obliczaniu sygnatury. Im wyższa liczba, tym mniej
+words are used for the signature.==słów jest używanych do sygnatury.
+For minTokenLen = 2 the quantRate value should not be below 0.24; for minTokenLen = 3 the quantRate value must be not below 0.5.==Dla minTokenLen = 2 wartość quantRate nie powinna być mniejsza niż 0,24; dla minTokenLen = 3 wartość quantRate nie może być mniejsza niż 0,5.
+#-----------------------------
+
+#File: ContentIntegrationPHPBB3_p.html
+#---------------------------
+"Check database connection"=="Sprawdź połączenie z bazą danych"
+"Export Content to Packs"=="Eksportuj treść do plików pack"
+"Import Dump"=="Importuj zrzut"
+Content Integration: Retrieval from phpBB3 Databases==Integracja treści: pobieranie z baz danych phpBB3
+It is possible to extract texts directly from mySQL and postgreSQL databases.==Możliwe jest wyodrębnianie tekstów bezpośrednio z baz danych MySQL i PostgreSQL.
+Each extraction is specific to the data that is hosted in the database.==Każde wyodrębnienie jest specyficzne dla danych przechowywanych w bazie danych.
+This interface gives you access to the phpBB3 forums software content.==Ten interfejs daje dostęp do treści oprogramowania forów phpBB3.
+If you read from an imported database, here are some hints to get around problems when importing dumps in phpMyAdmin:==Jeśli czytasz z zaimportowanej bazy danych, oto kilka wskazówek, jak uniknąć problemów podczas importowania zrzutów w phpMyAdmin:
+before importing large database dumps, set the following Line in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB):==przed importem dużych zrzutów bazy danych ustaw następujący wiersz w phpmyadmin/config.inc.php i umieść plik zrzutu w /tmp (w przeciwnym razie nie można przesłać plików większych niż 2 MB):
+deselect the partial import flag==odznacz flagę częściowego importu
+When an export is started, pack files are generated into DATA/PACKS/load which are automatically fetched by an indexer thread.==Gdy rozpoczyna się eksport, w DATA/PACKS/load generowane są pliki pack, które są automatycznie pobierane przez wątek indeksera.
+All indexed pack files are then moved to DATA/PACKS/loaded and can be re-cycled when an index is deleted.==Wszystkie zindeksowane pliki pack są następnie przenoszone do DATA/PACKS/loaded i mogą zostać ponownie wykorzystane po usunięciu indeksu.
+The URL stub, like http://forum.yacy-websuche.de this must be the path right in front of '/viewtopic.php?'==Rdzeń URL, jak http://forum.yacy-websuche.de musi to być ścieżka bezpośrednio przed '/viewtopic.php?'
+Type of database (use either 'mysql' or 'pgsql')==Typ bazy danych (użyj 'mysql' lub 'pgsql')
+Host of the database==Host bazy danych
+Port of database service (usually 3306 for mySQL)==Port usługi bazy danych (zwykle 3306 dla MySQL)
+Name of the database on the host==Nazwa bazy danych na hoście
+Table prefix string for table names==Prefiks tabel dla nazw tabel
+User that can access the database==Użytkownik, który ma dostęp do bazy danych
+Password for the account of that user given above==Hasło do konta użytkownika podanego powyżej
+Posts per file in exported packs==Wpisy na plik w eksportowanych pakietach
+Import a database dump,==Importuj zrzut bazy danych,
+Posts in database==Wpisy w bazie danych
+first entry==pierwszy wpis
+last entry==ostatni wpis
+Import successful!==Import zakończony powodzeniem!
+#-----------------------------
+
+#File: CookieMonitorIncoming_p.html
+#---------------------------
+"Enable Cookie Monitoring"=="Włącz monitorowanie plików cookie"
+"Disable Cookie Monitoring"=="Wyłącz monitorowanie plików cookie"
+Cookie Monitor: Incoming Cookies==Monitor plików cookie: przychodzące pliki cookie
+This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:==To jest lista plików cookie, które serwer WWW wysłał do klientów proxy YaCy:
+Sending Host==Host wysyłający
+Date==Data
+Receiving Client==Klient odbierający
+Cookie==Cookie
+#-----------------------------
+
+#File: CookieMonitorOutgoing_p.html
+#---------------------------
+"Enable Cookie Monitoring"=="Włącz monitorowanie plików cookie"
+"Disable Cookie Monitoring"=="Wyłącz monitorowanie plików cookie"
+Cookie Monitor: Outgoing Cookies==Monitor plików cookie: wychodzące pliki cookie
+This is a list of cookies that browsers using the YaCy proxy sent to webservers:==To jest lista plików cookie, które przeglądarki korzystające z proxy YaCy wysłały do serwerów WWW:
+Receiving Host==Host odbierający
+Date==Data
+Sending Client==Klient wysyłający
+Cookie==Cookie
+#-----------------------------
+
+#File: CrawlCheck_p.html
+#---------------------------
+"Check given urls"=="Sprawdź podane adresy URL"
+Crawl Check==Sprawdzenie crawla
+This pages gives you an analysis about the possible success for a web crawl on given addresses.==Ta strona przedstawia analizę możliwego powodzenia crawla sieciowego dla podanych adresów.
+List of possible crawl start URLs==Lista możliwych początkowych adresów URL crawla
+Analysis==Analiza
+URL==URL
+Access==Dostęp
+Robots==Robots
+Crawl-Delay==Crawl-Delay
+Sitemap==Mapa witryny
+#-----------------------------
+
+#File: CrawlMonitorRemoteStart.html
+#---------------------------
+Recently started remote crawls in progress==Niedawno uruchomione zdalne crawle w toku
+Remote crawl start points, crawl is ongoing==Punkty startowe zdalnego crawla, crawl w toku
+Start Time==Czas rozpoczęcia
+Peer Name==Nazwa peera
+Start URL==Początkowy URL
+Intention/Description==Zamiar/Opis
+Depth==Głębokość
+Accept '?' URLs==Akceptuj adresy URL z '?'
+no==nie
+yes==tak
+Remote crawl start points, finished:==Punkty startowe zdalnego crawla, zakończone:
+#-----------------------------
+
+#File: CrawlProfileEditor_p.html
+#---------------------------
+"Terminate"=="Zakończ"
+"Delete"=="Usuń"
+"Delete finished crawls"=="Usuń zakończone crawle"
+"Edit profile"=="Edytuj profil"
+"Submit changes"=="Zapisz zmiany"
+Crawler Steering==Sterowanie crawlerem
+Crawl Scheduler==Harmonogram crawla
+Scheduled Crawls can be modified in this table==Zaplanowane crawle można modyfikować w tej tabeli
+Crawl Profile Editor==Edytor profilu crawla
+Crawl profiles hold information about a crawl process that is currently ongoing.==Profile crawla zawierają informacje o trwającym procesie crawlowania.
+Crawl Profile List==Lista profili crawla
+Crawl Thread==Typ crawla
+Collections==Kolekcje
+Status==Status
+Depth==Głębokość
+Must Match==Musi pasować
+Must Not Match==Nie może pasować
+Recrawl if older than==Ponownie crawluj, jeśli starsze niż
+Domain Counter Content==Zawartość licznika domen
+Max Page Per Domain==Maks. stron na domenę
+Accept '?' URLs==Akceptuj adresy URL z '?'
+Fill Proxy Cache==Wypełnij pamięć podręczną proxy
+Local Text Indexing==Lokalne indeksowanie tekstu
+Local Media Indexing==Lokalne indeksowanie multimediów
+Remote Indexing==Indeksowanie zdalne
+Running==Działa
+Finished==Zakończono
+no==nie
+yes==tak
+Select the profile to edit==Wybierz profil do edycji
+false==false
+true==true
+#-----------------------------
+
+#File: CrawlResults.html
+#---------------------------
+"An illustration how yacy works"=="Ilustracja działania YaCy"
+"delete all"=="Usuń wszystkie"
+"del & blacklist"=="usuń i czarna lista"
+"clear list"=="Wyczyść listę"
+"delete"=="Usuń"
+Crawl Results Overview==Przegląd wyników crawla
+These are monitoring pages for the different indexing queues.==To są strony monitorowania różnych kolejek indeksowania.
+YaCy knows 5 different ways to acquire web indexes. The details of these processes (1-5) are described within the submenu's listed==YaCy zna 5 różnych sposobów pozyskiwania indeksów sieciowych. Szczegóły tych procesów (1-5) są opisane w wymienionych podmenu
+above which also will show you a table with indexing results so far. The information in these tables is considered as private,==powyżej, które pokażą Ci również tabelę z dotychczasowymi wynikami indeksowania. Informacje w tych tabelach są uznawane za prywatne,
+so you need to log-in with your administration password.==więc musisz zalogować się przy użyciu hasła administratora.
+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==Przypadek (6) to monitor lokalnego generatora potwierdzeń, przeciwieństwo przypadku (1). Zawiera również monitor wyników indeksowania, ale nie jest uznawany za prywatny,
+since it shows crawl requests from other peers.==ponieważ pokazuje żądania crawla od innych peerów.
+Case (7) occurs if pack files are imported==Przypadek (7) występuje, gdy importowane są pliki pack.
+The image above illustrates the data flow initiated by web index acquisition.==Powyższy obraz ilustruje przepływ danych zainicjowany przez pozyskiwanie indeksu sieciowego.
+Some processes occur double to document the complex index migration structure.==Niektóre procesy występują podwójnie, aby udokumentować złożoną strukturę migracji indeksu.
+(1) Results of Remote Crawl Receipts==(1) Wyniki potwierdzeń zdalnego crawla
+This is the list of web pages that this peer initiated to crawl,==To jest lista stron internetowych, których crawl zainicjował ten peer,
+but had been crawled by other peers.==ale które zostały zcrawlowane przez inne peery.
+This is the 'mirror'-case of process (6).==To jest przypadek 'lustrzany' procesu (6).
+Every page that a remote peer indexes upon this peer's request is reported back and can be monitored here.==Każda strona zindeksowana przez zdalnego peera na żądanie tego peera jest zgłaszana z powrotem i może być tutaj monitorowana.
+No remote crawl results can currently been added to the local index as the remote crawler is disabled on this peer.==Obecnie nie można dodać żadnych wyników zdalnego crawla do lokalnego indeksu, ponieważ zdalny crawler jest wyłączony na tym peerze.
+(2) Results for Result of Search Queries==(2) Wyniki dla rezultatów zapytań wyszukiwania
+This index transfer was initiated by your peer by doing a search query.==Ten transfer indeksu został zainicjowany przez Twojego peera poprzez wykonanie zapytania wyszukiwania.
+The index was crawled and contributed by other peers.==Indeks został zcrawlowany i udostępniony przez inne peery.
+Use Case: This list fills up if you do a search query on the 'Search Page'==Przypadek użycia: Ta lista zapełnia się, gdy wykonujesz zapytanie wyszukiwania na 'Stronie wyszukiwania'
+(3) Results for Index Transfer==(3) Wyniki dla transferu indeksu
+The url fetch was initiated and executed by other peers.==Pobranie adresu URL zostało zainicjowane i wykonane przez inne peery.
+These links here have been transmitted to you because your peer is the most appropriate for storage according to==Te linki zostały Ci przekazane, ponieważ Twój peer jest najbardziej odpowiedni do przechowywania zgodnie z
+the logic of the Global Distributed Hash Table.==logiką globalnej rozproszonej tablicy skrótów (DHT).
+Use Case: This list may fill if you check the 'Index Receive'-flag on the 'Index Control' page==Przypadek użycia: Ta lista może się zapełnić, jeśli zaznaczysz flagę 'Odbiór indeksu' na stronie 'Kontrola indeksu'
+(4) Results for Proxy Indexing==(4) Wyniki dla indeksowania przez proxy
+These web pages had been indexed as result of your proxy usage.==Te strony internetowe zostały zindeksowane w wyniku korzystania z Twojego proxy.
+No personal or protected page is indexed;==Żadna osobista ani chroniona strona nie jest indeksowana;
+such pages are detected by Cookie-Use or POST-Parameters (either in URL or as HTTP protocol)==takie strony są wykrywane na podstawie użycia plików cookie lub parametrów POST (w adresie URL lub w protokole HTTP)
+and automatically excluded from indexing.==i automatycznie wykluczane z indeksowania.
+Use Case: You must use YaCy as proxy to fill up this table.==Przypadek użycia: Musisz używać YaCy jako proxy, aby zapełnić tę tabelę.
+Set the proxy settings of your browser to the same port as given==Ustaw ustawienia proxy swojej przeglądarki na ten sam port, który jest podany
+on the 'Settings'-page in the 'Proxy and Administration Port' field.==na stronie 'Ustawienia' w polu 'Port proxy i administracji'.
+(5) Results for Local Crawling==(5) Wyniki dla crawlowania lokalnego
+These web pages had been crawled by your own crawl task.==Te strony internetowe zostały zcrawlowane przez Twoje własne zadanie crawla.
+Use Case: start a crawl by setting a crawl start point on the 'Index Create' page.==Przypadek użycia: uruchom crawl, ustawiając punkt startowy crawla na stronie 'Tworzenie indeksu'.
+(6) Results for Global Crawling==(6) Wyniki dla crawlowania globalnego
+These pages had been indexed by your peer, but the crawl was initiated by a remote peer.==Te strony zostały zindeksowane przez Twojego peera, ale crawl został zainicjowany przez zdalnego peera.
+This is the 'mirror'-case of process (1).==To jest przypadek 'lustrzany' procesu (1).
+The remote crawler is currently disabled==Zdalny crawler jest obecnie wyłączony
+(7) Results from pack import==(7) Wyniki z importu pack
+These records had been imported from pack files in DATA/PACKS/load==Te rekordy zostały zaimportowane z plików pack w DATA/PACKS/load
+The stack is empty.==Stos jest pusty.
+Domain==Domena
+URLs==URLs
+Blacklist to use==Czarna lista do użycia
+Collection==Kolekcja
+Initiator==Inicjator
+Executor==Wykonawca
+Modified==Zmodyfikowano
+Words==Słowa
+Title==Tytuł
+Country==Kraj
+IP of Host==IP hosta
+URL==URL
+no title==brak tytułu
+#-----------------------------
+
+#File: CrawlStartExpert.html
+#---------------------------
+"API"=="API"
+"info"=="Info"
+"empty"=="puste"
+"Show all links"=="Pokaż wszystkie linki"
+"Media Type checking info"=="Informacja o sprawdzaniu typu multimediów"
+"Media Type filter info"=="Informacja o filtrze typu multimediów"
+"Solr query filter info"=="Informacja o filtrze zapytań Solr"
+"Clean up search events cache info"=="Informacja o czyszczeniu pamięci podręcznej zdarzeń wyszukiwania"
+"Start New Crawl Job"=="Uruchom nowe zadanie crawla"
+Click on this API button to see a documentation of the POST request parameter for crawl starts.==Kliknij ten przycisk API, aby zobaczyć dokumentację parametrów żądania POST dla startów crawla.
+Expert Crawl Start==Ekspercki start crawla
+Start Crawling Job:==Uruchom zadanie crawlowania:
+You can define URLs as start points for Web page crawling and start crawling here.==Możesz tu zdefiniować adresy URL jako punkty startowe crawlowania stron internetowych i rozpocząć crawlowanie.
+"Crawling" means that YaCy will download the given website, extract all links in it and then download the content behind these links.=="Crawlowanie" oznacza, że YaCy pobierze podaną stronę internetową, wyodrębni wszystkie zawarte w niej linki, a następnie pobierze treść znajdującą się za tymi linkami.
+This is repeated as long as specified under "Crawling Depth".==Jest to powtarzane tak długo, jak określono w "Głębokość crawlowania".
+Crawl Job==Zadanie crawla
+A Crawl Job consist of one or more start point, crawl limitations and document freshness rules.==Zadanie crawla składa się z jednego lub więcej punktów startowych, ograniczeń crawla oraz reguł świeżości dokumentów.
+Start Point==Punkt startowy
+One Start URL or a list of URLs: (must start with http:// https:// ftp:// smb:// file://)==Jeden początkowy adres URL lub lista adresów URL: (musi zaczynać się od http:// https:// ftp:// smb:// file://)
+Define the start-url(s) here. You can submit more than one URL, each line one URL please.==Zdefiniuj tutaj początkowe adresy URL. Możesz podać więcej niż jeden adres URL, po jednym adresie URL w wierszu.
+Each of these URLs are the root for a crawl start, existing start URLs are always re-loaded.==Każdy z tych adresów URL jest korzeniem startu crawla, istniejące początkowe adresy URL są zawsze ładowane ponownie.
+Other already visited URLs are sorted out as "double", if they are not allowed using the re-crawl option.==Inne już odwiedzone adresy URL są odrzucane jako "duplikaty", jeśli nie zostały dozwolone za pomocą opcji ponownego crawlowania.
+From Link-List of URL==Z listy linków adresu URL
+From Sitemap==Z mapy witryny
+From File (enter a path within your local file system)==Z pliku (podaj ścieżkę w lokalnym systemie plików)
+Index Attributes==Atrybuty indeksu
+Add Crawl result to collection (important for Index Pack generation)==Dodaj wynik crawla do kolekcji (ważne dla generowania pakietów indeksu)
+A crawl result can be tagged with names which are candidates for a collection request.==Wynik crawla można otagować nazwami, które są kandydatami do żądania kolekcji.
+Do not use underline '_' in collection name, use '-' instead. When useful, add a language code to the collection name, e.g. 'top-100-en'.==Nie używaj podkreślenia '_' w nazwie kolekcji, zamiast tego użyj '-'. Gdy jest to przydatne, dodaj kod języka do nazwy kolekcji, np. 'top-100-en'.
+Time Zone Offset==Przesunięcie strefy czasowej
+The time zone is required when the parser detects a date in the crawled web page. Content can be searched with the on: - modifier which==Strefa czasowa jest wymagana, gdy parser wykryje datę na zcrawlowanej stronie internetowej. Treść można wyszukiwać za pomocą modyfikatora on:, który
+requires also a time zone when a query is made. To normalize all given dates, the date is stored in UTC time zone. To get the right offset==wymaga również strefy czasowej podczas wykonywania zapytania. Aby znormalizować wszystkie podane daty, data jest przechowywana w strefie czasowej UTC. Aby uzyskać prawidłowe przesunięcie
+from dates without time zones to UTC, this offset must be given here. The offset is given in minutes;==z dat bez stref czasowych na UTC, to przesunięcie musi być tutaj podane. Przesunięcie podawane jest w minutach;
+Time zone offsets for locations east of UTC must be negative; offsets for zones west of UTC must be positve.==Przesunięcia strefy czasowej dla lokalizacji na wschód od UTC muszą być ujemne; przesunięcia dla stref na zachód od UTC muszą być dodatnie.
+Crawler Filter==Filtr crawlera
+These are limitations on the crawl stacker. The filters will be applied before a web page is loaded.==To są ograniczenia dla stackera crawla. Filtry zostaną zastosowane przed załadowaniem strony internetowej.
+Indexing==Indeksowanie
+This enables indexing of the webpages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the==Włącza to indeksowanie stron internetowych pobieranych przez crawlera. Powinno to być domyślnie włączone, chyba że chcesz crawlować tylko po to, aby wypełnić
+Document Cache without indexing.==pamięć podręczną dokumentów bez indeksowania.
+index text==indeksuj tekst
+index media==indeksuj media
+Do Remote Indexing==Wykonuj indeksowanie zdalne
+If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Jeśli zaznaczone, crawler skontaktuje się z innymi peerami i użyje ich jako zdalnych indekserów dla Twojego crawla.
+If you need your crawling results locally, you should switch this off.==Jeśli potrzebujesz wyników crawlowania lokalnie, powinieneś to wyłączyć.
+Only senior and principal peers can initiate or receive remote crawls.==Tylko peery typu senior i principal mogą inicjować lub odbierać zdalne crawle.
+A YaCyNews message will be created to inform all peers about a global crawl,==Zostanie utworzony komunikat YaCyNews, aby poinformować wszystkie peery o globalnym crawlu,
+so they can omit starting a crawl with the same start point.==aby mogły pominąć uruchamianie crawla z tym samym punktem startowym.
+Remote crawl results won't be added to the local index as the remote crawler is disabled on this peer.==Wyniki zdalnego crawla nie zostaną dodane do lokalnego indeksu, ponieważ zdalny crawler jest wyłączony na tym peerze.
+Describe your intention to start this global crawl (optional)==Opisz swój zamiar uruchomienia tego globalnego crawla (opcjonalnie)
+This message will appear in the 'Other Peer Crawl Start' table of other peers.==Ten komunikat pojawi się w tabeli 'Start crawla innego peera' u innych peerów.
+Crawling Depth==Głębokość crawlowania
+This defines how often the Crawler will follow links (of links..) embedded in websites.==Określa to, jak często crawler będzie podążać za linkami (i linkami linków...) osadzonymi na stronach internetowych.
+0 means that only the page you enter under "Starting Point" will be added==0 oznacza, że do indeksu zostanie dodana tylko strona podana w "Punkt startowy"
+to the index. 2-4 is good for normal indexing. Values over 8 are not useful, since a depth-8 crawl will==2-4 jest dobre dla normalnego indeksowania. Wartości powyżej 8 nie są przydatne, ponieważ crawl o głębokości 8
+index approximately 25.600.000.000 pages, maybe this is the whole WWW.==zindeksuje w przybliżeniu 25.600.000.000 stron, być może całe WWW.
+also all linked non-parsable documents==także wszystkie połączone dokumenty, których nie można przeanalizować
+Unlimited crawl depth for URLs matching with==Nieograniczona głębokość crawla dla adresów URL pasujących do
+Maximum Pages per Domain==Maksymalna liczba stron na domenę
+You can limit the maximum number of pages that are fetched and indexed from a single domain with this option.==Za pomocą tej opcji możesz ograniczyć maksymalną liczbę stron pobieranych i indeksowanych z pojedynczej domeny.
+You can combine this limitation with the 'Auto-Dom-Filter', so that the limit is applied to all the domains within==Możesz połączyć to ograniczenie z 'Auto-Dom-Filter', tak aby limit obowiązywał dla wszystkich domen w obrębie
+the given depth. Domains outside the given depth are then sorted-out anyway.==podanej głębokości. Domeny poza podaną głębokością są i tak odrzucane.
+Use==Użyj
+Page-Count==Liczba stron
+misc. Constraints==różne ograniczenia
+A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled.==Znak zapytania jest zwykle wskazówką strony dynamicznej. Adresy URL wskazujące na dynamiczną treść zwykle nie powinny być crawlowane.
+However, there are sometimes web pages with static content that==Jednak czasami istnieją strony internetowe ze statyczną treścią, które
+is accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.==są dostępne pod adresami URL zawierającymi znaki zapytania. Jeśli nie masz pewności, nie zaznaczaj tego, aby uniknąć pętli crawlowania.
+Following frames is NOT done by Gxxg1e, but we do by default to have a richer content. 'nofollow' in robots metadata can be overridden; this does not affect obeying of the robots.txt which is never ignored.==Gxxg1e NIE podąża za ramkami, ale my robimy to domyślnie, aby uzyskać bogatszą treść. 'nofollow' w metadanych robots można zignorować; nie wpływa to na przestrzeganie pliku robots.txt, który nigdy nie jest ignorowany.
+Accept URLs with query-part ('?'):==Akceptuj adresy URL z częścią zapytania ('?'):
+Obey html-robots-noindex:==Przestrzegaj noindex w HTML robots:
+Obey html-robots-nofollow:==Przestrzegaj html-robots-nofollow:
+Media Type detection==Wykrywanie typu multimediów
+Not loading URLs with unsupported file extension is faster but less accurate.==Nieładowanie adresów URL z nieobsługiwanym rozszerzeniem pliku jest szybsze, ale mniej dokładne.
+Indeed, for some web resources the actual Media Type is not consistent with the URL file extension. Here are some examples:==Rzeczywiście, w przypadku niektórych zasobów sieciowych rzeczywisty typ multimediów nie jest zgodny z rozszerzeniem pliku w adresie URL. Oto kilka przykładów:
+Do not load URLs with an unsupported file extension==Nie ładuj adresów URL z nieobsługiwanym rozszerzeniem pliku
+Always cross check file extension against Content-Type header==Zawsze porównuj rozszerzenie pliku z nagłówkiem Content-Type
+Load Filter on URLs==Filtr ładowania na adresach URL
+Example: to allow only urls that contain the word 'science', set the must-match filter to '.*science.*'.==Przykład: aby zezwolić tylko na adresy URL zawierające słowo 'science', ustaw filtr must-match na '.*science.*'.
+You can also use an automatic domain-restriction to fully crawl a single domain.==Możesz również użyć automatycznego ograniczenia domeny, aby w pełni zcrawlować pojedynczą domenę.
+must-match==musi pasować
+Restrict to start domain(s)==Ogranicz do domen(y) startowych
+Restrict to sub-path(s)==Ogranicz do podścieżek
+Use filter==Użyj filtra
+(must not be empty)==(nie może być puste)
+must-not-match==nie może pasować
+Load Filter on URL origin of links==Filtr ładowania na źródle URL linków
+Example: to allow loading only links from pages on example.org domain, set the must-match filter to '.*example.org.*'.==Przykład: aby zezwolić na ładowanie tylko linków ze stron w domenie example.org, ustaw filtr must-match na '.*example.org.*'.
+Load Filter on IPs==Filtr ładowania na adresach IP
+Must-Match List for Country Codes==Lista kodów krajów, które muszą pasować
+Crawls can be restricted to specific countries. This uses the country code that can be computed from==Crawle można ograniczyć do określonych krajów. Wykorzystuje to kod kraju, który można obliczyć na podstawie
+the IP of the server that hosts the page. The filter is not a regular expressions but a list of country codes, separated by comma.==adresu IP serwera, który hostuje stronę. Filtr nie jest wyrażeniem regularnym, lecz listą kodów krajów oddzielonych przecinkami.
+no country code restriction==brak ograniczenia kodu kraju
+Document Filter==Filtr dokumentów
+These are limitations on index feeder. The filters will be applied after a web page was loaded.==To są ograniczenia dla podajnika indeksu. Filtry zostaną zastosowane po załadowaniu strony internetowej.
+Filter on URLs==Filtr na adresach URL
+that must not match with the URLs to allow that the content of the url is indexed.==który nie może pasować do adresów URL, aby treść adresu URL mogła zostać zindeksowana.
+No Indexing when Canonical present and Canonical != URL==Bez indeksowania, gdy obecny jest Canonical i Canonical != URL
+Filter on Content of Document (all visible text, including camel-case-tokenized url and title)==Filtr na treści dokumentu (cały widoczny tekst, w tym tokenizowany metodą camel-case adres URL i tytuł)
+Filter on Document Media Type (aka MIME type)==Filtr na typie multimediów dokumentu (czyli typie MIME)
+that must match with the document Media Type (also known as MIME Type) to allow the URL to be indexed.==który musi pasować do typu multimediów dokumentu (znanego również jako typ MIME), aby umożliwić zindeksowanie adresu URL.
+Each parsed document is checked against the given Solr query before being added to the index.==Każdy przeanalizowany dokument jest sprawdzany względem podanego zapytania Solr przed dodaniem do indeksu.
+The embedded local Solr index must be connected to use this kind of filter.==Osadzony lokalny indeks Solr musi być podłączony, aby użyć tego rodzaju filtra.
+Content Filter==Filtr treści
+These are limitations on parts of a document. The filter will be applied after a web page was loaded.==To są ograniczenia dla części dokumentu. Filtr zostanie zastosowany po załadowaniu strony internetowej.
+You can choose to:==Możesz wybrać:
+Evaluate by default==Oceniaj domyślnie
+Use all words in document by default until a CSS class as listed below appears; then ignore all==Domyślnie używaj wszystkich słów w dokumencie, dopóki nie pojawi się klasa CSS wymieniona poniżej; wtedy ignoruj wszystkie
+Ignore by default==Ignoruj domyślnie
+Ignore all words in document by default until a CSS class as listed below appears, then evaluate all==Domyślnie ignoruj wszystkie słowa w dokumencie, dopóki nie pojawi się klasa CSS wymieniona poniżej; wtedy oceniaj wszystkie
+Filter div or nav class names==Filtruj nazwy klas div lub nav
+comma-separated list of <div> or <nav> element class names which should be filtered out/in according to switch above.==oddzielona przecinkami lista nazw klas elementów <div> lub <nav>, które powinny być odfiltrowane lub uwzględnione zgodnie z przełącznikiem powyżej.
+Clean-Up before Crawl Start==Czyszczenie przed startem crawla
+Clean up search events cache==Wyczyść pamięć podręczną zdarzeń wyszukiwania
+Check this option to be sure to get fresh search results including newly crawled documents. Beware that it will also interrupt any refreshing/resorting of search results currently requested from browser-side.==Zaznacz tę opcję, aby mieć pewność, że otrzymasz świeże wyniki wyszukiwania, w tym nowo zcrawlowane dokumenty. Pamiętaj, że przerwie to również wszelkie odświeżanie/ponowne sortowanie wyników wyszukiwania aktualnie żądane po stronie przeglądarki.
+No Deletion==Bez usuwania
+After a crawl was done in the past, document may become stale and eventually they are also deleted on the target host.==Po zakończeniu crawla w przeszłości dokumenty mogą stać się nieaktualne i ostatecznie zostaną również usunięte na hoście docelowym.
+To remove old files from the search index it is not sufficient to just consider them for re-load but it may be necessary==Aby usunąć stare pliki z indeksu wyszukiwania, nie wystarczy jedynie uwzględnić je do ponownego załadowania, ale może być konieczne
+to delete them because they simply do not exist any more. Use this in combination with re-crawl while this time should be longer.==ich usunięcie, ponieważ po prostu już nie istnieją. Używaj tego w połączeniu z ponownym crawlowaniem, przy czym ten czas powinien być dłuższy.
+Do not delete any document before the crawl is started.==Nie usuwaj żadnego dokumentu przed rozpoczęciem crawla.
+Delete sub-path==Usuń podścieżkę
+For each host in the start url list, delete all documents (in the given subpath) from that host.==Dla każdego hosta z listy początkowych adresów URL usuń wszystkie dokumenty (w podanej podścieżce) z tego hosta.
+Delete only old==Usuń tylko stare
+Treat documents that are loaded==Traktuj dokumenty załadowane
+ago as stale and delete them before the crawl is started.==temu, jako nieaktualne i usuń je przed rozpoczęciem crawla.
+Double-Check Rules==Reguły sprawdzania duplikatów
+No Doubles==Bez duplikatów
+A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==Crawl sieciowy przeprowadza sprawdzenie wszystkich linków znalezionych w internecie względem wewnętrznej bazy danych. Jeśli ten sam adres URL zostanie znaleziony ponownie,
+then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,==adres URL jest traktowany jako duplikat, gdy zaznaczysz opcję 'bez duplikatów'. Adres URL może zostać załadowany ponownie, gdy osiągnie określony wiek,
+to use that check the 're-load' option.==aby tego użyć, zaznacz opcję 'ponowne załadowanie'.
+Never load any page that is already known. Only the start-url may be loaded again.==Nigdy nie ładuj strony, która jest już znana. Tylko początkowy adres URL może zostać załadowany ponownie.
+Re-load==Załaduj ponownie
+ago as stale and load them again. If they are younger, they are ignored.==temu, jako nieaktualne i załaduj je ponownie. Jeśli są młodsze, są ignorowane.
+Document Cache==Pamięć podręczna dokumentów
+Store to Web Cache==Zapisz w pamięci podręcznej sieci
+This option is used by default for proxy prefetch, but is not needed for explicit crawling.==Ta opcja jest domyślnie używana do wstępnego pobierania przez proxy, ale nie jest potrzebna do jawnego crawlowania.
+Policy for usage of Web Cache==Zasady korzystania z pamięci podręcznej sieci
+The caching policy states when to use the cache during crawling:==Zasady buforowania określają, kiedy używać pamięci podręcznej podczas crawlowania:
+no cache: never use the cache, all content from fresh internet source;==bez pamięci podręcznej: nigdy nie używaj pamięci podręcznej, cała treść ze świeżego źródła internetowego;
+if fresh: use the cache if the cache exists and is fresh using the proxy-fresh rules;==jeśli aktualne: użyj pamięci podręcznej, jeśli istnieje i jest aktualna według reguł świeżości proxy;
+if exist: use the cache if the cache exist. Do no check freshness. Otherwise use online source;==jeśli istnieje: użyj pamięci podręcznej, jeśli istnieje. Nie sprawdzaj aktualności. W przeciwnym razie użyj źródła online;
+cache only: never go online, use all content from cache. If no cache exist, treat content as unavailable==tylko pamięć podręczna: nigdy nie łącz się online, używaj całej treści z pamięci podręcznej. Jeśli pamięć podręczna nie istnieje, traktuj treść jako niedostępną
+no cache==bez pamięci podręcznej
+if fresh==jeśli aktualne
+if exist==jeśli istnieje
+cache only==tylko pamięć podręczna
+Robot Behaviour==Zachowanie robota
+Use Special User Agent and robot identification==Użyj specjalnego User-Agenta i identyfikacji robota
+Because YaCy can be used as replacement for commercial search appliances==Ponieważ YaCy może być używany jako zamiennik komercyjnych urządzeń wyszukiwania
+(like the Google Search Appliance aka GSA) the user must be able to crawl all web pages that are granted to such commercial platforms.==(jak Google Search Appliance, czyli GSA) użytkownik musi mieć możliwość crawlowania wszystkich stron internetowych udostępnianych takim komercyjnym platformom.
+Not having this option would be a strong handicap for professional usage of this software. Therefore you are able to select==Brak tej opcji byłby poważnym utrudnieniem w profesjonalnym korzystaniu z tego oprogramowania. Dlatego możesz tutaj wybrać
+alternative user agents here which have different crawl timings and also identify itself with another user agent and obey the corresponding robots rule.==alternatywne User-Agenty, które mają różne czasy crawlowania, identyfikują się innym User-Agentem i przestrzegają odpowiedniej reguły robots.
+Enrich Vocabulary==Wzbogać słownik
+Scraping Fields==Pola scrapowania
+You can use class names to enrich the terms of a vocabulary based on the text content that appears on web pages. Please write the names of classes into the matrix.==Możesz używać nazw klas, aby wzbogacić terminy słownika na podstawie zawartości tekstowej pojawiającej się na stronach internetowych. Wpisz nazwy klas do macierzy.
+Vocabulary==Słownik
+Class==Klasa
+#-----------------------------
+
+#File: CrawlStartScanner_p.html
+#---------------------------
+"Scan"=="Skanuj"
+Network Scanner==Skaner sieci
+YaCy can scan a network segment for available http, ftp and smb server.==YaCy może przeskanować segment sieci w poszukiwaniu dostępnych serwerów HTTP, FTP i SMB.
+You must first select a IP range and then, after this range is scanned,==Najpierw musisz wybrać zakres adresów IP, a następnie, po przeskanowaniu tego zakresu,
+it is possible to select servers that had been found for a full-site crawl.==można wybrać znalezione serwery do crawla całej witryny.
+Scan the network==Skanuj sieć
+Scan Range==Zakres skanowania
+Scan sub-range with given host==Skanuj podzakres z podanym hostem
+Do not use intranet scan results, you are not in an intranet environment!==Nie używaj wyników skanowania intranetu, nie znajdujesz się w środowisku intranetu!
+All known hosts in the search index (/31 subnet recommended!)==Wszystkie znane hosty w indeksie wyszukiwania (zalecana podsieć /31!)
+Subnet==Podsieć
+/31 (only the given host(s))==/31 (tylko podane hosty)
+/24 (254 addresses)==/24 (254 adresy)
+/20 (4064 addresses)==/20 (4064 adresy)
+/16 (65024 addresses)==/16 (65024 adresy)
+Time-Out==Limit czasu
+ms==ms
+Scan Cache==Pamięć podręczna skanowania
+accumulate scan results with access type "granted" into scan cache (do not delete old scan result)==gromadź wyniki skanowania z typem dostępu "granted" w pamięci podręcznej skanowania (nie usuwaj starych wyników skanowania)
+Service Type==Typ usługi
+ftp==ftp
+smb==smb
+http==http
+https==https
+Scheduler==Harmonogram
+run only a scan==uruchom tylko skanowanie
+scan and add all sites with granted access automatically. This disables the scan cache accumulation.==skanuj i automatycznie dodawaj wszystkie witryny z przyznanym dostępem. Wyłącza to gromadzenie w pamięci podręcznej skanowania.
+ Look every== Sprawdzaj co
+minutes==minuty
+hours==godziny
+days==dni
+again and add new sites automatically to indexer.==ponownie i automatycznie dodawaj nowe witryny do indeksera.
+Sites that do not appear during a scheduled scan period will be excluded from search results.==Witryny, które nie pojawią się podczas zaplanowanego okresu skanowania, zostaną wykluczone z wyników wyszukiwania.
+#-----------------------------
+
+#File: CrawlStartSite.html
+#---------------------------
+"empty"=="puste"
+"Show all links"=="Pokaż wszystkie linki"
+"Start New Crawl"=="Uruchom nowy crawl"
+Site Crawling==Crawlowanie witryny
+Site Crawler:==Crawler witryny:
+Download all web pages from a given domain or base URL.==Pobierz wszystkie strony internetowe z podanej domeny lub bazowego adresu URL.
+Site Crawl Start==Start crawla witryny
+Site==Witryna
+Start URL (must start with http:// https:// ftp:// smb:// file://)==Początkowy URL (musi zaczynać się od http:// https:// ftp:// smb:// file://)
+Link-List of URL==Lista linków adresu URL
+Sitemap URL==URL mapy witryny
+Path==Ścieżka
+load all files in domain==załaduj wszystkie pliki w domenie
+load only files in a sub-path of given url==załaduj tylko pliki w podścieżce podanego adresu URL
+Limitation==Ograniczenie
+not more than==nie więcej niż
+documents==dokumenty
+Collection==Kolekcja
+Start==Start
+Hints==Wskazówki
+Crawl Speed Limitation==Ograniczenie prędkości crawla
+No more that four pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.==Nie więcej niż cztery strony są ładowane z tego samego hosta w ciągu jednej sekundy (nie więcej niż 120 dokumentów na minutę), aby ograniczyć obciążenie serwera docelowego.
+Target Balancer==Równoważenie celów
+A second crawl for a different host increases the throughput to a maximum of 240 documents per minute since the crawler balances the load over all hosts.==Drugi crawl dla innego hosta zwiększa przepustowość do maksymalnie 240 dokumentów na minutę, ponieważ crawler równoważy obciążenie na wszystkie hosty.
+High Speed Crawling==Crawlowanie z dużą prędkością
+A 'shallow crawl' which is not limited to a single host (or site)=='Płytki crawl', który nie jest ograniczony do pojedynczego hosta (lub witryny)
+can extend the pages per minute (ppm) rate to unlimited documents per minute when the number of target hosts is high.==może zwiększyć współczynnik stron na minutę (ppm) do nieograniczonej liczby dokumentów na minutę, gdy liczba hostów docelowych jest wysoka.
+Scheduler Steering==Sterowanie harmonogramem
+#-----------------------------
+
+#File: Crawler_p.html
+#---------------------------
+"API"=="API"
+"Pages Per Minute"=="Strony na minutę"
+"Latency Factor"=="Współczynnik opóźnienia"
+"Max same Host in queue"=="Maks. tego samego hosta w kolejce"
+"set"=="Ustaw"
+"Set PPM to the default minimum value"=="Ustaw PPM na domyślną wartość minimalną"
+"Set PPM to the default maximum value"=="Ustaw PPM na domyślną wartość maksymalną"
+"Terminate"=="Zakończ"
+"show link structure"=="Pokaż strukturę linków"
+"hide graphic"=="Ukryj grafikę"
+Click on this API button to see an XML with information about the crawler status==Kliknij ten przycisk API, aby zobaczyć plik XML z informacjami o statusie crawlera
+Crawler==Crawler
+(Please enable JavaScript to automatically update this page!)==(Włącz JavaScript, aby automatycznie aktualizować tę stronę!)
+Queues==Kolejki
+Queue==Kolejka
+Size==Rozmiar
+Local Crawler==Lokalny crawler
+Limit Crawler==Ograniczony crawler
+Remote Crawler==Zdalny crawler
+No-Load Crawler==Crawler bez ładowania
+Terminate All==Zakończ wszystkie
+Index Size==Rozmiar indeksu
+Database==Baza danych
+Entries==Wpisy
+Seg- ments==Seg- menty
+Citations (reverse link index)==Cytaty (odwrotny indeks linków)
+RWIs (P2P Chunks)==RWI (fragmenty P2P)
+Progress==Postęp
+Indicator==Wskaźnik
+Level==Poziom
+Speed / PPM (Pages Per Minute)==Prędkość / PPM (strony na minutę)
+PPM==PPM
+LF==LF
+MH==MH
+Crawler PPM==PPM crawlera
+Postprocessing Progress==Postęp przetwarzania końcowego
+pending:==oczekujące:
+Traffic (Crawler)==Ruch (crawler)
+MB==MB
+Load==Załaduj
+Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db==Błąd zarządzania profilami. Zatrzymaj YaCy, usuń plik DATA/PLASMADB/crawlProfiles0.db
+and restart.==i uruchom ponownie.
+Application not yet initialized. Sorry. Please wait some seconds and repeat==Aplikacja nie została jeszcze zainicjowana. Poczekaj kilka sekund i spróbuj ponownie
+the request.==żądanie.
+filter.==filtr.
+it may take some seconds until the first result appears there.==może minąć kilka sekund, zanim pojawi się tam pierwszy wynik.
+No embedded local Solr index is connected. This is required to use a Solr query filter.==Nie podłączono osadzonego lokalnego indeksu Solr. Jest to wymagane, aby użyć filtra zapytań Solr.
+The Solr filter query syntax is not valid :==Składnia zapytania filtra Solr jest nieprawidłowa:
+Could not parse the Solr filter query :==Nie udało się przeanalizować zapytania filtra Solr:
+You asked for remote indexing, but remote crawl results won't be added to the local index as the remote crawler is currently disabled on this peer.==Zażądałeś zdalnego indeksowania, ale wyniki zdalnego crawla nie zostaną dodane do lokalnego indeksu, ponieważ zdalny crawler jest obecnie wyłączony na tym peerze.
+Name==Nazwa
+Count==Liczba
+Status==Status
+Running==Działa
+Crawled Pages==Zcrawlowane strony
+#-----------------------------
+
+#File: DictionaryLoader_p.html
+#---------------------------
+"Load"=="Załaduj"
+"Deactivate"=="Dezaktywuj"
+"Remove"=="Usuń"
+"Activate"=="Aktywuj"
+Knowledge Loader==Ładowarka wiedzy
+YaCy can use external libraries to enable or enhance some functions. These libraries are not==YaCy może używać zewnętrznych bibliotek do włączania lub ulepszania niektórych funkcji. Biblioteki te nie są
+included in the main release of YaCy because they would increase the application file too much.==dołączone do głównej wersji YaCy, ponieważ zbyt mocno zwiększyłyby rozmiar pliku aplikacji.
+You can download additional files here.==Możesz tutaj pobrać dodatkowe pliki.
+Geolocalization==Geolokalizacja
+Geolocalization will enable YaCy to present locations from OpenStreetMap according to given search words.==Geolokalizacja umożliwi YaCy prezentowanie lokalizacji z OpenStreetMap zgodnie z podanymi słowami wyszukiwania.
+GeoNames==GeoNames
+With this file it is possible to find cities all over the world.==Za pomocą tego pliku można znaleźć miasta na całym świecie.
+Content==Treść
+cities with a population > 1000 all over the world==miasta o populacji > 1000 na całym świecie
+Download from==Pobierz z
+Storage location==Lokalizacja przechowywania
+Status==Status
+not loaded==niezaładowane
+loaded==załadowane
+deactivated==dezaktywowane
+Action==Akcja
+Result==Wynik
+loaded and activated dictionary file==załadowany i aktywowany plik słownika
+deactivated and removed dictionary file==dezaktywowany i usunięty plik słownika
+deactivated dictionary file==dezaktywowany plik słownika
+activated dictionary file==aktywowany plik słownika
+cities with a population > 5000 all over the world==miasta o populacji > 5000 na całym świecie
+cities with a population > 100000 all over the world (the set is is reduced to cities > 100000)==miasta o populacji > 100000 na całym świecie (zestaw został zredukowany do miast > 100000)
+OpenGeoDB==OpenGeoDB
+With this file it is possible to find locations in Germany using the location (city) name, a zip code, a car sign or a telephone pre-dial number.==Za pomocą tego pliku można znaleźć lokalizacje w Niemczech na podstawie nazwy miejscowości (miasta), kodu pocztowego, oznaczenia rejestracyjnego lub numeru kierunkowego telefonu.
+Downloaded from==Pobrano z
+loaded - can be upgraded using the Load button for the new URL==załadowane - można zaktualizować za pomocą przycisku Załaduj dla nowego adresu URL
+loaded and upgraded dictionary file==załadowany i zaktualizowany plik słownika
+Suggestions==Podpowiedzi
+Suggestion dictionaries will help YaCy to provide better suggestions during the input of search words==Słowniki podpowiedzi pomogą YaCy w dostarczaniu lepszych podpowiedzi podczas wprowadzania słów wyszukiwania
+DeReWo - Korpusbasierte Grund-/Wortformenlisten (German) of 'Institut für Deutsche Sprache'==DeReWo - Korpusowe listy form podstawowych/wyrazowych (niemiecki) 'Institut für Deutsche Sprache'
+This file provides 100000 most common german words for suggestions==Ten plik dostarcza 100000 najczęstszych niemieckich słów do podpowiedzi
+Synonyms==Synonimy
+Synonyms are used to find not only the searched word but also their synonyms. This is done by adding all synonyms of words in documents to the document and searching the synonyms as well.==Synonimy służą do znajdowania nie tylko wyszukiwanego słowa, ale również jego synonimów. Odbywa się to poprzez dodanie wszystkich synonimów słów w dokumentach do dokumentu i przeszukiwanie również synonimów.
+OpenThesaurus - German Thesaurus from http://www.openthesaurus.de==OpenThesaurus - niemiecki tezaurus z http://www.openthesaurus.de
+The data from this source was converted to the YaCy synonym file format and part of the YaCy distribution.==Dane z tego źródła zostały przekonwertowane do formatu pliku synonimów YaCy i są częścią dystrybucji YaCy.
+Deactivated==Dezaktywowane
+Activated==Aktywowane
+Moby Lexicon - English Thesaurus from https://www.gutenberg.org/ebooks/3202==Moby Lexicon - angielski tezaurus z https://www.gutenberg.org/ebooks/3202
+Russian Thesaurus==Rosyjski tezaurus
+The data was converted to the YaCy synonym file format and part of the YaCy distribution.==Dane zostały przekonwertowane do formatu pliku synonimów YaCy i są częścią dystrybucji YaCy.
+#-----------------------------
+
+#File: Help.html
+#---------------------------
+YaCy: Tutorial==YaCy: Samouczek
+Tutorial==Samouczek
+You are using the administration interface of your own search engine. You can create your own search index with YaCy.==Korzystasz z interfejsu administracyjnego własnej wyszukiwarki. Za pomocą YaCy możesz utworzyć własny indeks wyszukiwania.
+To learn how to do that, watch one of the demonstration videos below:==Aby dowiedzieć się, jak to zrobić, obejrzyj jeden z poniższych filmów demonstracyjnych:
+twitter this video==udostępnij ten film na Twitterze
+More Tutorials==Więcej samouczków
+#-----------------------------
+
+#File: IndexBrowser_p.html
+#---------------------------
+"Delete Subpath"=="Usuń podścieżkę"
+"Re-load load-failure docs (404s etc)"=="Załaduj ponownie dokumenty z błędami ładowania (404 itp.)"
+"Directory"=="Katalog"
+"Delete Load Errors"=="Usuń błędy ładowania"
+Index Browser==Przeglądarka indeksu
+Host/URL==Host/URL
+Browse Host==Przeglądaj host
+Host List==Lista hostów
+URLs==URLs
+Count Colors:==Legenda kolorów liczb:
+Documents without Errors==Dokumenty bez błędów
+Pending in Crawler==Oczekujące w crawlerze
+Crawler Excludes==Wykluczenia crawlera
+Load Errors==Błędy ładowania
+Host Analysis==Analiza hosta
+Add to blacklist==Dodaj do czarnej listy
+Path==Ścieżka
+stored==przechowane
+linked==połączone
+pending==oczekujące
+excluded==wykluczone
+failed==nie powiodło się
+Metadata==Metadane
+link, detected from context==link, wykryty z kontekstu
+load & index==załaduj & indeksuj
+indexed==zindeksowane
+loading==ładowanie
+Administration Options==Opcje administracyjne
+Delete all==Usuń wszystkie
+from index==z indeksu
+#-----------------------------
+
+#File: IndexControlRWIs_p.html
+#---------------------------
+"Show URL Entries for Word"=="Pokaż wpisy URL dla słowa"
+"Show URL Entries for Word-Hash"=="Pokaż wpisy URL dla skrótu słowa"
+"Generate List"=="Wygeneruj listę"
+"List Selected URLs"=="Wyświetl wybrane adresy URL"
+"Delete Word"=="Usuń słowo"
+"Transfer to other peer"=="Prześlij do innego peera"
+"Delete reference to selected URLs"=="Usuń odwołanie do wybranych adresów URL"
+"Add selected URLs to blacklist"=="Dodaj wybrane adresy URL do czarnej listy"
+"Add selected domains to blacklist"=="Dodaj wybrane domeny do czarnej listy"
+Reverse Word Index Administration==Zarządzanie odwrotnym indeksem słów
+RWI Retrieval (= search for a single word)==Pobieranie RWI (= wyszukiwanie pojedynczego słowa)
+Retrieve by Word:==Pobierz według słowa:
+Retrieve by Word-Hash:==Pobierz według skrótu słowa:
+Limitations==Ograniczenia
+Index Reference Size==Rozmiar odwołań indeksu
+No reference size limitation (this may cause strong CPU load when words are searched that appear very often)==Brak ograniczenia rozmiaru odwołań (może to powodować duże obciążenie procesora, gdy wyszukiwane są słowa występujące bardzo często)
+Limitation of number of references per word:==Ograniczenie liczby odwołań na słowo:
+(this causes that old references are deleted if that limit is reached)==(powoduje to usuwanie starych odwołań po osiągnięciu tego limitu)
+Set References Limit==Ustaw limit odwołań
+Search result:==Wynik wyszukiwania:
+total URLs==adresów URL łącznie
+appearance in==występowanie w
+in link type==w typie linku
+document type==typ dokumentu
+description==opis
+title==tytuł
+creator==twórca
+subject==temat
+url==url
+emphasized==wyróżnione
+image==obraz
+audio==audio
+video==wideo
+app==aplikacja
+index of==indeks
+Selection==Wybór
+Display URL List==Wyświetl listę URL
+Number of lines:==Liczba wierszy:
+all lines==wszystkie wiersze
+Word Deletion==Usuwanie słowa
+delete also the referenced URL (recommended, may produce unresolved references==usuń również powiązany adres URL (zalecane, może wygenerować nierozwiązane odwołania
+at other word indexes but they do not harm)==w innych indeksach słów, ale nie są one szkodliwe)
+for every resolvable and deleted URL reference, delete the same reference at every other word where==dla każdego rozwiązywalnego i usuniętego odwołania URL usuń to samo odwołanie w każdym innym słowie, gdzie
+the reference exists (very extensive, but prevents further unresolved references)==odwołanie istnieje (bardzo obszerne, ale zapobiega dalszym nierozwiązanym odwołaniom)
+Transfer RWI to other Peer==Przenieś RWI do innego peera
+Transfer by Word-Hash:==Przenieś według skrótu słowa:
+to Peer:==do peera:
+select==wybierz
+or enter a hash or peer name:==lub wpisz skrót albo nazwę peera:
+Sequential List of Word-Hashes:==Sekwencyjna lista skrótów słów:
+No URL entries related to this word hash==Brak wpisów URL powiązanych z tym skrótem słowa
+Resource==Zasób
+Negative Ranking Factors==Negatywne czynniki rankingu
+Positive Ranking Factors==Pozytywne czynniki rankingu
+props==właściwości
+Reverse Normalized Weighted Ranking Sum==Odwrotna znormalizowana ważona suma rankingu
+hash==skrót
+dom length==długość domeny
+url comps==komponenty URL
+url length==długość URL
+pos in text==poz. w tekście
+pos of phrase==poz. frazy
+pos in phrase==poz. we frazie
+term frequency==częstość terminu
+authority==autorytet
+date==data
+words in title==słowa w tytule
+words in text==słowa w tekście
+local links==linki lokalne
+remote links==linki zdalne
+hitcount==liczba trafień
+unresolved URL Hash==nierozwiązany skrót URL
+Deletion of selected URLs==Usuwanie wybranych adresów URL
+Blacklist Extension==Rozszerzenie czarnej listy
+#-----------------------------
+
+#File: IndexControlURLs_p.html
+#---------------------------
+"API"=="API"
+"Show Details for URL"=="Pokaż szczegóły adresu URL"
+"Show Details for URL-Hash"=="Pokaż szczegóły skrótu URL"
+"Delete"=="Usuń"
+"Optimize Solr"=="Optymalizuj Solr"
+"Shut Down and Re-Start Solr"=="Zamknij i uruchom ponownie Solr"
+"Generate Statistics"=="Wygeneruj statystyki"
+"delete all"=="Usuń wszystkie"
+"Show Content"=="Pokaż treść"
+"Delete URL"=="Usuń URL"
+"Delete URL and remove all references from words"=="Usuń URL i usuń wszystkie odwołania ze słów"
+Click the API icon to see an example call to the search rss API.==Kliknij ikonę API, aby zobaczyć przykładowe wywołanie API RSS wyszukiwania.
+URL Database Administration==Administracja bazą danych URL
+URL Retrieval==Pobieranie URL
+Retrieve by URL:==Pobierz według URL:
+Retrieve by URL-Hash:==Pobierz według skrótu URL:
+Cleanup==Czyszczenie
+Index Deletion==Usuwanie indeksu
+Delete local search index (embedded Solr and old Metadata)==Usuń lokalny indeks wyszukiwania (osadzony Solr i stare metadane)
+Delete remote solr index==Usuń zdalny indeks Solr
+Delete RWI Index (DHT transmission words)==Usuń indeks RWI (słowa transmisji DHT)
+Delete Citation Index (linking between URLs)==Usuń indeks cytatów (powiązania między adresami URL)
+Delete First-Seen Date Table==Usuń tabelę dat pierwszego wystąpienia
+Delete HTTP & FTP Cache==Usuń pamięć podręczną HTTP & FTP
+Stop Crawler and delete Crawl Queues==Zatrzymaj crawlera i usuń kolejki crawla
+Delete robots.txt Cache==Usuń pamięć podręczną robots.txt
+Optimize Solr==Optymalizuj Solr
+merge to max.==scal do maks.
+segments==segmenty
+Reboot Solr Core==Zrestartuj rdzeń Solr
+This feature is available when using exclusively a local embedded Solr.==Ta funkcja jest dostępna, gdy używany jest wyłącznie lokalny osadzony Solr.
+Statistics about top-domains in URL Database==Statystyki dotyczące najczęstszych domen w bazie danych URL
+Show top==Pokaż najczęstsze
+domains from all URLs.==domeny ze wszystkich adresów URL.
+Domain==Domena
+URLs==URLs
+this may produce unresolved references at other word indexes but they do not harm==może to wygenerować nierozwiązane odwołania w innych indeksach słów, ale nie są one szkodliwe
+delete the reference to this url at every other word where the reference exists (very extensive, but prevents unresolved references)==usuwa odwołanie do tego adresu URL w każdym innym słowie, gdzie odwołanie istnieje (bardzo obszerne, ale zapobiega nierozwiązanym odwołaniom)
+#-----------------------------
+
+#File: IndexCreateLoaderQueue_p.html
+#---------------------------
+Loader Queue==Kolejka ładowania
+The loader set is empty==Zestaw ładowania jest pusty
+Initiator==Inicjator
+Depth==Głębokość
+Status==Status
+URL==URL
+#-----------------------------
+
+#File: IndexCreateParserErrors_p.html
+#---------------------------
+"show more"=="Pokaż więcej"
+"clear list"=="Wyczyść listę"
+Rejected URLs==Odrzucone adresy URL
+Time==Czas
+URL==URL
+Fail-Reason==Powód niepowodzenia
+#-----------------------------
+
+#File: IndexCreateQueues_p.html
+#---------------------------
+"API"=="API"
+"Delete"=="Usuń"
+Click on this API button to see an XML with information about the crawler latency and other statistics.==Kliknij ten przycisk API, aby zobaczyć plik XML z informacjami o opóźnieniu crawlera i innych statystykach.
+This crawler queue is empty==Ta kolejka crawlera jest pusta
+Delete Entries:==Usuń wpisy:
+Initiator==Inicjator
+Profile==Profil
+Depth==Głębokość
+Modified Date==Data modyfikacji
+Anchor Name==Nazwa kotwicy
+URL==URL
+Count==Liczba
+Delta/ms==Delta/ms
+Host==Host
+#-----------------------------
+
+#File: IndexDeletion_p.html
+#---------------------------
+"Simulate Deletion"=="Symuluj usuwanie"
+"no actual deletion, generates only a deletion count"=="brak faktycznego usuwania, generuje tylko liczbę usunięć"
+"Engage Deletion"=="Rozpocznij usuwanie"
+"simulate a deletion first to calculate the deletion count"=="najpierw zasymuluj usuwanie, aby obliczyć liczbę usunięć"
+"engaged"=="aktywne"
+Index Deletion==Usuwanie indeksu
+Deletions are made concurrently which can cause that recently deleted documents are not yet reflected in the document count.==Usuwanie odbywa się współbieżnie, co może powodować, że niedawno usunięte dokumenty nie są jeszcze odzwierciedlone w liczbie dokumentów.
+Index deletion will not immediately reduce the storage size on disk because entries are only marked as deleted in a first step.==Usunięcie z indeksu nie zmniejszy natychmiast rozmiaru pamięci na dysku, ponieważ wpisy są w pierwszym kroku jedynie oznaczane jako usunięte.
+Delete by URL Matching==Usuń według dopasowania URL
+Delete all documents within a sub-path of the given urls. That means all documents must start with one of the url stubs as given here.==Usuń wszystkie dokumenty w podścieżce podanych adresów URL. Oznacza to, że wszystkie dokumenty muszą zaczynać się od jednego z podanych tutaj rdzeni adresów URL.
+One URL stub, a list of URL stubs or a regular expression==Jeden rdzeń URL, lista rdzeni URL lub wyrażenie regularne
+Matching Method==Metoda dopasowania
+sub-path of given URLs==podścieżka podanych adresów URL
+matching with regular expression==dopasowanie za pomocą wyrażenia regularnego
+Delete by Age==Usuń według wieku
+Delete all documents which are older than a given time period.==Usuń wszystkie dokumenty starsze niż podany okres czasu.
+Time Period==Okres czasu
+All documents older than==Wszystkie dokumenty starsze niż
+years==lata
+months==miesiące
+days==dni
+hours==godziny
+Age Identification==Identyfikacja wieku
+load date==data załadowania
+last-modified==last-modified
+Delete Collections==Usuń kolekcje
+Delete all documents which are inside specific collections.==Usuń wszystkie dokumenty znajdujące się w określonych kolekcjach.
+Not Assigned==Nieprzypisane
+Delete all documents which are not assigned to any collection==Usuń wszystkie dokumenty, które nie są przypisane do żadnej kolekcji
+Assigned==Przypisane
+Delete all documents which are assigned to the following collection(s)==Usuń wszystkie dokumenty przypisane do następujących kolekcji
+Delete by Solr Query==Usuń według zapytania Solr
+This is the most generic option: select a set of documents using a solr query.==To jest najbardziej ogólna opcja: wybierz zestaw dokumentów za pomocą zapytania Solr.
+Core==Core
+#-----------------------------
+
+#File: IndexExportImportSolr_p.html
+#---------------------------
+"Create Dump"=="Utwórz zrzut"
+"Restore Dump"=="Przywróć zrzut"
+Solr Index Export/Import==Eksport/import indeksu Solr
+Dump and Restore of Solr Index==Zrzut i przywracanie indeksu Solr
+This feature is available only when a local embedded Solr is active.==Ta funkcja jest dostępna tylko, gdy aktywny jest lokalny osadzony Solr.
+(This may take several minutes. Please be patient and wait until the page reloads.)==(Może to potrwać kilka minut. Prosimy o cierpliwość i poczekanie, aż strona zostanie ponownie załadowana.)
+Dump File (full path)==Plik zrzutu (pełna ścieżka)
+Could not create the Solr dump : no embedded Solr is available.==Nie można utworzyć zrzutu Solr: brak dostępnego osadzonego Solr.
+An error occurred while trying to create the Solr dump.==Podczas próby utworzenia zrzutu Solr wystąpił błąd.
+Successfully restored Solr index from dump file!==Pomyślnie przywrócono indeks Solr z pliku zrzutu!
+Could not restore the Solr dump : no embedded Solr is available.==Nie można przywrócić zrzutu Solr: brak dostępnego osadzonego Solr.
+An error occurred while trying to restore the Solr dump.==Podczas próby przywrócenia zrzutu Solr wystąpił błąd.
+#-----------------------------
+
+#File: IndexExport_p.html
+#---------------------------
+"Export"=="Eksportuj"
+Index Export==Eksport indeksu
+Loaded URL Export==Eksport załadowanych adresów URL
+Export Path==Ścieżka eksportu
+URL Filter==Filtr URL
+query==zapytanie
+maximum age (seconds)==maksymalny wiek (sekundy)
+maximum number of records per chunk==maksymalna liczba rekordów na fragment
+if exceeded: several chunks are stored; -1 = unlimited (makes only one chunk)==jeśli przekroczono: przechowywanych jest kilka fragmentów; -1 = bez limitu (tworzy tylko jeden fragment)
+Export Size==Rozmiar eksportu
+full size, all fields:==pełny rozmiar, wszystkie pola:
+minified; only fields sku, date, title, description, text_t==zminimalizowany; tylko pola sku, date, title, description, text_t
+Export Format==Format eksportu
+Full URL List:==Pełna lista adresów URL:
+Plain Text List (URLs only)==Lista tekstowa (tylko adresy URL)
+HTML (URLs with title)==HTML (adresy URL z tytułem)
+Only Domain:==Tylko domena:
+Plain Text List (domains only)==Lista tekstowa (tylko domeny)
+HTML (domains as URLs, no title)==HTML (domeny jako adresy URL, bez tytułu)
+Only Text:==Tylko tekst:
+Fulltext of Search Index Text==Pełny tekst tekstu indeksu wyszukiwania
+Import this file by moving it to DATA/PACKS/load==Zaimportuj ten plik, przenosząc go do DATA/PACKS/load
+#-----------------------------
+
+#File: IndexFederated_p.html
+#---------------------------
+"Set"=="Ustaw"
+Index Sources & Targets==Źródła & cele indeksu
+YaCy supports multiple index storage locations.==YaCy obsługuje wiele lokalizacji przechowywania indeksu.
+As an internal indexing database a deep-embedded multi-core Solr is used and it is possible to attach also a remote Solr.==Jako wewnętrzna baza danych indeksowania używany jest głęboko osadzony wielordzeniowy Solr i możliwe jest podłączenie także zdalnego Solr.
+Solr Search Index==Indeks wyszukiwania Solr
+Lazy Value Initialization==Leniwa inicjalizacja wartości
+If checked, only non-zero values and non-empty strings are written to Solr fields.==Gdy zaznaczone, do pól Solr zapisywane są tylko wartości niezerowe i niepuste ciągi znaków.
+Use deep-embedded local Solr==Użyj głęboko osadzonego lokalnego Solr
+This will write the YaCy-embedded Solr index which is stored within the YaCy DATA directory.==Spowoduje to zapis osadzonego w YaCy indeksu Solr, który jest przechowywany w katalogu DATA YaCy.
+The Solr native search interface is accessible at==Natywny interfejs wyszukiwania Solr jest dostępny pod
+/solr/select?q=*:*&start=0&rows=3&core=collection1==/solr/select?q=*:*&start=0&rows=3&core=collection1
+for the default search index (core: collection1) and at==dla domyślnego indeksu wyszukiwania (rdzeń: collection1) oraz pod
+If you switch off this index, a remote Solr must be activated.==Jeśli wyłączysz ten indeks, musi zostać aktywowany zdalny Solr.
+Use remote Solr server(s)==Użyj zdalnych serwerów 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.==To zewnętrzne Solr może być używane zamiast wewnętrznego Solr. Może być również używane dodatkowo do wewnętrznego Solr, wtedy oba indeksy Solr są dublowane.
+Allow self-signed certificates==Zezwól na certyfikaty samopodpisane
+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 https://user:password@localhost:8984/solr.==Zaznacz to, gdy zdalny serwer Solr jest chroniony hasłem i jest odpytywany przez HTTPS, ale udostępnia tylko certyfikat samopodpisany (nie zweryfikowany przez oficjalny urząd certyfikacji). Adres URL Solr mógłby wyglądać na przykład tak: https://user:password@localhost:8984/solr.
+Solr Hosts==Hosty Solr
+Solr Host Administration Interface==Interfejs administracyjny hostów Solr
+Index Size==Rozmiar indeksu
+Solr URL(s)==Adres(y) URL 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.==Możesz ustawić tutaj jeden lub więcej celów Solr, do których uzyskuje się dostęp jako do sharda. W przypadku kilku celów wymień je, używając ',' (przecinka) jako separatora.
+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).==Zestaw zdalnych celów jest używany jako shardy pełnego indeksu. Część hosta w adresie URL jest używana jako klucz funkcji skrótu, która wybiera jeden z shardów (jeden z Twoich zdalnych serwerów).
+When a search request is made, all servers are accessed synchronously and the result is combined.==Gdy wykonywane jest żądanie wyszukiwania, wszystkie serwery są odpytywane synchronicznie, a wynik jest łączony.
+Sharding Method==Metoda shardingu
+write-enabled (if unchecked, the remote server(s) will only be used as search peers)==z możliwością zapisu (jeśli niezaznaczone, zdalne serwery będą używane tylko jako peery wyszukiwania)
+Web Structure Index==Indeks struktury sieci
+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).==Indeks struktury sieci jest używany do przeglądania hostów (aby odkryć wewnętrzną strukturę plików/folderów), rankingu (liczenie liczby odwołań) oraz wyszukiwania plików (jest około czterdzieści razy więcej linków z załadowanych stron niż w dokumentach głównego indeksu wyszukiwania).
+use citation reference index (lightweight and fast)==użyj indeksu odwołań cytatów (lekki i szybki)
+use webgraph search index (rich information in second Solr core)==użyj indeksu wyszukiwania webgraph (bogate informacje w drugim rdzeniu Solr)
+Peer-to-Peer Operation==Działanie Peer-to-Peer
+The 'RWI' (Reverse Word Index) is necessary for index transmission in distributed mode. For portal or intranet mode this must be switched off.=='RWI' (odwrotny indeks słów) jest niezbędny do transmisji indeksu w trybie rozproszonym. Dla trybu portalu lub intranetu musi być wyłączony.
+support peer-to-peer index transmission (DHT RWI index)==obsługuj transmisję indeksu peer-to-peer (indeks DHT RWI)
+Block known error URLs in DHT==Blokuj znane błędne adresy URL w DHT
+Reject URLs/RWIs with known errors from peers. Disable to opt out.==Odrzucaj adresy URL/RWI ze znanymi błędami od peerów. Wyłącz, aby zrezygnować.
+Retry after (days)==Ponów po (dni)
+for temporary errors; permanent errors stay blocked.==dla błędów tymczasowych; błędy trwałe pozostają zablokowane.
+Permanent error statuses==Trwałe statusy błędów
+comma-separated (default: 404,410,-1; -1=DNS/network errors)==oddzielone przecinkami (domyślnie: 404,410,-1; -1=błędy DNS/sieci)
+#-----------------------------
+
+#File: IndexImportJsonList_p.html
+#---------------------------
+"Import JsonList File"=="Importuj plik JsonList"
+"Stop"=="Zatrzymaj"
+JSON List Index Dump File Import==Import pliku zrzutu indeksu JSON List
+No import thread is running, you can start a new thread here==Żaden wątek importu nie jest uruchomiony, możesz tutaj uruchomić nowy wątek
+JsonList File Selection: select an jsonlist file (which may be gz compressed)==Wybór pliku JsonList: wybierz plik jsonlist (może być skompresowany gz)
+File:==Plik:
+or==lub
+Url:==URL:
+Import Process==Proces importu
+Thread:==Wątek:
+JsonList File:==Plik JsonList:
+Processed:==Przetworzono:
+Speed:==Prędkość:
+Running Time:==Czas działania:
+Remaining Time:==Pozostały czas:
+#-----------------------------
+
+#File: IndexImportMediawiki_p.html
+#---------------------------
+"Uniform Resource Locator"=="Uniform Resource Locator"
+"Dump file path on this YaCy server file system, or any remote URL"=="Ścieżka pliku zrzutu w systemie plików tego serwera YaCy lub dowolny zdalny adres URL"
+"Import MediaWiki Dump"=="Importuj zrzut MediaWiki"
+MediaWiki Dump Import==Import zrzutu MediaWiki
+No import thread is running, you can start a new thread here==Żaden wątek importu nie jest uruchomiony, możesz tutaj uruchomić nowy wątek
+Error : dump URL is malformed.==Błąd: URL zrzutu jest nieprawidłowy.
+MediaWiki Dump File Selection==Wybór pliku zrzutu MediaWiki
+Dumps can be stored in the local file system or on a remote server in XML format and may be compressed in gz or bz2.==Zrzuty mogą być przechowywane w lokalnym systemie plików lub na zdalnym serwerze w formacie XML i mogą być skompresowane w gz lub bz2.
+Dump file path or URL==Ścieżka pliku zrzutu lub URL
+Import only when modified since last import==Importuj tylko, gdy zmodyfikowano od ostatniego importu
+When checked, the dump file is imported only if its last modified date is unknown or is after the last import execution date on this same file==Gdy zaznaczone, plik zrzutu jest importowany tylko, jeśli jego data ostatniej modyfikacji jest nieznana lub jest późniejsza niż data ostatniego wykonania importu tego samego pliku
+When the import is started, the following happens:==Gdy import zostanie uruchomiony, dzieje się następująco:
+The dump is extracted on the fly and wiki entries are translated into Dublin Core data format. The output looks like this:==Zrzut jest wyodrębniany w locie, a wpisy wiki są tłumaczone na format danych Dublin Core. Wynik wygląda następująco:
+Each 10000 wiki records are combined in one output file which is written to /DATA/PACKS/load into a temporary file.==Co 10000 rekordów wiki jest łączonych w jednym pliku wyjściowym, który jest zapisywany w /DATA/PACKS/load do pliku tymczasowego.
+When each of the generated output file is finished, it is renamed to a .xml file==Gdy każdy z wygenerowanych plików wyjściowych jest gotowy, jest zmieniana jego nazwa na plik .xml
+Each time a xml pack file appears in /DATA/PACKS/load, the YaCy indexer fetches the file and indexes the record entries.==Za każdym razem, gdy plik pack xml pojawi się w /DATA/PACKS/load, indekser YaCy pobiera plik i indeksuje wpisy rekordów.
+When a pack file is finished with indexing, it is moved to /DATA/PACKS/loaded==Gdy plik pack zostanie w pełni zindeksowany, jest przenoszony do /DATA/PACKS/loaded
+You can recycle processed pack files by moving them from /DATA/PACKS/loaded to /DATA/PACKS/load==Możesz ponownie wykorzystać przetworzone pliki pack, przenosząc je z /DATA/PACKS/loaded do /DATA/PACKS/load
+Import Process==Proces importu
+Thread:==Wątek:
+started==uruchomiono
+running==działa
+Dump:==Zrzut:
+Processed:==Przetworzono:
+Speed:==Prędkość:
+Running Time:==Czas działania:
+Remaining Time:==Pozostały czas:
+#-----------------------------
+
+#File: IndexImportOAIPMHList_p.html
+#---------------------------
+"Load Selected Sources"=="Załaduj wybrane źródła"
+Source==Źródło
+Import List==Lista importu
+Thread==Wątek
+Processed Chunks==Przetworzone fragmenty
+Imported Records==Zaimportowane rekordy
+Complete at # Records==Ukończono przy # rekordach
+Speed (records/second)==Prędkość (rekordy/sekundę)
+#-----------------------------
+
+#File: IndexImportOAIPMH_p.html
+#---------------------------
+"Import OAI-PMH source"=="Importuj źródło OAI-PMH"
+"import this source"=="importuj to źródło"
+"import from a list"=="importuj z listy"
+OAI-PMH Import==Import OAI-PMH
+Single request import==Import pojedynczego żądania
+This will submit only a single request as given here to a OAI-PMH server and imports records into the index==Spowoduje to wysłanie tylko pojedynczego żądania podanego tutaj do serwera OAI-PMH i zaimportowanie rekordów do indeksu
+Source:==Źródło:
+Processed:==Przetworzono:
+ResumptionToken:==ResumptionToken:
+Import all Records from a server==Importuj wszystkie rekordy z serwera
+Import all records that follow according to resumption elements into index==Importuj do indeksu wszystkie kolejne rekordy zgodnie z elementami wznowienia
+or==lub
+Import started!==Import rozpoczęty!
+#-----------------------------
+
+#File: IndexImportWarc_p.html
+#---------------------------
+"Import Warc File"=="Importuj plik WARC"
+"Stop"=="Zatrzymaj"
+Web Archive File Import==Import pliku archiwum internetowego
+No import thread is running, you can start a new thread here==Żaden wątek importu nie jest uruchomiony, możesz tutaj uruchomić nowy wątek
+Warc File Selection: select an warc file (which may be gz compressed)==Wybór pliku WARC: wybierz plik warc (może być skompresowany gz)
+You can download warc archives for example here==Archiwa warc możesz pobrać na przykład tutaj
+File:==Plik:
+or==lub
+Url:==URL:
+Collection:==Kolekcja:
+Import Process==Proces importu
+Thread:==Wątek:
+Warc File:==Plik WARC:
+Processed:==Przetworzono:
+Speed:==Prędkość:
+Running Time:==Czas działania:
+Remaining Time:==Pozostały czas:
+#-----------------------------
+
+#File: IndexImportZim_p.html
+#---------------------------
+"Import ZIM File"=="Importuj plik ZIM"
+"Stop"=="Zatrzymaj"
+ZIM File Import==Import pliku ZIM
+No import thread is running, you can start a new thread here==Żaden wątek importu nie jest uruchomiony, możesz tutaj uruchomić nowy wątek
+Zim File Selection: select a '.zim' file==Wybór pliku ZIM: wybierz plik '.zim'
+You can download ZIM files for example here==Pliki ZIM możesz pobrać na przykład tutaj
+File:==Plik:
+Collection:==Kolekcja:
+Import Process==Proces importu
+Thread:==Wątek:
+ZIM File:==Plik ZIM:
+Processed:==Przetworzono:
+Speed:==Prędkość:
+Running Time:==Czas działania:
+Remaining Time:==Pozostały czas:
+#-----------------------------
+
+#File: IndexPackDownloader_p.html
+#---------------------------
+YaCy Pack Downloader==Pobieranie pakietów YaCy
+Available Packs==Dostępne pakiety
+Source==Źródło
+Repo ID==ID repozytorium
+File==Plik
+Process==Przetwórz
+#-----------------------------
+
+#File: IndexPackGenerator_p.html
+#---------------------------
+"info"=="Info"
+"Generate Data Pack"=="Wygeneruj pakiet danych"
+YaCy Pack Generator==Generator pakietów YaCy
+Index Pack Generator==Generator pakietów indeksu
+Set a Category (this goes into the filename)==Ustaw kategorię (trafia ona do nazwy pliku)
+mix - a mix of document types, for content from wide web crawls==mix - mieszanka typów dokumentów, dla treści z szerokich crawli sieciowych
+core - technical documentation, operating systems, computer hardware, open source and free software, manuals, protocol standards==core - dokumentacja techniczna, systemy operacyjne, sprzęt komputerowy, oprogramowanie open source i wolne, podręczniki, standardy protokołów
+scroll - non-technical documents: knowledge, encyclopedia, linguistic corpora, dictionaries, translation memories, texts, non-fiction books, historical books==scroll - dokumenty nietechniczne: wiedza, encyklopedia, korpusy lingwistyczne, słowniki, pamięci tłumaczeń, teksty, książki popularnonaukowe, książki historyczne
+regula - non-technical standards: industry standards, laws, rules, compliance==regula - standardy nietechniczne: standardy branżowe, prawa, reguły, zgodność
+gem - research, papers, university publications, science==gem - badania, artykuły, publikacje uniwersyteckie, nauka
+fiction - fictional documents: movies, stories, series, books (fiction, science-fiction)==fiction - dokumenty fikcyjne: filmy, opowiadania, seriale, książki (beletrystyka, science-fiction)
+map - geological data, geolocation-data, earth/world information==map - dane geologiczne, dane geolokalizacyjne, informacje o Ziemi/świecie
+echo – micro-content (tweets, toots, short headlines, SMS corpora), podcasts, radio archives, audio lectures, spoken-word datasets, logs, incidents, telemetry==echo – mikrotreści (tweety, wpisy, krótkie nagłówki, korpusy SMS), podcasty, archiwa radiowe, wykłady audio, zbiory spoken-word, logi, incydenty, telemetria
+spirit – related to non-textual data (possibly only metadata): art, music, game assets, creative-commons media (non-text culture loot)==spirit – związane z danymi nietekstowymi (być może tylko metadane): sztuka, muzyka, zasoby gier, media creative-commons (nietekstowe zdobycze kultury)
+vault - sensitive data: secrets, leaks, non-public documents, security advisories==vault - dane wrażliwe: sekrety, wycieki, dokumenty niepubliczne, biuletyny bezpieczeństwa
+Index Collection==Kolekcja indeksu
+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.==nazwa kolekcji jest używana jako część nazwy pliku, aby opisać treść. Wyjątek: jeśli kolekcją jest "user", możesz nazwać treść za pomocą sluga.
+Slug - describe the content (only if collection is "user")==Slug - opisz treść (tylko jeśli kolekcja to "user")
+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"==To stanie się częścią nazwy pliku, spacje zostaną zastąpione przez "-"; nie może być puste; powinno kończyć się opisem języka, np. "-en"
+URL Filter==Filtr URL
+Search Query -==Zapytanie wyszukiwania -
+Export Format==Format eksportu
+This JSON is an elasticsearch index dump format and can be bulk-imported to elasticsearch. Here is an example for opensearch, using docker:==Ten JSON to format zrzutu indeksu Elasticsearch i można go zbiorczo zaimportować do Elasticsearch. Oto przykład dla OpenSearch, z użyciem docker:
+Start docker container of opensearch:==Uruchom kontener docker OpenSearch:
+Unblock index creation:==Odblokuj tworzenie indeksu:
+Create the search index:==Utwórz indeks wyszukiwania:
+Bulk-upload the index file:==Prześlij zbiorczo plik indeksu:
+Make a search, get 10 results, search in fields text_t, title, description with boosts:==Wykonaj wyszukiwanie, pobierz 10 wyników, szukaj w polach text_t, title, description z boostami:
+JSON (Rich and full-text Elasticsearch data, one document per line in one flat JSON file)==JSON (bogate i pełnotekstowe dane Elasticsearch, jeden dokument w wierszu w jednym płaskim pliku JSON)
+XML (Rich and full-text Solr data, one document per line in one large xml file,==XML (bogate i pełnotekstowe dane Solr, jeden dokument w wierszu w jednym dużym pliku XML,
+can be processed with shell tools, can be imported with DATA/PACKS/load/)==można przetwarzać za pomocą narzędzi powłoki, można importować za pomocą DATA/PACKS/load/)
+XML (RSS)==XML (RSS)
+Import this file by moving it to DATA/PACKS/load==Zaimportuj ten plik, przenosząc go do DATA/PACKS/load
+Pack List==Lista pakietów
+Pack==Pakiet
+Process==Przetwórz
+Size (KB)==Rozmiar (KB)
+#-----------------------------
+
+#File: IndexPackManager_p.html
+#---------------------------
+YaCy Pack Manager==Menedżer pakietów YaCy
+Pack Folders==Foldery pakietów
+Packs: Hold List==Pakiety: lista wstrzymanych
+Size (KB)==Rozmiar (KB)
+Process==Przetwórz
+Packs: Load List==Pakiety: lista ładowania
+Packs: Loaded List==Pakiety: lista załadowanych
+#-----------------------------
+
+#File: IndexReIndexMonitor_p.html
+#---------------------------
+"refresh page"=="odśwież stronę"
+"start reindex job now"=="Uruchom zadanie reindeksacji teraz"
+"stop reindexing"=="Zatrzymaj reindeksację"
+"Simulate"=="Symuluj"
+"Check only how many documents would be selected for recrawl"=="Sprawdź tylko, ile dokumentów zostałoby wybranych do ponownego crawlowania"
+"Set defaults"=="Ustaw wartości domyślne"
+"Reset to default values"=="Przywróć wartości domyślne"
+"start recrawl job now"=="Uruchom zadanie ponownego crawlowania teraz"
+"update"=="aktualizuj"
+"stop recrawl job"=="Zatrzymaj zadanie ponownego crawlowania"
+"Automatically refreshing"=="Automatyczne odświeżanie"
+"An error occurred while trying to refresh automatically"=="Wystąpił błąd podczas próby automatycznego odświeżenia"
+"URLs added to the crawler queue for recrawl"=="Adresy URL dodane do kolejki crawlera do ponownego crawlowania"
+"URLs rejected for some reason by the crawl stacker or the crawler queue. Please check the logs for more details."=="Adresy URL zostały z jakiegoś powodu odrzucone przez stacker crawla lub kolejkę crawlera. Sprawdź logi, aby uzyskać więcej szczegółów."
+Field Re-Indexing==Ponowne indeksowanie pól
+In case that an index schema of the embedded/local index has changed, all documents with missing field entries can be indexed again with a reindex job.==W przypadku zmiany schematu indeksu osadzonego/lokalnego indeksu wszystkie dokumenty z brakującymi wpisami pól można ponownie zindeksować za pomocą zadania reindeksacji.
+Documents in current queue==Dokumenty w bieżącej kolejce
+Documents processed==Przetworzone dokumenty
+current select query==bieżące zapytanie SELECT
+Remaining field list==Lista pozostałych pól
+reindex documents containing these fields:==reindeksuj dokumenty zawierające te pola:
+Field==Pole
+count==liczba
+Re-Crawl Index Documents==Ponowne crawlowanie dokumentów indeksu
+Searches the local index and selects documents to add to the crawler (recrawl the document).==Przeszukuje lokalny indeks i wybiera dokumenty do dodania do crawlera (ponowne crawlowanie dokumentu).
+This runs transparent as background job. Documents are added to the crawler only if no other crawls are active==Działa to przezroczyście jako zadanie w tle. Dokumenty są dodawane do crawlera tylko wtedy, gdy nie są aktywne żadne inne crawle
+and are added in small chunks.==i są dodawane w małych fragmentach.
+Re-crawl works only with an embedded local Solr index!==Ponowne crawlowanie działa tylko z osadzonym lokalnym indeksem Solr!
+Solr query==Zapytanie Solr
+document(s)==dokument(y)
+selected for recrawl.==wybrano do ponownego crawlowania.
+An error occurred when trying to run the selection query.==Wystąpił błąd podczas próby wykonania zapytania wyboru.
+The Solr index is not connected. Please restart your peer.==Indeks Solr nie jest podłączony. Uruchom ponownie swojego peera.
+Include failed URLs==Uwzględnij nieudane adresy URL
+Delete URLs==Usuń adresy URL
+to re-crawl documents selected with the given query.==aby ponownie zcrawlować dokumenty wybrane podanym zapytaniem.
+Re-Crawl Query Details==Szczegóły zapytania ponownego crawlowania
+Documents to process==Dokumenty do przetworzenia
+Current Query==Bieżące zapytanie
+Edit Solr Query==Edytuj zapytanie Solr
+Include failed urls==Uwzględnij nieudane adresy url
+Delete urls==Usuń adresy url
+Last==Ostatnie
+Re-Crawl job report==Raport zadania ponownego crawlowania
+The job terminated early due to an error when requesting the Solr index.==Zadanie zakończyło się przedwcześnie z powodu błędu podczas odpytywania indeksu Solr.
+Status==Status
+Running==Działa
+Shutdown in progress==Trwa zamykanie
+Terminated==Zakończono
+Query==Zapytanie
+Start time==Czas rozpoczęcia
+End time==Czas zakończenia
+Recrawled URLs==Ponownie zcrawlowane adresy URL
+Rejected URLs==Odrzucone adresy URL
+Malformed URLs==Nieprawidłowe adresy URL
+Refresh==Odśwież
+#-----------------------------
+
+#File: IndexSchema_p.html
+#---------------------------
+"API"=="API"
+"active"=="aktywne"
+"disabled"=="wyłączone"
+"Required for proper operation"=="Wymagane do prawidłowego działania"
+"Set"=="Ustaw"
+"reset selection to default"=="Przywróć domyślny wybór"
+"reindex Solr"=="Ponownie zindeksuj Solr"
+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.==Schemat Solr można tutaj również pobrać jako XML. Kliknij ikonę API, aby zobaczyć XML. Wystarczy skopiować ten XML do solr/conf/schema.xml, aby skonfigurować Solr.
+Solr Schema Editor==Edytor schematu Solr
+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==Jeśli używasz niestandardowego schematu Solr, możesz wprowadzić inną nazwę pola w kolumnie 'Custom Solr Field Name' dla domyślnej nazwy atrybutu YaCy
+Select a core:==Wybierz rdzeń:
+Active==Aktywne
+Attribute==Atrybut
+Custom Solr Field Name==Niestandardowa nazwa pola Solr
+Comment==Komentarz
+show active==pokaż aktywne
+show all available==pokaż wszystkie dostępne
+show disabled==pokaż wyłączone
+Reindex documents==Ponownie zindeksuj dokumenty
+If you unselected some fields, old documents in the index still contain the unselected fields.==Jeśli odznaczyłeś niektóre pola, stare dokumenty w indeksie nadal zawierają odznaczone pola.
+To physically remove them from the index you need to reindex the documents.==Aby fizycznie usunąć je z indeksu, musisz ponownie zindeksować dokumenty.
+Here you can reindex all documents with inactive fields.==Tutaj możesz ponownie zindeksować wszystkie dokumenty z nieaktywnymi polami.
+#-----------------------------
+
+#File: IndexShare_p.html
+#---------------------------
+"Set"=="Ustaw"
+Index Sharing==Współdzielenie indeksu
+Index:==Indeks:
+distribute ==rozpowszechniaj
+receive==odbieraj
+receive grant default:==domyślne przyznanie odbioru:
+for each remote peer==dla każdego zdalnego peera
+links/minute ==linki/minutę
+words/minute==słowa/minutę
+#-----------------------------
+
+#File: LLMSelection_p.html
+#---------------------------
+"info"=="Info"
+LLM Selection==Wybór LLM
+Here you can pick models from an LLM model service to select them as production model.==Tutaj możesz wybrać modele z usługi modeli LLM, aby ustawić je jako model roboczy.
+In the "Production Models Matrix" you can then assign each selected model a function inside YaCy==W "Macierzy modeli produkcyjnych" możesz następnie przypisać każdemu wybranemu modelowi funkcję w YaCy
+Service Selection==Wybór usługi
+service==usługa
+Ollama==Ollama
+LMStudio==LMStudio
+OpenAI==OpenAI
+Open Router==Open Router
+This makes a preset to the Hoststub value==Ustawia to wartość wstępną dla Hoststub
+hoststub==hoststub
+you can probably leave this to the default value==prawdopodobnie możesz pozostawić wartość domyślną
+api_key==api_key
+(not required for Ollama or LMStudio)==(niewymagane dla Ollama lub LMStudio)
+Services==Usługi
+num_ctx is the context window (in tokens) of the inference service — a per-service==num_ctx to okno kontekstu (w tokenach) usługi wnioskowania — wartość zależna od usługi
+value, shared by all models on that endpoint. It is the total budget for prompt plus==wartość, współdzielona przez wszystkie modele na tym punkcie końcowym. Jest to całkowity budżet dla promptu plus
+generated output; YaCy uses it to size prompts so they leave room to generate. The row for the==wygenerowany wynik; YaCy używa go do dobierania rozmiaru promptów, aby pozostawiały miejsce na generowanie. Wiersz dla
+service selected above appears here automatically with its stored (or default) window.==usługi wybranej powyżej pojawia się tutaj automatycznie z zapisanym (lub domyślnym) oknem.
+This value is advisory: set it to match the window your backend actually serves==Ta wartość jest orientacyjna: ustaw ją tak, aby odpowiadała oknu, które faktycznie udostępnia Twój backend
+Context Length setting). YaCy does not enforce it on the backend.==ustawienie Context Length). YaCy nie wymusza go w backendzie.
+num_ctx==num_ctx
+Model Downloads==Pobieranie modeli
+Production Models Matrix==Macierz modeli produkcyjnych
+model==model
+max_tokens==max_tokens
+search-answers==search-answers
+This model creates answers for search requests==Ten model tworzy odpowiedzi na żądania wyszukiwania
+chat==chat
+This model is used in the chat interface and as default for the RAG proxy==Ten model jest używany w interfejsie czatu i jako domyślny dla proxy RAG
+translation==translation
+This model can be used to make translations of the web UI==Ten model może być używany do tworzenia tłumaczeń interfejsu webowego
+classification==classification
+This model is used to classify prompts to find out what they demand==Ten model służy do klasyfikowania promptów w celu ustalenia, czego wymagają
+search-query==search-query
+This model produces search queries to YaCy search from prompts in RAG or chat==Ten model tworzy zapytania wyszukiwania do wyszukiwarki YaCy z promptów w RAG lub czacie
+qa-pairs==qa-pairs
+This model can be used to produce query-answer pairs which enhance search from chat prompts==Ten model może tworzyć pary pytanie-odpowiedź, które ulepszają wyszukiwanie na podstawie promptów czatu
+tldr-shortener==tldr-shortener
+This model is used to make summaries from web content==Ten model służy do tworzenia streszczeń z treści internetowych
+log-report==log-report
+This model evaluates YaCy runtime logs and creates self-enhancement reports==Ten model analizuje logi działania YaCy i tworzy raporty samodoskonalenia
+thinking==thinking
+we detect thinking only to be able to suppress thinking. thinking is not used in YaCy==wykrywamy thinking tylko po to, aby móc je stłumić. thinking nie jest używane w YaCy
+tooling==tooling
+tooling is required for agentic abilities.==tooling jest wymagany dla zdolności agentowych.
+vision==vision
+this enables image recognition in the chat==włącza rozpoznawanie obrazów w czacie
+format==format
+this is required for classification==jest to wymagane do klasyfikacji
+Actions==Akcje
+#-----------------------------
+
+#File: Load_MediawikiWiki.html
+#---------------------------
+"Get content of Wiki: crawl wiki pages"=="Pobierz treść wiki: crawluj strony wiki"
+Integration in MediaWiki==Integracja z MediaWiki
+It is possible to insert wiki pages into the YaCy index using a web crawl on that pages.==Możliwe jest dodanie stron wiki do indeksu YaCy za pomocą crawla sieciowego tych stron.
+This guide helps you to crawl your wiki and to insert a search window in your wiki pages.==Ten przewodnik pomoże Ci zcrawlować Twoje wiki i wstawić okno wyszukiwania na stronach wiki.
+Retrieval of Wiki Pages==Pobieranie stron wiki
+The following form is a simplified crawl start that uses the proper values for a wiki crawl.==Poniższy formularz to uproszczony start crawla, który używa odpowiednich wartości dla crawla wiki.
+Just insert the front page URL of your wiki. After you started the crawl you may want to get back==Po prostu wstaw adres URL strony głównej swojego wiki. Po uruchomieniu crawla możesz chcieć wrócić
+to this page to read the integration hints below.==na tę stronę, aby przeczytać poniższe wskazówki dotyczące integracji.
+URL of the wiki main page This is a crawl start point==URL strony głównej wiki To jest punkt startowy crawla
+Inserting a Search Window to MediaWiki==Wstawianie okna wyszukiwania do MediaWiki
+To integrate a search window into a MediaWiki, you must insert some code into the wiki template.==Aby zintegrować okno wyszukiwania z MediaWiki, musisz wstawić trochę kodu do szablonu wiki.
+There are several templates that can be used for MediaWiki, but in this guide we consider that==Istnieje kilka szablonów, których można użyć dla MediaWiki, ale w tym przewodniku zakładamy, że
+you are using the default template, 'MonoBook.php':==używasz domyślnego szablonu, 'MonoBook.php':
+open skins/MonoBook.php==otwórz skins/MonoBook.php
+find the line where the default search window is displayed, there are the following statements:==znajdź wiersz, w którym wyświetlane jest domyślne okno wyszukiwania, znajdują się tam następujące instrukcje:
+Remove that code or set it in comments using '<!--' and '-->'==Usuń ten kod lub umieść go w komentarzu za pomocą '<!--' i '-->'
+Insert the following code:==Wstaw następujący kod:
+Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Sprawdź wszystkie wystąpienia statycznych adresów IP podanych w fragmencie kodu i zastąp je własnym adresem IP lub nazwą hosta
+You may want to change the default text elements in the code snippet==Możesz zmienić domyślne elementy tekstowe w fragmencie kodu
+To see all options for the search widget, look at the more generic description of search widgets at==Aby zobaczyć wszystkie opcje widżetu wyszukiwania, zapoznaj się z bardziej ogólnym opisem widżetów wyszukiwania na
+#-----------------------------
+
+#File: Load_PHPBB3.html
+#---------------------------
+"Get content of phpBB3: crawl forum pages"=="Pobierz treść phpBB3: crawluj strony forum"
+Integration in phpBB3==Integracja z phpBB3
+It is possible to insert forum pages into the YaCy index using a database import of forum postings.==Możliwe jest dodanie stron forum do indeksu YaCy za pomocą importu z bazy danych wpisów forum.
+This guide helps you to insert a search window in your phpBB3 pages.==Ten przewodnik pomoże Ci wstawić okno wyszukiwania na stronach phpBB3.
+Retrieval of phpBB3 Forum Pages using a database export==Pobieranie stron forum phpBB3 za pomocą eksportu bazy danych
+Forum posting contain rich information about the topic, the time, the subject and the author.==Wpisy na forum zawierają bogate informacje o temacie, czasie, tytule i autorze.
+This information is in an bad annotated form in web pages delivered by the forum software.==Informacje te znajdują się w źle opisanej formie na stronach internetowych dostarczanych przez oprogramowanie forum.
+It is much better to retrieve the forum postings directly from the database. This will cause that YaCy is able to offer nice navigation features after searches.==Znacznie lepiej jest pobierać wpisy forum bezpośrednio z bazy danych. Dzięki temu YaCy będzie mogło oferować przydatne funkcje nawigacyjne po wyszukiwaniach.
+Retrieval of phpBB3 Forum Pages using a web crawl==Pobieranie stron forum phpBB3 za pomocą crawla sieciowego
+The following form is a simplified crawl start that uses the proper values for a phpbb3 forum crawl.==Poniższy formularz to uproszczony start crawla, który używa odpowiednich wartości dla crawla forum phpBB3.
+Just insert the front page URL of your forum. After you started the crawl you may want to get back==Po prostu wstaw adres URL strony głównej swojego forum. Po uruchomieniu crawla możesz chcieć wrócić
+to this page to read the integration hints below.==na tę stronę, aby przeczytać poniższe wskazówki dotyczące integracji.
+URL of the phpBB3 forum main page This is a crawl start point==URL strony głównej forum phpBB3 To jest punkt startowy crawla
+Inserting a Search Window to phpBB3==Wstawianie okna wyszukiwania do phpBB3
+To integrate a search window into phpBB3, you must insert some code into a forum template.==Aby zintegrować okno wyszukiwania z phpBB3, musisz wstawić trochę kodu do szablonu forum.
+There are several templates that can be used for phpBB3, but in this guide we consider that==Istnieje kilka szablonów, których można użyć dla phpBB3, ale w tym przewodniku zakładamy, że
+you are using the default template, 'prosilver':==używasz domyślnego szablonu, 'prosilver':
+open styles/prosilver/template/overall_header.html==otwórz styles/prosilver/template/overall_header.html
+Insert the following code right behind the div tag:==Wstaw następujący kod bezpośrednio za tagiem div:
+Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Sprawdź wszystkie wystąpienia statycznych adresów IP podanych w fragmencie kodu i zastąp je własnym adresem IP lub nazwą hosta
+You may want to change the default text elements in the code snippet==Możesz zmienić domyślne elementy tekstowe w fragmencie kodu
+To see all options for the search widget, look at the more generic description of search widgets at==Aby zobaczyć wszystkie opcje widżetu wyszukiwania, zapoznaj się z bardziej ogólnym opisem widżetów wyszukiwania na
+#-----------------------------
+
+#File: Load_RSS_p.html
+#---------------------------
+"Show RSS Items"=="Pokaż elementy RSS"
+"Add All Items to Index (full content of url)"=="Dodaj wszystkie elementy do indeksu (pełna treść adresu URL)"
+"Remove Selected Feeds from Scheduler"=="Usuń wybrane kanały z harmonogramu"
+"Remove All Feeds from Scheduler"=="Usuń wszystkie kanały z harmonogramu"
+"Remove Selected Feeds from Feed List"=="Usuń wybrane kanały z listy kanałów"
+"Remove All Feeds from Feed List"=="Usuń wszystkie kanały z listy kanałów"
+"Add Selected Feeds to Scheduler"=="Dodaj wybrane kanały do harmonogramu"
+"Add Selected Items to Index (full content of url)"=="Dodaj wybrane elementy do indeksu (pełna treść adresu URL)"
+Loading of RSS Feeds==Wczytywanie kanałów RSS
+RSS feeds can be loaded into the YaCy search index.==Kanały RSS można wczytać do indeksu wyszukiwania YaCy.
+This does not load the rss file as such into the index but all the messages inside the RSS feeds as individual documents.==Nie wczytuje to samego pliku RSS do indeksu, ale wszystkie wiadomości wewnątrz kanałów RSS jako pojedyncze dokumenty.
+URL of the RSS feed==URL kanału RSS
+Preview==Podgląd
+Indexing==Indeksowanie
+Available after successful loading of rss feed in preview==Dostępne po pomyślnym wczytaniu kanału RSS w podglądzie
+once==raz
+load this feed once now==wczytaj ten kanał raz teraz
+scheduled==zaplanowane
+repeat the feed loading every==powtarzaj wczytywanie kanału co
+minutes==minuty
+hours==godziny
+days==dni
+automatically.==automatycznie.
+collection==kolekcja
+List of Scheduled RSS Feed Load Targets==Lista zaplanowanych celów wczytywania kanałów RSS
+Title==Tytuł
+URL/Referrer==URL/Referrer
+Recording==Rejestrowanie
+Last Load==Ostatnie wczytanie
+Next Load==Następne wczytanie
+Last Count==Ostatnia liczba
+All Count==Łączna liczba
+Avg. Update/Day==Śr. aktualizacja/dzień
+Available RSS Feed List==Lista dostępnych kanałów RSS
+Author==Autor
+Description==Opis
+Language==Język
+Date==Data
+Time-to-live==Time-to-live
+Docs==Dokumenty
+State==Stan
+URL==URL
+new==nowy
+enqueued==w kolejce
+indexed==zindeksowane
+Attached media==Załączone multimedia
+#-----------------------------
+
+#File: LogReports_p.html
+#---------------------------
+"delete this report"=="Usuń ten raport"
+Log Reports==Raporty logów
+run report now==uruchom raport teraz
+Generating report from the current-hour log lines — the LLM call can take a while …==Generowanie raportu z wierszy logów bieżącej godziny — wywołanie LLM może chwilę potrwać …
+seconds elapsed==sekund minęło
+No log lines were found for the current hour.==Nie znaleziono wierszy logów dla bieżącej godziny.
+No production model is configured for the log-report role. Assign one in the==Dla roli log-report nie skonfigurowano modelu produkcyjnego. Przypisz jeden w
+No production model is configured for the log-report role. Log report generation stays inactive until a model is assigned in the==Dla roli log-report nie skonfigurowano modelu produkcyjnego. Generowanie raportów logów pozostaje nieaktywne, dopóki model nie zostanie przypisany w
+Feeds:==Kanały:
+JSON==JSON
+RSS==RSS
+The report directory does not exist yet. Reports will appear here after the scheduler has generated the first completed hourly report.==Katalog raportów jeszcze nie istnieje. Raporty pojawią się tutaj po wygenerowaniu przez harmonogram pierwszego ukończonego raportu godzinowego.
+×==×
+Report generation in progress …==Trwa generowanie raportu …
+the report below is completed live while the model is writing==poniższy raport jest uzupełniany na żywo, podczas gdy model pisze
+No generated log reports were found.==Nie znaleziono wygenerowanych raportów logów.
+#-----------------------------
+
+#File: MessageSend_p.html
+#---------------------------
+"Enter"=="Wyślij wiadomość"
+"Preview"=="Podgląd"
+Send message==Wyślij wiadomość
+The peer does not respond. It was now removed from the peer-list.==Peer nie odpowiada. Został teraz usunięty z listy peerów.
+Your Message==Twoja wiadomość
+Subject:==Temat:
+Text:==Treść:
+The peer is alive but cannot respond. Sorry.==Peer jest aktywny, ale nie może odpowiedzieć. Przepraszamy.
+Preview message==Podgląd wiadomości
+The message has not been sent yet!==Wiadomość nie została jeszcze wysłana!
+Message:==Wiadomość:
+Your message has been sent. The target peer responded:==Twoja wiadomość została wysłana. Docelowy peer odpowiedział:
+The target peer is alive but did not receive your message. Sorry.==Docelowy peer jest aktywny, ale nie otrzymał Twojej wiadomości. Przepraszamy.
+Here is a copy of your message, so you can copy it to save it for further attempts:==Oto kopia Twojej wiadomości, którą możesz skopiować i zapisać na potrzeby kolejnych prób:
+#-----------------------------
+
+#File: Messages_p.html
+#---------------------------
+"RSS"=="RSS"
+"Compose"=="Utwórz"
+Messages==Wiadomości
+Compose Message==Utwórz wiadomość
+Send message to peer==Wyślij wiadomość do peera
+Date==Data
+From==Od
+To==Do
+Subject==Temat
+Action==Akcja
+view==wyświetl
+reply==odpowiedz
+delete==usuń
+From:==Od:
+To:==Do:
+Date:==Data:
+Subject:==Temat:
+Message:==Wiadomość:
+Action:==Akcja:
+inbox==skrzynka odbiorcza
+#-----------------------------
+
+#File: Network.html
+#---------------------------
+"API"=="API"
+"Search"=="Szukaj"
+"https supported"=="obsługa HTTPS"
+"Type: Junior | Contact: passive"=="Typ: Junior | Kontakt: pasywny"
+"Junior passive"=="Junior pasywny"
+"Type: Junior | Contact: direct"=="Typ: Junior | Kontakt: bezpośredni"
+"Junior direct"=="Junior bezpośredni"
+"Type: Junior | Contact: offline"=="Typ: Junior | Kontakt: offline"
+"Junior offline"=="Junior offline"
+"Type: Senior | Contact: passive"=="Typ: Senior | Kontakt: pasywny"
+"senior passive"=="senior pasywny"
+"Type: Senior | Contact: direct"=="Typ: Senior | Kontakt: bezpośredni"
+"Senior direct"=="Senior bezpośredni"
+"Type: Senior | Contact: offline"=="Typ: Senior | Kontakt: offline"
+"Senior offline"=="Senior offline"
+"Type: Principal | Contact: passive | Seed download: possible"=="Typ: Principal | Kontakt: pasywny | Pobieranie seed: możliwe"
+"Principal passive"=="Principal pasywny"
+"Type: Principal | Contact: direct | Seed download: possible"=="Typ: Principal | Kontakt: bezpośredni | Pobieranie seed: możliwe"
+"Principal active"=="Principal aktywny"
+"Type: Principal | Contact: offline | Seed download: ?"=="Typ: Principal | Kontakt: offline | Pobieranie seed: ?"
+"Principal offline"=="Principal offline"
+"Accept Crawl: no"=="Akceptuj crawl: nie"
+"no crawl"=="brak crawla"
+"Accept Crawl: yes"=="Akceptuj crawl: tak"
+"crawl possible"=="crawl możliwy"
+"no DHT receive"=="brak odbioru DHT"
+"DHT Receive: yes"=="Odbiór DHT: tak"
+"DHT receive enabled"=="Odbiór DHT włączony"
+"Profile updated"=="Profil zaktualizowany"
+"Wiki updated"=="Wiki zaktualizowane"
+"Blog updated"=="Blog zaktualizowany"
+"Crawl"=="Crawl"
+"The YaCy Network"=="Sieć YaCy"
+"Type: Virgin"=="Typ: Virgin"
+"Virgin"=="Virgin"
+"Type: Junior"=="Typ: Junior"
+"Junior"=="Junior"
+"Type: Senior"=="Typ: Senior"
+"Senior"=="Senior"
+"Type: Principal"=="Typ: Principal"
+"Principal"=="Principal"
+"Crawl enabled"=="Crawl włączony"
+"DHT Receive: no"=="Odbiór DHT: nie"
+"DHT Receive enabled"=="Odbiór DHT włączony"
+"add Peer"=="Dodaj peera"
+"contact current peer from this peer"=="skontaktuj się z bieżącym peerem z tego peera"
+YaCy Network==Sieć YaCy
+Network Overview==Przegląd sieci
+Active Principal and Senior Peers==Aktywne peery principal i senior
+Passive Senior Peers==Pasywne peery senior
+Junior (fragment) Peers==Peery junior (fragment)
+Network History==Historia sieci
+The information that is presented on this page can also be retrieved as XML.==Informacje przedstawione na tej stronie można również pobrać w formacie XML.
+Click the API icon to see the XML.==Kliknij ikonę API, aby zobaczyć plik XML.
+Manually contacting Peer==Ręczne kontaktowanie się z peerem
+Search for a peername (RegExp allowed)==Szukaj nazwy peera (dozwolone wyrażenia regularne)
+Hash==Skrót
+Name==Nazwa
+Info==Info
+Release==Wersja
+Age==Wiek
+con/h ==poł./h
+PPM==PPM
+QPH==QPH
+Last Seen==Ostatnio widziany
+UTC Offset==UTC Przesunięcie
+Uptime==Czas działania
+Links==Linki
+RWIs==RWI
+URLs for Remote Crawl==Adresy URL do zdalnego crawla
+Sent DHT Word Chunks==Wysłane fragmenty słów DHT
+Sent URLs==Wysłane adresy URL
+Received DHT Word Chunks==Odebrane fragmenty słów DHT
+Received URLs==Odebrane adresy URL
+Location==Lokalizacja
+user agent ==User-Agent
+send Message/ show Profile/ edit Wiki/ browse Blog==wyślij wiadomość (M)/ pokaż profil (P)/ edytuj wiki (W)/ przeglądaj blog (B)
+Network==Sieć
+Online Peers==Peery online
+Number of Documents==Liczba dokumentów
+Indexing Speed: Pages Per Minute (PPM)==Prędkość indeksowania: strony na minutę (PPM)
+Query Frequency: Queries Per Hour (QPH)==Częstotliwość zapytań: zapytania na godzinę (QPH)
+Last Hour==Ostatnia godzina
+Today==Dzisiaj
+Last Week==Ostatni tydzień
+Last Month==Ostatni miesiąc
+Now==Teraz
+Active Senior==Aktywne peery senior
+Passive Senior==Pasywne peery senior
+Junior (fragment)==Junior (fragment)
+This Peer==Ten peer
+Your Peer:==Twój peer:
+Version==Wersja
+UTC==UTC
+URLs for Remote Crawl==Adresy URL do zdalnego crawla
+Sent DHT Word Chunks==Wysłane fragmenty słów DHT
+Received DHT Word Chunks==Odebrane fragmenty słów DHT
+Known Seeds==Znane seedy
+Connects per hour==Połączenia na godzinę
+Indexing PPM==Indeksowanie PPM
+QPH (public local)==QPH (publiczne lokalne)
+QPH (remote)==QPH (zdalne)
+dark green font==ciemnozielona czcionka
+senior/principal peers==peery senior/principal
+light green font==jasnozielona czcionka
+passive peers==pasywne peery
+pink font==różowa czcionka
+junior peers==peery junior
+red point==czerwony punkt
+this peer==ten peer
+grey waves==szare fale
+crawling activity==aktywność crawlowania
+green radiation==zielone promieniowanie
+strong query activity==silna aktywność zapytań
+red lines==czerwone linie
+DHT-out==DHT wychodzące
+green lines==zielone linie
+DHT-in==DHT przychodzące
+Peer Hash==Skrót peera
+Peer IP==IP peera
+Peer Port==Port peera
+Contacting current peer from another:==Kontaktowanie się z bieżącym peerem z innego:
+ip:port==IP:Port
+Count of Connected Senior Peers in the last two days, scale = 1h==Liczba połączonych peerów senior w ciągu ostatnich dwóch dni, skala = 1h
+Count of all Active Peers Per Day in the last week, scale = 1d==Liczba wszystkich aktywnych peerów na dzień w ostatnim tygodniu, skala = 1d
+Count of all Active Peers Per Week in the last 30d, scale = 7d==Liczba wszystkich aktywnych peerów na tydzień w ostatnich 30 dniach, skala = 7d
+Count of all Active Peers Per Month in the last 365d, scale = 30d==Liczba wszystkich aktywnych peerów na miesiąc w ostatnich 365 dniach, skala = 30d
+#-----------------------------
+
+#File: News.html
+#---------------------------
+"Incoming News"=="Przychodzące aktualności"
+"Processed News"=="Przetworzone aktualności"
+"Outgoing News"=="Wychodzące aktualności"
+"Published News"=="Opublikowane aktualności"
+Overview==Przegląd
+Incoming News==Przychodzące aktualności
+Processed News==Przetworzone aktualności
+Outgoing News==Wychodzące aktualności
+Published News==Opublikowane aktualności
+This is the YaCyNews system (currently under testing).==To jest system YaCyNews (obecnie w fazie testów).
+The news service is controlled by several entry points:==Usługa aktualności jest sterowana przez kilka punktów wejścia:
+A crawl start with activated remote indexing will automatically create a news entry.==Start crawla z włączonym zdalnym indeksowaniem automatycznie utworzy wpis aktualności.
+Other peers may use this information to prevent double-crawls from the same start point.==Inne peery mogą wykorzystać te informacje, aby uniknąć podwójnych crawli z tego samego punktu startowego.
+A table with recently started crawls is presented on the Index Create - page==Tabela z niedawno uruchomionymi crawlami jest wyświetlana na stronie Tworzenie indeksu
+A change in the personal profile will create a news entry. You can see recently made changes of==Zmiana w profilu osobistym utworzy wpis aktualności. Możesz zobaczyć niedawno wprowadzone zmiany
+profile entries on the Network page, where that profile change is visualized with a '*' beside the 'P' (profile) - selector.==wpisów profilu na stronie Sieć, gdzie ta zmiana profilu jest oznaczona '*' obok selektora 'P' (profil).
+Publishing of added or modified translation for the user interface. Other peers may include it in their local translation list.==Publikowanie dodanego lub zmodyfikowanego tłumaczenia interfejsu użytkownika. Inne peery mogą uwzględnić je na swojej lokalnej liście tłumaczeń.
+More news services will follow.==Więcej usług aktualności pojawi się wkrótce.
+Above you can see four menus:==Powyżej widzisz cztery menu:
+Only these news will be used to display specific news services as explained above.==Tylko te aktualności będą używane do wyświetlania określonych usług aktualności, jak wyjaśniono powyżej.
+You can process these news with a button on the page to remove their appearance from the IndexCreate and Network page==Możesz przetworzyć te aktualności za pomocą przycisku na stronie, aby usunąć ich wyświetlanie ze stron Tworzenie indeksu i Sieć
+you can stop the broadcast if you want.==możesz zatrzymać rozgłaszanie, jeśli chcesz.
+Originator==Inicjator
+Created==Utworzono
+Category==Kategoria
+Received==Odebrano
+Distributed==Rozdystrybuowano
+Attributes==Atrybuty
+#-----------------------------
+
+#File: PerformanceConcurrency_p.html
+#---------------------------
+Performance of Concurrent Processes==Wydajność procesów współbieżnych
+serverProcessor Objects==Obiekty serverProcessor
+Thread==Wątek
+Queue Size Current==Rozmiar kolejki bieżący
+Queue Size Maximum==Rozmiar kolejki maksymalny
+Executors: Current Number of Threads==Executory: bieżąca liczba wątków
+Concurrency: Maximum Number of Threads==Współbieżność: maksymalna liczba wątków
+Children==Procesy potomne
+Average Block Time Reading==Średni czas blokowania odczyt
+Average Exec Time==Średni czas wykonania
+Average Block Time Writing==Średni czas blokowania zapis
+Total Cycles==Łączna liczba cykli
+Full Description==Pełny opis
+#-----------------------------
+
+#File: PerformanceMemory_p.html
+#---------------------------
+"PerformanceGraph"=="Wykres wydajności"
+Performance Settings for Memory==Ustawienia wydajności pamięci
+refresh graph==odśwież wykres
+simulate short memory status==symuluj status niskiej pamięci
+use Standard Memory Strategy==użyj standardowej strategii pamięci
+Memory Usage==Wykorzystanie pamięci
+Type==Typ
+After Startup==Po uruchomieniu
+After Initializations before GC==Po inicjalizacji przed GC
+After Initializations after GC==Po inicjalizacji po GC
+Now==Teraz
+before GC==przed GC
+after GC==po GC
+Description==Opis
+Max==Maks
+maximum memory that the JVM will attempt to use==maksymalna pamięć, którą JVM spróbuje wykorzystać
+Available==Dostępne
+total available memory including free for the JVM within maximum==całkowita dostępna pamięć, w tym wolna dla JVM w ramach maksimum
+Total==Łącznie
+total memory taken from the OS==całkowita pamięć pobrana z systemu operacyjnego
+Free==Wolne
+free memory in the JVM within total amount==wolna pamięć w JVM w ramach całkowitej ilości
+Used==Zajęte
+used memory in the JVM within total amount==wykorzystana pamięć w JVM w ramach całkowitej ilości
+Table RAM Index==Indeks RAM tabeli
+Table==Tabela
+Size==Rozmiar
+Key==Klucz
+Value==Wartość
+Chunk Size==Rozmiar fragmentu
+Used Memory==Wykorzystana pamięć
+Object Index Caches==Pamięci podręczne indeksu obiektów
+Needed Memory==Potrzebna pamięć
+Other Caching Structures==Inne struktury buforujące
+Hit==Trafienie
+Miss==Chybienie
+Insert==Wstaw
+Delete==Usuń
+DNSCache/Hit==DNSCache/Trafienie
+(ARC)==(ARC)
+DNSCache/Miss==DNSCache/Chybienie
+DNSNoCache==DNSNoCache
+HashBlacklistedCache==HashBlacklistedCache
+Search Event Cache==Pamięć podręczna zdarzeń wyszukiwania
+#-----------------------------
+
+#File: PerformanceQueues_p.html
+#---------------------------
+"Submit New Delay Values"=="Zapisz nowe wartości opóźnienia"
+"Re-set to default"=="Przywróć wartości domyślne"
+"When the system load average is over the specified value, that type of remote search request is not used to fill search results."=="Gdy średnie obciążenie systemu przekracza określoną wartość, ten typ zdalnego żądania wyszukiwania nie jest używany do wypełniania wyników wyszukiwania."
+"Reverse Word Index"=="Odwrotny indeks słów"
+"Submit New Values"=="Zapisz nowe wartości"
+"Enter New Cache Size"=="Wprowadź nowy rozmiar pamięci podręcznej"
+"Enter new Threadpool Configuration"=="Wprowadź nową konfigurację puli wątków"
+"Total maximum number of simultaneously open connections in the pool"=="Łączna maksymalna liczba jednocześnie otwartych połączeń w puli"
+"Number of connections currently being used to execute requests."=="Liczba połączeń aktualnie używanych do wykonywania żądań."
+"Number of reusable idle connections"=="Liczba wielokrotnego użytku bezczynnych połączeń"
+"Number of connection requests being blocked awaiting a free connection"=="Liczba żądań połączeń zablokowanych w oczekiwaniu na wolne połączenie"
+Performance Settings of Queues and Processes==Ustawienia wydajności kolejek i procesów
+Scheduled tasks overview and waiting time settings:==Przegląd zaplanowanych zadań i ustawienia czasu oczekiwania:
+Thread==Wątek
+Queue Size==Rozmiar kolejki
+Total Block Time==Łączny czas blokowania
+Total Sleep Time==Łączny czas uśpienia
+Total Exec Time==Łączny czas wykonania
+Total Cycles==Łączna liczba cykli
+Idle Cycles==Cykle bezczynne
+Busy Cycles==Cykle aktywne
+Short Mem Cycles==Cykle z niską pamięcią
+High CPU Cycles==Cykle wysokiego CPU
+Sleep Time per Cycle (millis)==Czas uśpienia na cykl (milisekundy)
+Exec Time per Busy-Cycle (millis)==Czas wykonania na cykl aktywny (milisekundy)
+Memory Use per Busy-Cycle (kbytes)==Wykorzystanie pamięci na cykl aktywny (KB)
+Delay between idle loops==Opóźnienie między pętlami bezczynnymi
+Delay between busy loops==Opóźnienie między pętlami aktywnymi
+Minimum of Required Memory==Minimum wymaganej pamięci
+Maximum of System-Load==Maksimum obciążenia systemu
+Full Description==Pełny opis
+milliseconds==milisekundy
+kbytes==KB
+load==obciążenie
+Changes take effect immediately==Zmiany są stosowane natychmiast
+Remote search requests:==Zdalne żądania wyszukiwania:
+Type==Typ
+Maximum system load==Maksymalne obciążenie systemu
+RWI==RWI
+Search requests performed on remote peers distributed Reverse Word Index==Żądania wyszukiwania wykonywane na rozproszonym odwrotnym indeksie słów zdalnych peerów
+Solr==Solr
+Search requests performed on remote peers Solr indexes==Żądania wyszukiwania wykonywane na indeksach Solr zdalnych peerów
+Cache Settings:==Ustawienia pamięci podręcznej:
+RAM Cache==Pamięć podręczna RAM
+Description==Opis
+Words in RAM cache: (Size in KBytes)==Słowa w pamięci podręcznej RAM: (rozmiar w KB)
+This is the current size of the word caches.==To jest bieżący rozmiar pamięci podręcznej słów.
+The indexing cache speeds up the indexing process, the DHT cache holds indexes temporary for approval.==Pamięć podręczna indeksowania przyspiesza proces indeksowania, pamięć podręczna DHT tymczasowo przechowuje indeksy do zatwierdzenia.
+The maximum of this caches can be set below.==Maksimum tej pamięci podręcznej można ustawić poniżej.
+Maximum URLs currently assigned to one cached word:==Maksymalna liczba adresów URL aktualnie przypisanych do jednego słowa w pamięci podręcznej:
+This is the maximum size of URLs assigned to a single word cache entry.==To jest maksymalna liczba adresów URL przypisanych do pojedynczego wpisu słowa w pamięci podręcznej.
+If this is a big number, it shows that the caching works efficiently.==Jeśli jest to duża liczba, oznacza to, że buforowanie działa wydajnie.
+Maximum age of a word:==Maksymalny wiek słowa:
+This is the maximum age of a word in an index in minutes.==To jest maksymalny wiek słowa w indeksie w minutach.
+Minimum age of a word:==Minimalny wiek słowa:
+This is the minimum age of a word in an index in minutes.==To jest minimalny wiek słowa w indeksie w minutach.
+Maximum number of words in cache:==Maksymalna liczba słów w pamięci podręcznej:
+This is is the number of word indexes that shall be held in the==To jest liczba indeksów słów, które mają być przechowywane w
+ram cache during indexing. When YaCy is shut down, this cache must be==pamięci podręcznej RAM podczas indeksowania. Gdy YaCy jest wyłączane, ta pamięć podręczna musi zostać
+flushed to disc; this may last some minutes.==zapisana na dysk; może to potrwać kilka minut.
+Thread Pool Settings:==Ustawienia puli wątków:
+Thread Pool==Pula wątków
+maximum Active==maks. aktywnych
+current Active==obecnie aktywnych
+Outgoing connections pools settings :==Ustawienia pul połączeń wychodzących:
+Connection Pool==Pula połączeń
+Total maximum==Łączne maksimum
+Current statistics==Bieżące statystyki
+Active==Aktywne
+Idle==Bezczynne
+Pending==Oczekujące
+General==Ogólne
+Remote Solr servers==Zdalne serwery Solr
+#-----------------------------
+
+#File: PerformanceSearch_p.html
+#---------------------------
+"Search event picture"=="Obraz zdarzenia wyszukiwania"
+Search Sequence Timing==Pomiar czasu sekwencji wyszukiwania
+Timing results of latest search request:==Wyniki pomiaru czasu ostatniego żądania wyszukiwania:
+Query==Zapytanie
+Event==Zdarzenie
+Comment==Komentarz
+Time==Czas
+Delta (ms)==Delta (ms)
+Duration (ms)==Czas trwania (ms)
+Result-Count==Liczba wyników
+The network picture below shows how the latest search query was solved by asking corresponding peers in the DHT:==Poniższy obraz sieci pokazuje, jak ostatnie zapytanie wyszukiwania zostało rozwiązane poprzez odpytanie odpowiednich peerów w DHT:
+red -> request list alive==czerwony -> lista żądań aktywna
+green -> request has terminated==zielony -> żądanie zostało zakończone
+grey -> the search target hash order position(s) (more targets if a dht partition is used)==szary -> pozycja(e) kolejności skrótu celu wyszukiwania (więcej celów, jeśli używana jest partycja DHT)
+#-----------------------------
+
+#File: Performance_p.html
+#---------------------------
+"PerformanceGraph"=="Wykres wydajności"
+"Java Virtual Machine"=="Java Virtual Machine"
+"Set"=="Ustaw"
+"Restart now"=="Uruchom ponownie teraz"
+"Amount of space (in Mebibytes) that should be kept free as steady state"=="Ilość miejsca (w mebibajtach), która powinna być utrzymywana jako wolna w stanie ustalonym"
+"Mebibyte"=="Mebibajt"
+"Amount of space (in Megabytes) that should at least be kept free as hard limit"=="Ilość miejsca (w megabajtach), która powinna być co najmniej utrzymywana jako wolna jako twardy limit"
+"Distributed Hash Table"=="Rozproszona tablica skrótów"
+"Free space disk autoregulation info"=="Informacja o autoregulacji wolnego miejsca na dysku"
+"Maximum amount of space (in Mebibytes) that should be used as steady state"=="Maksymalna ilość miejsca (w mebibajtach), która ma być używana jako stan ustalony"
+"Maximum amount of space (in Mebibytes) that should be used as hard limit"=="Maksymalna ilość miejsca (w mebibajtach), która ma być używana jako twardy limit"
+"Used space disk autoregulation info"=="Informacja o autoregulacji zajętego miejsca na dysku"
+"Random Access Memory"=="Pamięć o dostępie swobodnym"
+"Proper state info"=="Informacja o stanie prawidłowym"
+"Exhausted state info"=="Informacja o stanie wyczerpania"
+"Reset state"=="Zresetuj stan"
+"Manually reset to 'proper' state"=="Ręcznie przywróć stan 'prawidłowy'"
+"Amount of memory (in Mebibytes) that should at least be free for proper operation"=="Ilość pamięci (w mebibajtach), która powinna być co najmniej wolna do prawidłowego działania"
+"Save"=="Zapisz"
+"Enter New Parameters"=="Wprowadź nowe parametry"
+Performance Settings==Ustawienia wydajności
+refresh graph==odśwież wykres
+Memory Settings==Ustawienia pamięci
+Memory reserved for JVM==Pamięć zarezerwowana dla JVM
+MByte==MB
+Accepted change. This will take effect after restart of YaCy.==Zmiana zaakceptowana. Zostanie ona zastosowana po ponownym uruchomieniu YaCy.
+Restart now==Uruchom ponownie teraz
+Resource Observer==Obserwator zasobów
+Free space disk==Wolne miejsce na dysku
+Steady-state minimum==Minimum stanu ustalonego
+MiB. Disable crawls when free space is below.==MiB. Wyłącz skanowania, gdy wolnego miejsca jest mniej.
+Absolute minimum==Minimum bezwzględne
+MiB. Disable DHT-in when free space is below.==MiB. Wyłącz DHT-in, gdy wolnego miejsca jest mniej.
+Autoregulate==Autoreguluj
+when absolute minimum limit has been reached.==gdy osiągnięto bezwzględny limit minimalny.
+The autoregulation task performs the following sequence of operations, stopping once free space disk is over the steady-state value :==Zadanie autoregulacji wykonuje następującą sekwencję operacji, zatrzymując się, gdy wolne miejsce na dysku przekroczy wartość stanu ustalonego:
+delete old releases==usuń stare wersje
+delete logs==usuń logi
+delete robots.txt table==usuń tabelę robots.txt
+delete news==usuń aktualności
+clear HTCACHE==wyczyść HTCACHE
+clear citations==wyczyść cytaty
+throw away large crawl queues==odrzuć duże kolejki skanowania
+cut away too large RWIs==przytnij zbyt duże RWI
+Used space disk==Zajęte miejsce na dysku
+Steady-state maximum==Maksimum stanu ustalonego
+MiB. Disable crawls when used space is over.==MiB. Wyłącz skanowania, gdy zajęte miejsce jest większe.
+Absolute maximum==Maksimum bezwzględne
+MiB. Disable DHT-in when used space is over.==MiB. Wyłącz DHT-in, gdy zajęte miejsce jest większe.
+when absolute maximum limit has been reached.==gdy osiągnięto bezwzględny limit maksymalny.
+The autoregulation task performs the following sequence of operations, stopping once used space disk is below the steady-state value:==Zadanie autoregulacji wykonuje następującą sekwencję operacji, zatrzymując się, gdy zajęte miejsce na dysku spadnie poniżej wartości stanu ustalonego:
+RAM==RAM
+Memory state :==Stan pamięci:
+proper==prawidłowy
+Enough memory is available for proper operation.==Dostępna jest wystarczająca ilość pamięci do prawidłowego działania.
+exhausted==wyczerpany
+Within the last eleven minutes, at least four operations have tried to request memory that would have reduced free space within the minimum required.==W ciągu ostatnich jedenastu minut co najmniej cztery operacje próbowały zażądać pamięci, co zmniejszyłoby wolne miejsce poniżej wymaganego minimum.
+Minimum required==Wymagane minimum
+MiB free space. Disable DHT-in below.==MiB wolnego miejsca. Wyłącz DHT-in poniżej tej wartości.
+Online Caution Settings:==Ustawienia opóźnienia przy dostępie online:
+This is the time that the crawler idles when the proxy is accessed, or a local or remote search is done.==To jest czas, przez który crawler pozostaje bezczynny, gdy używane jest proxy albo wykonywane jest wyszukiwanie lokalne lub zdalne.
+The delay is extended by this time each time the proxy is accessed afterwards.==Opóźnienie jest wydłużane o ten czas przy każdym kolejnym dostępie do proxy.
+This shall improve performance of the affected process (proxy or search).==Ma to poprawić wydajność danego procesu (proxy lub wyszukiwania).
+seconds since last proxy/local-search/remote-search access.)==sekund od ostatniego dostępu proxy/wyszukiwania lokalnego/wyszukiwania zdalnego.)
+Online Caution Case==Typ dostępu online
+indexer delay (milliseconds) after case occurrence==opóźnienie indeksera (milisekundy) po wystąpieniu przypadku
+Proxy:==Proxy:
+Local Search:==Wyszukiwanie lokalne:
+Remote Search:==Wyszukiwanie zdalne:
+Changes take effect immediately==Zmiany są stosowane natychmiast
+#-----------------------------
+
+#File: ProxyIndexingMonitor_p.html
+#---------------------------
+"Set proxy profile"=="Zapisz profil proxy"
+Indexing with Proxy==Indeksowanie za pomocą proxy
+YaCy can be used to 'scrape' content from pages that pass the integrated caching HTTP proxy.==YaCy może być używane do 'scrapowania' treści ze stron przechodzących przez zintegrowane buforujące proxy HTTP.
+When scraping proxy pages then no personal or protected page is indexed;==Podczas scrapowania stron proxy żadna osobista ani chroniona strona nie jest indeksowana;
+those pages are detected by properties in the HTTP header (like Cookie-Use, or HTTP Authorization)==strony te są wykrywane na podstawie właściwości w nagłówku HTTP (jak użycie plików cookie lub autoryzacja HTTP)
+or by POST-Parameters (either in URL or as HTTP protocol) and automatically excluded from indexing.==lub na podstawie parametrów POST (w adresie URL lub w protokole HTTP) i automatycznie wykluczane z indeksowania.
+Proxy Auto Config:==Automatyczna konfiguracja proxy:
+this controls the proxy auto configuration script for browsers at http://localhost:8090/autoconfig.pac==steruje to skryptem automatycznej konfiguracji proxy dla przeglądarek pod http://localhost:8090/autoconfig.pac
+whether the proxy should only be used for .yacy-Domains==czy proxy powinno być używane tylko dla domen .yacy
+Proxy pre-fetch setting:==Ustawienie wstępnego pobierania przez proxy:
+this is an automated html page loading procedure that takes actual proxy-requested==to zautomatyzowana procedura ładowania stron HTML, która wykorzystuje aktualnie żądane przez proxy
+URLs as crawling start points for crawling.==adresy URL jako punkty startowe crawlowania.
+Prefetch Depth==Głębokość wstępnego pobierania
+A prefetch of 0 means no prefetch; a prefetch of 1 means to prefetch all==Wstępne pobieranie 0 oznacza brak wstępnego pobierania; wstępne pobieranie 1 oznacza pobranie wszystkich
+embedded URLs, but since embedded image links are loaded by the browser==osadzonych adresów URL, ale ponieważ osadzone linki do obrazów są ładowane przez przeglądarkę
+this means that only embedded href-anchors are prefetched additionally.==oznacza to, że dodatkowo wstępnie pobierane są tylko osadzone kotwice href.
+Store to Cache==Zapisz w pamięci podręcznej
+It is almost always recommended to set this on. The only exception is that you have another caching proxy running as secondary proxy and YaCy is configured to used that proxy in proxy-proxy - mode.==Prawie zawsze zaleca się włączenie tej opcji. Jedynym wyjątkiem jest sytuacja, gdy masz uruchomione inne buforujące proxy jako proxy dodatkowe, a YaCy jest skonfigurowane do używania tego proxy w trybie proxy-proxy.
+Do Local Text-Indexing==Wykonuj lokalne indeksowanie tekstu
+If this is on, all pages (except private content) that passes the proxy is indexed.==Jeśli to jest włączone, wszystkie strony (z wyjątkiem treści prywatnych) przechodzące przez proxy są indeksowane.
+Do Local Media-Indexing==Wykonuj lokalne indeksowanie multimediów
+This is the same as for Local Text-Indexing, but switches only the indexing of media content on.==To jest to samo co dla lokalnego indeksowania tekstu, ale włącza tylko indeksowanie treści multimedialnych.
+Do Remote Indexing==Wykonuj indeksowanie zdalne
+If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Jeśli zaznaczone, crawler skontaktuje się z innymi peerami i użyje ich jako zdalnych indekserów dla Twojego crawla.
+If you need your crawling results locally, you should switch this off.==Jeśli potrzebujesz wyników crawlowania lokalnie, powinieneś to wyłączyć.
+Only senior and principal peers can initiate or receive remote crawls.==Tylko peery typu senior i principal mogą inicjować lub odbierać zdalne crawle.
+Please note that this setting only take effect for a prefetch depth greater than 0.==Pamiętaj, że to ustawienie działa tylko dla głębokości wstępnego pobierania większej niż 0.
+Proxy generally==Proxy ogólnie
+Path==Ścieżka
+The path where the pages are stored (max. length 300)==Ścieżka, w której przechowywane są strony (maks. długość 300)
+Size==Rozmiar
+The size in MB of the cache.==Rozmiar pamięci podręcznej w MB.
+The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.==Plik DATA/PLASMADB/crawlProfiles0.db jest brakujący lub uszkodzony.
+Please delete that file and restart.==Usuń ten plik i uruchom ponownie.
+Caching is now==Buforowanie jest teraz
+off==wyłączone
+on==włączone
+Local Text Indexing is now==Lokalne indeksowanie tekstu jest teraz
+Local Media Indexing is now==Lokalne indeksowanie multimediów jest teraz
+Remote Indexing is now==Indeksowanie zdalne jest teraz
+Changes will take effect after restart only.==Zmiany zostaną zastosowane dopiero po ponownym uruchomieniu.
+You can see a snapshot of recently indexed pages==Możesz zobaczyć migawkę niedawno zindeksowanych stron
+#-----------------------------
+
+#File: QuickCrawlLink_p.html
+#---------------------------
+Quickly adding Bookmarks:==Szybkie dodawanie zakładek:
+Simply drag and drop the link shown below to your Browsers Toolbar/Link-Bar.==Po prostu przeciągnij i upuść pokazany poniżej link na pasek narzędzi/pasek linków przeglądarki.
+If you click on it while browsing, the currently viewed website will be inserted into the YaCy crawling queue for indexing.==Jeśli klikniesz go podczas przeglądania, aktualnie oglądana strona zostanie dodana do kolejki crawlowania YaCy w celu zindeksowania.
+Crawl with YaCy==Crawluj z YaCy
+Title:==Tytuł:
+Link:==link:
+Status:==Status:
+URL successfully added to Crawler Queue==Adres URL pomyślnie dodany do kolejki crawlera
+Malformed URL==Nieprawidłowy adres URL
+#-----------------------------
+
+#File: RAGConfig_p.html
+#---------------------------
+Wire RAG Retrieval==Skonfiguruj pobieranie RAG
+Tune how YaCy constructs prompts and search queries for Retrieval Augmented Generation.==Dostosuj, w jaki sposób YaCy tworzy prompty i zapytania wyszukiwania dla Retrieval Augmented Generation.
+System Prompt==Prompt systemowy
+This is sent as the system message for chats. Keep it concise and friendly.==Jest to wysyłane jako wiadomość systemowa dla czatów. Zachowaj ją zwięzłą i przyjazną.
+User Retrieval Prefix==Prefiks pobierania użytkownika
+Prepended before attached search snippets in RAG mode to tell the LLM how to use them.==Umieszczany przed dołączonymi fragmentami wyszukiwania w trybie RAG, aby poinformować LLM, jak ich używać.
+Query Generator Prefix==Prefiks generatora zapytań
+Prompt given to the model that generates search queries from user requests.==Prompt przekazywany modelowi, który generuje zapytania wyszukiwania z żądań użytkownika.
+Search Document Max Length==Maksymalna długość dokumentu wyszukiwania
+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.==Maksymalna długość znaków wirtualnego dokumentu wyszukiwania używanego jako załącznik RAG oraz jako wynik narzędzia `search`. Treść przekraczająca ten limit jest obcinana. Domyślnie: 30000.
+Save RAG Settings==Zapisz ustawienia RAG
+#-----------------------------
+
+#File: RankingRWI_p.html
+#---------------------------
+"info"=="Info"
+"Set as Default Ranking"=="Ustaw jako ranking domyślny"
+"Re-Set to Built-In Ranking"=="Przywróć wbudowany ranking"
+RWI Ranking Configuration==Konfiguracja rankingu RWI
+The document ranking influences the order of the search result entities.==Ranking dokumentów wpływa na kolejność jednostek wyników wyszukiwania.
+A ranking is computed using a number of attributes from the documents that match with the search word.==Ranking jest obliczany na podstawie szeregu atrybutów dokumentów pasujących do wyszukiwanego słowa.
+The attributes are first normalized over all search results and then the normalized attribute is multiplied with the ranking coefficient computed from this list.==Atrybuty są najpierw normalizowane w obrębie wszystkich wyników wyszukiwania, a następnie znormalizowany atrybut jest mnożony przez współczynnik rankingu obliczony z tej listy.
+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.==Współczynnik rankingu rośnie wykładniczo wraz z poziomami rankingu podanymi w poniższej tabeli. Jeśli zwiększysz pojedynczą wartość o jeden, siła parametru się podwaja.
+Pre-Ranking==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.==Istnieją dwa etapy rankingu: najpierw wszystkie wyniki są rankingowane za pomocą pre-rankingu, a następnie z powstałej listy dokumenty są rankingowane ponownie za pomocą post-rankingu.
+The two stages are separated because they need statistical information from the result of the pre-ranking.==Te dwa etapy są rozdzielone, ponieważ wymagają informacji statystycznych z wyniku pre-rankingu.
+Post-Ranking==Post-ranking
+#-----------------------------
+
+#File: RankingSolr_p.html
+#---------------------------
+"Set Boost Function"=="Ustaw funkcję Boost"
+"Re-Set to default"=="Przywróć wartości domyślne"
+"Set Boost Query"=="Ustaw zapytanie Boost"
+"Set Filter Query"=="Ustaw zapytanie filtra"
+"Set Field Boosts"=="Ustaw wzmocnienia pól"
+Solr Ranking Configuration==Konfiguracja rankingu Solr
+These are ranking attributes for Solr. This ranking applies for internal and remote (P2P or shard) Solr access.==To są atrybuty rankingu dla Solr. Ten ranking dotyczy wewnętrznego i zdalnego (P2P lub shard) dostępu do Solr.
+Select a profile:==Wybierz profil:
+Boost Function==Funkcja Boost
+A Boost Function can combine numeric values from the result document to produce a number which is multiplied with the score value from the query result.==Funkcja Boost może łączyć wartości liczbowe z dokumentu wynikowego, aby uzyskać liczbę, która jest mnożona przez wartość wyniku z rezultatu zapytania.
+Example: to order by date, use "recip(ms(NOW,last_modified),3.16e-11,1,1)", to order by crawldepth, use "div(100,add(crawldepth_i,1))".==Przykład: aby sortować według daty, użyj "recip(ms(NOW,last_modified),3.16e-11,1,1)", aby sortować według głębokości crawla, użyj "div(100,add(crawldepth_i,1))".
+Boost Query==Zapytanie Boost
+The Boost Query is attached to every query. Use this to statically boost specific content in the index.==Zapytanie Boost jest dołączane do każdego zapytania. Użyj tego, aby statycznie wzmocnić określoną treść w indeksie.
+Example: "fuzzy_signature_unique_b:true^100000.0f" means that documents, identified as 'double' are ranked very bad and appended to the end of all results (because the unique are ranked high).==Przykład: "fuzzy_signature_unique_b:true^100000.0f" oznacza, że dokumenty zidentyfikowane jako 'duplikaty' są rankingowane bardzo nisko i dołączane na koniec wszystkich wyników (ponieważ unikalne są rankingowane wysoko).
+Filter Query==Zapytanie filtra
+The Filter Query is attached to every query. Use this to statically add a selection criteria to reduce the set of results.==Zapytanie filtra jest dołączane do każdego zapytania. Użyj tego, aby statycznie dodać kryterium wyboru i zmniejszyć zestaw wyników.
+Example: "http_unique_b:true AND www_unique_b:true" will filter out all results where urls appear also with/without http(s) and/or with/without 'www.' prefix.==Przykład: "http_unique_b:true AND www_unique_b:true" odfiltruje wszystkie wyniki, w których adresy URL występują również z/bez http(s) i/lub z/bez prefiksu 'www.'.
+Solr Boosts==Wzmocnienia Solr
+field not in local index (boost has no effect)==pole nie znajduje się w lokalnym indeksie (boost nie ma efektu)
+#-----------------------------
+
+#File: RegexTest.html
+#---------------------------
+Regex Test==Test wyrażenia regularnego
+Test String==Ciąg testowy
+Regular Expression==Wyrażenie regularne
+Result==Wynik
+no match==brak dopasowania
+match==dopasowanie
+#-----------------------------
+
+#File: RemoteCrawl_p.html
+#---------------------------
+"Save"=="Zapisz"
+Remote Crawler==Zdalny crawler
+The remote crawler is a process that requests urls from other peers.==Zdalny crawler to proces, który żąda adresów URL od innych peerów.
+Peers offer remote-crawl urls if the flag 'Do Remote Indexing'==Peery oferują adresy URL do zdalnego crawla, jeśli flaga 'Wykonuj indeksowanie zdalne'
+is switched on when a crawl is started.==jest włączona podczas uruchamiania crawla.
+Remote Crawler Configuration==Konfiguracja zdalnego crawlera
+Your peer cannot accept remote crawls because you need senior or principal peer status for that!==Twój peer nie może akceptować zdalnych crawli, ponieważ wymaga to statusu peera senior lub principal!
+Accept Remote Crawl Requests==Akceptuj żądania zdalnego crawla
+Perform web indexing upon request of another peer.==Wykonuj indeksowanie sieci na żądanie innego peera.
+Load with a maximum of==Ładuj z maksimum
+pages per minute==stron na minutę
+Peers offering remote crawl URLs==Peery oferujące adresy URL do zdalnego crawla
+If the remote crawl option is switched on, then this peer will load URLs from the following remote peers:==Jeśli opcja zdalnego crawla jest włączona, to ten peer będzie ładować adresy URL od następujących zdalnych peerów:
+Name==Nazwa
+URLs for Remote Crawl==Adresy URL do zdalnego crawla
+Release==Wersja
+PPM==PPM
+QPH==QPH
+Last Seen==Ostatnio widziany
+UTC Offset==UTC Przesunięcie
+Uptime==Czas działania
+Links==Linki
+RWIs==RWI
+Age==Wiek
+#-----------------------------
+
+#File: SearchAccessRate_p.html
+#---------------------------
+"Submit"=="Zapisz"
+"Set defaults"=="Ustaw wartości domyślne"
+"Reset to defaults settings"=="Przywróć ustawienia domyślne"
+limitations==ograniczenia
+Local Search access rate limitations==Ograniczenia częstotliwości dostępu do wyszukiwania lokalnego
+You can configure here limitations on access rate to this peer search interface by unauthenticated users and users without extended search right==Tutaj możesz skonfigurować ograniczenia częstotliwości dostępu do interfejsu wyszukiwania tego peera dla nieuwierzytelnionych użytkowników oraz użytkowników bez rozszerzonego prawa wyszukiwania
+YaCy search==Wyszukiwanie YaCy
+Access rate limitations to this peer search interface.==Ograniczenia częstotliwości dostępu do interfejsu wyszukiwania tego peera.
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the search is blocked.==Gdy użytkownik z ograniczonymi uprawnieniami (nieuwierzytelniony lub bez rozszerzonego prawa wyszukiwania) przekroczy limit, wyszukiwanie zostaje zablokowane.
+Max searches in 3s==Maks. wyszukiwań w 3 s
+Max searches in 1mn==Maks. wyszukiwań w 1 min
+Max searches in 10mn==Maks. wyszukiwań w 10 min
+Peer-to-peer search==Wyszukiwanie peer-to-peer
+Access rate limitations to the peer-to-peer search mode.==Ograniczenia częstotliwości dostępu do trybu wyszukiwania peer-to-peer.
+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.==Gdy użytkownik z ograniczonymi uprawnieniami (nieuwierzytelniony lub bez rozszerzonego prawa wyszukiwania) przekroczy limit, zakres wyszukiwania zostaje ograniczony tylko do indeksu tego lokalnego peera.
+Max searches in 10mn==Maks. wyszukiwań w 10 min
+Peer-to-peer search with JavaScript results resorting==Wyszukiwanie peer-to-peer z ponownym sortowaniem wyników przez JavaScript
+Access rate limitations to the peer-to-peer search mode with browser-side JavaScript results resorting enabled==Ograniczenia częstotliwości dostępu do trybu wyszukiwania peer-to-peer z włączonym ponownym sortowaniem wyników przez JavaScript po stronie przeglądarki
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, results resorting becomes only applicable on demand, server-side.==Gdy użytkownik z ograniczonymi uprawnieniami (nieuwierzytelniony lub bez rozszerzonego prawa wyszukiwania) przekroczy limit, ponowne sortowanie wyników staje się dostępne tylko na żądanie, po stronie serwera.
+Remote snippet load==Ładowanie zdalnego podglądu
+Limitations on snippet loading from remote websites.==Ograniczenia ładowania podglądów ze zdalnych stron internetowych.
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the snippets fetch strategy falls back to 'CACHEONLY'==Gdy użytkownik z ograniczonymi uprawnieniami (nieuwierzytelniony lub bez rozszerzonego prawa wyszukiwania) przekroczy limit, strategia pobierania podglądów zostaje zmieniona na 'CACHEONLY'
+Max searches in 3s==Maks. wyszukiwań w 3 s
+Changes will take effect immediately.==Zmiany zostaną zastosowane natychmiast.
+#-----------------------------
+
+#File: ServerScannerList.html
+#---------------------------
+"Add Selected Servers to Crawler"=="Dodaj wybrane serwery do crawlera"
+Network Scanner Monitor==Monitor skanera sieci
+The following servers can be searched:==Można przeszukać następujące serwery:
+Available server within the given IP range==Dostępne serwery w podanym zakresie adresów IP
+Protocol==Protokół
+IP==IP
+URL==URL
+Access==Dostęp
+Process==Przetwórz
+inaccessible==niedostępne
+empty==puste
+granted==przyznano
+denied==odmówiono
+not in index==brak w indeksie
+indexed==zindeksowane
+#-----------------------------
+
+#File: SettingsAck_p.html
+#---------------------------
+Settings Receipt:==Potwierdzenie ustawień:
+No information has been submitted==Nie przesłano żadnych informacji
+Nothing changed.==Nic nie zostało zmienione.
+Error with submitted information.==Błąd w przesłanych informacjach.
+The user name must be given.==Nazwa użytkownika musi zostać podana.
+Your request cannot be processed. Nothing changed.==Twojego żądania nie można przetworzyć. Nic nie zostało zmienione.
+The password redundancy check failed. You have probably mistyped your password.==Sprawdzenie zgodności hasła nie powiodło się. Prawdopodobnie błędnie wpisałeś hasło.
+Shutting down. Application will terminate after working off all crawling tasks.==Zamykanie. Aplikacja zakończy działanie po wykonaniu wszystkich zadań crawlowania.
+Your administration account setting has been made.==Ustawienia konta administratora zostały zapisane.
+Your proxy access setting has been changed.==Twoje ustawienia dostępu do proxy zostały zmienione.
+Your proxy account check has been disabled.==Sprawdzanie konta proxy zostało wyłączone.
+The new proxy IP filter is set to==Nowy filtr IP proxy jest ustawiony na
+The proxy port is:==Port proxy to:
+Port rebinding will be done in a few seconds.==Ponowne przypisanie portu zostanie wykonane za kilka sekund.
+Your proxy access setting has been changed.==Ustawienia dostępu do proxy zostały zmienione.
+If you open any public web page through the proxy, you must log-in.==Jeśli otworzysz jakąkolwiek publiczną stronę internetową przez proxy, musisz się zalogować.
+Port rebinding will be done in a view seconds.==Ponowne przypisanie portu zostanie wykonane za kilka sekund.
+Auto pop-up of the Status page is now disabled==Automatyczne wyskakujące okno strony statusu jest teraz wyłączone
+Auto pop-up of the Status page is now enabled==Automatyczne wyskakujące okno strony statusu jest teraz włączone
+The Peer Name is:==Nazwa peera to:
+Your static Ip(or DynDns) is:==Twoje statyczne IP (lub DynDns) to:
+Your public port is:==Twój port publiczny to:
+Seed Settings changed.==Ustawienia seed zmienione.
+You are now a principal peer.==Jesteś teraz peerem principal.
+Seed Settings changed, but something is wrong.==Ustawienia seed zostały zmienione, ale coś jest nie tak.
+Seed Uploading was deactivated automatically.==Przesyłanie seed zostało automatycznie wyłączone.
+Please return to the settings page and modify the data.==Wróć do strony ustawień i zmodyfikuj dane.
+The remote-proxy setting has been changed==Ustawienia zdalnego proxy zostały zmienione
+The new setting is effective immediately, you don't need to re-start.==Nowe ustawienie działa natychmiast, nie musisz uruchamiać ponownie.
+The submitted peer name is already used by another peer. Please choose a different name. The Peer name has not been changed.==Przesłana nazwa peera jest już używana przez innego peera. Wybierz inną nazwę. Nazwa peera nie została zmieniona.
+Your Peer Language is:==Język Twojego peera to:
+The submitted peer name is not well-formed. Please choose a different name. The Peer name has not been changed.==Przesłana nazwa peera jest nieprawidłowa. Wybierz inną nazwę. Nazwa peera nie została zmieniona.
+Peer names must not contain characters other than (a-z, A-Z, 0-9, '-', '_') and must not be longer than 80 characters.==Nazwy peerów nie mogą zawierać znaków innych niż (a-z, A-Z, 0-9, '-', '_') i nie mogą być dłuższe niż 80 znaków.
+Seed Upload method was changed successfully.==Metoda przesyłania seed została pomyślnie zmieniona.
+Seed Upload Method:==Metoda przesyłania seed:
+Seed File URL:==URL pliku seed:
+Your proxy networking settings have been changed.==Twoje ustawienia sieciowe proxy zostały zmienione.
+Transparent Proxy Support is:==Obsługa przezroczystego proxy jest:
+Always Fresh is:==Always Fresh jest:
+Send via header is:==Wysyłanie nagłówka Via jest:
+Send X-Forwarded-For header is:==Wysyłanie nagłówka X-Forwarded-For jest:
+Your message forwarding settings have been changed.==Twoje ustawienia przekazywania wiadomości zostały zmienione.
+Message Forwarding Support is:==Obsługa przekazywania wiadomości:
+Message Forwarding Command:==Polecenie przekazywania wiadomości:
+Recipient Address:==Adres odbiorcy:
+Invalid IP-Number filter:==Nieprawidłowy filtr adresów IP:
+Your crawler settings have been changed.==Twoje ustawienia crawlera zostały zmienione.
+Generic Settings:==Ustawienia ogólne:
+Crawler timeout:==Limit czasu crawlera:
+http Crawler Settings:==Ustawienia crawlera HTTP:
+Maximum HTTP Filesize:==Maksymalny rozmiar pliku HTTP:
+ftp Crawler Settings:==Ustawienia crawlera FTP:
+Maximum FTP Filesize:==Maksymalny rozmiar pliku FTP:
+smb Crawler Settings:==Ustawienia crawlera SMB:
+Maximum SMB Filesize:==Maksymalny rozmiar pliku SMB:
+Maximum file Filesize:==Maksymalny rozmiar pliku:
+Invalid crawler timeout value:==Nieprawidłowa wartość limitu czasu crawlera:
+Invalid maximum file size for http crawler:==Nieprawidłowy maksymalny rozmiar pliku dla crawlera HTTP:
+Invalid maximum file size for ftp crawler:==Nieprawidłowy maksymalny rozmiar pliku dla crawlera FTP:
+HTTPS port is now:==Port HTTPS to teraz:
+the change will take effect after restart.==zmiana zostanie zastosowana po ponownym uruchomieniu.
+URL Proxy settings have been saved.==Ustawienia proxy URL zostały zapisane.
+Debug/Analysis settings have been saved.==Ustawienia debugowania/analizy zostały zapisane.
+Referrer policy settings have been saved.==Ustawienia polityki odsyłacza (referrer) zostały zapisane.
+The ports are now configured as follows (active on next start).==Porty są teraz skonfigurowane w następujący sposób (aktywne przy następnym uruchomieniu).
+HTTP port==Port HTTP
+HTTPS port==Port HTTPS
+Shutdown port==Port zamknięcia
+Compression settings have been saved.==Ustawienia kompresji zostały zapisane.
+HTTP client settings have been saved.==Ustawienia klienta HTTP zostały zapisane.
+Your need to restart YaCy to activate the changes.==Musisz ponownie uruchomić YaCy, aby aktywować zmiany.
+#-----------------------------
+
+#File: Settings_Crawler.inc
+#---------------------------
+"Submit"=="Zapisz"
+Crawler Settings==Ustawienia crawlera
+Generic Crawler Settings:==Ogólne ustawienia crawlera:
+Timeout:==Limit czasu:
+HTTP Crawler Settings:==Ustawienia crawlera HTTP:
+Maximum Filesize:==Maksymalny rozmiar pliku:
+Please note that if the crawler uses content compression, this limit is used to check the compressed content size.
==Pamiętaj, że jeśli crawler używa kompresji treści, ten limit jest używany do sprawdzania rozmiaru skompresowanej treści.
+FTP Crawler Settings:==Ustawienia crawlera FTP:
+SMB Crawler Settings:==Ustawienia crawlera SMB:
+Local File Crawler Settings:==Ustawienia crawlera plików lokalnych:
+Changes will take effect immediately.==Zmiany zostaną zastosowane natychmiast.
+#-----------------------------
+
+#File: Settings_Debug.inc
+#---------------------------
+"Extensible Markup Language"=="Extensible Markup Language"
+"Distributed Hash Table"=="Rozproszona tablica skrótów"
+"Reverse Word Index"=="Odwrotny indeks słów"
+"Submit"=="Zapisz"
+Debug/Analysis Settings==Ustawienia debugowania/analizy
+Be careful with these advanced settings, they can deeply affect the search process! You probably don't need to modify them for normal use.==Zachowaj ostrożność przy tych zaawansowanych ustawieniach, mogą one głęboko wpłynąć na proces wyszukiwania! Prawdopodobnie nie musisz ich modyfikować do normalnego użytku.
+Solr communication==Komunikacja Solr
+Enable remote Solr binary responses==Włącz binarne odpowiedzi zdalnego Solr
+When checked (default), responses from remote Solr index instances are transferred using an efficient binary data format.==Gdy zaznaczone (domyślnie), odpowiedzi ze zdalnych instancji indeksu Solr są przesyłane przy użyciu wydajnego binarnego formatu danych.
+When unchecked, responses are transferred as XML,==Gdy niezaznaczone, odpowiedzi są przesyłane jako XML,
+which can be captured and parsed by any external XML aware tool for debug/analysis.==które mogą być przechwycone i przeanalizowane przez dowolne zewnętrzne narzędzie obsługujące XML do debugowania/analizy.
+Search data sources==Źródła danych wyszukiwania
+By default all data sources are enabled to obtain search results,==Domyślnie wszystkie źródła danych są włączone w celu uzyskania wyników wyszukiwania,
+but you can here disable one or more ones to check the behavior of the process.==ale tutaj możesz wyłączyć jedno lub więcej, aby sprawdzić zachowanie procesu.
+Local DHT/RWI==Lokalne DHT/RWI
+Local Solr index==Lokalny indeks Solr
+Remote DHT/RWI==Zdalne DHT/RWI
+Remote Solr indexes==Zdalne indeksy Solr
+Search testing tweaks==Poprawki testowania wyszukiwania
+Override DHT peers selection by local only==Nadpisz wybór peerów DHT tylko lokalnym
+When checked, the remote DHT peers selection is overridden and only the local peer is selected to provide remote DHT search results.==Gdy zaznaczone, wybór zdalnych peerów DHT jest nadpisywany i tylko lokalny peer jest wybierany do dostarczania zdalnych wyników wyszukiwania DHT.
+Override Solr peers selection by local only==Nadpisz wybór peerów Solr tylko lokalnym
+When checked, the remote Solr peers selection is overridden and only this peer is selected to provide remote Solr search results.==Gdy zaznaczone, wybór zdalnych peerów Solr jest nadpisywany i tylko ten peer jest wybierany do dostarczania zdalnych wyników wyszukiwania Solr.
+Ranking information==Informacje o rankingu
+Show search results scores==Pokaż wyniki punktowe wyników wyszukiwania
+When checked, the raw ranking score value is displayed for each text search result in the HTML results page.==Gdy zaznaczone, surowa wartość wyniku rankingu jest wyświetlana dla każdego tekstowego wyniku wyszukiwania na stronie wyników HTML.
+Text snippets statistics==Statystyki fragmentów tekstu
+Enable text snippets statistics==Włącz statystyki fragmentów tekstu
+Changes will take effect immediately.==Zmiany zostaną zastosowane natychmiast.
+#-----------------------------
+
+#File: Settings_HttpClient.inc
+#---------------------------
+"Transport Layer Security"=="Transport Layer Security"
+"Server Name Indication"=="Server Name Indication"
+"Submit"=="Zapisz"
+HTTP client settings==Ustawienia klienta HTTP
+You can configure here some advanced settings of the clients used by YaCy to handle outgoing HTTP connections.==Tutaj możesz skonfigurować niektóre zaawansowane ustawienia klientów używanych przez YaCy do obsługi wychodzących połączeń HTTP.
+About Server Name Indication (SNI):==O Server Name Indication (SNI):
+this extension to the TLS 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==to rozszerzenie protokołu TLS musi być włączone, aby załadować niektóre adresy URL https (dla witryn wdrożonych z różnymi certyfikatami i nazwami hostów na tym samym współdzielonym adresie IP); w przeciwnym razie ładowanie kończy się niepowodzeniem z błędami takimi jak
+Received fatal alert: handshake_failure==Received fatal alert: handshake_failure
+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==Może być jednak konieczne wyłączenie tego, aby załadować niektóre adresy URL https obsługiwane przez stare i źle skonfigurowane serwery internetowe; w przeciwnym razie ładowanie kończy się niepowodzeniem z wyjątkiem
+javax.net.ssl.SSLProtocolException: "handshake alert: unrecognized_name"==javax.net.ssl.SSLProtocolException: "handshake alert: unrecognized_name"
+Controlling SNI extension activation can also be done with the JVM option==Sterowanie aktywacją rozszerzenia SNI można również wykonać za pomocą opcji JVM
+jsse.enableSNIExtension==jsse.enableSNIExtension
+, 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).==, ale w takim przypadku wymagane jest ponowne uruchomienie serwera, gdy chcesz zmodyfikować to ustawienie, i nie można go dostosować dla poszczególnych klientów HTTP (ogólnego lub dla zdalnego Solr).
+General HTTP client==Ogólny klient HTTP
+Configuration settings for the main HTTP client, used notably to crawl websites and communicate with other YaCy peers.==Ustawienia konfiguracji głównego klienta HTTP, używanego w szczególności do crawlowania stron internetowych i komunikacji z innymi peerami YaCy.
+Enable SNI extension to TLS==Włącz rozszerzenie SNI dla TLS
+Remote Solr HTTP client==Zdalny klient HTTP Solr
+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).==Ustawienia konfiguracji specjalnego klienta HTTP przeznaczonego do komunikacji ze zdalnymi serwerami Solr (znajdującymi się na innych peerach YaCy lub ewentualnie należącymi do tego peera, gdy jest on skonfigurowany do korzystania ze zdalnego indeksu Solr).
+Changes will take effect immediately.==Zmiany zostaną zastosowane natychmiast.
+#-----------------------------
+
+#File: Settings_MessageForwarding.inc
+#---------------------------
+"Submit"=="Zapisz"
+Message Forwarding==Przekazywanie wiadomości
+With this settings you can activate or deactivate forwarding of yacy-messages via email.==Za pomocą tych ustawień możesz włączyć lub wyłączyć przekazywanie wiadomości YaCy przez e-mail.
+Enable message forwarding==Włącz przekazywanie wiadomości
+Enabling/Disabling message forwarding via email.==Włączanie/wyłączanie przekazywania wiadomości przez e-mail.
+Forwarding Command==Polecenie przekazywania
+The command-line program that should be used to forward the message.==Program wiersza poleceń, który ma być używany do przekazywania wiadomości.
+e.g.:==np.:
+Forwarding To==Przekazuj do
+The recipient email-address.==Adres e-mail odbiorcy.
+Changes will take effect immediately.==Zmiany zostaną zastosowane natychmiast.
+#-----------------------------
+
+#File: Settings_Proxy.inc
+#---------------------------
+"Submit"=="Zapisz"
+Remote Proxy (optional)==Zdalne proxy (opcjonalne)
+YaCy can use another proxy to connect to the internet. You can enter the address for the remote proxy here:==YaCy może używać innego proxy do łączenia się z internetem. Możesz tutaj wprowadzić adres zdalnego proxy:
+Use remote proxy==Używaj zdalnego proxy
+Enables the usage of the remote proxy by yacy==Włącza korzystanie ze zdalnego proxy przez YaCy
+Use remote proxy for HTTPS==Używaj zdalnego proxy dla HTTPS
+Specifies if YaCy should forward ssl connections to the remote proxy.==Określa, czy YaCy powinno przekazywać połączenia SSL do zdalnego proxy.
+Remote proxy host==Host zdalnego proxy
+The ip address or domain name of the remote proxy==Adres IP lub nazwa domeny zdalnego proxy
+Remote proxy port==Port zdalnego proxy
+the port of the remote proxy==port zdalnego proxy
+Remote proxy user==Użytkownik zdalnego proxy
+Remote proxy password==Hasło zdalnego proxy
+No-proxy addresses==Adresy bez proxy
+IP addresses for which the remote proxy should not be used==Adresy IP, dla których zdalne proxy nie powinno być używane
+Changes will take effect immediately.==Zmiany zostaną zastosowane natychmiast.
+#-----------------------------
+
+#File: Settings_ProxyAccess.inc
+#---------------------------
+"Submit"=="Zapisz"
+"change"=="zmień"
+Proxy Settings==Ustawienia proxy
+Transparent Proxy==Przezroczyste proxy
+With this you can specify if YaCy can be used as transparent proxy.==Tutaj możesz określić, czy YaCy może być używane jako przezroczyste proxy.
+Hint: On linux you can configure your firewall to transparently redirect all http traffic through yacy using this iptables rule:==Wskazówka: W systemie Linux możesz skonfigurować zaporę sieciową, aby przezroczyście przekierowywać cały ruch http przez YaCy za pomocą tej reguły iptables:
+Always Fresh==Zawsze świeże
+If unchecked, the proxy will act using Cache Fresh / Cache Stale rules. If checked, the cache is always fresh which means==Jeśli niezaznaczone, proxy będzie działać według reguł Cache Fresh / Cache Stale. Jeśli zaznaczone, pamięć podręczna jest zawsze świeża, co oznacza,
+that a page is never loaded again if it was already stored in the cache. However, if the page does not exist in the cache, it will be loaded in any case.==że strona nigdy nie jest ładowana ponownie, jeśli została już zapisana w pamięci podręcznej. Jeśli jednak strona nie istnieje w pamięci podręcznej, zostanie załadowana w każdym przypadku.
+Send "Via" Header==Wysyłaj nagłówek "Via"
+http header according to RFC 2616 Sect 14.45.==nagłówek http zgodnie z RFC 2616 sekcja 14.45.
+Send "X-Forwarded-For" Header==Wysyłaj nagłówek "X-Forwarded-For"
+Specifies if the proxy should send the X-Forwarded-For http header.==Określa, czy proxy powinno wysyłać nagłówek http X-Forwarded-For.
+Proxy Access Settings==Ustawienia dostępu do proxy
+These settings configure the access method to your own http proxy and server.==Te ustawienia konfigurują metodę dostępu do Twojego własnego proxy HTTP i serwera.
+All traffic is routed through one single port, for both proxy and server.==Cały ruch jest kierowany przez jeden pojedynczy port, zarówno dla proxy, jak i serwera.
+HTTPS Server Port:==Port serwera HTTPS:
+Server Access Restrictions==Ograniczenia dostępu do serwera
+You can restrict the access to this proxy/server using a two-stage security barrier:==Możesz ograniczyć dostęp do tego proxy/serwera za pomocą dwuetapowej bariery bezpieczeństwa:
+define an access domain with a list of granted client IP-numbers or with wildcards==zdefiniuj domenę dostępu z listą dozwolonych adresów IP klientów lub z symbolami wieloznacznymi
+define an user account with an user:password - pair==zdefiniuj konto użytkownika za pomocą pary użytkownik:hasło
+This is the account that restricts access to the proxy function.==To jest konto, które ogranicza dostęp do funkcji proxy.
+You probably don't want to share the proxy to the internet, so you should set the==Prawdopodobnie nie chcesz udostępniać proxy w internecie, więc powinieneś ustawić
+IP-Number Access Domain to a pattern that corresponds to you local intranet.==domenę dostępu adresów IP na wzorzec odpowiadający Twojemu lokalnemu intranetowi.
+The default setting should be right in most cases. If you want, you can also set a proxy account==Ustawienie domyślne powinno być odpowiednie w większości przypadków. Jeśli chcesz, możesz również ustawić konto proxy
+so that every proxy user must authenticate first, but this is rather unusual.==tak, aby każdy użytkownik proxy musiał najpierw się uwierzytelnić, ale jest to raczej niespotykane.
+IP-Number filter==Filtr adresów IP
+Accounts==Konta
+#-----------------------------
+
+#File: Settings_Referrer.inc
+#---------------------------
+"'Referer' section from the standard IETF specification"=="Sekcja 'Referer' ze standardowej specyfikacji IETF"
+"Link types section at W3C HTML specification"=="Sekcja Link types w specyfikacji HTML W3C"
+"Submit"=="Zapisz"
+Referrer Policy Settings==Ustawienia polityki odsyłacza
+When loading pages and navigating through links, a web browser sends some information about the origin of the request,==Podczas ładowania stron i nawigowania po linkach przeglądarka internetowa wysyła pewne informacje o pochodzeniu żądania,
+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.==Odwiedzane strony internetowe mogą przetwarzać te informacje wedle uznania, więc może to stać się problemem dla prywatności, na przykład gdy pochodzą ze strony zawierającej wyszukiwane terminy w swoim adresie URL.
+This page offers some configuration settings to instruct your browser how it should fill this referrer information.==Ta strona oferuje kilka ustawień konfiguracji, aby poinstruować przeglądarkę, jak ma wypełniać te informacje o odsyłaczu.
+Beware that every browser behaves differently: some settings may be unsupported by your particular browser and therefore ignored.==Pamiętaj, że każda przeglądarka zachowuje się inaczej: niektóre ustawienia mogą nie być obsługiwane przez Twoją konkretną przeglądarkę i dlatego zostaną zignorowane.
+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.==Jeśli naprawdę zależy Ci na prywatności, sprawdź, co faktycznie wysyła Twoja przeglądarka, korzystając z wbudowanej konsoli sieciowej narzędzi deweloperskich lub z wybranego analizatora ruchu sieciowego.
+Global policy==Polityka globalna
+This referrer policy applies for every page on this peer. It is set by the "meta" HTML tag.==Ta polityka odsyłacza dotyczy każdej strony na tym peerze. Jest ustawiana za pomocą tagu HTML "meta".
+Values are sorted by decreasing privacy level.==Wartości są posortowane według malejącego poziomu prywatności.
+no-referrer==no-referrer
+Highest privacy setting: referrer information should never be sent, even when navigating on this peer internal links.==Najwyższe ustawienie prywatności: informacje o odsyłaczu nigdy nie powinny być wysyłane, nawet podczas nawigowania po wewnętrznych linkach tego peera.
+Be careful with this: some websites might reject requests with no referrer.==Zachowaj ostrożność: niektóre strony internetowe mogą odrzucać żądania bez odsyłacza.
+same-origin==same-origin
+Peer internal links: referrer information should be stripped from any private data and contain only this peer host name.==Linki wewnętrzne peera: informacje o odsyłaczu powinny być pozbawione wszelkich danych prywatnych i zawierać tylko nazwę hosta tego peera.
+External links: referrer information should never be sent.==Linki zewnętrzne: informacje o odsyłaczu nigdy nie powinny być wysyłane.
+strict-origin==strict-origin
+Peer internal and external links: referrer information should be stripped from any private data and contain only this peer host name.==Linki wewnętrzne i zewnętrzne peera: informacje o odsyłaczu powinny być pozbawione wszelkich danych prywatnych i zawierać tylko nazwę hosta tego peera.
+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.==Ograniczenie: gdy link przechodzi z połączenia zabezpieczonego TLS (https) na tym peerze do niezabezpieczonego celu (http), nie powinny być wysyłane żadne informacje o odsyłaczu.
+origin==origin
+strict-origin-when-cross-origin==strict-origin-when-cross-origin
+Peer internal links: referrer information should contain full URLs.==Linki wewnętrzne peera: informacje o odsyłaczu powinny zawierać pełne adresy URL.
+External links: referrer information should be stripped from any private data and contain only this peer host name.==Linki zewnętrzne: informacje o odsyłaczu powinny być pozbawione wszelkich danych prywatnych i zawierać tylko nazwę hosta tego peera.
+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.==Ograniczenie: gdy zewnętrzny link przechodzi z połączenia zabezpieczonego TLS (https) na tym peerze do niezabezpieczonego celu (http), nie powinny być wysyłane żadne informacje o odsyłaczu.
+origin-when-cross-origin==origin-when-cross-origin
+no-referrer-when-downgrade==no-referrer-when-downgrade
+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).==Informacje o odsyłaczu powinny zawierać pełne adresy URL, z wyjątkiem sytuacji, gdy link przechodzi z połączenia zabezpieczonego TLS (https) na tym peerze do niezabezpieczonego celu (http).
+empty value==pusta wartość
+Default browser behavior: it should correspond to "no-referrer-when-downgrade".==Domyślne zachowanie przeglądarki: powinno odpowiadać "no-referrer-when-downgrade".
+unsafe-url==unsafe-url
+Unsafe setting: referrer information should always contain full URLs.==Niebezpieczne ustawienie: informacje o odsyłaczu zawsze zawierają pełne adresy URL.
+Custom setting: probably manually edited, be sure this value is the desired one.==Ustawienie niestandardowe: prawdopodobnie edytowane ręcznie, upewnij się, że ta wartość jest pożądana.
+Search results links==Linki wyników wyszukiwania
+Add the "noreferrer" link type to search results links==Dodaj typ linku "noreferrer" do linków wyników wyszukiwania
+When checked, this overrides the global referrer policy and adds the standard "noreferrer"==Gdy zaznaczone, nadpisuje to globalną politykę odsyłacza i dodaje standardowy "noreferrer"
+thus instructing the browser that it should not send any referrer information at all when visiting them.==instruując w ten sposób przeglądarkę, aby podczas ich odwiedzania nie wysyłała żadnych informacji o odsyłaczu.
+It is a standard HTML5 attribute value,==Jest to standardowa wartość atrybutu HTML5,
+supported by many more browsers than the meta tag: if you want a higher level of privacy but use an old or incompatible browser,==obsługiwany przez znacznie więcej przeglądarek niż tag meta: jeśli chcesz wyższego poziomu prywatności, ale używasz starej lub niekompatybilnej przeglądarki,
+this can be a valuable option.==może to być wartościowa opcja.
+Changes will take effect immediately.==Zmiany zostaną zastosowane natychmiast.
+#-----------------------------
+
+#File: Settings_Seed.inc
+#---------------------------
+"Submit"=="Zapisz"
+"Retry Uploading"=="Ponów przesyłanie"
+Seed Upload Settings==Ustawienia przesyłania seed
+With these settings you can configure if you have an account on a public accessible==Za pomocą tych ustawień możesz skonfigurować, czy masz konto na publicznie dostępnym
+server where you can host a seed-list file.==serwerze, na którym możesz hostować plik listy seed.
+General Settings:==Ustawienia ogólne:
+If you enable one of the available uploading methods, you will become a principal peer.==Jeśli włączysz jedną z dostępnych metod przesyłania, staniesz się peerem principal.
+Your peer will then upload the seed-bootstrap information periodically,==Twój peer będzie wtedy okresowo przesyłać informacje seed-bootstrap,
+but only if there have been changes to the seed-list.==ale tylko jeśli wprowadzono zmiany na liście seed.
+Upload Method==Metoda przesyłania
+Here you can specify which upload method should be used. Select 'none' to deactivate uploading.==Tutaj możesz określić, która metoda przesyłania ma być używana. Wybierz 'none', aby wyłączyć przesyłanie.
+URL==URL
+The URL that can be used to retrieve the uploaded seed file, like==Adres URL, którego można użyć do pobrania przesłanego pliku seed, np.
+http://www.<my-host>.net/yacy/seed.txt'==http://www.<my-host>.net/yacy/seed.txt'
+#-----------------------------
+
+#File: Settings_Seed_UploadFile.inc
+#---------------------------
+"Submit"=="Zapisz"
+Store into filesystem:==Zapisz w systemie plików:
+You must configure this if you want to store the seed-list file onto the file system.==Musisz to skonfigurować, jeśli chcesz przechowywać plik listy seed w systemie plików.
+File Location:==Lokalizacja pliku:
+Here you can specify the path within the filesystem where the seed-list file should be stored.==Tutaj możesz określić ścieżkę w systemie plików, w której ma być przechowywany plik listy seed.
+current:==bieżąca:
+#-----------------------------
+
+#File: Settings_Seed_UploadFtp.inc
+#---------------------------
+"Submit"=="Zapisz"
+Uploading via FTP:==Przesyłanie przez FTP:
+This is the account for a FTP server where you can host a seed-list file.==To jest konto serwera FTP, na którym możesz hostować plik listy seed.
+If you set this, you will become a principal peer.==Jeśli to ustawisz, staniesz się peerem principal.
+Your peer will then upload the seed-bootstrap information periodically,==Twój peer będzie wtedy okresowo przesyłać informacje seed-bootstrap,
+but only if there had been changes to the seed-list.==ale tylko jeśli wprowadzono zmiany na liście seed.
+Server==Serwer
+The host where you have a FTP account, like 'ftp.<my-host>.net'==Host, na którym masz konto FTP, np. 'ftp.<my-host>.net'
+Path==Ścieżka
+The remote path on the FTP server, like 'yacy/seed.txt'. Missing sub-directories are NOT created automatically.==Zdalna ścieżka na serwerze FTP, np. 'yacy/seed.txt'. Brakujące podkatalogi NIE są tworzone automatycznie.
+Username==Nazwa użytkownika
+Your log-in at the FTP server==Twój login na serwerze FTP
+Password==Hasło
+The password==Hasło
+#-----------------------------
+
+#File: Settings_Seed_UploadScp.inc
+#---------------------------
+"Submit"=="Zapisz"
+Uploading via SCP:==Przesyłanie przez SCP:
+This is the account for a server where you are able to login via ssh.==To jest konto serwera, na który możesz logować się przez SSH.
+Server==Serwer
+The host where you have an account, like 'my.host.net'==Host, na którym masz konto, np. 'my.host.net'
+Server Port==Port serwera
+The sshd port of the host, like '22'==Port sshd hosta, np. '22'
+Path==Ścieżka
+The remote path on the server, like '~/yacy/seed.txt'. Missing sub-directories are NOT created automatically.==Zdalna ścieżka na serwerze, np. '~/yacy/seed.txt'. Brakujące podkatalogi NIE są tworzone automatycznie.
+Username==Nazwa użytkownika
+Your log-in at the server==Twój login na serwerze
+Password==Hasło
+The password==Hasło
+#-----------------------------
+
+#File: Settings_ServerAccess.inc
+#---------------------------
+"Submit"=="Wyślij"
+Server Access Settings==Ustawienia dostępu do serwera
+IP-Number filter:==Filtr adresów IP:
+(requires restart)==(wymaga ponownego uruchomienia)
+Here you can restrict access to the server. By default, the access is not limited,==Tutaj możesz ograniczyć dostęp do serwera. Domyślnie dostęp nie jest ograniczony,
+because this function is needed to spawn the p2p index-sharing function.==ponieważ ta funkcja jest potrzebna do uruchomienia funkcji współdzielenia indeksu p2p.
+If you block access to your server (setting anything else than '*'), then you will also be blocked==Jeśli zablokujesz dostęp do swojego serwera (ustawiając cokolwiek innego niż '*'), zostaniesz również zablokowany
+from using other peers' indexes for search service.==przed korzystaniem z indeksów innych peerów do usługi wyszukiwania.
+However, blocking access may be correct in enterprise environments where you only want to index your==Jednak blokowanie dostępu może być prawidłowe w środowiskach korporacyjnych, gdzie chcesz indeksować tylko
+company's own web pages.==własne strony internetowe firmy.
+Filter have to be entered as IP, IP range or using CIDR notation separated by comma (e.g. 192.168.1.1,2001:db8==Filtry muszą być wprowadzone jako IP, zakres IP lub w notacji CIDR, oddzielone przecinkami (np. 192.168.1.1,2001:db8
+ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)==ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)
+further details on format see Jetty==dalsze szczegóły dotyczące formatu znajdziesz w Jetty
+staticIP (optional):==statyczne IP (opcjonalne):
+The staticIP can help that your peer can be reached by other peers in case that your==Statyczne IP może pomóc, aby Twój peer był osiągalny dla innych peerów w przypadku, gdy Twój
+peer is behind a firewall or proxy. You can create a tunnel through the firewall/proxy==peer znajduje się za zaporą sieciową lub proxy. Możesz utworzyć tunel przez zaporę/proxy
+(look out for 'tunneling through https proxy with connect command') and create==(poszukaj 'tunneling through https proxy with connect command') i utwórz
+an access point for incoming connections.==punkt dostępu dla połączeń przychodzących.
+This access address can be set here (either as IP number or domain name).==Ten adres dostępu można ustawić tutaj (jako numer IP lub nazwę domeny).
+If the address of outgoing connections is equal to the address of incoming connections,==Jeśli adres połączeń wychodzących jest taki sam jak adres połączeń przychodzących,
+you don't need to set anything here, please leave it blank.==nie musisz tutaj niczego ustawiać, pozostaw to pole puste.
+If the value you enter here does not match with this IP,==Jeśli wartość, którą tutaj wprowadzisz, nie zgadza się z tym adresem IP,
+you will not be able to access the server pages anymore.==nie będziesz już mógł uzyskać dostępu do stron serwera.
+publicPort (optional):==publicPort (opcjonalne):
+The publicPort can help that your peer can be reached by other peers in case that your==publicPort może pomóc, aby Twój peer był osiągalny dla innych peerów w przypadku, gdy Twój
+peer is behind a reverse proxy.==peer znajduje się za reverse proxy.
+If the port used to access YaCy is the same port the application is listening on,==Jeśli port używany do dostępu do YaCy jest tym samym portem, na którym nasłuchuje aplikacja,
+fileHost:==fileHost:
+Set this to avoid error-messages like 'proxy use not allowed / granted' on accessing your Peer by its hostname.==Ustaw to, aby uniknąć komunikatów o błędach takich jak 'proxy use not allowed / granted' podczas dostępu do peera przez jego nazwę hosta.
+Virtual host for httpdFileServlet access for example http://FILEHOST/ shall access the file servlet and==Wirtualny host dla dostępu httpdFileServlet; na przykład http://FILEHOST/ ma uzyskiwać dostęp do serwletu plików i
+return the defaultFile at rootPath either way, http://FILEHOST/ denotes the same as http://localhost:<port>/==w każdym przypadku zwracać defaultFile w rootPath; http://FILEHOST/ oznacza to samo co http://localhost:<port>/
+for the preconfigured value 'localpeer', the URL is: http://localpeer/.==dla wstępnie skonfigurowanej wartości 'localpeer' adres URL to: http://localpeer/.
+Server Port Settings==Ustawienia portów serwera
+Server port:==Port serwera:
+This is the main port for all http communication (default is 8090). A change requires a restart.==To jest główny port dla całej komunikacji HTTP (domyślnie 8090). Zmiana wymaga ponownego uruchomienia.
+Server ssl port:==Port SSL serwera:
+This is the port to connect via https (default is 8443). A change requires a restart.==To jest port do łączenia przez HTTPS (domyślnie 8443). Zmiana wymaga ponownego uruchomienia.
+Shutdown port:==Port zamknięcia:
+This is the local port on the loopback address (127.0.0.1 or :1) to listen for a shutdown signal to stop the YaCy server (-1 disables the shutdown port, recommended default is 8005). A change requires a restart.==To jest lokalny port na adresie loopback (127.0.0.1 lub :1), który nasłuchuje sygnału zamknięcia w celu zatrzymania serwera YaCy (-1 wyłącza port zamknięcia, zalecana wartość domyślna to 8005). Zmiana wymaga ponownego uruchomienia.
+Compression settings==Ustawienia kompresji
+Compress responses with gzip==Kompresuj odpowiedzi za pomocą gzip
+When checked (default), HTTP responses can be compressed using gzip.==Gdy zaznaczone (domyślnie), odpowiedzi HTTP mogą być kompresowane za pomocą gzip.
+The requesting user-agent (a web browser, another YaCy peer or any other tool) uses the header 'Accept-Encoding' to tell whether it accepts gzip compression or not.==Żądający User-Agent (przeglądarka internetowa, inny peer YaCy lub inne narzędzie) używa nagłówka 'Accept-Encoding', aby poinformować, czy akceptuje kompresję gzip.
+This adds some processing overhead, but can significantly reduce the amount of bytes transmitted over the network.==Dodaje to pewne obciążenie przetwarzania, ale może znacznie zmniejszyć liczbę bajtów przesyłanych przez sieć.
+Changes need a server restart.==Zmiany wymagają ponownego uruchomienia serwera.
+#-----------------------------
+
+#File: Settings_UrlProxyAccess.inc
+#---------------------------
+"Submit"=="Wyślij"
+URL Proxy Settings==Ustawienia proxy URL
+With this settings you can activate or deactivate URL proxy.==Za pomocą tych ustawień możesz włączyć lub wyłączyć proxy URL.
+Service call: http://localhost:8090/proxy.html?url=parameter, where parameter is the url of an external web page.==Wywołanie usługi: http://localhost:8090/proxy.html?url=parameter, gdzie parameter to URL zewnętrznej strony internetowej.
+URL proxy:==Proxy URL:
+Enabled==Włączone
+Globally enables or disables URL proxy via http://yourpeer:yourport/proxy.html?url=http://externalurl/==Globalnie włącza lub wyłącza proxy URL przez http://yourpeer:yourport/proxy.html?url=http://externalurl/
+Show search results via URL proxy:==Pokaż wyniki wyszukiwania przez proxy URL:
+Enables or disables URL proxy for all search results. If enabled, all search results will be tunneled through URL proxy.==Włącza lub wyłącza proxy URL dla wszystkich wyników wyszukiwania. Jeśli włączone, wszystkie wyniki wyszukiwania będą tunelowane przez proxy URL.
+Alternatively you may add this javascript to your browser favorites/short-cuts, which will reload the current browser address==Alternatywnie możesz dodać ten skrypt JavaScript do ulubionych/skrótów w przeglądarce; przeładuje on bieżący adres w przeglądarce
+via the YaCy proxy servlet.==przez serwlet proxy YaCy.
+or right-click this link and add to favorites:==lub kliknij ten link prawym przyciskiem myszy i dodaj go do ulubionych:
+Restrict URL proxy use:==Ogranicz użycie proxy URL:
+Define client filter. Default: 127.0.0.1,0:0:0:0:0:0:0:1.==Zdefiniuj filtr klientów. Domyślnie: 127.0.0.1,0:0:0:0:0:0:0:1.
+URL substitution:==Zastępowanie URL:
+Define URL substitution rules which allow navigating in proxy environment. Possible values: all, domainlist. Default: domainlist.==Zdefiniuj reguły zastępowania URL, które umożliwiają nawigację w środowisku proxy. Możliwe wartości: all, domainlist. Domyślnie: domainlist.
+#-----------------------------
+
+#File: Settings_p.html
+#---------------------------
+Advanced Settings==Ustawienia zaawansowane
+If you want to restore all settings to the default values,==Jeśli chcesz przywrócić wszystkie ustawienia do wartości domyślnych,
+but forgot your administration password, you must stop the proxy,==ale zapomniałeś hasła administratora, musisz zatrzymać proxy,
+delete the file 'DATA/SETTINGS/yacy.conf' in the YaCy application root folder and start YaCy again.==usunąć plik 'DATA/SETTINGS/yacy.conf' w głównym folderze aplikacji YaCy i ponownie uruchomić YaCy.
+Server Access Settings==Ustawienia dostępu do serwera
+Referrer Policy Settings==Ustawienia polityki odsyłacza (referrer)
+Crawler Settings==Ustawienia crawlera
+Seed Upload Settings==Ustawienia przesyłania seed
+Message Forwarding (optional)==Przekazywanie wiadomości (opcjonalne)
+Transparent Proxy Access Settings==Ustawienia dostępu do przezroczystego proxy
+URL/Web Proxy Access Settings==Ustawienia dostępu do proxy URL/Web
+Remote Proxy (optional)==Zdalne proxy (opcjonalne)
+Debug/Analysis Settings==Ustawienia debugowania/analizy
+HTTP client Settings==Ustawienia klienta HTTP
+#-----------------------------
+
+#File: Status.html
+#---------------------------
+"Fork me on GitHub"=="Fork me on GitHub"
+"YaCy Websearch"=="Wyszukiwanie internetowe YaCy"
+"PerformanceGraph"=="Wykres wydajności"
+"banner"=="Baner"
+"bad"=="źle"
+"idea"=="Pomysł"
+"Update YaCy"=="Zaktualizuj YaCy"
+"lock icon"=="Ikona kłódki"
+"good"=="dobrze"
+Log-in as administrator to see full status==Zaloguj się jako administrator, aby zobaczyć pełny status
+Welcome to YaCy!==Witamy w YaCy!
+Your settings are _not_ protected!==Twoje ustawienia _nie_ są chronione!
+and set an administration password.==i ustaw hasło administratora.
+You have not published your peer seed yet. This happens automatically, just wait.==Nie opublikowałeś jeszcze seed swojego peera. Dzieje się to automatycznie, wystarczy poczekać.
+Your network configuration is in private mode. Your peer seed will not be published.==Twoja konfiguracja sieci jest w trybie prywatnym. Seed Twojego peera nie zostanie opublikowany.
+Access is unrestricted from localhost (this includes administration features).==Dostęp z localhost jest nieograniczony (obejmuje to funkcje administracyjne).
+The peer must go online to get a peer address.==Peer musi przejść do trybu online, aby uzyskać adres peera.
+You cannot be reached from outside.==Nie można się z Tobą połączyć z zewnątrz.
+A possible reason is that you are behind a firewall, NAT or Router.==Możliwą przyczyną jest to, że znajdujesz się za zaporą sieciową, NAT lub routerem.
+global index on your own search page.==globalny indeks na własnej stronie wyszukiwania.
+We encourage you to open your firewall for the port you configured (usually: 8090),==Zachęcamy do otwarcia zapory sieciowej dla skonfigurowanego portu (zwykle: 8090),
+or to set up a 'virtual server' in your router settings (often called DMZ).==lub do skonfigurowania 'wirtualnego serwera' w ustawieniach routera (często nazywanego DMZ).
+Please be fair, contribute your own index to the global index.==Bądź fair i wnieś swój własny indeks do globalnego indeksu.
+it as soon as possible and restart YaCy.==to jak najszybciej i uruchom ponownie YaCy.
+Crawling is paused! If the crawling was paused automatically, please check your disk space.==Crawlowanie jest wstrzymane! Jeśli crawlowanie zostało wstrzymane automatycznie, sprawdź miejsce na dysku.
+You can download a more recent version of YaCy. Click here to install this update and restart YaCy:==Możesz pobrać nowszą wersję YaCy. Kliknij tutaj, aby zainstalować tę aktualizację i uruchomić ponownie YaCy:
+You are running a server in senior mode and you support the global internet index,==Uruchamiasz serwer w trybie senior i wspierasz globalny indeks internetowy,
+You have a principal peer because you publish your seed-list to a public accessible server==Masz peera principal, ponieważ publikujesz swoją listę seed na publicznie dostępnym serwerze
+If you need professional support, please write to==Jeśli potrzebujesz profesjonalnego wsparcia, napisz do
+support@yacy.net==support@yacy.net
+#-----------------------------
+
+#File: Status_p.inc
+#---------------------------
+System Status==Status systemu
+System==System
+Unknown==nieznany
+Protection==Ochrona
+Default password is not changed==Domyślne hasło nie zostało zmienione
+[Configure]==[Konfiguruj]
+password-protected==chronione hasłem
+Address==Adres
+peer address not assigned==adres peera nieprzypisany
+Port Forwarding Host==Host przekierowania portów
+broken==przerwane
+connected==połączone
+Proxy==Proxy
+Transparent==Przezroczyste
+on==włączone
+off==wyłączone
+URL==URL
+Remote:==Zdalny:
+not used==nieużywane
+Yes==Tak
+No==Nie
+Auto-popup on start-up==Automatyczne wyskakujące okno przy uruchomieniu
+Tray-Icon==Ikona zasobnika
+Experimental==Eksperymentalne
+Memory Usage==Wykorzystanie pamięci
+RAM used:==Użyty RAM:
+RAM max:==Maks. RAM:
+DISK used:==Użyty dysk:
+DISK free:==Wolny dysk:
+Incoming Connections==Połączenia przychodzące
+Queues==Kolejki
+Local Crawl==Crawl lokalny
+(paused)==(wstrzymane)
+Remote triggered Crawl==Przychodzące zdalne crawle
+Pre-Queueing==Wstępne kolejkowanie
+Seed server==Serwer seed
+Disabled.==Wyłączone.
+#-----------------------------
+
+#File: Steering.html
+#---------------------------
+"Kaskelix"=="Kaskelix"
+"Restart"=="Uruchom ponownie"
+"Shutdown"=="Zamknij"
+No action submitted==Nie przesłano żadnej akcji
+Re-Start==Uruchom ponownie
+Shutdown==Zamknij
+Your system is not protected by a password==Twój system nie jest chroniony hasłem
+You don't have the correct access right to perform this task.==Nie masz odpowiednich uprawnień dostępu, aby wykonać to zadanie.
+Please log in.==Zaloguj się.
+See you soon!==Do zobaczenia wkrótce!
+Application will terminate after working off all scheduled tasks.==Aplikacja zakończy działanie po wykonaniu wszystkich zaplanowanych zadań.
+Please send us feed-back!==Prześlij nam swoją opinię!
+We don't track YaCy users, YaCy does not send 'home-pings', we do not even know how many people use YaCy as their private search engine.==Nie śledzimy użytkowników YaCy, YaCy nie wysyła 'pingów do domu', nie wiemy nawet, ile osób używa YaCy jako swojej prywatnej wyszukiwarki.
+Therefore we like to ask you: do you like YaCy? Will you use it again... if not, why? Is it possible that we change a bit to suit your needs?==Dlatego chcemy Cię zapytać: czy lubisz YaCy? Czy użyjesz go ponownie... jeśli nie, dlaczego? Czy możemy coś zmienić, aby dostosować się do Twoich potrzeb?
+Please send us feed-back about your experience with an==Prześlij nam opinię o swoich doświadczeniach z
+or a==lub
+Professional Support==Profesjonalne wsparcie
+Just a moment, please!==Chwileczkę, proszę!
+Then YaCy will restart.==Następnie YaCy uruchomi się ponownie.
+If you can't reach YaCy's interface after 5 minutes restart failed.==Jeśli nie możesz uzyskać dostępu do interfejsu YaCy po 5 minutach, ponowne uruchomienie nie powiodło się.
+YaCy will be restarted after installation.==YaCy zostanie ponownie uruchomione po instalacji.
+The file you are trying to install is not located in the release directory.==Plik, który próbujesz zainstalować, nie znajduje się w katalogu wersji.
+You are in a development environment or the file you are trying to install is empty.==Znajdujesz się w środowisku deweloperskim lub plik, który próbujesz zainstalować, jest pusty.
+#-----------------------------
+
+#File: Supporter.html
+#---------------------------
+"YaCy Supporter"=="Wspierający YaCy"
+"bookmark"=="zakładka"
+"Add to bookmarks"=="Dodaj do zakładek"
+"positive vote"=="Pozytywna ocena"
+"Give positive vote"=="Oceń link pozytywnie"
+"negative vote"=="Negatywna ocena"
+"Give negative vote"=="Oceń link negatywnie"
+Supporter==Wspierający
+Supporter are switched off for users without authorization==Strony wspierających są wyłączone dla użytkowników bez autoryzacji
+#-----------------------------
+
+#File: Surftips.html
+#---------------------------
+"YaCy Surftips"=="Porady surfowania YaCy"
+"bookmark"=="zakładka"
+"Add to bookmarks"=="Dodaj do zakładek"
+"positive vote"=="Pozytywna ocena"
+"Give positive vote"=="Oceń link pozytywnie"
+"negative vote"=="Negatywna ocena"
+"Give negative vote"=="Oceń link negatywnie"
+"authentication required"=="Wymagana autoryzacja"
+Surftips==Porady surfowania
+Surftips are switched off for users without authorization==Porady surfowania są wyłączone dla użytkowników bez autoryzacji
+YaCy Supporters==Wspierający YaCy
+a list of home pages of yacy users==lista stron domowych użytkowników YaCy
+Show surftips to everyone==Pokaż porady surfowania wszystkim
+Hide surftips for users without authorization==Ukryj porady surfowania dla użytkowników bez autoryzacji
+#-----------------------------
+
+#File: Table_RobotsTxt_p.html
+#---------------------------
+"robots.txt Table"=="Tabela robots.txt"
+"API"=="API"
+The information that is presented on this page can also be retrieved as XML.==Informacje przedstawione na tej stronie można również pobrać w formacie XML.
+Click the API icon to see the XML.==Kliknij ikonę API, aby zobaczyć plik XML.
+robots.txt table==tabela robots.txt
+#-----------------------------
+
+#File: Tables_p.html
+#---------------------------
+"Tables"=="Tabele"
+"Search"=="Szukaj"
+"Edit Selected Row"=="Edytuj wybrany wiersz"
+"Add a new Row"=="Dodaj nowy wiersz"
+"Delete Selected Rows"=="Usuń wybrane wiersze"
+"Delete Table"=="Usuń tabelę"
+"Commit"=="Zatwierdź"
+Table Administration==Administracja tabelami bazy danych
+Table Selection==Wybór tabeli
+Select Table:==Wybierz tabelę:
+show max.==pokaż maks.
+all==wszystkie
+entries,==wpisów,
+reverse:==odwróć:
+search rows for==filtruj wiersze według
+PK==Klucz główny
+Row Editor==Edytor wierszy
+Primary Key==Klucz główny
+#-----------------------------
+
+#File: Threaddump_p.html
+#---------------------------
+"Single Threaddump"=="Pojedynczy zrzut wątków"
+"Multiple Dump Statistic"=="Statystyki wielu zrzutów"
+YaCy Debugging: Thread Dump==Debugowanie YaCy: zrzut wątków
+Threaddump==Zrzut wątków
+#-----------------------------
+
+#File: ToolsConfig_p.html
+#---------------------------
+Tools==Narzędzia
+Add superpowers to the YaCy Chat. Tools may be disabled by setting maxCallsPerTurn to 0.==Dodaj supermoce do czatu YaCy. Narzędzia można wyłączyć, ustawiając maxCallsPerTurn na 0.
+Tool settings were saved.==Ustawienia narzędzi zostały zapisane.
+Basic Tools==Narzędzia podstawowe
+maxCallsPerTurn==maxCallsPerTurn
+disable==wyłącz
+Visualization Tools==Narzędzia wizualizacji
+Data Retrieval Tools==Narzędzia pobierania danych
+Save Tools Configuration==Zapisz konfigurację narzędzi
+#-----------------------------
+
+#File: Trails.html
+#---------------------------
+CyTag Trails==Ślady CyTag
+#-----------------------------
+
+#File: TransNews_p.html
+#---------------------------
+"Publish"=="Opublikuj"
+"negative vote"=="Negatywna ocena"
+"positive vote"=="Pozytywna ocena"
+You can share your local addition to translations and distribute it to other peers.==Możesz udostępnić swoje lokalne uzupełnienie tłumaczeń i rozdystrybuować je do innych peerów.
+The remote peer can vote on your translation and add it to its own local translation.==Zdalny peer może zagłosować na Twoje tłumaczenie i dodać je do swojego własnego lokalnego tłumaczenia.
+File:==Plik:
+Originator==Inicjator
+English:==Angielski:
+existing==istniejące
+Translation:==Tłumaczenie:
+Vote on this translation. If you vote positive the translation is added to your local translation list.==Zagłosuj na to tłumaczenie. Jeśli zagłosujesz pozytywnie, tłumaczenie zostanie dodane do Twojej lokalnej listy tłumaczeń.
+#-----------------------------
+
+#File: Translator_p.html
+#---------------------------
+"Save translation"=="Zapisz tłumaczenie"
+Translation Editor==Edytor tłumaczeń
+Translate untranslated text of the user interface (current language). The modified translation file is stored in DATA/LOCALE directory.==Przetłumacz nieprzetłumaczony tekst interfejsu użytkownika (bieżący język). Zmodyfikowany plik tłumaczenia jest przechowywany w katalogu DATA/LOCALE.
+UI Translation==Tłumaczenie interfejsu użytkownika
+Source File==Plik źródłowy
+view it==wyświetl plik
+filter untranslated==filtruj nieprzetłumaczone
+Source Text==Tekst źródłowy
+#-----------------------------
+
+#File: User.html
+#---------------------------
+"login"=="zaloguj"
+"logout"=="Wyloguj"
+"red bar"=="czerwony pasek"
+"green bar"=="zielony pasek"
+"Change"=="Zmień"
+User Page==Strona użytkownika
+You are not logged in.==Nie jesteś zalogowany.
+Username:==Nazwa użytkownika:
+Password:==Hasło:
+(Identified by==(Zidentyfikowany przez
+IP==IP
+Username/Password==Nazwa użytkownika/hasło
+Cookie==Cookie
+old Password==stare hasło
+new Password==nowe hasło
+new Password(repetition)==nowe hasło (powtórzenie)
+You are currently logged in as admin.==Jesteś obecnie zalogowany jako administrator.
+(after logout you will be prompted for your password again. simply click "cancel")==(po wylogowaniu zostaniesz ponownie poproszony o hasło. Po prostu kliknij "anuluj")
+Password was changed.==Hasło zostało zmienione.
+Old Password is wrong.==Stare hasło jest nieprawidłowe.
+New Password and its repetition do not match.==Nowe hasło i jego powtórzenie nie są zgodne.
+New Password is empty.==Nowe hasło jest puste.
+#-----------------------------
+
+#File: VFS.html
+#---------------------------
+"File system browser"=="Przeglądarka systemu plików"
+"Root contents"=="Zawartość korzenia"
+Virtual File System==Wirtualny system plików
+User storage in the browser cache with file-system-like navigation.==Pamięć użytkownika w pamięci podręcznej przeglądarki z nawigacją podobną do systemu plików.
+New Folder==Nowy folder
+Upload File==Prześlij plik
+No files yet. Upload a file or create a folder.==Nie ma jeszcze plików. Prześlij plik lub utwórz folder.
+Preview==Podgląd
+Edit file==Edytuj plik
+Discard==Wyrzucać
+Save==Ratować
+#-----------------------------
+
+#File: ViewFile.html
+#---------------------------
+"API"=="API"
+"Show Metadata"=="Pokaż metadane"
+"Browse Host"=="Przeglądaj host"
+"Show Snippet"=="Pokaż podgląd"
+"Show"=="Pokaż"
+"action"=="Akcja"
+See the page info about the url.==Zobacz informacje o stronie dotyczące URL.
+View URL Content==Wyświetl treść URL
+Get URL Viewer==Otwórz przeglądarkę URL
+URL:==URL:
+Search in Document:==Szukaj w dokumencie:
+URL Metadata==Metadane URL
+Hash:==Skrót:
+In Metadata:==W metadanych:
+no==nie
+yes==tak
+In Cache:==W pamięci podręcznej:
+First Seen:==Pierwsze wystąpienie:
+Word Count:==Liczba słów:
+Description:==Opis:
+Size:==Rozmiar:
+MimeType:==Typ MIME:
+Collections:==Kolekcje:
+View as==Wyświetl jako
+Original from Web==Oryginał z sieci
+Original from Cache==Oryginał z pamięci podręcznej
+Plain Text==Zwykły tekst
+Parsed Text==Przeanalizowany tekst
+Parsed Sentences==Przeanalizowane zdania
+Parsed Tokens/Words==Przeanalizowane tokeny/słowa
+Link List==Lista linków
+Schema Fields==Pola schematu
+Citation Report==Raport cytatów
+Unable to find URL Entry in DB==Nie można znaleźć wpisu URL w bazie danych
+Invalid URL==Nieprawidłowy URL
+Unable to download resource content.==Nie można pobrać treści zasobu.
+Unable to parse resource content.==Nie można przeanalizować treści zasobu.
+Unsupported protocol.==Nieobsługiwany protokół.
+Snippet==Podgląd
+Headline==Nagłówek
+Teaser Text==Tekst zajawki
+Original Content from Web==Oryginalna treść z sieci
+Parsed Content==Przeanalizowana treść
+dc:title==dc:title
+dc:creator==dc:creator
+dc:subject==dc:subject
+dc:description==dc:description
+dc:publisher==dc:publisher
+dc:format==dc:format
+dc:identifier==dc:identifier
+dc:source==dc:source
+geo:lat & geo:long==geo:lat & geo:long
+nr==Nr
+type==Typ
+name==Nazwa
+link==Link
+text==Tekst
+rel==rel
+Parsed Tokens==Przeanalizowane tokeny
+CitationReport==Raport cytatów
+#-----------------------------
+
+#File: ViewLog_p.html
+#---------------------------
+"refresh"=="Odśwież"
+Server Log==Log serwera
+reversed order==odwrócona kolejność
+regex==Regex
+terms==terminy
+Invalid regular expression filter.==Nieprawidłowy filtr wyrażenia regularnego.
+#-----------------------------
+
+#File: ViewProfile.html
+#---------------------------
+"vCard"=="vCard"
+"rdf:foaf"=="rdf:foaf"
+"Onlinestatus"=="Status online"
+Local Peer Profile:==Profil lokalnego peera:
+Remote Peer Profile:==Profil zdalnego peera:
+Wrong access of this page==Nieprawidłowy dostęp do tej strony
+The requested peer is unknown or a potential peer.==Żądany peer jest nieznany lub jest peerem potencjalnym.
+The profile can't be fetched.==Nie można pobrać profilu.
+Name==Nazwa
+Nick Name==Pseudonim
+Homepage==Strona domowa
+eMail==E-mail
+ICQ==ICQ
+Jabber==Jabber
+Yahoo!==Yahoo!
+MSN==MSN
+Skype==Skype
+Comment==Komentarz
+vCard==vCard
+#-----------------------------
+
+#File: Vocabulary_p.html
+#---------------------------
+"API"=="API"
+"View"=="Wyświetl"
+"Uniform Resource Locator"=="Uniform Resource Locator"
+"Standard CSV field delimiter"=="Standardowy separator pól CSV"
+"Create"=="Utwórz"
+"Submit"=="Wyślij"
+The information that is presented on this page can also be retrieved as XML==Informacje przedstawione na tej stronie można również pobrać w formacie XML
+Click the API icon to see the RDF Ontology definition for this vocabulary.==Kliknij ikonę API, aby zobaczyć definicję ontologii RDF dla tego słownika.
+Vocabulary Administration==Administracja słownikami
+Vocabularies can be used to produce a search navigation. A vocabulary must be created before content is indexed.==Słowniki można wykorzystać do tworzenia nawigacji wyszukiwania. Słownik musi zostać utworzony przed zindeksowaniem treści.
+The vocabulary is used to annotate the indexed content with a reference to the object that is denoted by the term of the vocabulary.==Słownik służy do opatrywania zindeksowanej treści odwołaniem do obiektu oznaczonego przez termin słownika.
+The object can be denoted by a url stub that, combined with the term, becomes the url for the object.==Obiekt można oznaczyć rdzeniem URL, który w połączeniu z terminem staje się adresem URL obiektu.
+Vocabulary Selection==Wybór słownika
+Vocabulary Name==Nazwa słownika
+Vocabulary Production==Tworzenie słownika
+Please provide a CSV file path or URL.==Podaj ścieżkę pliku CSV lub URL.
+Empty Vocabulary==Opróżnij słownik
+Auto-Discover==Automatyczne wykrywanie
+from file name==z nazwy pliku
+from page title==z tytułu strony
+from page title (split)==z tytułu strony (podzielone)
+from page author==z autora strony
+Objectspace==Przestrzeń obiektów
+It is possible to produce a vocabulary out of the existing search index. This is done using a given 'objectspace' which you can enter as a URL Stub.==Możliwe jest utworzenie słownika z istniejącego indeksu wyszukiwania. Odbywa się to przy użyciu podanej 'przestrzeni obiektów', którą można wprowadzić jako rdzeń URL.
+This stub is used to find all matching URLs. If the remaining path from the matching URLs then denotes a single file, the file name is used as vocabulary term.==Ten rdzeń jest używany do znalezienia wszystkich pasujących adresów URL. Jeśli pozostała ścieżka z pasujących adresów URL oznacza pojedynczy plik, nazwa pliku jest używana jako termin słownika.
+This works best with wikis. Try to use a wiki url as objectspace path.==Działa to najlepiej z wiki. Spróbuj użyć adresu URL wiki jako ścieżki przestrzeni obiektów.
+Import from a csv file==Importuj z pliku CSV
+File Path or URL==Ścieżka pliku lub URL
+Start line==Wiersz początkowy
+(first has index 0)==(pierwszy ma indeks 0)
+Column for Literals==Kolumna dla literałów
+Synonyms==Synonimy
+no Synonyms==brak synonimów
+Auto-Enrich with Synonyms from Stemming Library==Automatyczne wzbogacanie synonimami z biblioteki stemmingu
+Read Column==Odczytaj kolumnę
+Column for Object Link (optional)==Kolumna dla linku obiektu (opcjonalne)
+(first has index 0, if unused set -1)==(pierwszy ma indeks 0, jeśli nieużywany ustaw -1)
+Charset of Import File==Zestaw znaków pliku importu
+Column separator==Separator kolumn
+Comma ','==Przecinek ','
+Semicolon ';'==Średnik ';'
+Vocabulary Editor==Edytor słownika
+File==Plik
+[automatically generated, not stored, cannot be edited]==[generowane automatycznie, nie przechowywane, nie można edytować]
+Size==Rozmiar
+Namespace==Przestrzeń nazw
+Predicate==Predykat
+Prefix==Prefiks
+Is Facet?==Czy facet?
+(If checked, this vocabulary is used for search facets. Not feasible for large vocabularies!)==(Jeśli zaznaczone, ten słownik jest używany dla facetów wyszukiwania. Niepraktyczne dla dużych słowników!)
+Match terms from==Dopasuj terminy z
+Cleartext==Tekst jawny
+Linked data/Semantic web annotations==Adnotacje Linked Data/Semantic Web
+Modify==Zmień
+Delete==Usuń
+Literal==Literał
+Object Link==Link obiektu
+add==dodaj
+clear table (remove all terms)==wyczyść tabelę (usuń wszystkie terminy)
+delete vocabulary==usuń słownik
+#-----------------------------
+
+#File: WatchWebStructure_p.html
+#---------------------------
+"API"=="API"
+"minus"=="Minus"
+"plus"=="Plus"
+"change"=="Zmień"
+"WebStructurePicture"=="Obraz struktury sieci"
+The data that is visualized here can also be retrieved in a XML file, which lists the reference relation between the domains.==Dane wizualizowane tutaj można również pobrać w pliku XML, który wymienia relacje odwołań między domenami.
+With a GET-property 'about' you get only reference relations about the host that you give in the argument field for 'about'.==Za pomocą właściwości GET 'about' otrzymujesz tylko relacje odwołań dotyczące hosta podanego w polu argumentu 'about'.
+With a GET-property 'latest' you get a list of references that had been computed during the current run-time of YaCy, and with each next call only an update to the next list of references.==Za pomocą właściwości GET 'latest' otrzymujesz listę odwołań obliczonych podczas bieżącego czasu działania YaCy, a przy każdym kolejnym wywołaniu tylko aktualizację do następnej listy odwołań.
+Click the API icon to see the XML file.==Kliknij ikonę API, aby zobaczyć plik XML.
+Web Structure==Struktura sieci
+Host List==Lista hostów
+host==host
+depth==głębokość
+nodes==węzły
+time==czas
+size==rozmiar
+Background==Tło
+Color==Kolor
+Text==Tekst
+Line==Linia
+Pivot Dot==Punkt osi
+Other Dot==Inny punkt
+Dot-end==Koniec punktu
+#-----------------------------
+
+#File: Wiki.html
+#---------------------------
+"all"=="Wszystkim"
+"admin"=="Administrator"
+"Submit"=="Wyślij"
+"Preview"=="Podgląd"
+"Discard"=="Odrzuć"
+"Show"=="Pokaż"
+"Compare"=="Porównaj"
+(only granted to admin)==(dozwolone tylko dla administratora)
+Index -==Indeks -
+Grant Write Access to==Przyznaj dostęp do zapisu
+Edit==Edytuj
+Author:==Autor:
+Text:==Tekst:
+Preview==Podgląd
+No changes have been submitted so far!==Nie przesłano jeszcze żadnych zmian!
+Index==Indeks
+Subject==Temat
+Change Date==Data zmiany
+Last Author==Ostatni autor
+Start Page==Strona startowa
+Versions==Wersje
+Compare version from==Porównaj wersję z
+with version from==z wersją z
+Error==Błąd
+You can use==Możesz tutaj użyć
+Changes will be published as announcement on YaCyNews==Zmiany zostaną opublikowane jako ogłoszenie w YaCyNews
+#-----------------------------
+
+#File: WikiHelp.html
+#---------------------------
+Wiki-Code==Kod wiki
+This table contains a short description of the tags that can be used in the Wiki and several other servlets==Ta tabela zawiera krótki opis tagów, których można używać w wiki oraz w kilku innych serwletach
+of YaCy. For a more detailed description visit the==YaCy. Aby uzyskać bardziej szczegółowy opis, odwiedź
+Code==Kod
+Description==Opis
+These tags create headlines. If a page has three or more headlines, a table of content will be created automatically. Headlines of level 1 will be ignored in the table of content.==Te tagi tworzą nagłówki. Jeśli strona ma trzy lub więcej nagłówków, automatycznie zostanie utworzony spis treści. Nagłówki poziomu 1 są ignorowane w spisie treści.
+''text'' '''text''' '''''text'''''==''tekst'' '''tekst''' '''''tekst'''''
+These tags create stressed texts. The first pair emphasizes the text (most browsers will display it in italics),==Te tagi tworzą wyróżnione teksty. Pierwsza para wyróżnia tekst (większość przeglądarek wyświetli go kursywą),
+the second one emphasizes it more strongly (i.e. bold) and the last tags create a combination of both.==druga wyróżnia go silniej (np. pogrubieniem), a ostatnie tagi tworzą kombinację obu.
+<s>text</s>==<s>tekst</s>
+Text will be displayed==Tekst zostanie wyświetlony
+struck through==przekreślone
+<u>text</u>==<u>tekst</u>
+underlined==podkreślone
+text==Tekst
+Lines will be indented. This tag is supposed to mark citations, but may as well be used for styling purposes.==Wiersze zostaną wcięte. Ten tag ma oznaczać cytaty, ale może być również używany do celów stylistycznych.
+These tags create a numbered list.==Te tagi tworzą listę numerowaną.
+These tags create an unnumbered list.==Te tagi tworzą listę nienumerowaną.
+;word 1:definition 1==;słowo 1:definicja 1
+;word 2:definition 2==;słowo 2:definicja 2
+;;word 3:definition 3==;;słowo 3:definicja 3
+;word 4:definition 4==;słowo 4:definicja 4
+These tags create a definition list.==Te tagi tworzą listę definicji.
+This tag creates a horizontal line.==Ten tag tworzy poziomą linię.
+[[pagename]]==[[nazwastrony]]
+[[pagename|description]]==[[nazwastrony|opis]]
+This tag creates links to other pages of the wiki.==Ten tag tworzy linki do innych stron wiki.
+[url]==[URL]
+[url description]==[URL opis]
+This tag creates links to external websites.==Ten tag tworzy linki do zewnętrznych stron internetowych.
+[[Image:url]]==[[Image:URL]]
+[[Image:url|alt text]]==[[Image:URL|tekst alternatywny]]
+[[Image:url|align|alt text]]==[[Image:URL|wyrównanie|tekst alternatywny]]
+This tag displays an image, it can be aligned left, right or center.==Ten tag wyświetla obraz, można go wyrównać do lewej, prawej lub do środka.
+[[Youtube:id]]==[[Youtube:ID]]
+[[Vimeo:id]]==[[Vimeo:ID]]
+This tag displays a Youtube or Vimeo video with the id specified and fixed width 425 pixels and height 350 pixels.==Ten tag wyświetla film z YouTube lub Vimeo o podanym id oraz stałej szerokości 425 pikseli i wysokości 350 pikseli.
+i.e. use [[Youtube:QZsWG4-7Qfk]] to embed this video: https://www.youtube.com/watch?v=QZsWG4-7Qfk==np. użyj [[Youtube:QZsWG4-7Qfk]], aby osadzić ten film: https://www.youtube.com/watch?v=QZsWG4-7Qfk
+i.e. use [[Vimeo:32200946]] to embed this video: http://vimeo.com/32200946==np. użyj [[Vimeo:32200946]], aby osadzić ten film: http://vimeo.com/32200946
+||row 1, col 1||row 1, col 2==||wiersz 1, kol 1||wiersz 1, kol 2
+||row 2, col 1||row 2, col 2==||wiersz 2, kol 1||wiersz 2, kol 2
+These tags create a table, whereas the first marks the beginning of the table, the second starts==Te tagi tworzą tabelę, przy czym pierwszy oznacza początek tabeli, drugi rozpoczyna
+a new line, the third and fourth each create a new cell in the line. The last displayed tag==nowy wiersz, trzeci i czwarty tworzą nową komórkę w wierszu. Ostatni pokazany tag
+closes the table.==zamyka tabelę.
+<pre> text </pre>==<pre> tekst </pre>
+A text between these tags will keep all the spaces and linebreaks in it. Great for ASCII-art and program code.==Tekst pomiędzy tymi tagami zachowa wszystkie spacje i podziały wierszy. Świetny do ASCII-artu i kodu programu.
+text text text==tekst tekst tekst
+If a line starts with a space, it will be displayed in a non-proportional font.==Jeśli wiersz zaczyna się od spacji, zostanie wyświetlony czcionką nieproporcjonalną.
+#-----------------------------
+
+#File: YaCySearchPluginFF.html
+#---------------------------
+"YaCy-Logo"=="YaCy-Logo"
+YaCy Firefox Search-Plugin Installation:==YaCy Instalacja wtyczki wyszukiwania dla przeglądarki Firefox:
+Simply click on the link shown below to integrate the YaCy Firefox Search-Plugin into your browser.==Po prostu kliknij link pokazany poniżej, aby zintegrować wtyczkę YaCy przeglądarki Firefox z przeglądarką.
+In Mozilla Firefox, you can the Search-Plugin via the search box on the toolbar. In Mozilla (Seamonkey) you can access the Search-Plugin via the Sidebar or the Location Bar.==W przeglądarce Mozilla Firefox dostęp do wtyczki wyszukiwania można uzyskać poprzez pole wyszukiwania na pasku narzędzi. W przeglądarce Mozilla (Seamonkey) dostęp do wtyczki wyszukiwania można uzyskać poprzez pasek boczny lub pasek lokalizacji.
+Install the YaCy search plugin.==Zainstaluj wtyczkę wyszukiwania YaCy.
+#-----------------------------
+
+#File: api/citation.html
+#---------------------------
+Similar documents from different hosts:==Podobne dokumenty od różnych hostów:
+List of==Lista
+Cited==Cytowano
+filter cited sentences==filtruj cytowane zdania
+filter off==odfiltrować
+List of other web pages with citations==Lista innych stron internetowych z cytatami
+#-----------------------------
+
+#File: api/push_p.html
+#---------------------------
+"Submit"=="Wyślij"
+File Upload==Przesyłanie pliku
+This form can be used to upload a file and assign it to an url.==Za pomocą tego formularza można przesłać plik i przypisać go do adresu URL.
+Example usage is the direct attachment of a content management system to YaCy to push newly changed files directly to the YaCy indexer.==Przykładowe użycie to bezpośrednie podłączenie systemu zarządzania treścią do YaCy w celu wypychania nowo zmienionych plików bezpośrednio do indeksatora YaCy.
+File Count==Liczba plików
+synchronous==synchroniczny
+commit==popełniać
+Files to process:==Pliki do przetworzenia:
+File Number==Numer pliku
+Data==Dane
+URL==URL
+Collection==Kolekcja
+Last-Modified==Ostatnia modyfikacja
+Content-Type==Typ zawartości
+The following attributes are only used for media type content==Poniższe atrybuty są używane tylko w przypadku treści typu multimedialnego
+Media-Title==Tytuł multimedialny
+Media-Keywords ()==Słowa kluczowe dotyczące mediów ()
+Result for the recently submitted file(s). You can also submit the same form using the servlet push_p.json to get push confirmations in json format.==Wynik dla ostatnio przesłanych plików. Możesz także przesłać ten sam formularz, korzystając z serwletu push_p.json, aby uzyskać potwierdzenia push w formacie json.
+count==liczba
+successall==successall
+false==false
+true==true
+countsuccess==countsuccess
+countfail==countfail
+Item==Element
+Success==Sukces
+Message==Komunikat
+fail==fail
+ok==ok
+If you want to push again files, use this form to pre-define a number of upload forms:==Jeśli chcesz ponownie wypchnąć pliki, użyj tego formularza, aby wstępnie zdefiniować liczbę formularzy przesyłania:
+#-----------------------------
+
+#File: api/share.html
+#---------------------------
+"Submit"=="Wyślij"
+File Share==Udostępnianie plików
+This form can be used to share a (index) file==Tego formularza można użyć do udostępnienia pliku (indeksu)
+Files to process:==Pliki do przetworzenia:
+Result for the recently submitted file(s). You can also submit the same form using the servlet share.json to get push confirmations in json format.==Wynik dla ostatnio przesłanych plików. Możesz również przesłać ten sam formularz za pomocą serwletu share.json, aby otrzymać potwierdzenia wypchnięcia w formacie JSON.
+successall==successall
+false==false
+true==true
+countsuccess==countsuccess
+countfail==countfail
+Item==Element
+URL==URL
+Success==Sukces
+Message==Komunikat
+fail==fail
+ok==ok
+If you want to push again files, use this form to pre-define a number of upload forms:==Jeśli chcesz ponownie wypchnąć pliki, użyj tego formularza, aby wstępnie zdefiniować liczbę formularzy przesyłania:
+#-----------------------------
+
+#File: api/table_p.html
+#---------------------------
+"Table"=="Tabela"
+"Edit Table"=="Edytuj tabelę"
+PK==Klucz główny
+#-----------------------------
+
+#File: api/yacydoc.html
+#---------------------------
+"API"=="API"
+This search result can also be retrieved as XML.==Ten wynik wyszukiwania można również pobrać w formacie XML.
+Click the API icon to see an example call to the search rss API.==Kliknij ikonę API, aby zobaczyć przykładowe wywołanie API RSS wyszukiwania.
+Title==Tytuł
+Author==Autor
+Description==Opis
+Subject==Temat
+Publisher==Wydawca
+Contributor==Współtwórca
+Date==Data
+Type==Typ
+YaCy Identifier==Identyfikator YaCy
+Identifier==Identyfikator
+Language==Język
+Collections==Kolekcje
+Load Date==Data załadowania
+Referrer Identifier==Identyfikator odsyłacza
+Referrer URL==URL odsyłacza
+Document size==Rozmiar dokumentu
+Number of Words==Liczba słów
+Inbound Links (anchors)==Linki przychodzące (kotwice)
+Outbound Links (anchors)==Linki wychodzące (kotwice)
+Incoming Links (citation)==Linki przychodzące (cytat)
+Location==Lokalizacja
+#-----------------------------
+
+#File: compare_yacy.html
+#---------------------------
+"Compare"=="Porównaj"
+Websearch Comparison==Porównanie wyszukiwania w sieci
+Left Search Engine==Lewa wyszukiwarka
+Right Search Engine==Prawa wyszukiwarka
+Search Result==Wynik wyszukiwania
+loading....==wczytywanie....
+#-----------------------------
+
+#File: env/grafics/donate.html
+#---------------------------
+"Donate!"=="Podarować!"
+Please support our work on YaCy!==Prosimy o wsparcie naszej pracy na YaCy!
+Github Sponsors==Sponsorzy Githuba
+beneficial: 5 €==korzystne: 5 €
+generous: 25 €==hojny: 25 €
+gracious: 50 €==łaskawy: 50 €
+#-----------------------------
+
+#File: env/templates/header.template
+#---------------------------
+"YaCy"=="YaCy"
+"Search..."=="Szukaj..."
+"Restart"=="Uruchom ponownie"
+"Shutdown"=="Zamknij"
+"Community"=="Społeczność"
+"Help"=="Pomoc"
+"Chat"=="Czat"
+"Search"=="Szukaj"
+Administration==Administracja
+Toggle navigation==Przełącz nawigację
+Re-Start==Uruchom ponownie
+Shutdown==Zamknij
+Forum==Forum
+Help==Pomoc
+About This Page==O tej stronie
+JavaScript information==Informacje o JavaScript
+external YaCy Tutorials==zewnętrzne Samouczki YaCy
+external Download YaCy==zewnętrzne Pobierz YaCy
+external Community (Web Forums)==zewnętrzne Społeczność (fora internetowe)
+external Git Repository==zewnętrzne Repozytorium Git
+Sponsor==Sponsor
+YaCy is free software, so we need the help of many to support the development. You can help by joining a sponsoring plan:==YaCy jest wolnym oprogramowaniem, dlatego potrzebujemy pomocy wielu osób, aby wspierać rozwój. Ty możesz pomóc, przystępując do planu sponsorowania:
+externalbecome a Github Sponsor==zewnętrzneZostań sponsorem na GitHubie
+externalbecome a YaCy Patreon==zewnętrzneZostań patronem YaCy na Patreon
+Please help! We need financial help to move on with the development!==Pomóż! Potrzebujemy wsparcia finansowego, aby kontynuować rozwój!
+Chat==Czat
+Search==Szukaj
+First Steps==Pierwsze kroki
+Use Case & Account==Przypadek użycia & konto
+Grab a whole site==Pobierz całą witrynę
+Monitoring==Monitorowanie
+System Status==Status systemu
+Peer-to-Peer Network==Sieć Peer-to-Peer
+Index Browser==Przeglądarka indeksu
+Network Access==Dostęp do sieci
+Crawler Monitor==Monitor crawlera
+Production==Produkcja
+Crawler==Crawler
+AI Lab==Laboratorium AI
+Automation==Automatyzacja
+YaCy Packs & Import/Export==Pakiety YaCy & import/eksport
+Content Semantic==Semantyka treści
+Target Analysis==Analiza celu
+Index Administration==Administracja indeksem
+System Administration==Administracja systemem
+Filter & Blacklists==Filtry & czarne listy
+RAM/Disk Usage & Updates==Wykorzystanie RAM/dysku & aktualizacje
+Search Portal Integration==Integracja portalu wyszukiwania
+Portal Configuration==Konfiguracja portalu
+Portal Design==Wygląd portalu
+Ranking and Heuristics==Ranking i heurystyki
+#-----------------------------
+
+#File: env/templates/simpleSearchHeader.template
+#---------------------------
+"Log in to use extended search features"=="Zaloguj się, aby korzystać z rozszerzonych funkcji wyszukiwania"
+"Search Interfaces"=="Interfejsy wyszukiwania"
+"Help"=="Pomoc"
+"Administration"=="Administracja"
+Toggle navigation==Przełącz nawigację
+Log in==Zaloguj się
+Search Interfaces==Interfejsy wyszukiwania
+==
+Web Search==Wyszukiwanie w sieci
+File Search==Wyszukiwanie plików
+Compare Search==Porównaj wyszukiwanie
+Chat==Czat
+URL Viewer==Przeglądarka URL
+Example Calls to the Search API:==Przykładowe wywołania API wyszukiwania:
+API YaCy JSON==API YaCy JSON
+API YaCy RSS/Opensearch==API YaCy RSS/OpenSearch
+API Solr RSS/Opensearch==API Solr RSS/OpenSearch
+API Solr Default Core / JSON==API Solr domyślny rdzeń / JSON
+API Solr Default Core / XML==API Solr domyślny rdzeń / XML
+API Solr Webgraph Core / XML==API Solr rdzeń Webgraph / XML
+About This Page==O tej stronie
+YaCy Tutorials==Samouczki YaCy
+JavaScript information==Informacje o JavaScript
+external Download YaCy==zewnętrzne Pobierz YaCy
+external Community (Web Forums)==zewnętrzne Społeczność (fora internetowe)
+external Git Repository==zewnętrzne Repozytorium Git
+external Bugtracker==zewnętrzne Bugtracker
+Administration »==Administracja »
+#-----------------------------
+
+#File: env/templates/simpleheader.template
+#---------------------------
+"Help"=="Pomoc"
+Toggle navigation==Przełącz nawigację
+Search Interfaces==Interfejsy wyszukiwania
+Web Search==Wyszukiwanie w sieci
+File Search==Wyszukiwanie plików
+Compare Search==Porównaj wyszukiwanie
+Chat==Czat
+URL Viewer==Przeglądarka URL
+Example Calls to the Search API:==Przykładowe wywołania API wyszukiwania:
+API YaCy JSON==API YaCy JSON
+API YaCy RSS/Opensearch==API YaCy RSS/OpenSearch
+API Solr RSS/Opensearch==API Solr RSS/OpenSearch
+API Solr Default Core / JSON==API Solr domyślny rdzeń / JSON
+API Solr Default Core / XML==API Solr domyślny rdzeń / XML
+API Solr Webgraph Core / XML==API Solr rdzeń Webgraph / XML
+About This Page==O tej stronie
+YaCy Tutorials==Samouczki YaCy
+JavaScript information==Informacje o JavaScript
+external Download YaCy==zewnętrzne Pobierz YaCy
+external Community (Web Forums)==zewnętrzne Społeczność (fora internetowe)
+external Git Repository==zewnętrzne Repozytorium Git
+external Bugtracker==zewnętrzne Bugtracker
+Administration »==Administracja »
+#-----------------------------
+
+#File: env/templates/submenuAI.template
+#---------------------------
+AI Lab==Laboratorium AI
+LLM Selection==Wybór LLM
+RAG Config==Konfiguracja RAG
+Tools Config==Konfiguracja narzędzi
+Log Reports==Raporty logów
+AI Shield==Zabezpieczenia AI
+Chat==Czat
+#-----------------------------
+
+#File: env/templates/submenuAccessTracker.template
+#---------------------------
+Access Tracker==Śledzenie dostępu
+Server Access==Dostęp do serwera
+Access Grid==Siatka dostępu
+Incoming Requests Overview==Przegląd żądań przychodzących
+Incoming Requests Details==Szczegóły żądań przychodzących
+All Connections==Wszystkie połączenia
+Local Search==Wyszukiwanie lokalne
+Log==Log
+Host Tracker==Śledzenie hostów
+Access Rate Limitations==Ograniczenia częstotliwości dostępu
+Remote Search==Wyszukiwanie zdalne
+Cookie Menu==Menu plików cookie
+Incoming Cookies==Przychodzące pliki cookie
+Outgoing Cookies==Wychodzące pliki cookie
+#-----------------------------
+
+#File: env/templates/submenuBlacklist.template
+#---------------------------
+Filter & Blacklists==Filtry & czarne listy
+Blacklist Administration==Zarządzanie czarną listą
+Blacklist Cleaner==Czyszczenie czarnej listy
+Blacklist Test==Test czarnej listy
+Import/Export==Import / eksport
+#-----------------------------
+
+#File: env/templates/submenuComputation.template
+#---------------------------
+Application Status==Status aplikacji
+System==System
+Status==Status
+Processes==Procesy
+Server Log==Log serwera
+Log Reports==Raporty logów
+Thread Dump==Zrzut wątków
+Concurrent Indexing==Indeksowanie współbieżne
+Memory Usage==Wykorzystanie pamięci
+Search Sequence==Sekwencja wyszukiwania
+Messages==Wiadomości
+Overview==Przegląd
+Incoming News==Przychodzące aktualności
+Processed News==Przetworzone aktualności
+Outgoing News==Wychodzące aktualności
+Published News==Opublikowane aktualności
+Community Data==Dane społeczności
+Surftips==Porady surfowania
+Local Peer Wiki==Lokalne wiki peera
+Bookmarks==Zakładki
+#-----------------------------
+
+#File: env/templates/submenuConfig.template
+#---------------------------
+System Administration==Administracja systemem
+Advanced Settings==Ustawienia zaawansowane
+Performance Settings of Busy Queues==Ustawienia wydajności zajętych kolejek
+Viewer and administration for database tables==Przeglądarka i administracja tabelami bazy danych
+Advanced Properties==Zaawansowana konfiguracja
+UI Translations==Tłumaczenia interfejsu
+#-----------------------------
+
+#File: env/templates/submenuCrawlMonitor.template
+#---------------------------
+Web Crawler==Web Crawler
+Processing Monitor==Monitor przetwarzania
+Crawler==Crawler
+Loader==Ładowarka
+Rejected URLs==Odrzucone adresy URL
+Queues==Kolejki
+Local==Lokalne
+Global==Globalne
+Remote==Zdalne
+No-Load==No-Load
+Crawler Steering==Sterowanie crawlerem
+Scheduler and Profile Editor==Harmonogram i edytor profili
+robots.txt Monitor==Monitor robots.txt
+Crawl Results==Wyniki crawla
+Overview==Przegląd
+(1) Receipts==(1) Potwierdzenia
+(2) Queries==(2) Zapytania
+(3) DHT Transfer==(3) Transfer DHT
+(4) Proxy Use==(4) Użycie proxy
+(5) Local Crawling==(5) Crawlowanie lokalne
+(6) Global Crawling==(6) Crawlowanie globalne
+(7) Pack Import==(7) Import pack
+#-----------------------------
+
+#File: env/templates/submenuCrawler.template
+#---------------------------
+Load Web Pages==Ładuj strony internetowe
+Site Crawling==Crawlowanie witryny
+Parser Configuration==Konfiguracja parsera
+#-----------------------------
+
+#File: env/templates/submenuDesign.template
+#---------------------------
+Design==Wygląd
+Appearance==Wygląd
+Language==Język
+Search Page Layout==Układ strony wyszukiwania
+#-----------------------------
+
+#File: env/templates/submenuIndexControl.template
+#---------------------------
+Index Administration==Administracja indeksem
+URL Database Administration==Administracja bazą danych URL
+Index Deletion==Usuwanie indeksu
+Index Sources & Targets==Źródła & cele indeksu
+Solr Schema Editor==Edytor schematu Solr
+Field Re-Indexing==Ponowne indeksowanie pól
+Reverse Word Index==Odwrotny indeks słów
+Content Analysis==Analiza treści
+#-----------------------------
+
+#File: env/templates/submenuIndexCreate.template
+#---------------------------
+Advanced Crawler==Crawler ekspercki
+Crawler/Spider==Crawler/Spider
+Crawl Start (Expert)==Start crawla (ekspert)
+Crawling of MediaWikis==Crawlowanie MediaWiki
+Crawling of phpBB3 Forums==Crawlowanie forów phpBB3
+Network Harvesting==Zbieranie z sieci
+Network Scanner==Skaner sieci
+Remote Crawling==Crawlowanie zdalne
+Scraping Proxy==Proxy scrapujące
+Autocrawl==Autocrawler
+#-----------------------------
+
+#File: env/templates/submenuIndexImport.template
+#---------------------------
+Content Export / Import==Eksport / import treści
+YaCy Packs==Pakiety YaCy
+Pack Generator==Generator pakietów
+Pack Downloader==Pobieranie pakietów
+Pack Manager==Menedżer pakietów
+Export==Eksport
+Index Export==Eksport indeksu
+Solr Dump Export/Import==Eksport/import zrzutu Solr
+Import==Import
+RSS==RSS
+OAI-PMH==OAI-PMH
+WARC==WARC
+ZIM==ZIM
+JsonList==JsonList
+Database Reader==Czytnik bazy danych
+phpBB3 Database==Baza danych phpBB3
+MediaWiki Dump==Zrzut MediaWiki
+#-----------------------------
+
+#File: env/templates/submenuMaintenance.template
+#---------------------------
+RAM/Disk Usage & Updates==Wykorzystanie RAM/dysku & aktualizacje
+Performance==Wydajność
+Web Cache==Pamięć podręczna sieci
+Download System Update==Pobierz aktualizację systemu
+#-----------------------------
+
+#File: env/templates/submenuPortalConfiguration.template
+#---------------------------
+Portal Configuration==Konfiguracja portalu
+Generic Search Portal==Ogólny portal wyszukiwania
+Search Box Anywhere==Pole wyszukiwania wszędzie
+User Profile==Profil użytkownika
+Local robots.txt==Lokalny robots.txt
+#-----------------------------
+
+#File: env/templates/submenuPublication.template
+#---------------------------
+Publication==Publikacja
+Wiki==Wiki
+Blog==Blog
+#-----------------------------
+
+#File: env/templates/submenuRanking.template
+#---------------------------
+Ranking and Heuristics==Ranking i heurystyki
+Solr Ranking Config==Konfiguracja rankingu Solr
+RWI Ranking Config==Konfiguracja rankingu RWI
+Heuristics==Heurystyki
+#-----------------------------
+
+#File: env/templates/submenuSemantic.template
+#---------------------------
+Content Semantic==Semantyka treści
+Automated Annotation==Automatyczna adnotacja
+Auto-Annotation Vocabulary Editor==Edytor słownika automatycznej adnotacji
+Knowledge Loader==Ładowarka wiedzy
+#-----------------------------
+
+#File: env/templates/submenuTargetAnalysis.template
+#---------------------------
+Target Analysis==Analiza celu
+Mass Crawl Check==Masowe sprawdzenie crawla
+Regex Test==Test wyrażenia regularnego
+#-----------------------------
+
+#File: env/templates/submenuUseCaseAccount.template
+#---------------------------
+Use Case & Accounts==Przypadek użycia & konta
+Basic Configuration==Konfiguracja podstawowa
+Accounts==Konta
+Network Configuration==Konfiguracja sieci
+#-----------------------------
+
+#File: env/templates/submenuWebStructure.template
+#---------------------------
+Web Visualization==Wizualizacja sieci
+Index Browser==Przeglądarka indeksu
+Web Structure==Struktura sieci
+Image Collage==Kolaż obrazów
+#-----------------------------
+
+#File: goto_p.html
+#---------------------------
+forwarding==przekierowanie
+forward to remote peer==przekazać do zdalnego partnera
+#-----------------------------
+
+#File: index.html
+#---------------------------
+"Extend media search results (images, videos or applications specific) to pages including such medias (provides generally more results, but eventually less relevant)."=="Rozszerz wyniki wyszukiwania multimediów (specyficzne dla obrazów, filmów lub aplikacji) na strony zawierające takie multimedia (dostarcza zazwyczaj więcej wyników, ale ewentualnie mniej trafnych)."
+"Strictly limit media search results (images, videos or applications specific) to indexed documents matching exactly the desired content domain."=="Ściśle ogranicz wyniki wyszukiwania multimediów (specyficzne dla obrazów, filmów lub aplikacji) do zindeksowanych dokumentów dokładnie pasujących do pożądanej domeny treści."
+"Reference alpha-2 language codes list"=="Referencyjna lista kodów języków alpha-2"
+Search==Szukaj
+Text==Tekst
+Images==Obrazy
+Audio==Audio
+Video==Filmy
+Applications==Aplikacje
+more options...==więcej opcji...
+Results per page==Wyniki na stronę
+Resource==Zasób
+the peer-to-peer network==sieć peer-to-peer
+only the local index==tylko lokalny indeks
+Prefer mask==Maska preferencji
+restrict on==ogranicz do
+show all==pokaż wszystkie
+Constraints:==Ograniczenia:
+only index pages==tylko strony indeksu
+Media search==Wyszukiwanie multimediów
+Extended==Rozszerzone
+Strict==Ścisłe
+Query Operators==Operatory zapytań
+restrictions==ograniczenia
+inurl:<phrase>==inurl:<phrase>
+only urls with the <phrase> in the url==tylko adresy URL zawierające <phrase> w adresie URL
+inlink:<phrase>==inlink:<phrase>
+only urls with the <phrase> within outbound links of the document==tylko adresy URL zawierające <phrase> w linkach wychodzących dokumentu
+filetype:<ext>==filetype:<ext>
+only urls with extension <ext>==tylko adresy URL z rozszerzeniem <ext>
+site:<host>==site:<host>
+only urls from host <host>==tylko adresy URL z hosta <host>
+author:<author>==author:<author>
+only pages with as-author-annotated <author>==tylko strony z adnotacją autora <author>
+tld:<tld>==tld:<tld>
+only pages from top-level-domains <tld>==tylko strony z domen najwyższego poziomu <tld>
+on:<date>==on:<date>
+only pages with <date> in content==tylko strony z <date> w treści
+from:<date1> to:<date2>==from:<date1> to:<date2>
+only pages with a date between <date1> and <date2> in content==tylko strony z datą pomiędzy <date1> a <date2> w treści
+keyword:<phrase>==keyword:<phrase>
+only pages with keyword anotation containing <phrase>==tylko strony z adnotacją słowa kluczowego zawierającą <phrase>
+/http==/http
+only resources from http or https servers==tylko zasoby z serwerów HTTP lub HTTPS
+/ftp==/ftp
+/smb==/smb
+/file==/file
+spatial restrictions==ograniczenia przestrzenne
+/location==/location
+only documents having location metadata (geographical coordinates)==tylko dokumenty posiadające metadane lokalizacji (współrzędne geograficzne)
+/radius/<latitude>/<longitude>/<distance>==/radius/<latitude>/<longitude>/<distance>
+only documents within a square zone embracing a circle of given radius (in decimal degrees) around the specified latitude and longitude (in decimal degrees)==tylko dokumenty w obrębie kwadratowej strefy obejmującej okrąg o podanym promieniu (w stopniach dziesiętnych) wokół określonej szerokości i długości geograficznej (w stopniach dziesiętnych)
+ranking modifier==modyfikator rankingu
+/date==/date
+sort by date (latest first)==sortuj według daty (najnowsze pierwsze)
+/near==/near
+multiple words shall appear near==wiele słów powinno pojawić się blisko siebie
+"" (doublequotes)=="" (podwójne cudzysłowy)
+/language/<lang>==/language/<lang>
+heuristics==heurystyki
+/heuristic==/heuristic
+add search results from external opensearch systems==dodaj wyniki wyszukiwania z zewnętrznych systemów opensearch
+Search Navigation==Nawigacja wyszukiwania
+keyboard shortcuts==skróty klawiaturowe
+next result page==następna strona wyników
+previous result page==poprzednia strona wyników
+automatic result retrieval==automatyczne pobieranie wyników
+browser integration==integracja z przeglądarką
+after searching, click-open on the default search engine in the upper right search field of your browser and select 'Add "YaCy Search.."'==po wyszukaniu kliknij domyślną wyszukiwarkę w prawym górnym polu wyszukiwania przeglądarki i wybierz 'Dodaj "YaCy Search.."'
+search as rss feed==wyszukiwanie jako kanał RSS
+json search results==wyniki wyszukiwania JSON
+for ajax developers: get the search rss feed and replace the '.rss' extension in the search result url with '.json'==dla programistów AJAX: pobierz kanał RSS wyszukiwania i zastąp rozszerzenie '.rss' w adresie URL wyniku wyszukiwania rozszerzeniem '.json'
+#-----------------------------
+
+#File: jslicense.html
+#---------------------------
+YaCy JavaScript license information==YaCy JavaScript informacje o licencji
+YaCy JavaScript files license information==YaCy JavaScript zawiera informacje o licencji
+Script==Scenariusz
+License==Licencja
+Source==Źródło
+#-----------------------------
+
+#File: portalsearch/yacy-portalsearch.html
+#---------------------------
+YaCy Bookmarks==YaCy Zakładki
+YaCy Portalsearch:==YaCy Wyszukiwanie w portalu:
+#-----------------------------
+
+#File: processing/domaingraph/applet/index.html
+#---------------------------
+"Download Java Plug-in"=="Pobierz wtyczkę Java"
+"Processing.org"=="Przetwarzanie.org"
+domaingraph : Built with Processing==domaingraph: Zbudowany z przetwarzaniem
+This browser does not have a Java Plug-in.==Ta przeglądarka nie ma wtyczki Java.
+Get the latest Java Plug-in here.==Pobierz najnowszą wtyczkę Java tutaj.
+Built with Processing==Zbudowany z przetwarzaniem
+#-----------------------------
+
+#File: proxymsg/authfail.inc
+#---------------------------
+"login"=="Zaloguj"
+Your Username/Password is wrong.==Twoja nazwa użytkownika/hasło są nieprawidłowe.
+Username==Nazwa użytkownika
+Password==Hasło
+#-----------------------------
+
+#File: proxymsg/error.html
+#---------------------------
+YaCy: Error Message==YaCy: Komunikat o błędzie
+YaCy==YaCy
+request:==Żądanie:
+unspecified error==nieokreślony błąd
+not-yet-assigned error==jeszcze nieprzypisany błąd
+You don't have an active internet connection. Please go online.==Nie masz aktywnego połączenia internetowego. Przejdź do trybu online.
+Could not load resource. The file is not available.==Nie można załadować zasobu. Plik jest niedostępny.
+#-----------------------------
+
+#File: proxymsg/proxylimits.inc
+#---------------------------
+Your Account is disabled for surfing.==Twoje konto jest wyłączone do surfowania.
+#-----------------------------
+
+#File: proxymsg/unknownHost.inc
+#---------------------------
+Did you mean:==Czy chodziło Ci o:
+#-----------------------------
+
+#File: proxymsg/urlproxyheader.html
+#---------------------------
+"add bookmark"=="dodaj zakładkę"
+YaCy stop proxy==YaCy zatrzymaj serwer proxy
+(Warning: secure target viewed over normal http)==(Ostrzeżenie: bezpieczny cel oglądany przez normalny http)
+#-----------------------------
+
+#File: rct_p.html
+#---------------------------
+"retrieve"=="odzyskać"
+remote crawl fetch test==test pobierania zdalnego indeksowania
+Retrieve remote crawl url list==Pobierz listę adresów URL zdalnego indeksowania
+Target Peer:==Docelowy partner:
+select==wybierz
+#-----------------------------
+
+#File: rssTerminal.html
+#---------------------------
+rss terminal==terminal rss
+#-----------------------------
+
+#File: sharedBlacklist_p.html
+#---------------------------
+"select all"=="zaznacz wszystkie"
+"deselect all"=="odznacz wszystkie"
+"add"=="Dodaj"
+Add Items to Blacklist==Dodaj elementy do czarnej listy
+Unable to store the items into the blacklist file:==Nie można zapisać elementów w pliku czarnej listy:
+File Error! Unable to fetch data from file.==Błąd pliku! Nie można pobrać danych z pliku.
+YaCy-Peer "==YaCy-Peer "
+" not found.==" nie znaleziono.
+URL "==URL "
+" not found or empty list.==" nie znaleziono lub pusta lista.
+Wrong Invocation! Please invoke with sharedBlacklist.html?name=PeerName==Nieprawidłowe wywołanie! Wywołaj za pomocą sharedBlacklist.html?name=PeerName
+Parse Error! An error occured while parsing XML data. Please check if the XML is valid.==Błąd analizy! Podczas analizowania danych XML wystąpił błąd. Sprawdź, czy XML jest prawidłowy.
+Blacklist source:==Źródło czarnej listy:
+Blacklist target:==Cel czarnej listy:
+Blacklist item==Element czarnej listy
+#-----------------------------
+
+#File: terminal_p.html
+#---------------------------
+"YaCy"=="YaCy"
+"Download Java Plug-in"=="Pobierz wtyczkę Java"
+"PerformanceGraph"=="Wykres wydajności"
+"WebStructurePicture"=="Obraz struktury sieci"
+"The yacy Network"=="Sieć YaCy"
+YaCy System Terminal Monitor==Monitor terminala systemowego YaCy
+<Search Form>==<Formularz wyszukiwania>
+<Crawl Start>==<Uruchom crawl>
+<Status Page>==<Strona statusu>
+<Shutdown>==<Zamknij>
+Event Terminal==Terminal zdarzeń
+Image Terminal==Terminal obrazów
+Domain Monitor==Monitor domen
+This browser does not have a Java Plug-in.==Ta przeglądarka nie ma wtyczki Java.
+Get the latest Java Plug-in here.==Pobierz najnowszą wtyczkę Java tutaj.
+Resource Monitor==Monitor zasobów
+Network Monitor==Monitor sieci
+#-----------------------------
+
+#File: yacychat.html
+#---------------------------
+"Attach search results by default"=="Domyślnie dołączaj wyniki wyszukiwania"
+"Search"=="Szukaj"
+"Attach a file"=="Załącz plik"
+"Send"=="Wysłać"
+"Clear chat"=="Wyczyść czat"
+"Download chat"=="Pobierz czat"
+"Upload chat"=="Prześlij czat"
+"Show system prompt"=="Pokaż monit systemowy"
+YaCy Chat==YaCy Czat
+This Chat is private. YaCy does not keep any history — only your browser remembers the current conversation.==Ten czat jest prywatny. YaCy nie przechowuje żadnej historii — tylko Twoja przeglądarka pamięta bieżącą rozmowę.
+Default Dialog Augmentation:==Domyślne rozszerzenie okna dialogowego:
+no search, allow attachments==bez wyszukiwania, zezwól na załączniki
+use local search==skorzystaj z wyszukiwania lokalnego
+use global search==użyj wyszukiwania globalnego
+User==Użytkownik
+Attach Search Results==Dołącz wyniki wyszukiwania
+Attach PNG/JPG or text (.txt/.md/.tex)==Załącz PNG/JPG lub tekst (.txt/.md/.tex)
+Clear Chat==Wyczyść czat
+Download Chat==Pobierz Czat
+Upload Chat==Prześlij czat
+Show System==Pokaż system
+#-----------------------------
+
+#File: yacyinteractive.html
+#---------------------------
+"Search..."=="Szukaj..."
+"Search"=="Szukaj"
+YaCy Interactive Search==Interaktywne wyszukiwanie YaCy
+Click the API icon to see an example call to the search rss API.==Kliknij ikonę API, aby zobaczyć przykładowe wywołanie API RSS wyszukiwania.
+loading from local index...==wczytywanie z lokalnego indeksu...
+onkeyup="xmlhttpPost(); return false;"==onkeyup="xmlhttpPost(); return false;"
+#-----------------------------
+
+#File: yacysearch.html
+#---------------------------
+"Refresh sorting. Depending on their rank, some results fetched in background may then appear on this page."=="Odśwież sortowanie. W zależności od rangi, niektóre wyniki pobrane w tle mogą wtedy pojawić się na tej stronie."
+"YaCy server is fetching results from available data sources."=="Serwer YaCy pobiera wyniki z dostępnych źródeł danych."
+"Show anyway links to images that could not be rendered"=="Mimo to pokaż linki do obrazów, których nie udało się wyrenderować"
+"Hide links to images that could not be rendered"=="Ukryj linki do obrazów, których nie udało się wyrenderować"
+"Play all"=="Odtwórz wszystkie"
+"Stop all"=="Zatrzymaj wszystkie"
+Click the RSS icon to see this search result as RSS message stream.==Kliknij ikonę RSS, aby zobaczyć ten wynik wyszukiwania jako strumień wiadomości RSS.
+Use the RSS search result format to add static searches to your RSS reader, if you use one.==Użyj formatu wyników wyszukiwania RSS, aby dodać statyczne wyszukiwania do czytnika RSS, jeśli go używasz.
+search==szukaj
+No Results.==Brak wyników.
+No Results. (length of search words must be at least 1 character)==Brak wyników. (długość słów wyszukiwania musi wynosić co najmniej 1 znak)
+You are not allowed to search the web with this peer.==Nie masz uprawnień do przeszukiwania sieci za pomocą tego peera.
+You have reached the maximum allowed number of accesses to this search page within ten minutes.==Osiągnąłeś maksymalną dozwoloną liczbę dostępów do tej strony wyszukiwania w ciągu dziesięciu minut.
+Please try again later or log in as administrator or as a user with extended search right.==Spróbuj ponownie później lub zaloguj się jako administrator albo użytkownik z rozszerzonym prawem wyszukiwania.
+You have reached the maximum allowed number of accesses to this search page within one minute.==Osiągnąłeś maksymalną dozwoloną liczbę dostępów do tej strony wyszukiwania w ciągu jednej minuty.
+You have reached the maximum allowed number of accesses to this search page within three seconds.==Osiągnąłeś maksymalną dozwoloną liczbę dostępów do tej strony wyszukiwania w ciągu trzech sekund.
+Did you mean:==Czy chodziło Ci o:
+Location -- click on map to enlarge==Lokalizacja -- kliknij mapę, aby powiększyć
+Failed to render 0 thumbnail(s).==Nie udało się wyrenderować 0 miniatur.
+Show==Pokaż
+Hide==Ukryj
+Media==Multimedia
+URL==URL
+Player==Odtwarzacz
+#-----------------------------
+
+#File: yacysearch_location.html
+#---------------------------
+"API"=="API"
+"search"=="szukaj"
+The information that is presented on this page can also be retrieved as XML==Informacje przedstawione na tej stronie można również pobrać w formacie XML
+Click the API icon to see the XML.==Kliknij ikonę API, aby zobaczyć plik XML.
+search==szukaj
+#-----------------------------
+
+#File: yacysearchitem.html
+#---------------------------
+"bookmark"=="zakładka"
+"recommend"=="poleć"
+"delete"=="usuń"
+"blacklist host"=="Dodaj host do czarnej listy"
+"Show all"=="Pokaż wszystkie"
+"Last known modification date"=="Ostatnia znana data modyfikacji"
+"Browse index"=="Przeglądaj indeks"
+"Raw ranking score value"=="Surowa wartość wyniku rankingu"
+Tags:==Tagi:
+Metadata==Metadane
+Parser==Parser
+Citations==Cytaty
+Pictures==Zdjęcia
+Cache==Pamięć podręczna
+View via proxy==Wyświetl przez proxy
+Not supported==Nieobsługiwane
+#-----------------------------
+
+#File: yacysearchpagination.html
+#---------------------------
+"Previous page"=="Poprzednia strona"
+"Next page"=="Następna strona"
+«==«
+»==»
+#-----------------------------
+
+#File: yacysearchtrailer.html
+#---------------------------
+"global"=="globalne"
+"local"=="lokalne"
+"Use the default ranking profile (customizable), ordering results by score."=="Użyj domyślnego profilu rankingu (konfigurowalnego), sortującego wyniki według wyniku punktowego."
+"Use the 'Date' ranking profile, ordering results by default on each document last modification date."=="Użyj profilu rankingu 'Data', sortującego wyniki domyślnie według daty ostatniej modyfikacji każdego dokumentu."
+"text"=="Tekst"
+"image"=="Obraz"
+"audio"=="Audio"
+"video"=="Wideo"
+"app"=="Aplikacja"
+"false"=="false"
+"Extend media search results to pages including such medias (provides generally more results, but eventually less relevant)"=="Rozszerz wyniki wyszukiwania multimediów na strony zawierające takie multimedia (dostarcza zazwyczaj więcej wyników, ale ewentualnie mniej trafnych)"
+"true"=="true"
+"Strictly limit media search results to indexed documents matching exactly the desired content domain."=="Ściśle ogranicz wyniki wyszukiwania multimediów do zindeksowanych dokumentów dokładnie pasujących do pożądanej domeny treści."
+"earthsearchlogo"=="Logo wyszukiwania Ziemi"
+"Sorted by descending counts"=="Sortowane według malejącej liczby"
+"Sorted by ascending counts"=="Sortowane według rosnącej liczby"
+"Sorted by descending labels"=="Sortowane według malejących etykiet"
+"Sorted by ascending labels"=="Sortowane według rosnących etykiet"
+"click to expand facet"=="Kliknij, aby rozwinąć facet"
+Peer-to-Peer==Peer-to-Peer
+Stealth Mode==Tryb ukryty
+Privacy==Prywatność
+Stealth Mode==Tryb ukryty
+Context Ranking==Ranking kontekstowy
+Sort by Date==Sortuj według daty
+Documents==Dokumenty
+Images==Obrazy
+Audio==Audio
+Video==Wideo
+Apps==Aplikacje
+Extended==Rozszerzone
+Strict==Ścisłe
+Location==Lokalizacja
+#-----------------------------
diff --git a/locales/ru.lng b/locales/ru.lng
index 2e6e703a0..4f84b3f3b 100644
--- a/locales/ru.lng
+++ b/locales/ru.lng
@@ -13,57 +13,39 @@
# $Date:: $
# $Tag:: $
# $Author:: $
-#
+#
# This file is maintained by Oliver Wunder
# This file is written by (chronological order) Roland Ramthun , Oliver Wunder , Jan Sandbrink,
# Thomas Süß
# If you find any mistakes or untranslated strings in this file please don't hesitate to email them to the maintainer.
-#File: ConfigLanguage_p.html
-#---------------------------
-# Only part 1.
-# Contributors are in chronological order, not how much they did absolutely.
-# Thank you for your help!
-default(english)==Русский
-==SEVEN, Малыхин "Orion" Дмитрий
-==<icewind@hotmail.ru>
-#-----------------------------
-
#File: AccessGrid_p.html
#---------------------------
-YaCy Network Access==Доступ к сети YaCy
Server Access Grid==Обзор соединений
This images shows incoming connections to your YaCy peer and outgoing connections from your peer to other peers and web servers==Здесь показаны входящие соединения к вашему узлу и исходящие соединения от вашего узла к другим узлам и вэб-серверам.
#-----------------------------
+"YaCy Access Grid"=="YaCy Сетка доступа"
#File: AccessTracker_p.html
+Count==Количество
+Host==Хост
+Path==Путь
#---------------------------
-Access Tracker==Доступ к трекеру
Server Access Overview==Обращения к серверу
-This is a list of #[num]# requests to the local http server within the last hour.==Число запросов на локальный http-сервер в течение последнего часа - #[num]#
-This is a list of requests to the local http server within the last hour.==Это список запросов на локальный http-сервер в течение часа.
-Showing #[num]# requests.==Показано #[num]# запросов.
->Host<==>Хост<
->Path<==>Путь<
-Date<==Дата<
Access Count During==Количество запросов
last Second==последняя секунда
last Minute==последняя минута
last 10 Minutes==последние 10 минут
last Hour==последний час
The following hosts are registered as source for brute-force requests to protected pages==Следующие хосты зарегистрированы, как пытающиеся получить доступ к защищенным страницам с помощью перебора пароля.
-#>Host==>Хост
Access Times==Время доступа
Server Access Details==Подробные сведения о доступе к серверу
Local Search Log==Лог локального поиска
Local Search Host Tracker==Локальный поиск на узле
Remote Search Log==Лог удалённого поиска
-#Total:==Итого:
-Success:==Успешно:
Remote Search Host Tracker==Удалённый поиск на узле
This is a list of searches that had been requested from this' peer search interface==Это список запросов, полученный от других поисковых узлов
-Showing #[num]# entries from a total of #[total]# requests.==Показаны #[num]# из #[total]# запросов.
Requesting Host==Запрашиваемый Хост
Offset==Смещение
Expected Results==Ожидаемые результаты
@@ -72,46 +54,41 @@ Used Time (ms)==Иcпользованное время (в мс)
URL fetch (ms)==URL выборки (в мс)
Snippet comp (ms)==Фрагмент макета(в мс)
Query==Запрос
-#>User Agent<==>User Agent<
Search Word Hashes==Поиск слова по хэшу
-Count==Количество
Queries Per Last Hour==Запросов за последний час
Access Dates==Время доступа
-This is a list of searches that had been requested from remote peer search interface==Это список поисковых запросов, которые были запрошены удалёнными узлами.
+This is a list of searches that had been requested from remote peer search interface==Это список поисковых запросов, которые были запрошены удалёнными узлами.
#-----------------------------
+This is a list of requests (max. 1000) to the local http server within the last hour.==Это список запросов (максимум 1000) к локальному http-серверу за последний час.
+Date==Дата
+Known Results==Известные результаты
+User Agent==Пользовательский агент
+Top Search Words (last 7 Days)==Самые популярные поисковые слова (за последние 7 дней)
+Peer Name==Имя узла
#File: Settings_UrlProxyAccess.inc
#---------------------------
-Augmented Browsing<==Расширенный просмотр<
-URL Proxy Settings<==Настройки URL-прокси<
-With this settings you can activate or deactivate URL proxy which is the method used for augmentation.==Эти настройки позволяют включить или отключить URL-прокси - способ используемый для расширенного просмотра.
-Service call: ==Вызов сервиса:
-, where parameter is the url of an external web page.==, где параметр это ссылка на внешнюю вэб-страницу
->URL proxy:<==>URL-прокси:<
->Enabled<==>Включить<
-Globally enables or disables URL proxy via ==Глобальное включение или отключение URL-прокси через
Show search results via URL proxy:==Показывать результаты поиска через URL-прокси:
-Enables or disables URL proxy for all search results. If enabled, all search results will be tunneled through URL proxy.==Включение или отключение URL-прокси для всех результатов поиска. Если включено, то все результаты поиска будут выводиться через URL-прокси.
-Alternatively you may add this javascript to your browser favorites/short-cuts, which will reload the current browser address==Альтернативно вы можете добавить этот javascript в избранные страницы/закладки вашего браузера, который будет открывать запрашиваемый адрес
+Enables or disables URL proxy for all search results. If enabled, all search results will be tunneled through URL proxy.==Включение или отключение URL-прокси для всех результатов поиска. Если включено, то все результаты поиска будут выводиться через URL-прокси.
+Alternatively you may add this javascript to your browser favorites/short-cuts, which will reload the current browser address==Альтернативно вы можете добавить этот javascript в избранные страницы/закладки вашего браузера, который будет открывать запрашиваемый адрес
via the YaCy proxy servlet.==через прокси-сервлет.
-or right-click this link and add to favorites:==Или нажмите правой кнопкой мыши на эту ссылку и добавьте в закладки:
+or right-click this link and add to favorites:==Или нажмите правой кнопкой мыши на эту ссылку и добавьте в закладки:
Restrict URL proxy use:==Запретить использование URL-прокси для:
-Define client filter. Default: ==Задать фильтр для клиента. По-умолчанию:
URL substitution:==Замена ссылки:
Define URL substitution rules which allow navigating in proxy environment. Possible values: all, domainlist. Default: domainlist.==Задать правила замены ссылки, которые разрешат навигацию через прокси. Возможные значения: all, domainlist. По-умолчанию: domainlist.
"Submit"=="Сохранить"
-Augmented Browsing Settings==Настройки расширенного просмотра
-With this settings you can activate or deactivate augmented browsing which happens usually via the URL proxy.==Эти настройки позволяют вам включить или отключить расширенный просмотр через URL-прокси.
-Augmented Browsing:==Расширенный просмотр:
-#>Enabled<==>Включить<
-Enables or disables augmented browsing. If enabled, all websites will be modified during loading.==Включение или отключение расширенного просмотра. Если включено, то все вэб-страницы будут изменяться во время загрузки.
-#"Submit"=="Сохранить"
#-----------------------------
+URL Proxy Settings==Настройки URL-прокси
+With this settings you can activate or deactivate URL proxy.==С помощью этих настроек вы можете активировать или деактивировать URL-прокси.
+Service call: http://localhost:8090/proxy.html?url=parameter, where parameter is the url of an external web page.==Служебный вызов: http://localhost:8090/proxy.html?url=parameter, где параметр — это URL-адрес внешней веб-страницы.
+URL proxy:==URL-прокси:
+Enabled==Включено
+Globally enables or disables URL proxy via http://yourpeer:yourport/proxy.html?url=http://externalurl/==Глобально включает или отключает URL-прокси через http://yourpeer:yourport/proxy.html?url=http://externalurl/
+Define client filter. Default: 127.0.0.1,0:0:0:0:0:0:0:1.==Определите фильтр клиентов. По умолчанию: 127.0.0.1,0:0:0:0:0:0:0:1.
#File: Blacklist_p.html
#---------------------------
Blacklist Administration==Управление черными списками
-#Used Blacklist engine:==Используемый черный список:
This function provides an URL filter to the proxy; any blacklisted URL is blocked==Эта функция представляет собой URL-фильтр для прокси-сервера; адреса в черном списке не
from being loaded. You can define several blacklists and activate them separately.==загружаются. Вы можете задать несколько черных списков и активировать их по отдельности.
You may also provide your blacklist to other peers by sharing them; in return you may==Вы также можете открыть доступ к вашему черному списку другим узлам; или
@@ -119,35 +96,15 @@ collect blacklist entries from other peers.==загружать шаблоны
Active list:==Активный список:
No blacklist selected==Черный список не выбран
Select list to edit:==Выбрать список для изменения
-not shared::shared==без общего доступа::общий доступ
-"select"=="Выбрать"
Create new list:==Создать новый список
"create"=="Создать"
-Settings for this list==Настройки для этого списка
"Save"=="Сохранить"
-Share/don't share this list==Открыть/закрыть общий доступ этому к списку
-Delete this list==Удалить этот список
-Edit list==Изменить список
-These are the domain name/path patterns in==Это доменное имя/часть пути в
Blacklist Pattern==Шаблон черного списка
Edit selected pattern(s)==Редактировать выбранный шаблон
Delete selected pattern(s)==Удалить выбранный шаблон
Move selected pattern(s) to==Переместить выбранный шаблон в
-#You can select them here for deletion==Вы можете выбрать их здесь для удаления
Add new pattern:==Добавить новый шаблон:
"Add URL pattern"=="Добавить URL шаблон"
-The right '*', after the '/', can be replaced by a==Символом '*' (звездочка), после '/' может быть заменено
->regular expression<==>регулярным выражением<
-domain.net/fullpath<==domain.net/полный путь<
-#>domain.net/*<==>domain.net/*<
-#*.domain.net/*<==*.domain.net/*<
-#*.sub.domain.net/*<==*.sub.domain.net/*<
-#sub.domain.*/*<==sub.domain.*/*<
-#domain.*/*<==domain.*/*<
-(slow)==(медленно)
-#was removed from blacklist==был удален из черного списка
-#was added to the blacklist==был добавлен в черный список
-Activate this list for==Использовать этот список для
Show entries:==Показать записи:
Entries per page:==Записи на страницу:
"set"=="Установить"
@@ -155,6 +112,19 @@ Edit existing pattern(s):==Изменить существующий шабло
"Save URL pattern(s)"=="Сохранить URL шаблона"
#-----------------------------
+"Share/don't share this list"=="Поделиться/не делиться этим списком"
+"Delete this list"=="Удалить этот список"
+not shared==не предоставлен общий доступ
+shared==общий
+A legal name is made up from a letter, digit, minus, plus or underscore as the first character==Официальное имя состоит из буквы, цифры, минуса, плюса или подчеркивания в качестве первого символа.
+followed by letters, digits, minus, plus, underscores or dots.==за которым следуют буквы, цифры, минус, плюс, подчеркивание или точки.
+An error occurred while moving entries to the target list.==Произошла ошибка при перемещении записей в целевой список.
+domain.net/fullpath==domain.net/fullpath
+domain.net/*==domain.net/*
+sub.domain.*/*==sub.domain.*/*
+domain.*/*==domain.*/*
+An error occurred while editing the following entries. Please check syntax.==Произошла ошибка при редактировании следующих записей. Пожалуйста, проверьте синтаксис.
+Activate this list for ...==Активируйте этот список для...
#File: BlacklistCleaner_p.html
#---------------------------
Blacklist Cleaner==Очистка черного списка
@@ -163,11 +133,7 @@ Check list==Проверка списка
"Check"=="Проверить"
Allow regular expressions in host part of blacklist entries.==Разрешить регулярные выражения в черном списке.
The blacklist-cleaner only works for the following blacklist-engines up to now:==Der Blacklist-Cleaner arbeitet zur Zeit nur mit den folgenden Blacklist-Engines:
-Illegal Entries in #[blList]# for==Неправильный ввод #[blList]# для
-Deleted #[delCount]# entries==Удалено #[delCount]# значений
-Altered #[alterCount]# entries!==Изменено #[alterCount]# записей!
Two wildcards in host-part==Две маски в хост-часть
-Either subdomain or wildcard==Либо поддомен или шаблону
Path is invalid Regex==Неверный путь регулярного выражения
Wildcard not on begin or end==Шаблон не начат или не закончен
Host contains illegal chars==Хост содержит недопустимые символы
@@ -177,6 +143,10 @@ Double==Двойной
No Blacklist selected==Не выбран черный список
#-----------------------------
+Either subdomain==Любой поддомен
+or==или
+wildcard==подстановочный знак
+Host is invalid Regex==Хост не является допустимым Regex.
#File: BlacklistImpExp_p.html
#---------------------------
Blacklist Import==Импорт черного списка
@@ -185,7 +155,6 @@ Import blacklist items from...==Импортировать значения че
other YaCy peers:==других узлов YaCy:
"Load new blacklist items"=="Загрузка новых значений черного списка"
URL:==по ссылке:
-plain text file:<==простого текстового файла:<
XML file:==XML файла:
Upload a regular text file which contains one blacklist entry per line.==Загрузить обычный текстовый файл, который содержит черный список построчно.
Upload an XML file which contains one or more blacklists.==Загрузить XML-файл, который содержит один или несколько черных списков .
@@ -194,96 +163,84 @@ Here you can export a blacklist as an XML file. This file will contain additiona
information about which cases a blacklist is activated for.==информацию о том, в каком случае черный список будет активен.
"Export list as XML"=="Экспортировать список как XML"
Here you can export a blacklist as a regular text file with one blacklist entry per line.==Здесь вы можете экспортировать черный список, как обычный текстовый файл с одним значением на строку.
-This file will not contain any additional information==Этот файл не будет содержать какой-либо дополнительной информации
"Export list as text"=="Экспортировать список как текст"
#-----------------------------
+plain text file:==обычный текстовый файл:
+all==все
+This file will not contain any additional information.==Этот файл не будет содержать никакой дополнительной информации.
#File: BlacklistTest_p.html
#---------------------------
Blacklist Test==Проверка черного списка
Used Blacklist engine:==Использовать черный список:
Test list:==Проверка списка:
"Test"=="Проверить"
-The tested URL was==Проверенный URL
It is blocked for the following cases:==Он блокируется в следующих случаях:
-#Crawling==Индексирование
-#DHT==DHT
-#News==Новости
-#Proxy==Прокси
Search==Поиск
Surftips==Советы
#-----------------------------
+is not blocked==не заблокирован
+Crawling==Сканирование
+DHT==DHT
+News==Новости
+Proxy==Прокси
+The tested URL was not valid.==Протестированный URL недействителен.
#File: Blog.html
+Edit==Изменить
+Text:==Текст:
#---------------------------
-by==по
-Comments==Комментарии
->edit==>изменить
->delete==>удалить
-Edit<==Изменить<
-previous entries==предыдущие записи
-next entries==следующие записи
-new entry==новая запись
-import XML-File==импорт XML-файла
-export as XML==экспорт в XML
-Comments==Комментарии
Blog-Home==Домашняя страница блога
Author:==Автор:
Subject:==Тема:
-#Text:==Текст:
-You can use==Вы можете использовать
-Yacy-Wiki Code==YaCy-Wiki код
-here.==здесь.
Comments:==Комментарии:
deactivated==отключить
->activated==>активировать
moderated==проверено
"Submit"=="Отправить"
"Preview"=="Предварительный просмотр"
"Discard"=="Отменить"
->Preview==>Предварительный просмотр
No changes have been submitted so far!==Изменения не были произведены!
Access denied==Доступ запрещен
To edit or create blog-entries you need to be logged in as Admin or User who has Blog rights.==Чтобы изменить или создать блог, вы должны быть зарегистрированы в качестве администратора или пользователя, который имеет необходимые права.
-Are you sure==Вы уверены
-that you want to delete==что вы хотите удалить:
Confirm deletion==Подтвердить удаление
-Yes, delete it.==Да, удалить это.
-No, leave it.==Нет, оставить это.
Import was successful!==Импорт завершен успешно!
Import failed, maybe the supplied file was no valid blog-backup?==Не удалось импортировать, может быть, поставляемый файл не был резервной копией?
Please select the XML-file you want to import:==Пожалуйста, выберите XML-фаил, который вы импортируете:
#-----------------------------
+"RSS"=="RSS"
+"Yes, delete it."=="Да, удалите."
+"No, leave it."=="Нет, оставить."
+"Import"=="Импорт"
+<< previous entries==<< предыдущие записи
+next entries >>==следующие записи >>
+activated==активирован
+Preview==Предварительный просмотр
+Are you sure...==Вы уверены...
+XML-Import==XML-Импорт
#File: BlogComments.html
+Comments:==Комментарии:
+Text:==Текст:
#---------------------------
-by==по
-Comments==Комментарии
-Login==Логин
Blog-Home==Домашняя страница блога
-delete==удалить
-allow==разрешить
Author:==Автор:
Subject:==Тема:
-#Text:==Текст:
-You can use==Вы можете использовать
-Yacy-Wiki Code==YaCy-Wiki код
-here.==здесь.
"Submit"=="Отправить"
"Preview"=="Предварительный просмотр"
"Discard"=="Отменить"
#-----------------------------
+<< previous entries==<< предыдущие записи
+next entries >>==следующие записи >>
+Comments are not allowed for this posting!==Комментарии к этой публикации запрещены!
+Comment on this Blog==Комментировать этот блог
#File: Bookmarks.html
+"Save"=="Сохранить"
+URL:==по ссылке:
#---------------------------
-YaCy '#[clientname]#': Bookmarks==YaCy '#[clientname]#': Закладки
The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.==Список закладок можно также получить как RSS-ленту. Это может быть сделано при выборе конкретного тега .
Click the API icon to load the RSS from the current selection.==Нажмите на иконку API для загрузки RSS из текущего выделения.
-To see a list of all APIs, please visit the API wiki page.==Для просмотра списка всех API, пожалуйста, посетите wiki-страницу API.
-
Bookmarks==
Закладки
-Bookmarks (==Закладки (
-#Login==Логин
List Bookmarks==Список закладок
Add Bookmark==Добавить закладку
Import Bookmarks==Импорт закладок
@@ -291,25 +248,17 @@ Import XML Bookmarks==Импорт XML закладок
Import HTML Bookmarks==Импорт HTML закладок
"import"=="Импортировать"
Default Tags:==Тэг по-умолчанию:
-imported==импортировано
-#Edit Bookmark==Изменить закладки
-#URL:==URL:
Title:==Заголовок:
Description:==Описание:
Folder (/folder/subfolder):==Каталог (/каталог/подкаталог):
Tags (comma separated):==Тэги (разделенные запятой):
->Public:==>Опубликовать:
yes==да
no==нет
Bookmark is a newsfeed==Закладка как новостная лента
"create"=="создать"
-"edit"=="изменить"
File:==Файл:
-import as Public==импортировать как публичную
"private bookmark"=="личная закладка"
"public bookmark"=="публичная закладка"
-Tagged with==Тэг с
-'Confirm deletion'=='Подтвердить удаление'
Edit==Изменить
Delete==Удалить
Folders==Папки
@@ -318,12 +267,34 @@ Tags==Тэги
Bookmark List==Список закладок
previous page==предыдущая страница
next page==следующая страница
-All==Все
Show==Показать
Bookmarks per page.==закладок на странице
-#unsorted==несортированный
#-----------------------------
+"RSS"=="RSS"
+"API"=="API"
+"start it"=="запустить"
+"stop it"=="остановить"
+Bookmarks==Закладки
+Login==Войти
+Bookmarks (XBEL)==Закладки (XBEL)
+Bookmarks (XML)==Закладки (XML)
+Bookmarks (RSS)==Закладки (RSS)
+Edit Bookmark==Изменить закладку
+Query:==Запрос:
+Public:==Публичный:
+import as Public:==импортировать как публичный:
+Auto Search==Автоматический поиск
+start autosearch of new bookmarks==запустить автопоиск новых закладок
+autosearch queue:==очередь автопоиска:
+received results:==получили результаты:
+current query:==текущий запрос:
+This starts a search of new or modified bookmarks since startup==Это запускает поиск новых или измененных закладок с момента запуска.
+in folder "search" with "query=<original_search_term>"==в папке «поиск» с помощью «query=<original_search_term>»
+Every peer online will be ask for results.==Каждый сверстник в сети будет спрашивать результаты.
+Tagged with |==С тегами |
+Info==Информация
+search==поиск
#File: Collage.html
#---------------------------
Image Collage==Коллаж изображений
@@ -341,17 +312,15 @@ Right Search Engine==Справа
Search Result==Результат поиска
#-----------------------------
+loading....==загрузка....
#File: ConfigAccounts_p.html
+Username==Имя пользователя
#---------------------------
User Accounts==Учётные записи пользователей
User Administration==Учётные записи
-User created:==Пользователь создан:
-User changed:==Пользователь изменён:
Generic error.==Общая ошибка.
Passwords do not match.==Пароли не совпадают.
Username too short. Username must be >= 4 Characters.==Имя пользователя слишком короткое. Имя пользователя должно быть не меньше 4 символов.
-No password is set for the administration account.==Пароль не установлен для учётной записи администратора.
-Please define a password for the admin account.==Пожалуйста, установите пароль для учётной записи администратора.
Admin Account==Учётная запись администратора
Access from localhost without account==Доступ со своего компьютера возможен без учётной записи.
Access only with qualified account==Доступ только с квалифицированной учётной записи
@@ -359,138 +328,129 @@ Peer User:==Пользователь узла:
New Peer Password:==Новый пароль узла:
Repeat Peer Password:==Повторите пароль узла:
"Define Administrator"=="Назначить администратором"
->Access Rules<==>Правила доступа<
Protection of all pages: if set to on, access to all pages need authorization; if off, only pages with "_p" extension are protected.==Защита всех страниц: если включено, то для доступа ко всем страницам требуется авторизация; если выключено, то защищены только страницы с префиксом "_p".
-Set Access Rules==Установить
Select user==Выбрать пользователя
New user==Новый пользователь
-Edit User==Изменить пользователя
-Delete User==Удалить пользователя
-Edit current user:==Изменить текущего пользователя:
-Username==Имя пользователя
-Password==Пароль
Repeat password==Повторите пароль
First name==Имя
Last name==Фамилия
Address==Адрес
-Rights==Права
-Download right==Загрузка
Timelimit==Лимит времени
Time used==Время использования
-Save User==Сохранить пользователя
#-----------------------------
+"Set Access Rules"=="Установить правила доступа"
+"Edit User"=="Изменить пользователя"
+"Delete User"=="Удалить пользователя"
+"Save User"=="Сохранить пользователя"
+Username already used (not allowed).==Имя пользователя уже использовано (не разрешено).
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==WARNING Этот экземпляр YaCy можно администрировать с помощью учетной записи «admin» и пароля по умолчанию «yacy».
+Change the password as soon as possible!==Смените пароль как можно скорее!
+Access to your peer from your own computer (localhost access) is granted with administrator rights. No need to configure an administration account.==Доступ к вашему узлу с вашего собственного компьютера (доступ локального хоста) предоставляется с правами администратора. Нет необходимости настраивать учетную запись администратора.
+This setting is convenient but less secure than using a qualified admin account.==Этот параметр удобен, но менее безопасен, чем использование квалифицированной учетной записи администратора.
+Please use with care, notably when you browse untrusted and potentially malicious websites while running your YaCy peer on the same computer.==Используйте его с осторожностью, особенно при просмотре ненадежных и потенциально вредоносных веб-сайтов при запуске узла YaCy на том же компьютере.
+This is required if you want a remote access to your peer, but it also hardens access controls on administration operations of your peer.==Это необходимо, если вам нужен удаленный доступ к вашему узлу, но это также ужесточает контроль доступа к административным операциям вашего узла.
+Access Rules==Правила доступа
+Password==Пароль
+Rights:==Права:
#File: ConfigAppearance_p.html
+Text==Текст
#---------------------------
Appearance and Integration==Внешний вид
You can change the appearance of the YaCy interface with skins.==Вы можете изменить внешний вид YaCy используя скины.
-#You can change the appearance of YaCy with skins==Вы можете изменить внешний вид YaCy со скинами
The selected skin and language also affects the appearance of the search page.==Выбранный скин и язык, также влияют на внешний вид страницы поиска.
-If you create a search portal with YaCy then you can==Если вы создадите поиск с Yacy,
change the appearance of the search page here.==то изменить внешний вид страницы поиска вы можете здесь.
-#and the default icons and links on the search page can be replaced with you own.==и стандартные иконки и ссылки на странице поиска будут заменены на ваши.
Skin Selection==Выбор скина
-Select one of the default skins, download new skins, or create your own skin.==Выберите один из стандартных скинов, загрузите новые скины, или создайте свой собственный скин.
Current skin==Текущий скин
Available Skins==Доступные скины
"Use"=="Использовать"
"Delete"=="Удалить"
->Skin Color Definition<==>Цвет скина<
The generic skin 'generic_pd' can be configured here with custom colors:==Основной скин 'generic_pd' может быть изменён пользователем::
->Background<==>Фон<
->Text<==>Текст<
->Legend<==>Легенда<
->Table Header<==>Значение таблицы<
->Table Item<==>Значение таблицы<
->Table Item 2<==>Значение таблицы 2<
->Table Bottom<==>Таблица внизу<
->Border Line<==>Граница линии<
->Sign 'bad'<==>Знак 'плохо'<
->Sign 'good'<==>Знак 'хорошо'<
->Sign 'other'<==>Знак 'другое'<
->Search Headline<==>Заголовок поиска<
->Search URL==>Поиск URL
"Set Colors"=="Установить цвета"
->Skin Download<==>Установка скина<
-Skins can be installed from download locations==Скин может быть установлен из источника на локальном компьютере
Install new skin from URL==Установка нового скина по ссылке
Use this skin==Использовать этот скин
"Install"=="Установить"
Make sure that you only download data from trustworthy sources. The new Skin file==Убедитесь, что вы загружаете данные из достоверного источника. Новый файл скина
might overwrite existing data if a file of the same name exists already.==может перезаписать существующий файл, если файл с таким именем уже существует.
->Unable to get URL:==>Не удалось получить по URL:
Error saving the skin.==Ошибка сохранения файла скина.
#-----------------------------
+Select one of the default skins. After selection it might be required to reload the web page while holding the shift key to refresh cached style files.==Выберите один из скинов по умолчанию. После выбора может потребоваться перезагрузить веб-страницу, удерживая клавишу Shift, чтобы обновить кэшированные файлы стилей.
+Skin Color Definition==Определение цвета кожи
+Background==Фон
+Legend==Легенда
+Table Header==Таблица Заголовок
+Table Item==Таблица Элемент
+Table Item 2==Таблица Элемент 2
+Table Bottom==Таблица Низ
+Border Line==Граница Линия
+Sign 'bad'==Знак "плохо"
+Sign 'good'==Подпишите «хорошо»
+Sign 'other'==Подпишите «другое»
+Search Headline==Поиск по заголовку
+Search URL==Поиск URL
+Search URL + hover==Поиск URL + наведение
+Skin Download==Скачать скин
+Skins can be installed from download locations:==Скины можно установить из мест загрузки:
#File: ConfigBasic.html
#---------------------------
-Access Configuration==Основные настройки
Basic Configuration==Основные настройки
Your port has changed. Please wait 10 seconds.==Порт вашего узла был изменён. Пожалуйста, подождите 10 секунд.
-Your browser will be redirected to the new location in 5 seconds.==Ваш браузер перейдёт на новую страницу в течение 10 секунд.
-The peer port was changed successfully.==Порт узла был успешно изменён.
Your YaCy Peer needs some basic information to operate properly==Укажите основную информацию для работы вашего узла
-Select a language for the interface==Выберите язык интерфейса
Use Case: what do you want to do with YaCy:==Выберите цель использования YaCy:
Community-based web search==Групповой вэб-поиск
Join and support the global network 'freeworld', search the web with an uncensored user-owned search network==Регистрация и поддержка глобальной сети 'FreeWorld', поиск в интернете без цензуры пользовательской поисковой сети.
Search portal for your own web pages==Поиск на ваших собственных сайтах
Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.==Ваш YaCy ведет себя независимо от других участников сети, и вы имеете свой собственный веб-индекс, начав самостоятельно индексировать веб. Это может быть использовано для поиска на собственном сайте или для создания тематического поискового портала.
-Files may also be shared with the YaCy server, assign a path here:==Укажите путь к общим файлам, доступным серверу YaCy:
-This path can be accessed at ==Этот путь можно получить по адресу
-Use that path as crawl start point.==Используйте этот путь в качестве начальной точки индексирования.
Intranet Indexing==Поиск в сети интранет
-Create a search portal for your intranet or web pages or your (shared) file system.==Создайте поисковый портал для вашей интранет-сети или веб-страниц, или вашей (распределённой) файловой системы.
-URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form==URL-адреса могут быть использованы с HTTP/HTTPS/FTP и локальным именем домена или IP-адресом, или ссылки
-or smb:==или smb:
Your peer name has not been customized; please set your own peer name==Вы не указали имя узла. Пожалуйста, назовите свой узел.
You may change your peer name==Измените имя вашего узла
Peer Name:==Имя узла:
-Your peer cannot be reached from outside==Ваш узел недоступен извне
-which is not fatal, but would be good for the YaCy network==это не критично, но необходимо для правильной работы сети
-please open your firewall for this port and/or set a virtual server option in your router to allow connections on this port==пожалуйста, разрешите подключения на этот порт в вашем брандмауэре или в настройках роутера
Your peer can be reached by other peers==Ваш узел доступен для других узлов
Peer Port:==Порт узла:
-with SSL== использовать SSL
-https enabled==HTTPS разрешено
-on port==на порту
Configure your router for YaCy using UPnP:==Включить UPnP:
Configuration was not successful. This may take a moment.==Настройки не были применены. Попробуйте через некоторое время.
-Set Configuration==Сохранить
-Your basic configuration is complete! You can now (for example)==Основная настройка завершена! Теперь вы можете
-just <==просто открыть <
-start an uncensored search==начать нецентрализованный поиск
-start your own crawl and contribute to the global index, or create your own private web index==начать своё собственное индексирование > и внести вклад в глобальный поиск, или создать свой собственный веб-индекс
-set a personal peer profile (optional settings)==установить персональный профиль узла
-monitor at the network page what the other peers are doing==страницу мониторинга сети >
Your Peer name is a default name; please set an individual peer name.==Ваше имя узла является именем по-умолчанию, пожалуйста, установите другое имя узла.
-#What you should do next:==
-You did not set a user name and/or a password.==Вы не установили имя пользователя и/или пароль.
-Some pages are protected by passwords.==Некоторые страницы защищены паролем.
-You should set a password at the Accounts Menu to secure your YaCy peer.::==Вы должны установить пароль в меню Учётные записи, чтобы защитить узел YaCy.::
-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 recommended.==YaCy может работать и без открытия порта, но это нежелательно.
#-----------------------------
+"ok"=="хорошо"
+"Use the browser preferred language if available"=="Используйте предпочитаемый язык браузера, если он доступен."
+"Click to generate translated pages"=="Нажмите, чтобы создать переведенные страницы"
+"Active : translated pages are available"=="Активно: доступны переведенные страницы."
+"Usecase Freeworld"=="Вариант использования «Свободный мир"
+"Usecase Portal"=="Портал примеров использования"
+"Usecase Intranet"=="Вариант использования Интранет"
+"warning"=="предупреждение"
+"Set Configuration"=="Установить конфигурацию"
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==WARNING Этот экземпляр YaCy можно администрировать с помощью учетной записи «admin» и пароля по умолчанию «yacy».
+Select a language for the interface:==Выберите язык интерфейса:
+Browser==Браузер
+English==Английский
+Deutsch==немецкий
+Français==Франция
+Greek==Греческий
+Italiano==Итальяно
+Español==испанский
+Can not leave from Intranet Indexing : one or more remote Solr instances are attached and may contain private documents indexed.==Невозможно выйти из индексирования в интрасети: один или несколько удаленных экземпляров Solr прикреплены и могут содержать проиндексированные частные документы.
+One or more remote Solr instances are attached and may contain indexed public documents irrelevant to your local domain.==Один или несколько удаленных экземпляров Solr прикреплены и могут содержать проиндексированные общедоступные документы, не имеющие отношения к вашему локальному домену.
+One or more remote Solr instances are attached.==Подключен один или несколько удаленных экземпляров Solr.
+Create a search portal for your intranet or web pages or your (shared) file system. URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form file:///<path> or smb://<server>/<path>==Создайте поисковый портал для вашей интрасети, веб-страниц или вашей (общей) файловой системы. URL-адреса могут использоваться с http/https/ftp и именем локального домена или IP, или с URL в формате file:///<path> или smb://<server>/<path>.
+with SSL (https enabled==с SSL (https включен
+Your Browser will reload the YaCy UI with the new port in 5 seconds...==Ваш браузер перезагрузит пользовательский интерфейс YaCy с новым портом через 5 секунд...
+What you should do next:==Что вам следует делать дальше:
+Your basic configuration is complete! You can now (for example):==Ваша базовая конфигурация завершена! Теперь вы можете (например):
+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 recommended.==Вы не открыли порт в брандмауэре или ваш маршрутизатор не перенаправляет порт сервера вашему узлу. Это необходимо, если вы хотите полноценно участвовать в сети YaCy. Вы также можете использовать свой пир, не открывая его, но это не рекомендуется.
#File: ConfigHeuristics_p.html
+Active==Включено
+Comment==Комментарий
#---------------------------
Heuristics Configuration==Конфигурация эвристики
-A heuristic is an 'experience-based technique that help in problem solving, learning and discovery' (wikipedia).==Эвристика это специальный метод, который помогает в анализе и поиске лучшего результата.
-The search heuristics that can be switched on here are techniques that help the discovery of possible search results based on link guessing, in-search crawling and requests to other search engines.==Эвристический поиск использует методы, которые помогают улучшить результат поиска за счет предугадывания ссылок и/или запросов к другим поисковым системам.
-When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content.==Когда используется эвристический поиск, полученные ссылки не используются в поисковой выдаче напрямую, а используются для индексации новых страниц.
-This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==Это даёт возможность использовать черные списки и гарантирует, что искомое слово реально есть на странице найденной эвристикой.
-The success of heuristics are marked with an image==Успех эвристики отмечен изображением
-heuristic:<name>==эвристика:<название>
-#(redundant)==(избыточно)
-(new link)==(новая ссылка)
-below the favicon left from the search result entry:==под иконкой слева от результата поиска:
The search result was discovered by a heuristic, but the link was already known by YaCy==Результат поиска был обнаружен при помощи эвристики, но ссылка была уже известна YaCy.
The search result was discovered by a heuristic, not previously known by YaCy==Результат поиска был обнаружен при помоще эвристики, но ранее не был известен YaCy.
'site'-operator: instant shallow crawl==Оператор 'site': мгновенная неглубокая индексация
When a search is made using a 'site'-operator (like: 'download site:yacy.net') then the host of the site-operator is instantly crawled with a host-restricted depth-1 crawl.==Если при поиске используется оператор 'site' (например: 'download site:yacy.net'), то указанный сайт индексируется с глубиной поиска 1.
That means: right after the search request the portal page of the host is loaded and every page that is linked on this page that points to a page on the same host.==Это означает, что сразу после поискового запроса загружается главная страница сайта и все страницы сайта на которые есть ссылки с главной.
-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 и в конфигурации YaCy ограничения, то она достаточно медленная. Но страницы могут быть доступны при следущем поиске (через несколько секунд).
+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 и в конфигурации YaCy ограничения, то она достаточно медленная. Но страницы могут быть доступны при следущем поиске (через несколько секунд).
search-result: shallow crawl on all displayed search results==Результат поиска: неглубокая индексация всех отображенных результатов поиска
When a search is made then all displayed result links are crawled with a depth-1 crawl.==При выполнении поиска все отображённые ссылки индексируются с глубиной 1.
This means: right after the search request every page is loaded and every page that is linked on this page.==Это означает, что сразу после поиска запрос каждой страницы загружается и каждая страница ссылается на эту страницу.
@@ -501,59 +461,42 @@ 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 simultaneously, parsed and indexed immediately.==20 результатов берутся из удалённой системы, загружаются одновременно, анализируются и индексируются сразу.
-To find out more about OpenSearch see==Для поиска информации об OpenSearch смотрите
-#>OpenSearch.org<==>OpenSearch.org<
Available/Active Opensearch System==Доступная/Активная OpenSearch-система
->Active<==>Активный<
->Title<==>Заголовок<
->Comment<==>Комментарий<
-Url (format opensearch==URL (формат OpenSearch
-Url template syntax==шаблон синтаксиса URL
->delete<==>удалить<
->new<==>Новый<
"add"=="Добавить"
"Save"=="Сохранить"
"reset to default list"=="Восстановить список по-умолчанию"
-"discover from index" class=="Открыть из индекса" класс
-start background task, depending on index size this may run a long time==Запустить фоновую задачу. В зависимости от размера индекса, это может занять длительное время.
With the button "discover from index" you can search within the metadata of your local index (Web Structure Index) to find systems which support the Opensearch specification.==При нажатии кнопки "Открыть из индекса" вы можете производить поиск в метаданных вашего локального индекса (вэб-индекса) с помощью систем, которые поддерживают спецификации Opensearch.
The task is started in the background. It may take some minutes before new entries appear (after refreshing the page).==Задача будет запущена в фоне. Может пройти несколько минут, прежде чем появятся первые результаты (после обновления страницы).
-Alternatively you may==В качестве альтернативы вы можете скопировать и вставить
->copy & paste a example config file<==> пример файла настроек<
-located in defaults/heuristicopensearch.conf to the DATA/SETTINGS directory.==heuristicopensearch.conf, хранящийся по-умолчанию в папке DATA/SETTINGS.
-For the discover function the web graph option of the web structure index and the fields target_rel_s, target_protocol_s, target_urlstub_s have to be switched on in the webgraph Solr schema.==Обратите внимание, что функция Webgraph, опция вэб-структуры индекса и поля target_rel_s, target_protocol_s, target_urlstub_s должны быть включены в схеме Webgraph Solr.
"switch Solr fields on"=="Изменить значения Solr"
-('modify Solr Schema')==('Изменить схему базы Solr?')
#-----------------------------
+"heuristic:<name> (redundant)"=="эвристика:<имя> (избыточный)"
+"heuristic:<name> (new link)"=="эвристика:<имя> (новая ссылка)"
+"discover from index"=="узнать из индекса"
+When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content. This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==При использовании эвристики поиска полученные ссылки не используются непосредственно в качестве результатов поиска, а загруженные страницы индексируются и сохраняются как другой контент. Это гарантирует возможность использования черных списков и то, что искомое слово действительно появится на странице, обнаруженной эвристикой.
+The success of heuristics are marked with an image (==Успех эвристики отмечается изображением (
+) below the favicon left from the search result entry:==) под значком слева от записи результатов поиска:
+Title==Заголовок
+Url==URL
+delete==удалить
+new==новый
#File: IndexFederated_p.html
#-----------------------------
Index Sources & Targets==Источники индекса и цели
- YaCy supports multiple index storage locations.==YaCy поддерживает несколько путей к хранилищам индекса.
As an internal indexing database a deep-embedded multi-core Solr is used and it is possible to attach also a remote Solr.==Используется внутренняя база данных индекса встроенная в мульти-ядро Solr, но также может использоваться и удалённая база Solr.
Solr Search Index==База данных Solr
-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 Schema Editor.==Solr содержит главный поисковый индекс. База данных состоит из двух ядер: по-умолчанию ядро 'collection1' для документов и ядро 'webgraph' для вэб-контента. База данных Solr может быть подробно настроена через редактор схемы.
-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 is stored within the YaCy DATA directory.==Для записи данных будет использоваться встроенная база Solr, которая хранится в папке DATA.
-The Solr native search interface is accessible at ==Интерфейс поиска Solr доступен по ссылке
-#/solr/select?q=*:*&start=0&rows=3&core=collection1==/solr/select?q=*:*&start=0&rows=3&core=collection1
-for the default search index (core: collection1) and at ==для поискового индекса по-умолчанию (ядро: collection1) и
-#/solr/select?q=*:*&start=0&rows=3&core=webgraph==/solr/select?q=*:*&start=0&rows=3&core=webgraph
-for the webgraph core. ==для ядра вэб-контента.
If you switch off this index, a remote Solr must be activated.==Если вы выключите использование встроенной базы, то будет активирована удалённая база Solr.
Use remote Solr server(s)==Использовать удалённую базу Solr
Solr Hosts==Хосты Solr
Solr Host Administration Interface==Интерфейс управления Solr
Index Size==Документов в индексе
-It's easy to attach an external Solr to YaCy.==Присоединить внешнюю базу 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 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 ==Метод сегментирования
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 forty times more links from loaded pages than in documents of the main search index).==Индекс вэб-контента используется для просмотра хостов (поиск локальных файлов и папок), ранжирования (подсчет числа ссылок) и поиска файлов (примерно в 40 раз больше ссылок из загруженных страниц в документах главного поискового индекса).
@@ -563,16 +506,29 @@ use webgraph search index (rich information in second Solr core)==Использ
Peer-to-Peer Operation==P2P-операции
The 'RWI' (Reverse Word Index) is necessary for index transmission in distributed mode. For portal or intranet mode this must be switched off.=='RWI' (Обратный индекс слов) необходим для передачи индекса в распределённом режиме. Для поиска в интранете или на локальном сайте он должен быть отключен.
support peer-to-peer index transmission (DHT RWI index)==Включить поддержку P2P-передачи индекса (DHT RWI индекс)
-"Set"=="Сохранить"
#-----------------------------
+YaCy supports multiple index storage locations.==YaCy поддерживает несколько мест хранения индексов.
+Lazy Value Initialization==Ленивая инициализация значений
+Use deep-embedded local Solr==Используйте глубоко встроенный локальный Solr.
+The Solr native search interface is accessible at==Собственный интерфейс поиска Solr доступен по адресу
+/solr/select?q=*:*&start=0&rows=3&core=collection1==/solr/select?q=*:*&start=0&rows=3&core=collection1
+for the default search index (core: collection1) and at==для индекса поиска по умолчанию (ядро: коллекция1) и по адресу
+Allow self-signed certificates==Разрешить самозаверяющие сертификаты
+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 https://user:password@localhost:8984/solr.==Установите этот флажок, если удаленный сервер Solr защищен паролем и запрашивается через HTTPS, но предоставляет только самозаверяющий сертификат (а не проверенный официальным центром сертификации). Solr URL может быть, например, чем-то вроде https://user:password@localhost:8984/solr.
+Sharding Method==Метод шардинга
+Block known error URLs in DHT==Блокировать URL-адреса известных ошибок в DHT
+Reject URLs/RWIs with known errors from peers. Disable to opt out.==Отклонять URL-адреса/RWIs с известными ошибками от узлов. Отключите, чтобы отказаться.
+Retry after (days)==Повторить попытку через (дней)
+for temporary errors; permanent errors stay blocked.==за временные ошибки; постоянные ошибки остаются заблокированными.
+Permanent error statuses==Статусы постоянных ошибок
+comma-separated (default: 404,410,-1; -1=DNS/network errors)==через запятую (по умолчанию: 404,410,-1; -1=ошибки DNS/network)
#File: IndexSchema_p.html
#---------------------------
Solr Schema Editor==Редактор схемы Solr
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==При необходимости, вы можете использовать различные названия полей в колонке "Пользовательское имя поля Solr" вместо стандартных.
Select a core:==Выберите ядро
-the core can be searched at==которое может быть найдено по ссылке
Active==Включено
Attribute==Аттрибут
Custom Solr Field Name==Пользовательское имя поля Solr
@@ -582,14 +538,18 @@ show all available==Показать все доступные
show disabled==Показать отключенные
"Set"=="Сохранить"
"reset selection to default"=="Вернуть значения по-умолчанию"
->Reindex documents<==>Переиндексация документов<
-If you unselected some fields, old documents in the index still contain the unselected fields.==Если вы не отметили некоторые поля, старые документы в индексе по прежнему будут содержать неотмеченные поля.
+If you unselected some fields, old documents in the index still contain the unselected fields.==Если вы не отметили некоторые поля, старые документы в индексе по прежнему будут содержать неотмеченные поля.
To physically remove them from the index you need to reindex the documents.==Для физического удаления таких полей из индекса, вам необходимо переиндексировать документы.
Here you can reindex all documents with inactive fields.==Здесь вы можете запустить переиндексацию всех документов с неотмеченными полями.
"reindex Solr"=="Начать переиндексацию"
-You may monitor progress (or stop the job) under IndexReIndexMonitor_p.html==Посмотреть или остановить ход работы вы можете на странице переиндексации.
#---------------------------
+"API"=="API"
+"active"=="активный"
+"disabled"=="неполноценный"
+"Required for proper operation"=="Требуется для корректной работы"
+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.==Схему solr также можно получить здесь в формате XML. Нажмите значок API, чтобы просмотреть XML-файл. Просто скопируйте этот XML-файл в solr/conf/schema.xml, чтобы настроить solr.
+Reindex documents==Переиндексировать документы
#File: ConfigHTCache_p.html
#---------------------------
Hypertext Cache Configuration==Настройка кэша
@@ -598,144 +558,136 @@ The cache is a rotating cache: if it is full, then the oldest entries are delete
HTCache Configuration==Настройка кэша
The path where the cache is stored==Место хранения кэша
The current size of the cache==Текущий размер кэша
->#[actualCacheSize]# MB for #[actualCacheDocCount]# files, #[docSizeAverage]# KB / file in average==>#[actualCacheSize]# MB для #[actualCacheDocCount]# файлов, средний размер файла #[docSizeAverage]# KB
The maximum size of the cache==Максимальный размер кэша
"Set"=="Установить"
Cleanup==Удаление кэша
Cache Deletion==Очистить кэш
Delete HTTP & FTP Cache==Очистить HTTP & FTP кэш
Delete robots.txt Cache==Очистить кэш robots.txt
-Delete cached snippet-fetching failures during search==Удалить кэшированные фрагменты, полученные ошибочно во время поиска
"Delete"=="Удалить"
#-----------------------------
+"A cache hit occurs when the requested data can be found in a cache."=="Попадание в кэш происходит, когда запрошенные данные можно найти в кэше."
+"Concurrent access timeout info"=="Информация о тайм-ауте одновременного доступа"
+Cache hits==Попадания в кэш
+MB==МБ
+Compression level==Уровень сжатия
+Concurrent access timeout==Тайм-аут одновременного доступа
+The maximum time to wait for acquiring a synchronization lock on concurrent get/store cache operations.==Максимальное время ожидания получения блокировки синхронизации для одновременных операций кэша get/store.
+Beyond this limit, the crawler or proxy falls back to regular remote resource loading.==За пределами этого предела сканер или прокси-сервер возвращается к обычной удаленной загрузке ресурсов.
+milliseconds==миллисекунды
#File: ConfigLanguage_p.html
#---------------------------
Language selection==Выбор языка
You can change the language of the YaCy-webinterface with translation files.==Здесь вы можете изменить язык интерфейса YaCy.
-Current language==Текущий язык
-#default(english)==Русский
-Author(s) (chronological)==Автор
-Send additions to maintainer==Отправьте замечания координатору перевода
-Available Languages==Доступные языки
Install new language from URL==Установить новый язык по ссылке
Use this language==Использовать этот язык
"Use"=="Использовать"
"Delete"=="Удалить"
"Install"=="Установить"
-Unable to get URL:==Не удалось получить URL:
Error saving the language file.==Ошибка сохранения языкового файла.
Make sure that you only download data from trustworthy sources. The new language file==Убедитесь, что вы загружаете новый языковой файл из достоверных источников.
might overwrite existing data if a file of the same name exists already.==Возможна перезапись существующих данных, если файл с таким именем уже существует.
#-----------------------------
+Current language==Текущий язык
+default(english)==по умолчанию (английский)
+Author(s) (chronological)==Автор(ы) (хронологический)
+Send additions to maintainer==Отправить дополнения сопровождающему
+Available Languages==Доступные языки
+Download Language File==Загрузить языковой файл
+Supported formats are the internal language file (extension .lng) or XLIFF (extension .xlf) format.==Поддерживаемые форматы — это внутренний языковой файл (расширение .lng) или формат XLIFF (расширение .xlf).
#File: ConfigNetwork_p.html
+Accepted Changes.==Изменения приняты
#---------------------------
-==
Network Configuration==Настройка сети
No changes were made!==Изменений не произведено!
-Accepted Changes==Изменения приняты
-Inapplicable Setting Combination==Некорректное сочетание настроек
-#P2P operation can run without remote indexing, but runs better with remote indexing switched on. Please switch 'Accept Remote Crawl Requests' on==P2P-Tätigkeit läuft ohne Remote-Indexierung, aber funktioniert besser, wenn diese eingeschaltet ist. Bitte aktivieren Sie 'Remote Crawling akzeptieren'
-For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration==Для P2P-режима должно быть разрешена или отправка через DHT или приём (или и то и другое). Вы указали автономную (Robinson) конфигурацию
Global Search in P2P configuration is only allowed, if index receive is switched on. You have a P2P configuration, but are not allowed to search other peers.==Глобальный P2P-поиск доступен только, если у вас включен приём индекса через DHT. У вас P2P-конфигурация, но вам не доступен глобальный поиск.
-For Robinson Mode, index distribution and receive is switched off==Для автономного (Robinson) режима, отсылка и прием индекса отключены
-#This Robinson Mode switches remote indexing on, but limits targets to peers within the same cluster. Remote indexing requests from peers within the same cluster are accepted==Dieser Robinson-Modus aktiviert Remote-Indexierung, aber beschränkt die Anfragen auf Peers des selben Clusters. Nur Remote-Indexierungsanfragen von Peers des selben Clusters werden akzeptiert
-#This Robinson Mode does not allow any remote indexing (neither requests remote indexing, nor accepts it)==Dieser Robinson-Modus erlaubt keinerlei Remote-Indexierung (es wird weder Remote-Indexierung angefragt, noch akzeptiert)
Network and Domain Specification==Спецификация сети и домена
-# With this configuration it is not allowed to authentify automatically from localhost!==Такая конфигурация не разрешает автоматически авторизовать локальный компьютер!
-# Please open the Account Configuration and set a new password.==Пожалуйста, откройте учётные записи и установите новый пароль.
YaCy can operate a computing grid of YaCy peers or as a stand-alone node.==YaCy может работать в режиме кластера узлов или как одиночный узел.
To control that all participants within a web indexing domain have access to the same domain,==Для того, чтобы все участники домена индексации имели доступ к одним и тем же данным,
this network definition must be equal to all members of the same YaCy network.==данное описание сети должно быть одинаково у всех членов этой сети.
->Network Definition<==>Сеть<
Remote Network Definition URL==Ссылка на удалённую сеть
Enter custom URL...==Введите свою ссылку...
Network Nick==Название сети
Long Description==Подробное описание
Indexing Domain==Индексация домена
-#DHT==DHT
"Change Network"=="Изменить сеть"
Distributed Computing Network for Domain==Сеть распределенных вычислений для домена
-You can configure if you want to participate at the global YaCy network or if you want to have your==Эти параметры позволяют настроить поиск в глобальной сети или внутри вашего
-own separate search cluster with or without connection to the global network. You may also define==кластера, с подключением или без подключения к глобальной сети. Вы можете также задать
-a completely independent search engine instance, without any data exchange between your peer and other==совершенно независимый поисковый движок, без обмена любыми данными между вашим узлом и другими
-peers, which we call a 'Robinson' peer.==узлами. Этот режим мы называем 'Robinson'.
Peer-to-Peer Mode==Режим P2P
->Index Distribution==>Распределение индекса
-This enables automated, DHT-ruled Index Transmission to other peers==Автоматическая передача индекса через DHT на другие узлы
->enabled==>включить
disabled during crawling==отключить во время сканирования
disabled during indexing==отключить во время индексации
->Index Receive==>Приём индекса
-Accept remote Index Transmissions==Приём удалённых передач индекса
-This works only if you have a senior peer. The DHT-rules do not work without this function==Работает только, если ваш узел является старшим. Правила DHT не работают без этой функции.
->reject==>запретить
accept transmitted URLs that match your blacklist==принимать ссылки, совпадающие с вашим чёрным списком
->allow==>разрешить
deny remote search==запретить удалённый поиск
-#>Accept Remote Crawl Requests==>Приём запросов удалённого индексатора
-#Perform web indexing upon request of another peer==Выполнять вэб-индексирование при запросе от другого узла
-#This works only if you are a senior peer==Работает только, если ваш узел является старшим.
-#Load with a maximum of==Загрузить максимум
-#pages per minute==страниц в минуту (PPM)
->Robinson Mode==>Режим Robinson
-If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers==Если ваши узлы работают в режиме Robinson, то вы можете запустить YaCy в качестве движка для собственного поискового портала, без обмена данными с другими узлами
-There is no index receive and no index distribution between your peer and any other peer==В случае выбора Robinson-кластеризации, приём и передача индекса между вашим и другими узлами будут отсутствовать
-#In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster==
->Private Peer==>Частный узел
-Your search engine will not contact any other peer, and will reject every request==Ваш узел не будет контактировать с любыми другими узлами, и будет возвращать любой запрос
-#>Private Cluster==>Частный кластер
#Your peer is part of a private cluster without public visibility
#Index data is not distributed, but remote crawl requests are distributed and accepted from your cluster
#Search requests are spread over all peers of the cluster, and answered from all peers of the cluster
#List of ip:port - addresses of the cluster: (comma-separated)
->Public Cluster==>Публичный кластер
-Your peer is part of a public cluster within the YaCy network==Ваш узел является частью публичного кластера внутри сети YaCy
Index data is not distributed, but remote crawl requests are distributed and accepted==Индексные данные не распространяются, но удалённые запросы индексирования распространяются и принимаются
-Search requests are spread over all peers of the cluster, and answered from all peers of the cluster==Поисковые запросы распространяются на все узлы кластера, результаты поиска принимаются от всех узлов кластера
List of .yacy or .yacyh - domains of the cluster: (comma-separated)==Список .yacy или .yacyh - домены кластера: (через запятую)
->Public Peer==>Публичный узел
-You are visible to other peers and contact them to distribute your presence==Ваш узел виден другим участникам и вы связываетесь с ними для распространения своего присутствия
-Your peer does not accept any outside index data, but responds on all remote search requests==Ваш узел не принимает любые сторонние данные индекса, но отвечает на все удалённые поисковые запросы
->Peer Tags==>Тэги узла
-When you allow access from the YaCy network, your data is recognized using keywords==Когда вы разрешаете доступ из сети YaCy, ваши данные распознаются с помощью ключевых слов
-Please describe your search portal with some keywords (comma-separated)==Пожалуйста, опишите ваш поисковый портал несколькими словами (через запятую)
If you leave the field empty, no peer asks your peer. If you fill in a '*', your peer is always asked.==Если вы оставите поле пустым, то другие узлы не будут опрашивать ваш узел. Если вы укажите в поле '*', то ваш узел всегда будет опрашиваться.
"Save"=="Сохранить"
#-----------------------------
+"Transport Layer Security"=="Безопасность транспортного уровня"
+"Secure Sockets Layer"=="Уровень защищенных сокетов"
+Inapplicable Setting Combination:==Неприменимая комбинация настроек:
+For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration.==Для операции P2P необходимо установить как минимум DHT распространение или DHT получение (или оба). Таким образом, вы определили конфигурацию Робинсона.
+For Robinson Mode, index distribution and receive is switched off.==В режиме Робинзона распределение и прием индексов отключены.
+Network Definition==Определение сети
+DHT==DHT
+Enable Peer-to-Peer Mode to participate in the global YaCy network,==Включите одноранговый режим для участия в глобальной сети YaCy,
+or if you want your own separate search cluster with or without connection to the global network.==или если вам нужен собственный отдельный поисковый кластер с подключением к глобальной сети или без него.
+Enable 'Robinson Mode' for a completely independent search engine instance,==Включите «Режим Робинзона» для полностью независимого экземпляра поисковой системы,
+without any data exchange between your peer and other peers.==без какого-либо обмена данными между вашим одноранговым узлом и другими одноранговыми узлами.
+Index Distribution==Распределение индекса
+This enables automated, DHT-ruled Index Transmission to other peers.==Это обеспечивает автоматическую передачу индекса под управлением DHT другим узлам.
+enabled==включено
+Index Receive==Индексный прием
+Accept remote Index Transmissions.==Принимать удаленные индексные передачи.
+This works only if you have a senior peer. The DHT-rules do not work without this function.==Это работает, только если у вас есть старший коллега. Правила DHT не работают без этой функции.
+reject==отклонять
+allow==позволять
+Robinson Mode==Режим Робинзона
+If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers.==Если ваш партнер работает в «режиме Робинсона», вы запускаете YaCy в качестве поисковой системы для своего собственного поискового портала без обмена данными с другими узлами.
+There is no index receive and no index distribution between your peer and any other peer.==Не происходит получения индекса и распределения индекса между вашим одноранговым узлом и любым другим одноранговым узлом.
+In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster.==В случае кластеризации Робинсона можно принимать запросы на удаленное сканирование от узлов этого кластера.
+Private Peer==Частный узел
+Your search engine will not contact any other peer, and will reject every request.==Ваша поисковая система не будет связываться с другими узлами и отклонять каждый запрос.
+Public Peer==Публичный узел
+You are visible to other peers and contact them to distribute your presence.==Вы видны другим коллегам и можете связаться с ними, чтобы распространить свое присутствие.
+Your peer does not accept any outside index data, but responds on all remote search requests.==Ваш партнер не принимает никаких внешних индексных данных, но отвечает на все запросы удаленного поиска.
+Public Cluster==Общественный кластер
+Your peer is part of a public cluster within the YaCy network.==Ваш одноранговый узел является частью общедоступного кластера в сети YaCy.
+Search requests are spread over all peers of the cluster, and answered from all peers of the cluster.==Поисковые запросы распределяются по всем узлам кластера, и на них отвечают все узлы кластера.
+Peer Tags==Одноранговые теги
+When you allow access from the YaCy network, your data is recognized using keywords.==Когда вы разрешаете доступ из сети YaCy, ваши данные распознаются по ключевым словам.
+Please describe your search portal with some keywords (comma-separated).==Пожалуйста, опишите ваш поисковый портал, используя ключевые слова (через запятую).
+Outgoing communications encryption==Шифрование исходящей связи
+Protocol operations encryption==Шифрование протокольных операций
+Prefer HTTPS for outgoing connexions to remote peers.==Предпочитайте HTTPS для исходящих подключений к удаленным узлам.
+When TLS/SSL is enabled on remote peers, it should be used to encrypt outgoing communications with them (for operations such as network presence, index transfer, remote crawl...).==Когда TLS/SSL включен на удаленных узлах, его следует использовать для шифрования исходящих сообщений с ними (для таких операций, как присутствие в сети, передача индекса, удаленное сканирование...).
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Обратите внимание, что в отличие от строгого TLS сертификаты не проверяются доверенными центрами сертификации (CA), что позволяет узлам YaCy использовать самозаверяющие сертификаты.
#File: ConfigParser_p.html
#---------------------------
Parser Configuration==Конфигурация парсера
Content Parser Settings==Настройки анализа контента
With this settings you can activate or deactivate parsing of additional content-types based on their MIME-types.==С помощью этих настроек вы можете включить или выключить анализ дополнительных типов контента.
For a detailed description of the various MIME-types take a look at==Детальное описание различных типов файлов смотрите на
-If you want to test a specific parser you can do so using the==Если вы желаете тестировать специальные парсеры, вы также можете использовать
->File Viewer<==>просмотр файлов<
-> enable/disable<==> Включено / Выключено<
->Extension<==>Расширение<
->Mime-Type<==>Тип файла<
"Submit"=="Установить"
#-----------------------------
+Extension==Расширение
+Mime-Type==Mime-тип
#File: ConfigPortal_p.html
+"idea"=="идея"
#---------------------------
Integration of a Search Portal==Интеграция поиска
If you like to integrate YaCy as portal for your web pages, you may want to change icons and messages on the search page.==Если вы хотите интегрировать YaCy как поиск для веб-страниц, то вы можете менять иконки и сообщения на странице поиска.
-The search page may be customized.==Страница поиска может быть настроена.
-You can change the 'corporate identity'-images, the greeting line==Вы можете изменить картинку фирменного логотипа, строку приветствия
and a link to a home page that is reached when the 'corporate identity'-images are clicked.==и ссылку на домашную страницу, которая будет доступна при нажатии на картинку фирменного логотипа.
-To change also colours and styles use the Appearance Servlet for different skins and languages.==Изменить цвета и стили, языки и скины можно на этой странице.
-Greeting Line<==Строка приветствия<
-URL of Home Page<==Адрес домашней страницы<
-URL of a Small Corporate Image<==Адрес маленького логотипа<
-URL of a Large Corporate Image<==Адрес крупного логотипа<
Enable Search for Everyone?==Разрешить поиск каждому?
Search is available for everyone==Поиск разрешён каждому
Only the administrator is allowed to search==Поиск разрешён только администратору
-Show additional interaction features in footer==Показать дополнительные данные в нижнем колонтитуле
-User-Logon==Вход пользователя
Snippet Fetch Strategy & Link Verification==Принцип получения фрагментов и проверка ссылок
Speed up search results with this option! (use CACHEONLY or FALSE to switch off verification)==Скорость поиска результатов с этой опцией повышается! (Используйте CACHEONLY или FALSE для выключения проверки)
NOCACHE: no use of web cache, load all snippets online==NOCACHE: не использовать вэб-кэш, загружать все фрагменты из сети
@@ -745,18 +697,10 @@ If verification fails, delete index reference==Если при проверке
CACHEONLY: never go online, use all content from cache. If no cache entry exist, consider content nevertheless as available and show result without snippet==CACHEONLY: не загружать фрагменты из сети, использовать только содержимое кэша. Если кэша нет, то данные загрузятся как есть. Некоторые фрагменты могут отсутствовать
FALSE: no link verification and not snippet generation: all search results are valid without verification==FALSE: не проверять ссылки и не загружать фрагменты: все результаты поиска не проверяются
Greedy Learning Mode=="Жадный" режим обучения
-load documents linked in search results, will be deactivated automatically when index size==Отображать в результатах поиска связанные документы. Может быть отключен автоматически при достижении размера индекса
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 вручную )
+no link to YaCy Menu (admin must navigate to /Status.html manually)==нет ссылки на меню YaCy (администратор должен вручную перейти к /Status.html)
Show Advanced Search Options on Search Page?==Отображать расширенный поиск на поисковой странице?
-Show Advanced Search Options on index.html ==Отображать расширенный поиск на index.html странице
do not show Advanced Search==Не отображать расширенный поиск
-Default Pop-Up Page<==Стартовая страница по-умолчанию<
->Status Page==>Статус страницы
->Search Front Page==>Начальная страница поиска
->Search Page (small header)==>Страница поиска (небольшой заголовок)
->Interactive Search Page==>Страница интерактивного поиска
Default maximum number of results per page==Максимальное количество результатов на странице
Default index.html Page (by forwarder)==Стандартная страница index.html (для перехода)
Target for Click on Search Results==Действие при нажатии на результат поиска
@@ -768,41 +712,71 @@ Target for Click on Search Results==Действие при нажатии на
"searchresult" (a default custom page name for search results)=="searchresult" (по умолчанию пользовательское имя страницы для результатов поиска)
Special Target as Exception for an URL-Pattern==Исключение для шаблона URL
-Pattern:<==Шаблон:<
->Exclude Hosts<==>Исключить хосты<
List of hosts that shall be excluded from search results by default but can be included using the site:<host> operator:==Список хостов, которые будут исключены из результатов поиска по-умолчанию, но могут быть включены с помощью параметра 'сайт: <хост> оператор:'
'About' Column (shown in a column alongside with the search result page)==Раздел 'О пользователе (компании)' (показывается в колонке рядом на странице поиска)
-(Headline)==(Заголовок)
(Content)==(Содержимое)
"Change Search Page"=="Изменить страницу поиска"
"Set to Default Values"=="Установить значения по-умолчанию"
-You have to set a remote user/password to change this options.==Вам необходимо установить пароль и имя удалённого пользователя, чтобы изменить эти опции.
The search page can be integrated in your own web pages with an iframe. Simply use the following code:==Страница поиска может быть интегрирована в ваш собственный сайт с использованием фрейма. Просто используйте следующий код:
This would look like:==Это будет выглядить так:
For a search page with a small header, use this code:==Для страницы поиска с небольшим заголовком используйте этот код:
A third option is the interactive search. Use this code:==Третьим вариантом является интерактивный поиск. Используйте этот код:
#-----------------------------
+"Remote results resorting can be triggered once the 'Refresh sorting' button (near the 'Search' button) becomes available."=="Удаленное сортирование результатов можно запустить, как только станет доступной кнопка «Обновить сортировку» (рядом с кнопкой «Поиск»)."
+"This usually improves ranking accuracy, but doesn't work well for users who have Javascript disabled, are using screen readers, or are on slow computers."=="Обычно это повышает точность ранжирования, но не работает для пользователей, у которых отключен Javascript, используют программы чтения с экрана или работают на медленных компьютерах."
+"Detailed statistics"=="Подробная статистика"
+The search page may be customized. You can change the 'corporate identity'-images, the greeting line==Страницу поиска можно настроить. Вы можете изменить фирменный стиль, строку приветствия.
+Greeting Line==Приветственная линия
+URL of Home Page==URL главной страницы
+URL of a Small Corporate Image==URL имиджа небольшой компании
+URL of a Large Corporate Image==URL крупного корпоративного имиджа
+Alternative text for Corporate Images==Альтернативный текст для корпоративных изображений
+Show Navigation Top-Menu==Показать верхнее меню навигации
+Show Advanced Search Options on index.html==Показать параметры расширенного поиска на index.html
+Media Search==Медиа-поиск
+Extended==Расширенный
+Strict==Строгий
+Control whether media search results are as default strictly limited to indexed documents matching exactly the desired content domain (images, videos or applications specific),==Контролируйте, будут ли результаты поиска мультимедиа по умолчанию строго ограничены индексированными документами, точно соответствующими желаемому домену контента (изображения, видео или конкретные приложения),
+or extended to pages including such medias (provide generally more results, but eventually less relevant).==или распространяется на страницы, включающие такие носители (обычно обеспечивают больше результатов, но в конечном итоге менее релевантны).
+Remote results resorting==Удаленные результаты
+On demand, server-side==По требованию, на стороне сервера
+Automated, with JavaScript in the browser.==Автоматически, с помощью JavaScript в браузере.
+Automated results resorting with JavaScript makes the browser load the full result set of each search request.==Автоматические результаты, использующие JavaScript, заставляют браузер загружать полный набор результатов каждого поискового запроса.
+This may lead to high system loads on the server.==Это может привести к высокой нагрузке системы на сервере.
+Remote search encryption==Шифрование удаленного поиска
+Prefer https for search queries on remote peers.==Предпочитайте https для поисковых запросов на удаленных узлах.
+When SSL/TLS is enabled on remote peers, https should be used to encrypt data exchanged with them when performing peer-to-peer searches.==Когда SSL/TLS включен на удаленных узлах, https следует использовать для шифрования данных, которыми они обмениваются при выполнении однорангового поиска.
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Обратите внимание, что в отличие от строгого TLS сертификаты не проверяются доверенными центрами сертификации (CA), что позволяет узлам YaCy использовать самозаверяющие сертификаты.
+Counts by origin :==Счет по происхождению:
+Index remote results==Индексировать удаленные результаты
+add remote search results to the local index ( default=on, it is recommended to enable this option ! )==добавить результаты удаленного поиска в локальный индекс (по умолчанию=включено, рекомендуется включить эту опцию!)
+Limit size of indexed remote results==Ограничить размер проиндексированных удаленных результатов
+maximum allowed size in kbytes for each remote search result to be added to the local index (for example, a 1000kbytes limit might be useful if you are running YaCy with a low memory setup)==максимально допустимый размер в килобайтах для каждого результата удаленного поиска, добавляемого в локальный индекс (например, ограничение в 1000 кбайт может быть полезно, если вы используете YaCy с нехваткой памяти)
+Default Pop-Up Page==Всплывающая страница по умолчанию
+Status Page==Страница статуса
+Search Front Page==Поиск на главной странице
+Search Page (small header)==Страница поиска (маленький заголовок)
+Interactive Search Page==Интерактивная страница поиска
+Pattern:==Шаблон:
+Exclude Hosts==Исключить хосты
+(Headline)==(Заголовок)
#File: ConfigProfile_p.html
#---------------------------
Your Personal Profile==Ваш персональный профиль
You can create a personal profile here, which can be seen by other YaCy-members==Вы можете создать персональный профиль в этом разделе, который может быть доступен другим участникам Yacy
-or in the public using a FOAF RDF file.==или будет находиться в публичном доступе, используя файл FOAF RDF.
->Name<==>Ваше имя<
Nick Name==Ваше прозвище
-Homepage (appears on every Supporter Page as long as your peer is online)==Домашная страница (отображается на каждой поддерживаемой странице, до тех пор, Ваш узел в онлайне).
eMail==Электронная почта
-#ICQ==ICQ
-#Jabber==Jabber
-#Yahoo!==Yahoo!
-#MSN==MSN
-#Skype==Skype
Comment==Комментарий
"Save"=="Сохранить"
-You can use <==Вы можете использовать <
-> here.==> для Вашего профиля.
#-----------------------------
+Name==Имя
+ICQ==ICQ
+Jabber==Джаббер
+Yahoo!==Yahoo!
+MSN==MSN
+Skype==Скайп
#File: ConfigProperties_p.html
#---------------------------
Advanced Config==Расширенная конфигурация
@@ -817,7 +791,6 @@ For explanation please look into defaults/yacy.init==Дополнительны
#---------------------------
Exclude Web-Spiders==Доступ к вэб-интерфейсу
Here you can set up a robots.txt for all webcrawlers that try to access the webinterface of your peer.==В файле robots.txt вы можете указать параметры ограничения доступа к вэб-интерфейсу вашего узла.
-#is a volunteer agreement most search-engines (including YaCy) follow.==
It disallows crawlers to access webpages or even entire domains.==Таким образом, вы закроете доступ индексаторам к вэб-странице вашего узла или даже целому домену.
Deny access to==Закрыть доступ к
Entire Peer==Узлу целиком
@@ -826,7 +799,6 @@ Network pages==Страницам сети
Surftips==Подсказкам
News pages==Страницам новостей
Blog==Блогу
-#Wiki==Wiki
Public bookmarks==Публичным закладкам
Home Page==Домашней странице
File Share==Общим файлам
@@ -834,13 +806,18 @@ Impressum==Реквизитам
"Save restrictions"=="Сохранить изменения"
#-----------------------------
+robots.txt==robots.txt
+is a voluntary agreement most search-engines (including YaCy) follow.==это добровольное соглашение, которому следуют большинство поисковых систем (включая YaCy).
+Unable to access the local file:==Невозможно получить доступ к локальному файлу:
+Deletion of==Удаление
+htroot/robots.txt==htroot/robots.txt
+failed==неуспешный
+Wiki==Вики
#File: ConfigSearchBox.html
#---------------------------
Integration of a Search Box==Интеграция поиска
We give information how to integrate a search box on any web page that==Предлагаем вам инструкцию по интеграции поиска YaCy на любую вэб-страницу.
-#calls the normal YaCy search window.==
Simply use the following code:==Просто используете следующий код:
- MySearch== Мой поиск
"Search"=="Поиск"
This would look like:==Это будет выглядеть как:
This does not use a style sheet file to make the integration into another web page with a different style sheet easier.==Чтобы сделать интеграцию поиска проще таблица стилей не использовалась.
@@ -849,67 +826,101 @@ Replace the given colors #eeeeee (box background) and #cccccc (box border)==Из
Replace the word "MySearch" with your own message==Заменить слово "Мой поиск" на ваше сообщение.
#-----------------------------
+calls the normal YaCy search window.==вызывает обычное окно поиска YaCy.
+MySearch==МойПоиск
#File: ConfigSearchPage_p.html
+Administration »==Управление »
+Applications==Приложения
+Audio==Аудио
+Images==Изображения
+Location==Расположение
+Pictures==Изображения
+Tags==Тэги
+Text==Текст
+Toggle navigation==Переключение управления
+Video==Видео
#---------------------------
-==
-Search Page<==Страница поиска<
->Search Result Page Layout Configuration<==>Конфигурация макета страницы результатов поиска<
Below is a generic template of the search result page. Mark the check boxes for features you would like to be displayed.==Ниже приведён общий макет страницы результатов поиска. Отметьте компоненты, которые должны быть отображены.
-To change colors and styles use the ==Изменить цвета, стили и скины вы можете
->Appearance<==>здесь<
- menu for different skins.==.
-Other portal settings can be adjusted in Generic Search Portal menu.==Другие настройки портала могут быть изменены на Меню странице интеграции поиска.
->Page Template<==>Макет страницы<
->Administration<==>Администрирование<
->Web Search<==>Вэб-поиск<
->File Search<==>Поиск файлов<
->Tutorial<==>Помощь<
->Index Browser<==>Просмотр хостов<
->About Us<==>О пользователе<
->Help / YaCy Wiki<==>YaCy Wiki<
-"Search"=="Поиск"
->Text<==>Текст<
->Images<==>Изображения<
->Audio<==>Аудио<
->Video<==>Видео<
->Applications<==>Приложения<
->more options<==>Расширенный поиск<
->Tag<==>Тэг<
->Topics<==>Топики<
->Cloud<==>Облако<
->Protocol<==>Протокол<
->Filetype<==>Тип файла<
->Domain<==>Домен<
->Wiki Name Space<==>Статьи Wiki<
->Language<==>Язык<
->Author<==>Автор<
->Vocabulary<==>Словарь<
->Provider<==>Домен<
->Collection<==>Хранилище<
->Title of Result<==>Заголовок результата<
Description and text snippet of the search result==Описание и фрагмент текста результата поиска
-#http://url-of-the-search-result.net==http://url-of-the-search-result.net
-42 kbyte<==42 КБайт<
->Metadata<==>Метаданные<
->Parser<==>Анализ<
->Citation<==>Цитаты<
->Pictures<==>Изображения<
->Cache<==>Кэш<
->Augmented Browsing<==>Расширенный просмотр<
"Save Settings"=="Сохранить настройки"
"Set Default Values"=="Установить значения по-умолчанию"
#-----------------------------
+"Top navigation bar"=="Верхняя панель навигации"
+"Enable login link/status"=="Включить ссылку для входа/status"
+"Log in to use extended search features"=="Войдите, чтобы использовать расширенные функции поиска."
+"You are authenticated as userName"=="Вы прошли аутентификацию как имя пользователя"
+"Help"=="Помощь"
+"Protocols"=="Протоколы"
+"Tag cloud"=="Облако тегов"
+"earthsearchlogo"=="логотип поиска земли"
+"Delete navigator"=="Удалить навигатор"
+"Sorted by descending counts"=="Сортировка по убыванию количества"
+"Sorted by ascending counts"=="Сортировка по возрастанию количества"
+"Sorted by descending labels"=="Сортировка по убыванию меток"
+"Sorted by ascending labels"=="Сортировка по возрастанию меток"
+"search..."=="поиск..."
+"Maximum days number in the histogram. Beware that a large value may trigger high CPU loads both on the server and on the browser with large result sets."=="Максимальное количество дней на гистограмме. Помните, что большое значение может привести к высокой загрузке ЦП как на сервере, так и в браузере с большими наборами результатов."
+"info"=="информация"
+"Website favicon"=="Фавиконка сайта"
+"Last known modification date"=="Последняя известная дата модификации"
+"Browse index"=="Обзор индекса"
+"Raw ranking score value"=="Исходное значение рейтингового балла"
+"Date"=="Дата"
+"Size"=="Размер"
+"Add navigator"=="Добавить навигатор"
+Search Result Page Layout Configuration==Конфигурация макета страницы результатов поиска
+Page Template==Шаблон страницы
+Log in==Войти
+userName==имя пользователя
+Search Interfaces==Поисковые интерфейсы
+http==http
+https==https
+ftp==FTP
+smb==кто-то
+file==файл
+Tag==Ярлык
+Topics==Темы
+Cloud==Облако
+show search results on map==показать результаты поиска на карте
+Sort by==Сортировать по
+Descending counts==По убыванию
+Ascending counts==По возрастанию
+Descending labels==Нисходящие метки
+Ascending labels==Восходящие метки
+Vocabulary==Словарный запас
+search==поиск
+more options==больше возможностей
+Date Navigation==Навигация по дате
+Maximum range (in days)==Максимальный диапазон (в днях)
+Show websites favicon==Показать значок веб-сайта
+Not showing websites favicon can help you save some CPU time and network bandwidth.==Отключение значков веб-сайтов может помочь вам сэкономить время процессора и пропускную способность сети.
+Title of Result==Название результата
+http://url-of-the-search-result.net==http://url-of-the-search-result.net
+keyword==ключевое слово
+subject==предмет
+keyword2==ключевое слово2
+keyword3==ключевое слово3
+Max. tags initially displayed==Макс. теги изначально отображаются
+(remaining can then be expanded)==(оставшиеся могут быть расширены)
+42 kbyte==42 кбайт
+Metadata==Метаданные
+Parser==Парсер
+Citation==Цитирование
+Cache==Кэш
+View via Proxy==Просмотр через прокси
+Ranking: 1.12195955E9==Рейтинг: 1.12195955E9
+For this option URL proxy must be enabled.==Для этой опции необходимо включить URL-прокси.
+menu: System Administration > Advanced Settings==меню: Системное администрирование > Расширенные настройки.
+Menu: System Administration > Advanced Settings > Debug/Analysis Settings==Меню: Системное администрирование > Расширенные настройки > Настройки Debug/Analysis.
+Add Navigators==Добавить навигаторы
+append==добавить
+max. items==макс. предметы
#File: ConfigUpdate_p.html
#---------------------------
->System Update<==>Обновление системы<
Manual System Update==Ручное обновление
Current installed Release==Текущая установленная версия
-Available Releases==Доступные обновления
->changelog<==>список изменений<
-> and <==> и <
-> RSS feed<==> RSS лента<
(unsigned)==(не подписано)
(signed)==(подписано)
"Download Release"=="Загрузить обновление"
@@ -922,23 +933,17 @@ no automated installation on development environments==без автома
Automatic Update==Автоматическое обновление
check for new releases, download if available and restart with downloaded release==Проверить обновления, загрузить и перезапустить с новым обновлением
"Check + Download + Install Release Now"=="Выполнить"
-Download of release #[downloadedRelease]# finished. Restart Initiated.== Загрузка версии #[downloadedRelease]# завершена. Начинается перезагрузка.
No more recent release found.==Более нового обновления не обнаружено.
Release will be installed. Please wait.==Идет установка нового обновления. Пожалуйста, подождите.
-#You installed YaCy with a package manager.==
-To update YaCy, use the package manager:==Для обновления YaCy используйте менеджер пакетов.
Omitting update because this is a development environment.==Пропускаю обновление, потому что это версия для разработчиков.
-Omitting update because download of release #[downloadedRelease]# failed.==Пропускаю обновление, потому что загрузка версии #[downloadedRelease]# не была успешной.
Automated System Update==Автоматическое обновление
manual update==Ручное обновление
no automatic look-up, updates can be made manually using this interface (see options above)==Обновление можно выполнить вручную на этой странице.
automatic update==Автоматическое обновление
-add the following line to==добавьте строку в файл
updates are made within fixed cycles:==Обновление выполняется через установленный промежуток времени:
Time between lookup==Время между проверками
hours==часов
Release blacklist==Черный список релизов
-regex on release number strings==список регулярных выражений с номерами выпусков
Release type==Тип релиза
only main releases==только финальные релизы
any release including developer releases==любые обновления, включая версии для разработчиков
@@ -953,101 +958,87 @@ Last Release Download==Последняя загрузка обновления
Last Deploy==Последнее обновление
#-----------------------------
+System Update==Обновление системы
+This servlet can only be used on operating systems that are currently supported for deploy functions.==Этот сервлет можно использовать только в операционных системах, которые в настоящее время поддерживают функции развертывания.
+If you see this message this means that your operation system is not supported.==Если вы видите это сообщение, это означает, что ваша операционная система не поддерживается.
+(no signature)==(без подписи)
+Omitting update because an error occurred while trying to deploy the release.==Обновление пропущено, поскольку при попытке развертывания выпуска произошла ошибка.
+(regex on release number strings)==(регулярное выражение для строк номера выпуска)
+You installed YaCy with a package manager. To update YaCy, use the package manager:==Вы установили YaCy с помощью менеджера пакетов. Чтобы обновить YaCy, используйте менеджер пакетов:
+manual update: apt-get update && apt-get install yacy==обновление вручную: apt-get update && apt-get установить Yacy
+automatic update: add the following line to /etc/crontab 0 6 * * * root apt-get update && apt-get -y --force-yes install yacy==автоматическое обновление: добавьте следующую строку в /etc/crontab 0 6 * * * root apt-get update && apt-get -y --force-yes установить yacy
#File: Connections_p.html
#---------------------------
Server Connection Tracking==Отслеживание соединений с сервером
Incoming Connections==Входящие соединения
-Showing #[numActiveRunning]# active, #[numActivePending]# pending connections from a max. of #[numMax]# allowed incoming connections.==Показаны #[numActiveRunning]# активных и #[numActivePending]# ожидающих соединений из максимум #[numMax]# разрешённых входящих соединений.
-Showing #[numActiveRunning]# active connections from a max. of #[numMax]# allowed incoming connections.==Показаны #[numActiveRunning]# активных соединений из максимум #[numMax]# разрешённых входящих соединений.
-Protocol==Протокол
Duration==Длительность
Up-Bytes==Размер
Source IP[:Port]==IP-адрес источника[:порт]
Dest. IP[:Port]==IP-адрес назначения[:порт]
-Command==Команда
-Used==Использовано
-Close==Завершено
-Waiting for new request nr.==Ожидание нового запроса
Outgoing Connections==Исходящие соединения
-Showing #[clientActive]# pooled outgoing connections used as:==Показаны #[clientActive]# объединённые исходящие соединения, используемые как:
-Duration==Длительность
-#ID==ID
#-----------------------------
+Protocol==Протокол
+Command==Команда
+ID==ИДЕНТИФИКАТОР
#File: CookieMonitorIncoming_p.html
#---------------------------
-Incoming Cookies Monitor==Монитор полученных куки
Cookie Monitor: Incoming Cookies==Монитор куки: Полученные куки
This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:==Это список куки, которые вэб-сервер отправил клиентам через прокси YaCy:
-Showing #[num]# entries from a total of #[total]# Cookies.==Показано #[num]# записей куки из #[total]#.
Sending Host==Хост-отправитель
-Date==Дата
Receiving Client==Клиент-получатель
->Cookie<==>Куки<
"Enable Cookie Monitoring"=="Мониторинг куки разрешен"
"Disable Cookie Monitoring"=="Мониторинг куки запрещён"
#-----------------------------
+Date==Дата
+Cookie==печенье
#File: CookieMonitorOutgoing_p.html
#---------------------------
-Outgoing Cookies Monitor==Монитор отправленных куки
Cookie Monitor: Outgoing Cookies==Монитор куки: Отправленные куки
This is a list of cookies that browsers using the YaCy proxy sent to webservers:==Это список куки, которые были отправлены браузерами вэб-серверам через прокси YaCy:
-Showing #[num]# entries from a total of #[total]# Cookies.==Показаны #[num]# записей куки из #[total]#.
Receiving Host==Хост-получатель
-Date==Дата
Sending Client==Клиент-отправитель
->Cookie<==>Куки<
"Enable Cookie Monitoring"=="Мониторинг куки разрешен"
"Disable Cookie Monitoring"=="Мониторинг куки запрещён"
#-----------------------------
+Date==Дата
+Cookie==печенье
#File: CrawlCheck_p.html
#---------------------------
Crawl Check==Проверка индексирования
This pages gives you an analysis about the possible success for a web crawl on given addresses.==Здесь вы можете проверить нужную вам ссылку на возможность проведения индексирования.
List of possible crawl start URLs==Список ссылок для проверки
"Check given urls"=="Проверить"
->Analysis<==>Анализ<
-#>URL<==>URL<
->Access<==>Доступ<
->Robots<==>Роботы<
->Crawl-Delay<==>Задержка индексации<
->Sitemap<==>Карта сайта<
#-----------------------------
+Analysis==Анализ
+URL==URL
+Access==Доступ
+Robots==Роботы
+Crawl-Delay==Задержка сканирования
+Sitemap==Карта сайта
#File: CrawlProfileEditor_p.html
+Crawler Steering==Управление индексатором
+Depth==Глубина
+no==нет
+yes==да
#---------------------------
Crawl Profile Editor==Изменение профиля индексирования
->Crawler Steering<==>Управление индексатором<
->Crawl Scheduler<==>Планировщик индексирования<
->Scheduled Crawls can be modified in this table<==>Запланированное индексирование можно изменить в этой таблице<
Crawl profiles hold information about a crawl process that is currently ongoing.==Профили содержат информацию о текущем индексировании.
-#Crawl profiles hold information about a specific URL which is internally used to perform the crawl it belongs to.==Crawl Profile enthalten Informationen über eine spezifische URL, welche intern genutzt wird, um nachzuvollziehen, wozu der Crawl gehört.
-#The profiles for remote crawls, indexing via proxy and snippet fetches==Die Profile für Remote Crawl, Indexierung per Proxy und Snippet Abrufe
-#cannot be altered here as they are hard-coded.==können nicht verändert werden, weil sie "hard-coded" sind.
Crawl Profile List==Список профилей индексирования
Crawl Thread==Поток индексирования
Status==Состояние
-Start URL==Стартовая URL-ссылка
->Depth==>Глубина индексирования
Must Match==Должно совпадать
Must Not Match==Не должно совпадать
-MaxAge==Макс. возраст
-#Auto Filter Depth==Автовыбор глубины
-#Auto Filter Content==Автовыбор контента
Domain Counter Content==Количество содержимого домена
-Max Page Per Domain==Максимум страниц на домен
-Accept==Принять
Fill Proxy Cache==Заполнение кэша прокси
Local Text Indexing==Индексирование локальных текстовых файлов
Local Media Indexing==Индексирование локальных медиа-файлов
Remote Indexing==Удалённое индексирование
-#Status / Action==Состояние / Действие
-#terminated::active==прервано::активно
-no::yes==нет::да
Running==Выполняется
"Terminate"=="Прервать"
Finished==Завершено
@@ -1055,11 +1046,7 @@ Finished==Завершено
"Delete finished crawls"=="Удалить завершенные индексы"
Select the profile to edit==Выбор профиля для изменения
"Edit profile"=="Изменить профиль"
-An error occurred during editing the crawl profile:==Ошибка во время изменения профиля:
-Edit Profile==Изменить профиль
"Submit changes"=="Подтвердить изменения"
-Name==Название
-Collections (comma-separated list)==Хранилища (список через запятую)
#URL Must-Match Filter
#URL Must-Not-Match Filter
#IP Must-Match Filter
@@ -1070,23 +1057,20 @@ Collections (comma-separated list)==Хранилища (список через
#Indexing URL Must-Not-Match Filter
#Indexing Content Must-Match Filter
#Indexing Content Must-Not-Match Filter
-Cache Strategy (NOCACHE,IFFRESH,IFEXIST,CACHEONLY)==Использование кэша (без кэша, если новее, если сушествует, только кэш)
-Crawl Depth==Глубина индексации
-Recrawl If Older==Переиндексировать, если старше
-Domain Max. Pages==Максимум страниц домена
-CrawlingQ / '?'-URLs==Индексировать Q / '?'-ссылки
-Index Text==Индексировать текст
-Index Media==Индексировать медиафайлы
-Store in HTCache==Сохранять в кэше
-Remote Indexing==Удалённое индексирование
-Put all linked urls into index without parsing==Добавлять все перекрестные ссылки в индекс без анализа
#-----------------------------
+Crawl Scheduler==Планировщик сканирования
+Scheduled Crawls can be modified in this table==Запланированные сканирования можно изменить в этой таблице.
+Collections==Коллекции
+Recrawl if older than==Повторное сканирование, если оно старше
+Max Page Per Domain==Макс. страница на домен
+Accept '?' URLs==Принимать '?' URL-адреса
+false==ЛОЖЬ
+true==истинный
#File: CrawlResults.html
+Initiator==Инициатор
#---------------------------
-Crawl Results<==Результаты индексирования<
->Crawl Results Overview<==>Обзор результатов индексирования<
These are monitoring pages for the different indexing queues.==Это страницы мониторинга различныx очередей индексации.
YaCy knows 5 different ways to acquire web indexes. The details of these processes (1-5) are described within the submenu's listed==YaCy получает вэб-индекс пятью различными способами. Детали этих процессов (1-5) вы можете увидеть, выбрав пункты меню справа.
above which also will show you a table with indexing results so far. The information in these tables is considered as private,==Так как представленная информация содержит личные сведения,
@@ -1098,124 +1082,91 @@ The image above illustrates the data flow initiated by web index acquisition.==
Some processes occur double to document the complex index migration structure.==Некоторые процессы повторяются дважды.
(1) Results of Remote Crawl Receipts==(1) Получение результатов удалённого индексирования
This is the list of web pages that this peer initiated to crawl,==Здесь указаны вэб-страницы, инициированные вашим узлом для индексирования,
-but had been crawled by other peers.==но проиндексированные другими узлами.
+but had been crawled by other peers.==но проиндексированные другими узлами.
This is the 'mirror'-case of process (6).==Это действие обратное глобальному индексированию. (6)
-Use Case: You get entries here, if you start a local crawl on the 'Advanced Crawler' page and check the==Вы берёте значения здесь, запускаете локальное индексирование на странице 'Расширенная индексация' и проверяете
-'Do Remote Indexing'-flag, and if you checked the 'Accept Remote Crawl Requests'-flag on the 'Remote Crawling' page.== флаг 'Выполнять удалённое индексирование', and if you checked the 'Accept Remote Crawl Requests'-flag on the 'Remote Crawling' page.
Every page that a remote peer indexes upon this peer's request is reported back and can be monitored here.==Каждая страница, проиндексированная удалённым узлом отображается здесь.
(2) Results for Result of Search Queries==(2) Результаты поисковых запросов
This index transfer was initiated by your peer by doing a search query.==Передачи индекса были инициированы вашим узлом во время поискового запроса.
The index was crawled and contributed by other peers.==Индексация производилась другими узлами.
-Use Case: This list fills up if you do a search query on the 'Search Page'==Здесь отображается список запросов, произведённых вами на странице поиска.
+Use Case: This list fills up if you do a search query on the 'Search Page'==Сценарий: Здесь отображается список запросов, произведённых вами на странице поиска.
(3) Results for Index Transfer==(3) Результаты передачи индекса
The url fetch was initiated and executed by other peers.==Полученные ссылки были иницированы и выполнены другими узлами.
These links here have been transmitted to you because your peer is the most appropriate for storage according to==Эти ссылки были переданы вам, потому что ваш узел более подходит для их хранения,
the logic of the Global Distributed Hash Table.==в соответствии с логикой глобальной DHT.
-Use Case: This list may fill if you check the 'Index Receive'-flag on the 'Index Control' page==Этот список будет пополняться, если вы включите "Приём индекса" на странице "Настройка сети"
+Use Case: This list may fill if you check the 'Index Receive'-flag on the 'Index Control' page==Сценарий: Этот список будет пополняться, если вы включите "Приём индекса" на странице "Настройка сети".
(4) Results for Proxy Indexing==(4) Результаты индексирования через прокси
These web pages had been indexed as result of your proxy usage.==Эти вэб-страницы были проиндексированы в результате использования вами прокси.
-No personal or protected page is indexed==Личные или защищённые страницы не индексируются.
such pages are detected by Cookie-Use or POST-Parameters (either in URL or as HTTP protocol)==Такие страницы определяются по свойствам HTTP-заголовка (использование куки или HTTP-авторизации) или по параметрам POST (в адресе или передающиеся через HTTP-протокол)
and automatically excluded from indexing.==и автоматически исключаются из индексирования.
-Use Case: You must use YaCy as proxy to fill up this table.==Таблица будет наполняться при использовании вами YaCy в качестве прокси-сервера.
+Use Case: You must use YaCy as proxy to fill up this table.==Сценарий: Таблица будет наполняться при использовании вами YaCy в качестве прокси-сервера.
Set the proxy settings of your browser to the same port as given==Задайте выбранный порт (по-умолчанию 8090) в настройках прокси в вашем браузере.
-#on the 'Settings'-page in the 'Proxy and Administration Port' field.==
(5) Results for Local Crawling==(5) Результаты локального индексирования
These web pages had been crawled by your own crawl task.==Эти вэб-страницы были проиндексированы вашим узлом по вашему указанию.
-Use Case: start a crawl by setting a crawl start point on the 'Index Create' page.==Запустите индексацию, указав начальную точку на странице "Индексирование/Сканер сети"
+Use Case: start a crawl by setting a crawl start point on the 'Index Create' page.==Сценарий: Запустите индексацию, указав начальную точку на странице "Индексирование/Сканер сети".
(6) Results for Global Crawling==(6) Результаты глобального индексирования
These pages had been indexed by your peer, but the crawl was initiated by a remote peer.==Эти страницы проиндексированы вашим узлом, но индексатор был инициирован удалённым узлом..
This is the 'mirror'-case of process (1).==Это противоположность процессу (1).
-Use Case: This list may fill if you check the 'Accept Remote Crawl Requests'-flag on the 'Remote Crawling' page==Этот список будет пополняться, если вы включите "Удалённое индексирование" на странице 'Удалённое индексирование'.
The stack is empty.==Список пуст.
-Statistics about #[domains]# domains in this stack:==В этой таблице данные о #[domains]# доменах:
(7) Results from pack import==(7) Результаты замещающего импорта
These records had been imported from pack files in DATA/PACKS/load==Эти данные импортированы из замещающих файлов в DATA/PACKS/load
-Use Case: place files with dublin core metadata content into DATA/PACKS/load or use an index import method==Поместите файлы с метаданными контента стандарта дублинского ядра в DATA/PACKS/load или используйте способ импортирования индекса
-(i.e. MediaWiki import, OAI-PMH retrieval)==(например, импорт MediaWiki дампов, импорт OAI-PMH)
->Domain==>Домен
-#>URLs==>Ссылки
"delete all"=="Удалить все"
-Showing all #[all]# entries in this stack.==Показаны все #[all]# записей.
-Showing latest #[count]# lines from a stack of #[all]# entries.==Показаны последние #[count]# записей из #[all]#.
"clear list"=="Очистить список"
-#Initiator==Инициатор
->Executor==>Исполняющий
->Modified==>Изменено
->Words==>Слова
->Title==>Заголовок
-#URL==Ссылка
"delete"=="Удалить"
->Collection==>Хранилище
Blacklist to use==Используется чёрный список
"del & blacklist"=="Удалить и блокировать"
#-----------------------------
+"An illustration how yacy works"=="Иллюстрация того, как работает yacy"
+Crawl Results Overview==Обзор результатов сканирования
+No remote crawl results can currently been added to the local index as the remote crawler is disabled on this peer.==Никакие результаты удаленного сканирования в настоящее время не могут быть добавлены в локальный индекс, поскольку удаленный искатель отключен на этом узле.
+No personal or protected page is indexed;==Ни одна личная или защищенная страница не индексируется;
+on the 'Settings'-page in the 'Proxy and Administration Port' field.==на странице «Настройки» в поле «Прокси и порт администрирования».
+The remote crawler is currently disabled==Удаленный сканер в настоящее время отключен
+Domain==Домен
+URLs==URL-адреса
+Collection==Коллекция
+Executor==Исполнитель
+Modified==Модифицированный
+Words==Слова
+Title==Заголовок
+Country==Страна
+IP of Host==IP хоста
+URL==URL
+no title==нет названия
#File: CrawlStartExpert.html
+Indexing==Индексирование:
#---------------------------
-==
Expert Crawl Start==Расширенное индексирование
Start Crawling Job:==Запустить индексирование:
You can define URLs as start points for Web page crawling and start crawling here.==Здесь можете указать начальные ссылки и запустить индексирование.
-"Crawling" means that YaCy will download the given website, extract all links in it and then download the content behind these links.=="Индексирование" означает, что YaCy загрузит данные сайта, извлечёт все ссылки и загрузит содержимое по извлечённым ссылкам.
+"Crawling" means that YaCy will download the given website, extract all links in it and then download the content behind these links.=="Индексирование" означает, что YaCy загрузит данные сайта, извлечёт все ссылки и загрузит содержимое по извлечённым ссылкам.
This is repeated as long as specified under "Crawling Depth".==Длительность индексирования зависит от заданной "глубины индексирования".
-A crawl can also be started using wget and the==Индексирование можно также запустить, используя wget и
->post arguments<==>POST-аргументы<
-> for this web page.==> на этой вэб-странице.
Click on this API button to see a documentation of the POST request parameter for crawl starts.==Нажмите для просмотра документации по параметрам POST-запросов для запуска индексирования.
->Crawl Job<==>Индексирование<
A Crawl Job consist of one or more start point, crawl limitations and document freshness rules.==Индексирование состоит из одной или более начальных точек, ограничений и правил индексирования документов.
->Start Point<==>Начальная точка<
One Start URL or a list of URLs: (must start with http:// https:// ftp:// smb:// file://)==Одна или несколько ссылок: (должна начинаться с http:// https:// ftp:// smb:// file://)
Define the start-url(s) here. You can submit more than one URL, each line one URL please.==Укажите одну или несколько начальных ссылок здесь. Несколько ссылок указывайте отдельными строками.
Each of these URLs are the root for a crawl start, existing start URLs are always re-loaded.==Каждая из этих ссылок загружается в начале индексирования, существующие ссылки всегда перезагружаются.
->From Link-List of URL<==>Из списка ссылок<
-From Sitemap<==Из карты сайта<
From File (enter a path within your local file system)==Из файла (укажите путь в пределах вашей локальной системы)
-Existing start URLs are always re-crawled.==Существующие начальные ссылки всегда переиндексируются.
Other already visited URLs are sorted out as "double", if they are not allowed using the re-crawl option.==Уже посещённые ссылки сортируются как повторные, если не разрешена их переиндексация.
A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==Вэб-индексатор дважды сверяет все ссылки в интернете с внутренней базой данных. Если некоторые ссылки были найдены опять,
then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,== то ссылка считается повторной. В зависимости от возраста, ссылка может быть загружена повторно.
-#to use that check the 're-load' option. When you want that this web crawl is repeated automatically, then check the 'scheduled' option.==Для автоматической проверки вы можете использовать планировщик.
-#In this case the crawl is repeated after the given time and no url from the previous crawl is omitted as double.==В этом случае индексация повторяется после указанного времени и повторные ссылки пропускаются.
-#Must-Match Filter==Фильтр совпадений
Use filter==Использовать фильтр
Restrict to start domain(s)==Запретить запуск домена
Restrict to sub-path(s)==Запретить часть пути
-#The filter is an emacs-like regular expression that must match with the URLs which are used to be crawled;==Фильтр это emacs-подобное регулярное выражение, которое должно совпадать с ссылками для индексации;
-#that must match with the URLs which are used to be crawled; default is 'catch all'.==которые должны совпадать с ссылками для индексации; по-умолчанию 'берутся все'.
Example: to allow only urls that contain the word 'science', set the must-match filter to '.*science.*'.==Например, для разрешения только ссылок, содержащих слово 'science' , нужно установить фильтр '.*science.*'.
You can also use an automatic domain-restriction to fully crawl a single domain.==Вы можете также использовать автоматическое ограничение домена при полном индексировании простого домена.
-Attention: you can test the functionality of your regular expressions using the Regular Expression Tester within YaCy.==Внимание! Вы можете проверить правильность ваших регулярных выражений используя тестер в YaCy.
-#Must-Not-Match Filter==Фильтр "не должно совпадать"
-#This filter must not match to allow that the page is accepted for crawling.==Dieser Filter muss nicht passen, um zu erlauben, dass die Seite zum crawlen akzeptiert wird.
-#The empty string is a never-match filter which should do well for most cases.==Пустая строка означает фильтр "никогда не совпадать", который хорошо подходит в большинстве случаев.
-If you don't know what this means, please leave this field empty.==Если вы не знаете, что это означает, то оставьте это поле пустым.
-#Re-crawl known URLs:==Переиндексация повторных ссылок:
-#It depends on the age of the last crawl if this is done or not: if the last crawl is older than the given==Это зависит от даты последнего индексирования, если он был или не был выполнен: если последнее индексирование старше, чем указанное
-#Auto-Dom-Filter:==Фильтр авто-домена:
-#This option will automatically create a domain-filter which limits the crawl on domains the crawler==Эта опция позволяет автоматически создавать фильтр, который ограничивает индексацию доменов.
-#will find on the given depth. You can use this option i.e. to crawl a page with bookmarks while==будет искать на заданную глубину. Вы можете использовать эту опцию, например, для индексации страницы с закладками, во время
-#restricting the crawl on only those domains that appear on the bookmark-page. The adequate depth==ограничения индексирования только доменов, которые указаны на странице закладок. Приемлемая глубина
-#for this example 1.==для этого примера будет 1.
-#The default value 0 gives no restrictions.==По-умолчанию задано значение 0 - без ограничений.
-#Maximum Pages per Domain:==Максимум страниц на домен:
-#Page-Count==Число страниц
You can limit the maximum number of pages that are fetched and indexed from a single domain with this option.==Вы можете ограничить максимальное число извлечённых и проиндексированных страниц одного домена с помощью этой опции.
You can combine this limitation with the 'Auto-Dom-Filter', so that the limit is applied to all the domains within==Вы можете совместить это ограничение с фильтром 'Авто-домен' так как это ограничение применяется ко всем доменам без
the given depth. Domains outside the given depth are then sorted-out anyway.== указания уровня. Домены за пределами указанного уровня сортируются в любом случае.
-#dynamic URLs==динамические URL-ссылки
-Document Cache<==Кэш документа<
Store to Web Cache==Хранить в вэб-кэше
This option is used by default for proxy prefetch, but is not needed for explicit crawling.==Эта опция используется по-умолчанию для прокси, но не используется для явного индексирования.
A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled.==Вопросительный знак обычно означает динамическую страницу. Ссылки, указывающие на динамический контент. обычно не индексируются.
However, there are sometimes web pages with static content that== Однако, иногда встречаются вэб-страницы со статическим содержимым, которое
is accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.==доступно по ссылкам, содержащим вопросительный знак. Если вы не уверены, то не включайте эту опцию, чтобы избежать замкнутого индексирования.
-#Following frames is NOT done by Gxxg1e, but we do by default to have a richer content. 'nofollow' in robots metadata can be overridden; this does not affect obeying of the robots.txt which is never ignored.==
Accept URLs with query-part ('?'):==Принимать ссылки с ('?') в части запроса:
Obey html-robots-noindex:==Учитывать html-robots-noindex:
Policy for usage of Web Cache==Политика использования вэб-кэша
@@ -1224,14 +1175,7 @@ no cache==без кэша
if fresh==если свежий кэш
if exist==если кэш существует
cache only==только кэш
-never use the cache, all content from fresh internet source;==Никогда не использовать кэш, весь контент из нового интернет-источника;
-use the cache if the cache exists and is fresh using the proxy-fresh rules;==использовать кэш, если кэш существует и это новое использование правил прокси
-use the cache if the cache exist. Do no check freshness. Otherwise use online source;==использовать кэш, если кэш существует. Не проверять на обновления. Иначе использовать интернет-источник;
-never go online, use all content from cache. If no cache exist, treat content as unavailable==всегда оффлайн, использовать весь контент из кэша. Если кэш не существует, то считать что контент недоступен.
-add new versions for each crawl==добавить новые версии для каждого индексирования
->Crawler Filter<==>Фильтр индексатора<
These are limitations on the crawl stacker. The filters will be applied before a web page is loaded.==Ограничения работы индексатора. Фильтры применяются до загрузки страницы.
-Crawling Depth<==Глубина индексирования<
This defines how often the Crawler will follow links (of links..) embedded in websites.==Определяет, как часто индексатор будет идти по ссылкам (из ссылок ...) вэб-сайтов.
0 means that only the page you enter under "Starting Point" will be added==Ноль означает, что только начальная страница будет добавлена
to the index. 2-4 is good for normal indexing. Values over 8 are not useful, since a depth-8 crawl will==для индексации. 2-4 это нормальное индексирование. Значения более 8 использовать не целесообразно, поскольку такая глубина индексирования предполагает
@@ -1239,11 +1183,7 @@ index approximately 25.600.000.000 pages, maybe this is the whole WWW.==прим
also all linked non-parsable documents==также все связанные не-проанализированные документы
Unlimited crawl depth for URLs matching with==Неограниченная глубина индексирования для ссылок совпадающих с
Maximum Pages per Domain==Максимальное число страниц домена
->Use<==>Использовать<
->Page-Count<==>Страниц<
misc. Constraints==Разные ограничения
->Load Filter on URLs<==>Фильтр ссылок<
->Load Filter on IPs<==>Фильтр IP-адресов<
Must-Match List for Country Codes==Фильтр стран
Crawls can be restricted to specific countries. This uses the country code that can be computed from==Индексаторы могут быть запрещены для определённых стран. При этом используется код страны, который может быть вычислен по
the IP of the server that hosts the page. The filter is not a regular expressions but a list of country codes, separated by comma.==IP-адресу сервера, на котором размещена страница. Фильтр не использует регулярные выражения. Список кодов стран перечисляется через запятую.
@@ -1251,275 +1191,254 @@ no country code restriction==Oграничение по странам отсу
Filter on URLs==Фильтр ссылок
Document Filter==Фильтр документов
These are limitations on index feeder. The filters will be applied after a web page was loaded.==Ограничения на получение индекса. Фильтры применяются после загрузки вэб-страницы.
->Filter on URLs<==Фильтр ссылок<
-The filter is a==Фильтр это
->regular expression<==>регулярное выражение<
that must not match with the URLs to allow that the content of the url is indexed.==которое не должно совпадать с ссылками, если контент по этой ссылке проиндексирован.
-> must-match<==> должно совпадать<
-> must-not-match<==> не должно совпадать<
(must not be empty)==(не должен быть пустым)
Filter on Content of Document (all visible text, including camel-case-tokenized url and title)==Фильтр содержимого документа (весь видимый текст, включая слитно написанные ссылки и заголовок)
Clean-Up before Crawl Start==Очистка перед началом индексирования
->No Deletion<==>Без удаления<
->Re-load<==>Перезагрузить<
For each host in the start url list, delete all documents (in the given subpath) from that host.==Для каждого хоста в начальном списке ссылок, удалять все документы (даже в подпапках) из хоста.
Delete sub-path==Удалить часть ссылки
Delete only old==Удалить только устаревшие
Do not delete any document before the crawl is started.==Не удалять любые документы перед началом индексирования.
Treat documents that are loaded==Считать загруженные документы
-> ago as stale and delete them before the crawl is started.==> устаревшими, и удалять из перед началом индексирования.
After a crawl was done in the past, document may become stale and eventually they are also deleted on the target host.==Если индексирование было выполнено раньше, то документ может потерять актуальность и даже быть удалён из индексируемого сайта.
To remove old files from the search index it is not sufficient to just consider them for re-load but it may be necessary==Переиндексации недостаточно после удаления старых файлов из поискового индекса, но может быть необходимо,
to delete them because they simply do not exist any more. Use this in combination with re-crawl while this time should be longer.==так как старые файлы уже не существуют. Использование этой функции вместе с переиндексацией может занять много времени.
Double-Check Rules==Правила повторной проверки
No Doubles==Нет повторов
-A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==Вэб-индексатор выполняет повторную проверку всех ссылок, найденных в интернете с внутренней базой данных. Если ссылки найдены опять,
-then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,==то они считаются повторными, если вы включите опцию "Нет повторов". Ссылка может быть загружена опять, если она достигла определённого возраста.
to use that check the 're-load' option.==Для этого включите опцию "Повторная загрузка".
->Re-load<==>Повторная загрузка<
-Treat documents that are loaded==Считать загруженные документы
-> ago as stale and load them again. If they are younger, they are ignored.==> устаревшими и загрузить их снова. Если они свежее, то они игнорируются.
Never load any page that is already known. Only the start-url may be loaded again.==Никогда не загружать любую страницу, если она уже известна. Только начальная ссылка может быть загружена опять.
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 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==Управление индексом
-Do Local Indexing==Выполнить локальное индексирование
index text==Индекс текста
index media==Индекс медиа-файлов
This enables indexing of the webpages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the==Разрешает индексирование вэб-страниц, пока индексатор производит загрузку. По-умолчанию включено.
Document Cache without indexing.==Кэш документов без индексирования.
Do Remote Indexing==Выполнить удалённое индексирование
Describe your intention to start this global crawl (optional)==Описание вашего намерения начать глобальное индексирование (необязательно).
-This message will appear in the 'Other Peer Crawl Start' table of other peers.==Это сообщение будет отображаться в таблице других узлов в поле 'Другой узел начал индексирование'.
+This message will appear in the 'Other Peer Crawl Start' table of other peers.==Это сообщение будет отображаться в таблице других узлов в поле 'Другой узел начал индексирование'.
If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Если отмечено, то индексатор будет связываться с другими узлами и использовать их для удалённого индексирования.
If you need your crawling results locally, you should switch this off.==Отключите, если желаете получать результаты индексирования локально.
Only senior and principal peers can initiate or receive remote crawls.==Только старшие и главные узлы могут инициировать или принимать удалённую индексацию.
-A YaCyNews message will be created to inform all peers about a global crawl==Сообщение YaCy может быть создано для информирования всех узлов о глобальном индексировании
so they can omit starting a crawl with the same start point.==поэтому они могут пропустить запуск индексирования с одной и той же начальной точки.
-#Exclude static Stop-Words==Исключить статические стоп-слова
-#This can be useful to circumvent that extremely common words are added to the database, i.e. "the", "he", "she", "it"... To exclude all words given in the file yacy.stopwords from indexing,==Это может быть полезно, чтобы не учитывать общие слова, добавленные в базу данных. Например, "он", "она", "это", "и", "или", "они" и так далее. Слова, указанные в файле yacy.stopwords исключаются из индексирования,
-check this box.==проверьте этот файл.
-Add Crawl result to collection(s)==Добавить результат индексирования в хранилище
A crawl result can be tagged with names which are candidates for a collection request.==Результат индексирования может быть помечен с именами в кандидаты для запроса в хранилище.
-These tags can be selected with the==Эти тэги могут быть указаны
-GSA interface==интерфейсе GSA
-using the 'site' operator.==с помощью оператора 'site'.
-To use this option, the 'collection_sxt'-field must be switched on in the==При использовании этой опции, поле 'collection_sxt' должено быть включено.
-Solr Schema==Схема Solr
"Start New Crawl Job"=="Начать новое индексирование"
#-----------------------------
+"API"=="API"
+"info"=="информация"
+"empty"=="пустой"
+"Show all links"=="Показать все ссылки"
+"Media Type checking info"=="Информация для проверки типа носителя"
+"Media Type filter info"=="Информация о фильтре типа носителя"
+"Solr query filter info"=="Solr информация фильтра запроса"
+"Clean up search events cache info"=="Очистить информацию из кэша событий поиска"
+Crawl Job==Сканирование
+Start Point==Начальная точка
+From Link-List of URL==Из списка ссылок URL
+From Sitemap==Из карты сайта
+Index Attributes==Атрибуты индекса
+Add Crawl result to collection (important for Index Pack generation)==Добавить результат сканирования в коллекцию (важно для создания пакета индексов)
+Do not use underline '_' in collection name, use '-' instead. When useful, add a language code to the collection name, e.g. 'top-100-en'.==Не используйте подчеркивание «_» в названии коллекции, вместо этого используйте «-». Если это необходимо, добавьте к имени коллекции код языка, например. «топ-100».
+Time Zone Offset==Смещение часового пояса
+The time zone is required when the parser detects a date in the crawled web page. Content can be searched with the on: - modifier which==Часовой пояс требуется, когда анализатор обнаруживает дату на просматриваемой веб-странице. Контент можно искать с помощью модификатора on: -, который
+requires also a time zone when a query is made. To normalize all given dates, the date is stored in UTC time zone. To get the right offset==при выполнении запроса также требуется часовой пояс. Чтобы нормализовать все заданные даты, дата сохраняется в часовом поясе UTC. Чтобы получить правильное смещение
+from dates without time zones to UTC, this offset must be given here. The offset is given in minutes;==от дат без часовых поясов до UTC, здесь необходимо указать это смещение. Смещение указывается в минутах;
+Time zone offsets for locations east of UTC must be negative; offsets for zones west of UTC must be positve.==Смещение часового пояса для местоположений к востоку от UTC должно быть отрицательным; смещения для зон к западу от UTC должны быть положительными.
+Crawler Filter==Гусеничный фильтр
+A YaCyNews message will be created to inform all peers about a global crawl,==Сообщение YaCyNews будет создано для информирования всех узлов о глобальном сканировании,
+Remote crawl results won't be added to the local index as the remote crawler is disabled on this peer.==Результаты удаленного сканирования не будут добавлены в локальный индекс, поскольку удаленный искатель отключен на этом узле.
+Crawling Depth==Глубина сканирования
+Use==Использовать
+Page-Count==Количество страниц
+Following frames is NOT done by Gxxg1e, but we do by default to have a richer content. 'nofollow' in robots metadata can be overridden; this does not affect obeying of the robots.txt which is never ignored.==Следующие кадры НЕ выполняются Gxxg1e, но мы делаем это по умолчанию, чтобы иметь более богатый контент. «nofollow» в метаданных роботов можно переопределить; это не влияет на выполнение файла robots.txt, который никогда не игнорируется.
+Obey html-robots-nofollow:==Соблюдайте html-robots-nofollow:
+Media Type detection==Определение типа носителя
+Not loading URLs with unsupported file extension is faster but less accurate.==Если не загружать URL-адреса с неподдерживаемым расширением файла, это быстрее, но менее точно.
+Indeed, for some web resources the actual Media Type is not consistent with the URL file extension. Here are some examples:==Действительно, для некоторых веб-ресурсов фактический тип носителя не соответствует расширению файла URL. Вот несколько примеров:
+Do not load URLs with an unsupported file extension==Не загружайте URL-адреса с неподдерживаемым расширением файла.
+Always cross check file extension against Content-Type header==Всегда перепроверяйте расширение файла по заголовку Content-Type.
+Load Filter on URLs==Загрузить фильтр по URL-адресам
+must-match==обязательное совпадение
+must-not-match==не должен совпадать
+Load Filter on URL origin of links==Загрузить фильтр по источнику ссылок URL
+Example: to allow loading only links from pages on example.org domain, set the must-match filter to '.*example.org.*'.==Пример: чтобы разрешить загрузку только ссылок со страниц домена example.org, установите для фильтра обязательного соответствия значение «.*example.org.*».
+Load Filter on IPs==Загрузить фильтр по IP-адресам
+No Indexing when Canonical present and Canonical != URL==Индексация отсутствует, если присутствует Canonical и Canonical != URL
+Filter on Document Media Type (aka MIME type)==Фильтрация по типу носителя документа (также известному как MIME-тип)
+that must match with the document Media Type (also known as MIME Type) to allow the URL to be indexed.==что должен соответствовать типу носителя документа (также известному как тип MIME), чтобы можно было индексировать URL.
+Each parsed document is checked against the given Solr query before being added to the index.==Каждый анализируемый документ проверяется по заданному запросу Solr перед добавлением в индекс.
+The embedded local Solr index must be connected to use this kind of filter.==Для использования такого типа фильтра необходимо подключить встроенный локальный индекс Solr.
+Content Filter==Контент-фильтр
+These are limitations on parts of a document. The filter will be applied after a web page was loaded.==Это ограничения на части документа. Фильтр будет применен после загрузки веб-страницы.
+You can choose to:==Вы можете выбрать:
+Evaluate by default==Оценить по умолчанию
+Use all words in document by default until a CSS class as listed below appears; then ignore all==По умолчанию используйте все слова в документе, пока не появится класс CSS, указанный ниже; тогда игнорируй все
+Ignore by default==Игнорировать по умолчанию
+Ignore all words in document by default until a CSS class as listed below appears, then evaluate all==По умолчанию игнорируйте все слова в документе, пока не появится класс CSS, указанный ниже, затем оцените все слова.
+Filter div or nav class names==Фильтровать имена классов div или nav
+comma-separated list of <div> or <nav> element class names which should be filtered out/in according to switch above.==разделенный запятыми список элементов <div> или <nav> имена классов элементов, которые следует отфильтровать /in в соответствии с переключателем выше.
+Clean up search events cache==Очистить кеш событий поиска
+Check this option to be sure to get fresh search results including newly crawled documents. Beware that it will also interrupt any refreshing/resorting of search results currently requested from browser-side.==Установите этот флажок, чтобы получать свежие результаты поиска, включая недавно просканированные документы. Помните, что это также прервет любое обновление/resorting результатов поиска, запрошенное в данный момент со стороны браузера.
+No Deletion==Без удаления
+ago as stale and delete them before the crawl is started.==назад как устаревшие и удалите их до начала сканирования.
+Re-load==Перезагрузить
+ago as stale and load them again. If they are younger, they are ignored.==назад как устаревшие и загрузите их снова. Если они моложе, их игнорируют.
+Document Cache==Кэш документов
+no cache: never use the cache, all content from fresh internet source;==no cache: никогда не используйте кеш, весь контент из свежих источников в Интернете;
+if fresh: use the cache if the cache exists and is fresh using the proxy-fresh rules;==if fresh: использовать кеш, если кеш существует и является свежим, с использованием правил обновления прокси;
+if exist: use the cache if the cache exist. Do no check freshness. Otherwise use online source;==if exist: использовать кеш, если кеш существует. Не проверяйте свежесть. В противном случае используйте онлайн-источник;
+cache only: never go online, use all content from cache. If no cache exist, treat content as unavailable==cache only: никогда не выходить в Интернет, использовать весь контент из кеша. Если кэша нет, считать контент недоступным.
+Because YaCy can be used as replacement for commercial search appliances==Потому что YaCy можно использовать в качестве замены коммерческих поисковых устройств.
+Enrich Vocabulary==Обогащать словарный запас
+Scraping Fields==Очистка полей
+You can use class names to enrich the terms of a vocabulary based on the text content that appears on web pages. Please write the names of classes into the matrix.==Вы можете использовать имена классов, чтобы обогатить термины словаря на основе текстового содержимого, которое появляется на веб-страницах. Пожалуйста, впишите названия классов в матрицу.
+Vocabulary==Словарный запас
+Class==Сорт
#File: CrawlStartScanner_p.html
+hours==часов
#---------------------------
Network Scanner==Сканер сети
YaCy can scan a network segment for available http, ftp and smb server.==YaCy может сканировать такие сегменты сети как http-, ftp- и smb-серверы .
You must first select a IP range and then, after this range is scanned,==Сначала вы должны выбрать диапазон IP-адресов, а затем диапазон сканирования.
it is possible to select servers that had been found for a full-site crawl.==После этого можно выбрать серверы для полного индексирования сайта.
-No servers had been detected in the given IP range==Серверы не обнаружены в заданном диапазоне IP-адресов
-Please enter a different IP range for another scan.==Пожалуйста, введите другой диапазон IP-адресов, для повторного сканирования.
-Please wait...==Пожалуйста, подождите...
->Scan the network<==>Сканирование сети<
Scan Range==Диапазон сканирования
Scan sub-range with given host==Сканирование поддиапазона заданного хоста
-Full Intranet Scan:==Полное сканирование интранета:
Do not use intranet scan results, you are not in an intranet environment!==Вы не можете использовать результаты сканирования интранета, так как вы не находитесь в интрасети!
All known hosts in the search index (/31 subnet recommended!)==Все известные хосты в индексе поиска (/31 подсеть рекомендована!)
-only the given host(s)==только заданного хоста(-ов)
-addresses)==адреса)
-Subnet<==Подсеть<
-Time-Out<==Тайм-аут<
->Scan Cache<==>Сканирование кэша<
accumulate scan results with access type "granted" into scan cache (do not delete old scan result)==накапливать результаты сканирования с типом доступа "разрешено" в кэше сканирования (старые результаты сканирования не удаляются)
->Service Type<==>Тип протокола<
-#>ftp==>FTP
-#>smb==>SMB
-#>http==>HTTP
-#>https==>HTTPS
->Scheduler<==>Планировщик<
run only a scan== только сканировать
scan and add all sites with granted access automatically. This disables the scan cache accumulation.==сканировать и добавить все доступные сайты автоматически. Это не работает при накоплении результатов в кэше сканирования.
-Look every==Проверять каждые
->minutes<==>минут<
->hours<==>часов<
->days<==>дней<
again and add new sites automatically to indexer.==и добавлять новые сайты в индексатор автоматически.
Sites that do not appear during a scheduled scan period will be excluded from search results.==Сайты, которые будут недоступны во время запланированного сканирования, будут удалены из результатов поиска.
"Scan"=="Сканировать"
#-----------------------------
+Scan the network==Сканировать сеть
+Subnet==Подсеть
+/31 (only the given host(s))==/31 (только указанные хосты))
+/24 (254 addresses)==/24 (254 адреса)
+/20 (4064 addresses)==/20 (4064 адреса)
+/16 (65024 addresses)==/16 (65024 адреса)
+Time-Out==Тайм-аут
+ms==РС
+Scan Cache==Сканировать кэш
+Service Type==Тип услуги
+ftp==FTP
+smb==кто-то
+http==http
+https==https
+Scheduler==Планировщик
+ Look every== Смотри каждый
+minutes==минуты
+days==дни
#File: CrawlStartSite.html
+Path==Путь
+Site Crawling==Индексирование сайта
#---------------------------
-YaCy '#[clientname]#': Crawl Start==YaCy '#[clientname]#': Индексирование сайта
->Site Crawling<==>Индексирование сайта<
Site Crawler:==Индексирование сайта:
Download all web pages from a given domain or base URL.==Загрузить все вэб-страницы из указанного домена или по ссылке.
->Site Crawl Start<==>Запуск индексирования сайта<
->Site<==>Сайт<
-Start URL (must start with==Начальная ссылка (должна начинаться с
Link-List of URL==Список URL-адресов
Sitemap URL==Ссылка на карту сайта
-#>Scheduler<==>Планировщик<
-#run this crawl once==запустить индексирование один раз
-#scheduled, look every==по расписанию, каждые
-#>minutes<==>минут<
-#>hours<==>часов<
-#>days<==>дней<
-#for new documents automatically.==автоматически, на наличие новых документов.
->Path<==>Путь<
load all files in domain==загрузить все файлы в этом домене
load only files in a sub-path of given url==загрузить файлы только по ссылкам указанным в URL-адресе
->Limitation<==>Ограничения<
-not more than <==не больше чем <
->documents<==>документов<
-#>Dynamic URLs<==>Динамические URL-адреса<
-#allow <==разрешить <
-#urls with a '?' in the path==URL-адреса с '?' в адресе
-Collection<==Хранилище<
->Start<==>Запуск<
"Start New Crawl"=="Запустить новое индексирование"
-Hints<==Подсказки<
->Crawl Speed Limitation<==>Ограничение скорости индексирования<
-No more that two pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.==Не более чем две страницы с одного хоста в секунду (не более чем 120 документов в минуту), для ограничения загруженности удалённого сервера.
->Target Balancer<==>Цель балансировки<
A second crawl for a different host increases the throughput to a maximum of 240 documents per minute since the crawler balances the load over all hosts.==Второе индексирование по другому хосту увеличивает пропускную способность индексирования до 240 документов в минуту с балансировкой нагрузки по всем хостам.
->High Speed Crawling<==>Высокая скорость индексирования<
A 'shallow crawl' which is not limited to a single host (or site)=='Медленное индексирование' не ограничено по одному хосту (или сайту)
can extend the pages per minute (ppm) rate to unlimited documents per minute when the number of target hosts is high.==скорость индексирования которого может быть увеличена на неограниченное, когда число удалённых хостов высока.
-This can be done using the Expert Crawl Start servlet.==Это можно сделать с помощью запуска расширенного индексирования.
->Scheduler Steering<==>Управление планировщиком<
-The scheduler on crawls can be changed or removed using API Steering.==Расписание индексирования может быть изменено или удалено, используя управление API.
#-----------------------------
+"empty"=="пустой"
+"Show all links"=="Показать все ссылки"
+Site Crawl Start==Начало сканирования сайта
+Site==Сайт
+Start URL (must start with http:// https:// ftp:// smb:// file://)==Запустить URL (должен начинаться с http:// https:// ftp:// smb:// file://)
+Limitation==Ограничение
+not more than==не более чем
+documents==документы
+Collection==Коллекция
+Start==Начинать
+Hints==Подсказки
+Crawl Speed Limitation==Ограничение скорости сканирования
+No more that four pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.==С одного хоста за одну секунду загружается не более четырех страниц (не более 120 документов в минуту), чтобы ограничить нагрузку на целевой сервер.
+Target Balancer==Целевой балансировщик
+High Speed Crawling==Высокоскоростное ползание
+Scheduler Steering==Управление планировщиком
#File: Help.html
#---------------------------
-#YaCy: Help==YaCy: Помощь
->Tutorial==>Инструкции
-You are using the administration interface of your own search engine==YaCy можно использовать для организации собственного поиска. Ниже видео-демонстрация работы YaCy (на немецком языке).
-You can create your own search index with YaCy==С YaCy вы можете организовать свой собственный поиск
-To learn how to do that, watch one of the demonstration videos below==Чтобы узнать как это сделать, вы можете просмотреть видео демонстрации ниже (на немецком языке)
twitter this video==Отправить это видео в твиттер
-Download from Vimeo==Загрузить из Vimeo
More Tutorials==Больше инструкций
-Please see the tutorials on==Пожалуйста, смотрите больше инструкций на
#-----------------------------
+YaCy: Tutorial==YaCy: Учебное пособие
+Tutorial==Учебное пособие
+You are using the administration interface of your own search engine. You can create your own search index with YaCy.==Вы используете интерфейс администрирования собственной поисковой системы. Вы можете создать свой собственный поисковый индекс с помощью YaCy.
+To learn how to do that, watch one of the demonstration videos below:==Чтобы узнать, как это сделать, посмотрите одно из демонстрационных видеороликов ниже:
#File: IndexBrowser_p.html
+Path==Путь
#---------------------------
Index Browser==Просмотр хостов
-Browse the index of #[ucount]# documents.==В индексе находится #[ucount]# документов.
-Enter a host or an URL for a file list or view a list of==Введите хост или адрес для получения списка файлов, или просмотрите список из
->all hosts<==>всех хостов<
->only hosts with urls pending in the crawler<==>только хосты, находящиеся в ожидании индексатора<
-> or <==> или <
->only with load errors<==>только с ошибками загрузки<
Host/URL==Хост/ссылка:
Browse Host==Поиск хоста
-"Browse Host"=="Просмотр хостов"
"Delete Subpath"=="Удалить путь"
-Browser for==Просмотр
"Re-load load-failure docs (404s etc)"=="Перезагрузить документы в случае ошибки 404"
-Confirm Deletion==Подтвердите удаление
->Host List<==>Список хостов<
Count Colors:==Обозначение цветов:
Documents without Errors==Проиндексированные документы без ошибок
Pending in Crawler==Ожидающие в индексаторе
-Crawler Excludes<==Исключения индексатора<
-Load Errors<==Ошибки загрузки<
-
-#Load Errors (exclusion/failure)==Ошибки загрузки
-#Browser for #[path]#==Просмотр #[path]#
-documents stored for host: #[hostsize]#==Документы сохранённые хостом: #[hostsize]#
-documents stored for subpath: #[subpathloadsize]#==документы сохранённые в директории: #[subpathloadsize]#
-unloaded documents detected in subpath: #[subpathdetectedsize]#==незагруженные документы, обнаруженные в директории: #[subpathdetectedsize]#
->Path<==>Путь<
->stored<==>хранящиеся<
->linked<==>ссылающиеся<
->pending<==>ожидающие<
->excluded<==>исключённые<
->failed<==>ошибочные<
-Show Metadata==Показать метаданные
+
link, detected from context==ссылки, выявленные из контекста
load & index==Загрузить & индекс
->indexed<==>проиндексировано<
->loading<==>загружается<
-Outbound Links, outgoing from #[host]# - Host List==Внешние ссылки, исходящие от #[host]# - список хостов
-Inbound Links, incoming to #[host]# - Host List==Внутренние ссылки, входящие в #[host]# - список хостов
-#browse #[host]#==просмотр #[host]#
-##[count]# URLs==#[count]# ссылок
-==
Administration Options==Расширенные опции
Delete all==Удалить все
->Load Errors<==>ошибки загрузки<
from index==из индекса
"Delete Load Errors"=="Удалить"
#-----------------------------
+"Directory"=="Каталог"
+Host List==Список хостов
+URLs==URL-адреса
+Crawler Excludes==Краулер исключает
+Load Errors==Ошибки загрузки
+Host Analysis==Анализ хоста
+Add to blacklist==Добавить в черный список
+stored==хранится
+linked==связанный
+pending==в ожидании
+excluded==исключен
+failed==неуспешный
+Metadata==Метаданные
+indexed==индексируется
+loading==загрузка
#File: index.html
+Search==Поиск
#---------------------------
-==
-YaCy '#[clientname]#': Search Page==YaCy '#[clientname]#': Поиск
-#kiosk mode==режим киоска
->Search<==>Поиск<
Text==Текст
Images==Изображения
Audio==Аудио
Video==Видео
Applications==Приложения
more options...==Расширенный поиск...
-#advanced parameters==дополнительные параметры
-#Max. number of results==максимальное число результатов
Results per page==Результатов на страницу
Resource==Ресурс
-global==глобальный
-#>local==>локальный
-#Global search is disabled because==Глобальный поиск отключен потому что
-#DHT Distribution is==Приём DHT-данных ist
-#Index Receive is==Приём индекса ist
-#DHT Distribution and Index Receive are==Приём DHT-данных и индекса
-#отключен.#(==deaktiviert.#(
-#URL mask==Фильтр URL-адресов
restrict on==ограничение
show all==показать все
#überarbeiten!!!
Prefer mask==Фильтр
-Constraints==Ограничения
only index pages==только проиндексированные страницы
-#"authentication required"=="требуется авторизация"
-#Disable search function for users without authorization==Отключить веб-поиск для пользователей без авторизации
-#Enable web search to everyone==Разрешить веб-поиск всем
the peer-to-peer network==P2P-сеть
only the local index==Только локальный индекс
Query Operators==Параметры поиска
restrictions==Ограничения
only urls with the <phrase> in the url==только ссылка c <phrase> в ссылке
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-annotated==только страницы с аннотацией
-only pages from top-level-domains==только страницы с TLD
only resources from http or https servers==только ресурсы с HTTP или HTTPS-серверов
-only resources from ftp servers==только ресурсы с FTP серверов
-they are rare==они редки
-crawl them yourself==проиндексируйте их самостоятельно
-only resources from smb servers==только ресурсы с SMB-серверов
-Intranet Indexing must be selected==индексация интранет должна быть выбрана
-only files from a local file system==только файлы локальной файловой системы
->ranking modifier<==>Сортировка<
-sort by date==сортировка по дате
-latest first==сначала последние
multiple words shall appear near==слова должны быть рядом
-doublequotes==двойные кавычки
-prefer given language==предпочитать указанный язык
-an ISO 639-1 2-letter code==двухбуквенный языковой код ISO 639-1
heuristics==эвристики
-add search results from ==добавить результаты из
Search Navigation==Навигация по поиску
keyboard shortcuts==Назначения клавиш
next result page==следующая страница результатов
@@ -1528,24 +1447,56 @@ automatic result retrieval==Вывод результатов
browser integration==Интеграция в браузер
after searching, click-open on the default search engine in the upper right search field of your browser and select 'Add "YaCy Search.."'==после поиска, кликните на поиске по умолчанию в правом верхнем углу браузера и выберите 'добавить Поиск YaCy'
search as rss feed==Представить как RSS-ленту
-click on the red icon in the upper right after a search.==после поиска нажмите на красную иконку в правом верхнему углу.
-this works good in combination with the '/date' ranking modifier.==Это хорошо работает вместе с модификатором ранжирования /date.
-See an==Смотрите
-example.==.
->example==>пример
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
#-----------------------------
+"Extend media search results (images, videos or applications specific) to pages including such medias (provides generally more results, but eventually less relevant)."=="Распространите результаты поиска мультимедиа (изображения, видео или конкретные приложения) на страницы, включающие такие медиафайлы (обычно дает больше результатов, но в конечном итоге становится менее релевантными)."
+"Strictly limit media search results (images, videos or applications specific) to indexed documents matching exactly the desired content domain."=="Строго ограничьте результаты поиска мультимедиа (изображения, видео или конкретные приложения) индексированными документами, точно соответствующими желаемому домену контента."
+"Reference alpha-2 language codes list"=="Справочный список кодов языков альфа-2"
+Constraints:==Ограничения:
+Media search==Медиа-поиск
+Extended==Расширенный
+Strict==Строгий
+inurl:<phrase>==inurl:<фраза>
+inlink:<phrase>==входящая ссылка:<фраза>
+filetype:<ext>==тип файла:<ext>
+only urls with extension <ext>==только URL-адреса с расширением <ext>
+site:<host>==сайт:<хост>
+only urls from host <host>==только URL-адреса с хоста <host>
+author:<author>==автор:<автор>
+only pages with as-author-annotated <author>==только страницы с аннотацией <author> с указанием автора>
+tld:<tld>==домен:<TLD>
+only pages from top-level-domains <tld>==только страницы из доменов верхнего уровня <tld>
+on:<date>==дата:<дата>
+only pages with <date> in content==только страницы с <date> по содержанию
+from:<date1> to:<date2>==от:<date1> в:<date2>
+only pages with a date between <date1> and <date2> in content==только страницы с датой между <date1> и <дата2> по содержанию
+keyword:<phrase>==ключевое слово:<фраза>
+only pages with keyword anotation containing <phrase>==только страницы с аннотацией ключевых слов, содержащей <phrase>
+/http==/http
+/ftp==/ftp
+/smb==/smb
+/file==/file
+spatial restrictions==пространственные ограничения
+/location==/location
+only documents having location metadata (geographical coordinates)==только документы, имеющие метаданные местоположения (географические координаты)
+/radius/<latitude>/<longitude>/<distance>==/radius/<latitude>/<longitude>/<distance>
+only documents within a square zone embracing a circle of given radius (in decimal degrees) around the specified latitude and longitude (in decimal degrees)==только документы внутри квадратной зоны, охватывающей круг заданного радиуса (в десятичных градусах) вокруг указанной широты и долготы (в десятичных градусах)
+ranking modifier==модификатор рейтинга
+/date==/date
+sort by date (latest first)==сортировать по дате (сначала последние)
+/near==/near
+"" (doublequotes)=="" (двойные кавычки)
+/language/<lang>==/language/<lang>
+/heuristic==/heuristic
+add search results from external opensearch systems==добавить результаты поиска из внешних систем opensearch
#File: IndexControlRWIs_p.html
+Resource==Ресурс
#---------------------------
Reverse Word Index Administration==Управление обратным индексом слов
-The local index currently contains #[wcount]# reverse word indexes==Локальный индекс в настоящее время содержит #[wcount]# слов обратного индекса
RWI Retrieval (= search for a single word)==Поиск слов
-#Select Segment:==Выбрать сегмент:
-Retrieve by Word:<==Поиск по слову:<
"Show URL Entries for Word"=="Показать ссылки"
-Retrieve by Word-Hash==Поиск слова по хэш
"Show URL Entries for Word-Hash"=="Показать ссылки"
"Generate List"=="Создать список"
Limitations==Ограничения
@@ -1553,76 +1504,23 @@ Index Reference Size==Размер индекса ссылок
No reference size limitation (this may cause strong CPU load when words are searched that appear very often)==Без ограничений (это может сильно нагружать процессор, если искомые слова ищутся слишком часто)
Limitation of number of references per word:==Ограничение числа ссылок на слово:
(this causes that old references are deleted if that limit is reached)==(старые ссылки будут удалены, если достигнут предела)
->Set References Limit<==>Установить<
-#Cleanup==Очистка
-#>Index Deletion<==>Удаление индекса<
-#>Delete Search Index<==>Удалить поисковый индекс<
-#Stop Crawler and delete Crawl Queues==Остановить индексатор и удалить очередь запросов
-#Delete HTTP & FTP Cache==Удалить HTTP & FTP кэш
-#Delete robots.txt Cache==Удалить кэш robots.txt
-#Delete cached snippet-fetching failures during search==Удалить кэшированные фрагменты, полученные ошибочно во время поиска
-#"Delete"=="Удалить"
-No entry for word '#[word]#'==Не найдено для слова '#[word]#'
-No entry for word hash==Не найдено для хэш слова
-Search result==Результат поиска
-total URLs==Количество URL-адресов
-appearance in==Показывать в
-in link type==В типе ссылки
-document type==Тип документа
-
description
==
Описании
-
title
==
Заголовоке
-
creator
==
Авторе
-
subject
==
Теме
-
url
==
Ссылке
-
emphasized
==
Значении
-
image
==
Изображение
-
audio
==
Аудио
-
video
==
Видео
-
app
==
Приложение
-index of==Индекс
->Selection==>Выбор
Display URL List==Отобразить список URL-адресов
-Number of lines==Количество линий
all lines==Все линии
"List Selected URLs"=="Показать"
Transfer RWI to other Peer==Передать RWI другому узлу
-Transfer by Word-Hash==Передать хэш слова
"Transfer to other peer"=="Передать другому узлу"
-to Peer==Узлу
-
select==
выбрать
-or enter a hash==или ввести хэш
-or peer name:==или имя узла:
-Sequential List of Word-Hashes==Список хэшей слов по-порядку
No URL entries related to this word hash==Нет ссылок, связанных с этим хэшем слова.
->#[count]# URL entries related to this word hash==>#[count]# ссылок, связанных с этим хэшем слова.
-Resource==Ресурс
Negative Ranking Factors==Negative Ranking Faktoren
Positive Ranking Factors==Positive Ranking Faktoren
Reverse Normalized Weighted Ranking Sum==Inverse normalisierte gewichtete Ranking Summe
-hash==хэш
-dom length==длина домена
-#ybr==YBR
#url comps
-url length==длина URL-адреса
-pos in text==Pos. im Text
-pos of phrase==Pos. des Satzes
-pos in phrase==Pos. im Satz
-word distance==Wort Distanz
-
authority
==
Autorität
-
date
==
Дата
-words in title==слов в заголовке
-words in text==слов в тексте
-local links==локальные ссылки
-remote links==удалённые ссылки
-hitcount==Trefferzahl
-#props==
unresolved URL Hash==разрешённый хэш URL-ссылки
Word Deletion==Удаление слова
Deletion of selected URLs==Удаление выбранных URL-ссылок
delete also the referenced URL (recommended, may produce unresolved references==Удалить связанные URL-ссылки (Рекомендовано. Может привести с образованию неразрешённых ссылок
at other word indexes but they do not harm)==на другие индексы слов, но они не наносят вреда).
for every resolvable and deleted URL reference, delete the same reference at every other word where==Для каждой разрешённой и удалённой ссылки, удалить также ссылки на все другие слова, где
-the reference exists (very extensive, but prevents further unresolved references)==ссылки существуют (предовращает появление неразрешённых ссылок в дальнейшем).
+the reference exists (very extensive, but prevents further unresolved references)==ссылки существуют (предовращает появление неразрешённых ссылок в дальнейшем).
"Delete reference to selected URLs"=="Удалить ссылку"
"Delete Word"=="Удалить слово"
Blacklist Extension==Расширения черного списка
@@ -1630,125 +1528,113 @@ Blacklist Extension==Расширения черного списка
"Add selected domains to blacklist"=="Добавить выбранные домены в черный список"
#-----------------------------
+Retrieve by Word:==Получить по Word:
+Retrieve by Word-Hash:==Получить по Word-Hash:
+Set References Limit==Установить лимит ссылок
+Search result:==Результат поиска:
+total URLs==общее количество URL-адресов
+appearance in==появление в
+in link type==в типе ссылки
+document type==тип документа
+description==описание
+title==заголовок
+creator==создатель
+subject==предмет
+url==URL
+emphasized==подчеркнул
+image==изображение
+audio==аудио
+video==видео
+app==приложение
+index of==индекс
+Selection==Выбор
+Number of lines:==Количество строк:
+Transfer by Word-Hash:==Перенос по Word-Hash:
+to Peer:==Пэру:
+select==выбирать
+or enter a hash or peer name:==или введите хэш или имя узла:
+Sequential List of Word-Hashes:==Последовательный список хешей слов:
+props==реквизит
+hash==хэш
+dom length==длина дома
+url comps==URL-адреса
+url length==длина URL
+pos in text==позиция в тексте
+pos of phrase==позиция фразы
+pos in phrase==позиция во фразе
+term frequency==частота термина
+authority==власть
+date==дата
+words in title==слова в заголовке
+words in text==слова в тексте
+local links==местные ссылки
+remote links==удаленные ссылки
+hitcount==количество посещений
#File: IndexControlURLs_p.html
#---------------------------
-These document details can be retrieved as XHTML+RDFa==Детали документа могут быть получены в виде XHTML+RDFa.
-document containg RDF annotations in Dublin Core vocabulary.==Документ содержит RDF-аннотации в словаре дублинского ядра.
-The XHTML+RDFa data format is both a XML content format and a HTML display format and is considered as an important Semantic Web content format.==Формат данных XHTML+RDFa в виде XML-содержания и HTML-отображения, рассматривается в качестве важного формата семантической сети.
-The same content can also be retrieved as pure XML metadata with DC tag name vocabulary.==Некоторое содержимое может быть также получено в виде XML-метаданных с словарём тэгов имён DC.
Click the API icon to see an example call to the search rss API.==Нажмите на иконку для просмотра API примера поиска по rss-ленте.
-To see a list of all APIs, please visit the API wiki page.==Для просмотра списка всех API, пожалуйста, посетите страницу API wiki.
URL Database Administration==Управление базой данных ссылок
-#URL References Administration==Управление URL-ссылками
-The local index currently contains #[ucount]# URL references==Локальный индекс содержит на данный момент #[ucount]# ссылок
URL Retrieval==Поиск ссылок
-#Select Segment:==Выбрать сегмент:
-Retrieve by URL:<==Поиск ссылки:<
"Show Details for URL"=="Показать сведения"
-Retrieve by URL-Hash==Поиск хэша URL-ссылки
"Show Details for URL-Hash"=="Показать сведения"
-#"Generate List"=="Создать список"
Cleanup==Очистка
Index Deletion==Удаление индекса
Delete local search index (embedded Solr and old Metadata)==Удалить локальный индекс поиска (включая базу данных Solr и старые метаданные)
Delete remote solr index==Удалить удалённый индекс базы Solr
Delete RWI Index (DHT transmission words)==Удалить индекс RWI (передача слов в виде DHT)
Delete Citation Index (linking between URLs)==Удалить индекс цитат (перекрестные ссылки)
-#Delete First-Seen Date Table==Delete First-Seen Date Table
Delete HTTP & FTP Cache==Удалить HTTP & FTP кэш
Stop Crawler and delete Crawl Queues==Остановить индексатор и удалить очередь запросов
Delete robots.txt Cache==Удалить кэш robots.txt
-Delete cached snippet-fetching failures during search==Удалить кэшированные фрагменты, полученные ошибочно во время поиска
"Delete"=="Удалить"
-Confirm Deletion==Подтвердите удаление
Statistics about top-domains in URL Database==Список наиболее распространённых доменов в базе данных ссылок
Show top==Показать
domains from all URLs.==наиболее часто встречающихся доменов среди всех URL.
"Generate Statistics"=="Показать"
-Statistics about the top-#[domains]# domains in the database:==Статистика #[domains]# наиболее распространённых доменов в базе данных:
"delete all"=="удалить всё"
->Domain<==>Домен<
-#URLs==Ссылки
-Dump and Restore of Solr Index==Создание дампа и восстановление индекса базы Solr
-"Create Dump"=="Создать дамп"
-Dump File==Файл дампа
-"Restore Dump"=="Восстановить из дампа"
->Optimize Solr<==>Оптимизация базы Solr<
-merge to max. <==Объединить максимум в<
-> segments==>сегментов
"Optimize Solr"=="Оптимизировать"
Reboot Solr Core==Перезапустить ядро Solr
"Shut Down and Re-Start Solr"=="Перезапустить"
-#Sequential List of URL-Hashes==Sequentielle Liste der URL-Hashes
-Loaded URL Export==Экспорт ссылок
-Export File==Экспортировать файл
-URL Filter==Фильтр ссылок
-query==Запрос
-Export Format==Формат экспорта
-#Only Domain (superfast)==Только домен (очень быстро)
-Only Domain:==Только домен:
-Full URL List:==Полный список ссылок:
-Plain Text List (domains only)==Простой текстовый список (только домены)
-HTML (domains as URLs, no title)==HTML (домены в виде ссылок, без заголовков)
-#Full URL List (high IO)==Полный список ссылок (высокий IO)
-Plain Text List (URLs only)==Простой текстовый список (только URL-адреса)
-HTML (URLs with title)==HTML (ссылки с заголовками)
-#XML (RSS)==XML (RSS)
-"Export URLs"=="Экспортировать"
-Export to file #[exportfile]# is running .. #[urlcount]# URLs so far==Экспорт в файл #[exportfile]# начался .. #[urlcount]# ссылок на данный момент
-Finished export of #[urlcount]# URLs to file==Завершён экспорт #[urlcount]# URL-адресов в файл
-Export to file #[exportfile]# failed:==Экспорт в файл #[exportfile]# произошёл с ошибкой:
-No entry found for URL-hash==Не найдено для хэш URL-адреса
-#URL String==URL-адрес
-#Hash==Хэш
-#Description==Описание
-#Modified-Date==Дата изменения
-#Loaded-Date==Дата загрузки
-#Referrer==Referrer
-#Doctype==Тип документа
-#Language==Язык
-#Size==Размер
-#Words==Слова
"Show Content"=="Показать контент"
"Delete URL"=="Удалить URL-адрес"
this may produce unresolved references at other word indexes but they do not harm==это может привести к неразрешённым ссылкам на другие слова индексов, но это не нанесёт вреда
"Delete URL and remove all references from words"=="Удалить ссылки, включая ссылки из слов"
-#delete the reference to this url at every other word where the reference exists (very extensive, but prevents unresolved references)==löscht die Referenz zu dieser URL und jedem anderen Wort, wo die Referenz existiert (sehr umfassend, aber bewahrt vor ungelösten Referenzen)
#-----------------------------
+"API"=="API"
+Retrieve by URL:==Получить URL:
+Retrieve by URL-Hash:==Получить по URL-Hash:
+Delete First-Seen Date Table==Удалить таблицу дат первого посещения
+Optimize Solr==Оптимизировать Solr
+merge to max.==объединить до макс.
+segments==сегменты
+This feature is available when using exclusively a local embedded Solr.==Эта функция доступна при использовании исключительно локального встроенного Solr.
+Domain==Домен
+URLs==URL-адреса
+delete the reference to this url at every other word where the reference exists (very extensive, but prevents unresolved references)==удалить ссылку на этот URL-адрес во всех словах, где эта ссылка существует (очень обширно, но предотвращает неразрешенные ссылки)
#File: IndexCreateLoaderQueue_p.html
#---------------------------
Loader Queue==Очередь загрузки
The loader set is empty==Очередь пуста.
-There are #[num]# entries in the loader set:==Число записей в загрузке #[num]# :
Initiator==Инициатор
Depth==Глубина
Status==Состояние
-#URL==URL-адрес
-'Local' Crawl Queue==Локальная очередь индексирования
#-----------------------------
+URL==URL
#File: IndexCreateParserErrors_p.html
#---------------------------
-Parser Errors==Отклонённые ссылки
Rejected URLs==Отклонённые ссылки
-#Rejected URL List:==
-There are #[num]# entries in the rejected-urls list.==Число записей в списке #[num]#.
-Showing latest #[num]# entries.==Показаны #[num]# последних записей.
"show more"=="Показать больше"
"clear list"=="Очистить список"
-#There are #[num]# entries in the rejected-queue:==
-#Initiator==Инициатор
-#Executor==Исполнитель
Time==Дата и время
-#URL==URL-ссылка
Fail-Reason==Причина ошибки
#-----------------------------
+URL==URL
#File: IndexCreateQueues_p.html
#-----------------------------
This crawler queue is empty==Очередь этого индекcатора пуста
-'Local' Crawl Queue==Локальная очередь индексирования
Click on this API button to see an XML with information about the crawler latency and other statistics.==Нажмите на эту кнопку для просмотра в виде XML информации о задержке индексатора и другой статистики.
Delete Entries:==Удалить значения:
Initiator==Инициатор
@@ -1756,7 +1642,6 @@ Profile==Профиль
Depth==Глубина
Modified Date==Дата изменения
Anchor Name==Название якоря
-#URL==URL
Count==Количество
Delta/ms==Дельта (мс)
Host==Хост
@@ -1765,95 +1650,95 @@ Host==Хост
#-----------------------------
+"API"=="API"
+URL==URL
#File: ContentIntegrationPHPBB3_p.html
#---------------------------
Content Integration: Retrieval from phpBB3 Databases==Интеграция контента: Извлечение данных из баз phpBB3
It is possible to extract texts directly from mySQL and postgreSQL databases.==Возможно извлечение текстовых данных напрямую из баз mySQL и postgreSQL.
-#Each extraction is specific to the data that is hosted in the database.==
This interface gives you access to the phpBB3 forums software content.==Здесь вы можете получить доступ к содержимому phpBB3-форумов.
If you read from an imported database, here are some hints to get around problems when importing dumps in phpMyAdmin:==Если вы желаете использовать импортированную базу данных, то вам пригодятся некоторые подсказки для устранения проблем, которые могут возникнуть при импортировании дампов в phpMyAdmin:
-before importing large database dumps, set==перед импортированием большого дампа базы данных, установите
-the following Line in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB)==указанную ниже строку в phpmyadmin/config.inc.php и разместите ваш файл дампа в директории /tmp (иначе будет невозможна загрузка файлов размером больше 2МБайт)
deselect the partial import flag==снимите флаг частичного импорта
When an export is started, pack files are generated into DATA/PACKS/load which are automatically fetched by an indexer thread.==После начала экспорта, замещающие файлы создаются в DATA/PACKS/load и автоматически добавляются в индексатор.
All indexed pack files are then moved to DATA/PACKS/loaded and can be re-cycled when an index is deleted.==Все проиндексированные замещающие файлы перемещаются в DATA/PACKS/loaded и могут быть использованы повторно в случае удаления индекса.
-The URL stub==Часть ссылки
-like https://community.searchlab.eu==например, https://community.searchlab.eu
-this must be the path right in front of '/viewtopic.php?'==(путь до '/viewtopic.php?')
-Type==Тип
-> of database<==> базы данных<
-use either 'mysql' or 'pgsql'==используйте 'mysql' или 'pgsql'
-Host of the database==Хост базы данных
-Port of database service (usually 3306 for mySQL)==Порт базы данных (обычно 3306 для MySQL)
-Name of the database on the host==Название базы данных на хосте
-Table prefix string for table names==Префикс для таблицы имён
-User that can access the database==Пользователь базы данных
-Password for the account of that user given above==Пароль от учётной записи пользователя
-Posts per file in exported packs==Постов на файл в экспортированных замещающих файлах
-Check database connection==Проверить соединение
-Export Content to Packs==Экспортировать содержимое
-Import a database dump, ==Импортировать дамп базы данных
-Import Dump==Импортировать
+Host of the database==Хост базы данных
+Port of database service (usually 3306 for mySQL)==Порт службы базы данных (обычно 3306 для MySQL)
+Name of the database on the host==Название базы данных на хосте
+Table prefix string for table names==Префикс таблиц для имён таблиц
+User that can access the database==Пользователь, имеющий доступ к базе данных
+Password for the account of that user given above==Пароль для указанной выше учётной записи пользователя
+Posts per file in exported packs==Постов на файл в экспортированных замещающих файлах
Posts in database==Постов в базе данных
first entry==первая запись
last entry==последняя запись
-Info failed:==Получение информации неудачно:
-Export successful! Wrote #[files]# files in DATA/PACKS/load==Экспорт успешно выполнен! #[files]# файлов записано в DATA/PACKS/load
-Export failed:==Экспорт не был выполнен:
Import successful!==Импорт успешно выполнен!
-Import failed:==Импорт не был выполнен:
#-----------------------------
+"Check database connection"=="Проверьте подключение к базе данных"
+"Export Content to Packs"=="Экспорт контента в пакеты"
+"Import Dump"=="Импортировать дамп"
+Each extraction is specific to the data that is hosted in the database.==Каждое извлечение относится к данным, хранящимся в базе данных.
+before importing large database dumps, set the following Line in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB):==перед импортом больших дампов базы данных установите следующую строку в phpmyadmin/config.inc.php и поместите файл дампа в /tmp (в противном случае загрузка файлов размером более 2 МБ будет невозможна):
+The URL stub, like http://forum.yacy-websuche.de this must be the path right in front of '/viewtopic.php?'==Заглушка URL, например, http://forum.yacy-websuche.de это должен быть путь прямо перед '/viewtopic.php?'
+Type of database (use either 'mysql' or 'pgsql')==Тип базы данных (используйте либо «mysql», либо «pgsql»)
+Import a database dump,==Импортировать дамп базы данных,
#File: DictionaryLoader_p.html
+Status==Состояние
+deactivated==отключить
#---------------------------
Knowledge Loader==Загрузка словаря
YaCy can use external libraries to enable or enhance some functions. These libraries are not==YaCy может использовать внешние библиотеки, чтобы включить или улучшить некоторые функции. Эти библиотеки
included in the main release of YaCy because they would increase the application file too much.==не включены в главный релиз YaCy, так как они значительно увеличивают размер приложения.
You can download additional files here.==Вы можете загрузить дополнительные файлы здесь.
->Geolocalization<==>Геолокализация<
Geolocalization will enable YaCy to present locations from OpenStreetMap according to given search words.==Геолокализация позволит YaCy предоставить информацию о местоположении из OpenStreetMap, согласно поисковому запросу.
->GeoNames<==>Географические названия<
With this file it is possible to find cities all over the world.==С помощью этих библиотек возможен поиск городов по всему миру.
-Content<==Содержание<
cities with a population > 1000 all over the world==Города с населением 1000 человек
cities with a population > 5000 all over the world==Города с населением 5000 человек
cities with a population > 100000 all over the world (the set is is reduced to cities > 100000)==Города с населением 100000 человек (установите для уменьшения жителей городов до > 100000)
->Download from<==>Загрузить из<
->Storage location<==>Локальное хранилище<
->Status<==>Состояние<
->not loaded<==>не загружено<
->loaded<==>загружено<
-:deactivated==:отключено
->Action<==>Действие<
->Result<==>Результат<
"Load"=="Загрузить"
"Deactivate"=="Отключить"
"Remove"=="Удалить"
"Activate"=="Включить"
->loaded and activated dictionary file<==>Загрузить и включить файл словаря<
->loading of dictionary file failed: #[error]#<==>Загрузка файла словаря неудачна: #[error]#<
->deactivated and removed dictionary file<==>Отключить и удалить файл словаря<
->cannot remove dictionary file: #[error]#<==>Невозможно удалить файл словаря: #[error]#<
->deactivated dictionary file<==Отключённый файла словаря<
->cannot deactivate dictionary file: #[error]#<==>Невозможно отключить файл словаря: #[error]#<
->activated dictionary file<==>Включённый файл словаря<
->cannot activate dictionary file: #[error]#<==>Невозможно включить файл словаря: #[error]#<
-#>OpenGeoDB<==>OpenGeoDB<
->With this file it is possible to find locations in Germany using the location (city) name, a zip code, a car sign or a telephone pre-dial number.<==>С помощью этих библиотек возможен поиск мест, городов, почтовых индексов и телефонных кодов в Германии.<
-Suggestions<==Словари<
Suggestion dictionaries will help YaCy to provide better suggestions during the input of search words==Предлагаемые словари делают поиск YaCy лучше.
This file provides 100000 most common german words for suggestions==Этот файл содержит более 100000 наиболее распространённых немецких слов.
#-----------------------------
+Geolocalization==Геолокализация
+GeoNames==Геоимена
+Content==Содержание
+Download from==Скачать с
+Storage location==Место хранения
+not loaded==не загружен
+loaded==загружен
+Action==Действие
+Result==Результат
+loaded and activated dictionary file==загруженный и активированный файл словаря
+deactivated and removed dictionary file==деактивирован и удален файл словаря
+deactivated dictionary file==деактивированный файл словаря
+activated dictionary file==активированный файл словаря
+OpenGeoDB==OpenGeoDB
+With this file it is possible to find locations in Germany using the location (city) name, a zip code, a car sign or a telephone pre-dial number.==С помощью этого файла можно находить местоположения в Германии, используя название местоположения (города), почтовый индекс, знак автомобиля или номер предварительного набора телефона.
+Downloaded from==Скачано с
+loaded - can be upgraded using the Load button for the new URL==загружено — можно обновить с помощью кнопки «Загрузить» для нового URL
+loaded and upgraded dictionary file==загруженный и обновленный файл словаря
+Suggestions==Предложения
+DeReWo - Korpusbasierte Grund-/Wortformenlisten (German) of 'Institut für Deutsche Sprache'==DeReWo - Korpusbasierte Grund-/Wortformenlisten (немецкий) Института немецкого языка
+Synonyms==Синонимы
+Synonyms are used to find not only the searched word but also their synonyms. This is done by adding all synonyms of words in documents to the document and searching the synonyms as well.==Синонимы используются для поиска не только искомого слова, но и его синонимов. Это делается путем добавления в документ всех синонимов слов в документах и поиска синонимов.
+OpenThesaurus - German Thesaurus from http://www.openthesaurus.de==OpenThesaurus — немецкий тезаурус от http://www.openthesaurus.de
+The data from this source was converted to the YaCy synonym file format and part of the YaCy distribution.==Данные из этого источника были преобразованы в формат файла синонимов YaCy и вошли в состав дистрибутива YaCy.
+Deactivated==Деактивирован
+Activated==Активировано
+Moby Lexicon - English Thesaurus from https://www.gutenberg.org/ebooks/3202==Moby Lexicon - Тезаурус английского языка от https://www.gutenberg.org/ebooks/3202
+Russian Thesaurus==Русский тезаурус
+The data was converted to the YaCy synonym file format and part of the YaCy distribution.==Данные были преобразованы в формат файла синонимов YaCy и вошли в состав дистрибутива YaCy.
#File: IndexDeletion_p.html
+Index Deletion==Удаление индекса
+hours==часов
#---------------------------
-Index Deletion<==Удаление индекса<
-The search index contains #[doccount]# documents. You can delete them here.==Поисковый индекс содержит #[doccount]# документов. Вы можете удалить их здесь.
Deletions are made concurrently which can cause that recently deleted documents are not yet reflected in the document count.==Удаление производится параллельно, поэтому недавно удалённые документы могут не учитываться в счетчике документов.
-Delete by URL Matching<==Удаление совпадающих ссылок<
Delete all documents within a sub-path of the given urls. That means all documents must start with one of the url stubs as given here.==Удалить все документы, включая подпапки указанных ссылок. Заданная ссылка на все документы должна начинаться одинаково.
One URL stub, a list of URL stubs or a regular expression==Одна ссылка, список ссылок или регулярное выражение
-Matching Method<==Способ поиска совпадений<
sub-path of given URLs==включая подпапки указанных ссылок
matching with regular expression==совпадение с регулярным выражением
"Simulate Deletion"=="Предпросмотр"
@@ -1861,40 +1746,35 @@ matching with regular expression==совпадение с регулярным
"Engage Deletion"=="Подтвердить удаление"
"simulate a deletion first to calculate the deletion count"=="Сначала нажмите предпросмотр."
"engaged"=="Подтвердить"
-selected #[count]# documents for deletion==выбор #[count]# документов для удаления
-deleted #[count]# documents==удалено #[count]# документов
-Delete by Age<==Удаление по возрасту<
Delete all documents which are older than a given time period.==Удалить все документы, которые старше указанного периода времени.
-Time Period<==По времени<
All documents older than==Все документы, старше чем
-years<==лет<
-months<==месяцев<
-days<==дней<
-hours<==часов<
-Age Identification<==По дате<
->load date==>Дата загрузки
->last-modified==>Дата последнего изменения документа
-Delete Collections<==Удаление хранилищ<
Delete all documents which are inside specific collections.==Удалить все документы внутри специальных хранилищ.
-Not Assigned<==Не закреплено<
Delete all documents which are not assigned to any collection==Удалить все документы незакреплённые ни за одним хранилищем
-, separated by ',' (comma) or '|' (vertical bar); or==, разделённые запятой или '|' (вертикальной чертой (пайп)); или
->generate the collection list...==>показать список хранилищ...
-Assigned<==Закреплено<
Delete all documents which are assigned to the following collection(s)==Удалить все документы закреплённые за указанной ниже коллекцией
-Delete by Solr Query<==Удаление запросов из базы Solr<
This is the most generic option: select a set of documents using a solr query.==Это наиболее универсальный вариант: выберите набор документов с помощью запроса в базу Solr.
#-----------------------------
+Index deletion will not immediately reduce the storage size on disk because entries are only marked as deleted in a first step.==Удаление индекса не приведет к немедленному уменьшению размера хранилища на диске, поскольку записи помечаются как удаленные только на первом этапе.
+Delete by URL Matching==Удалить по URL Соответствию
+Matching Method==Метод сопоставления
+Delete by Age==Удалить по возрасту
+Time Period==Период времени
+years==годы
+months==месяцы
+days==дни
+Age Identification==Определение возраста
+load date==дата загрузки
+last-modified==последнее изменение
+Delete Collections==Удалить коллекции
+Not Assigned==Не назначено
+Assigned==Назначенный
+Delete by Solr Query==Удалить по запросу Solr
+Core==Основной
#File: IndexImportMediawiki_p.html
#---------------------------
MediaWiki Dump Import==Импорт дампа MediaWiki
No import thread is running, you can start a new thread here==В настоящее время импорт не производится, вы можете запустить импорт на этой странице.
-Bad input data:==Неправильные входящие данные:
-MediaWiki Dump File Selection: select an XML file (which may be bz2- or gz-encoded)==Выбор файла дампа MediaWiki
-You can import MediaWiki dumps here. An example is the file==Вы можете импортировать MediaWiki дампы здесь. Пример этого файла
-Dumps must be in XML format and may be compressed in gz or bz2. Place the file in the YaCy folder or in one of its sub-folders.==Дамп должен быть в формате XML и может быть сжат в gz или bz2.
"Import MediaWiki Dump"=="Импортировать дамп MediaWiki"
When the import is started, the following happens:==После начала импорта произойдет следующее:
The dump is extracted on the fly and wiki entries are translated into Dublin Core data format. The output looks like this:==Дамп извлекается "на лету" и значения wiki переводятся в формат дублинского ядра. Результат выглядит примерно так:
@@ -1907,105 +1787,137 @@ Import Process==Выполнение импорта
Thread:==Поток:
Dump:==Дамп:
Processed:==Выполнено:
-Wiki Entries==записей Wiki
Speed:==Скорость:
-articles per second<==статей в секунду<
Running Time:==Прошло времени:
-hours,==часы,
-minutes<==минуты<
Remaining Time:==Осталось времени:
-#hours,==часы,
-#minutes<==минуты<
#-----------------------------
+"Uniform Resource Locator"=="Единый указатель ресурсов"
+"Dump file path on this YaCy server file system, or any remote URL"=="Путь к файлу дампа в файловой системе сервера YaCy или в любой удаленной системе URL."
+Error : dump URL is malformed.==Ошибка: дамп URL имеет неверный формат.
+MediaWiki Dump File Selection==Выбор файла дампа MediaWiki
+Dumps can be stored in the local file system or on a remote server in XML format and may be compressed in gz or bz2.==Дампы могут храниться в локальной файловой системе или на удаленном сервере в формате XML и могут быть сжаты в gz или bz2.
+Dump file path or URL==Путь к файлу дампа или URL
+Import only when modified since last import==Импортировать только при изменении с момента последнего импорта.
+When checked, the dump file is imported only if its last modified date is unknown or is after the last import execution date on this same file==Если этот флажок установлен, файл дампа импортируется только в том случае, если дата его последнего изменения неизвестна или наступает позже даты последнего выполнения импорта в этом же файле.
+started==началось
+running==бег
#File: IndexImportOAIPMH_p.html
#---------------------------
OAI-PMH Import==Импорт OAI-PMH
-Results from the import can be monitored in the indexing results for packs==Результаты импорта можно увидеть на странице результатов индексации замещающего импорта.
Single request import==Один запрос импорта
This will submit only a single request as given here to a OAI-PMH server and imports records into the index==Это позволит отправить только один запрос на сервер OAI-PMH и импортировать записи в индекс
"Import OAI-PMH source"=="Импортировать источник OAI-PMH"
Source:==Источник:
Processed:==Выполнение:
-records<==записей<
ResumptionToken:==Отметка возобновления:
-Import failed:==Импорт не удался:
Import all Records from a server==Импортировать все записи с сервера
Import all records that follow according to resumption elements into index==Импортировать все записи, которые следуют из возобновляемых элементов, в индекс
"import this source"=="Импорт этого источника"
-::or ==::или
"import from a list"=="Импорт из списка"
Import started!==Импортирование началось!
-Bad input data:==Плохие входящие данные:
#-----------------------------
+or==или
#File: IndexImportOAIPMHList_p.html
#---------------------------
-List of #[num]# OAI-PMH Servers==Список из #[num]# серверов OAI-PMH
"Load Selected Sources"=="Загрузить выбранные источники"
-OAI-PMH source import list==Импортировать список источников OAI-PMH
-#OAI Source List==OAI Список источников
->Source<==>Источник<
Import List==Импортировать список
->Thread<==>Поток<
-#>Source<==>Источник<
->Processed Chunks<==>Выполнено частей<
->Imported Records<==>Импортировано записей<
->Speed (records/second)==>Скорость (записей в секунду)
-Complete at==Всего записей
-#Records==
#-----------------------------
+Source==Источник
+Thread==Нить
+Processed Chunks==Обработано Чанки
+Imported Records==Импортированные записи
+Complete at # Records==Завершить в # записей
+Speed (records/second)==Скорость (записей/second)
#File: IndexReIndexMonitor_p.html
+Field Re-Indexing==Переиндексация
+Query==Запрос
+Rejected URLs==Отклонённые ссылки
+Running==Выполняется
+Status==Состояние
#---------------------------
-Field Re-Indexing<==Перестроение индекса<
In case that an index schema of the embedded/local index has changed, all documents with missing field entries can be indexed again with a reindex job.==В случае, если схема встроенного или локального индекса была изменена, все документы c потерянными значениями полей могут быть проиндексированы опять с помощью переиндексации.
"refresh page"=="Обновить страницу"
-Documents in current queue<==Документы в текущей очереди:<
-Documents processed<==Документы выполняются:<
current select query==Выбор текущей очереди:
"start reindex job now"=="Начать переиндексацию"
"stop reindexing"=="Остановить"
Remaining field list==Оставшиеся поля списка
reindex documents containing these fields:==Переиндексировать документы, содержащие эти поля:
# The following lines are hard-coded and would need to be translated in the .java bean
-#"reindex job stopped"=="Переиндексация остановлена"
-#"reindex is running"=="Переиндексация выполняется"
-#"is empty"=="Пусто"
-#"no reindex job running"=="Нет выполняющейся переиндексации"
-#"! reindex works only with embedded Solr index !"=="! Переиндексация слов только с встроенным индексом базы Solr !"
#-----------------------------
+"Simulate"=="Имитировать"
+"Check only how many documents would be selected for recrawl"=="Проверьте только, сколько документов будет выбрано для повторного сканирования."
+"Set defaults"=="Установить настройки по умолчанию"
+"Reset to default values"=="Сброс к значениям по умолчанию"
+"start recrawl job now"=="начать повторное сканирование сейчас"
+"update"=="обновлять"
+"stop recrawl job"=="остановить повторное сканирование"
+"Automatically refreshing"=="Автоматическое обновление"
+"An error occurred while trying to refresh automatically"=="Произошла ошибка при попытке автоматического обновления."
+"URLs added to the crawler queue for recrawl"=="URL-адреса добавлены в очередь сканера для повторного сканирования."
+"URLs rejected for some reason by the crawl stacker or the crawler queue. Please check the logs for more details."=="URL-адреса, отклоненные по какой-либо причине накопителем сканирования или очередью сканирования. Пожалуйста, проверьте журналы для получения более подробной информации."
+Documents in current queue==Документы в текущей очереди
+Documents processed==Документы обработаны
+Field==Поле
+count==считать
+Re-Crawl Index Documents==Повторное сканирование индексных документов
+Searches the local index and selects documents to add to the crawler (recrawl the document).==Выполняет поиск в локальном индексе и выбирает документы для добавления в искатель (повторное сканирование документа).
+This runs transparent as background job. Documents are added to the crawler only if no other crawls are active==Это выполняется прозрачно как фоновое задание. Документы добавляются в сканер только в том случае, если другие сканирования не активны.
+and are added in small chunks.==и добавляются небольшими порциями.
+Re-crawl works only with an embedded local Solr index!==Повторное сканирование работает только со встроенным локальным индексом Solr!
+Solr query==Solr запрос
+document(s)==документ(ы)
+selected for recrawl.==выбрано для повторного сканирования.
+An error occurred when trying to run the selection query.==Произошла ошибка при попытке выполнить запрос выбора.
+The Solr index is not connected. Please restart your peer.==Индекс Solr не подключен. Пожалуйста, перезапустите свой одноранговый узел.
+Include failed URLs==Включить неудачные URL-адреса
+Delete URLs==Удалить URL-адреса
+to re-crawl documents selected with the given query.==для повторного сканирования документов, выбранных по данному запросу.
+Re-Crawl Query Details==Подробности запроса на повторное сканирование
+Documents to process==Документы для обработки
+Current Query==Текущий запрос
+Edit Solr Query==Изменить запрос Solr
+Include failed urls==Включить неудачные URL-адреса
+Delete urls==Удалить URL-адреса
+Last==Последний
+Re-Crawl job report==Отчет о задании повторного сканирования
+The job terminated early due to an error when requesting the Solr index.==Задание завершилось досрочно из-за ошибки при запросе индекса Solr.
+Shutdown in progress==Выполняется отключение
+Terminated==Прекращено
+Start time==Время начала
+End time==Время окончания
+Recrawled URLs==Пересканированные URL-адреса
+Malformed URLs==Неверные URL-адреса
+Refresh==Обновить
#File: ContentAnalysis_p.html
#---------------------------
Content Analysis==Анализ содержимого
These are document analysis attributes.==Аттрибуты анализа документов.
Double Content Detection==Двойное определение содержимого
-Double-Content detection is done using a ranking on a 'unique'-Field, named 'fuzzy_signature_unique_b'.==Двойное определение содержимого выполняется с помощью ранжирования поля 'fuzzy_signature_unique_b'.
-This field is set during parsing and is influenced by two attributes for the TextProfileSignature class.==Это поле устанавливается во время анализа и описывается двумя аттрибутами класса TextProfileSignature.
+Double-Content detection is done using a ranking on a 'unique'-Field, named 'fuzzy_signature_unique_b'.==Двойное определение содержимого выполняется с помощью ранжирования поля 'fuzzy_signature_unique_b'.
This is the minimum length of a word which shall be considered as element of the signature. Should be either 2 or 3.==Минимальная длина слова, которое должно рассматриваться в качестве элемента сигнатуры. Может быть 2 или 3
The quantRate is a measurement for the number of words that take part in a signature computation. The higher the number, the less=='quantRate' это количество слов, которые необходимы для вычисления сигнатуры. Чем выше это число, тем меньше
words are used for the signature.==слов используется для сигнатуры.
-For minTokenLen = 2 the quantRate value should not be below 0.24; for minTokenLen = 3 the quantRate value must be not below 0.5.==Если 'minTokenLen' равен 2, то значение 'quantRate' должно быть не ниже 0.24; если 'minTokenLen' равен 3, то значение 'quantRate' должно быть не ниже 0.5.
+For minTokenLen = 2 the quantRate value should not be below 0.24; for minTokenLen = 3 the quantRate value must be not below 0.5.==Если 'minTokenLen' равен 2, то значение 'quantRate' должно быть не ниже 0.24; если 'minTokenLen' равен 3, то значение 'quantRate' должно быть не ниже 0.5.
"Set"=="Установить"
"Re-Set to default"=="Вернуть значения по-умолчанию"
#---------------------------
+minTokenLen==минТокенЛен
+quantRate==количественная ставка
#File: Load_MediawikiWiki.html
#---------------------------
-YaCy '#[clientname]#': Configuration of a Wiki Search==YaCy '#[clientname]#': Конфигурация поиска в Wiki
Integration in MediaWiki==Интеграция в MediaWiki
It is possible to insert wiki pages into the YaCy index using a web crawl on that pages.==Возможно добавить wiki-страницы в индекс YaCy, используя индексирование этих вэб-страниц.
This guide helps you to crawl your wiki and to insert a search window in your wiki pages.==Это руководство поможет вам проиндексировать вашу wiki и добавить окно поиска на вашу wiki-страницу.
Retrieval of Wiki Pages==Извлечение wiki-страниц
The following form is a simplified crawl start that uses the proper values for a wiki crawl.==Следующая форма представляет собой упрощённое начало индексирования, с использованием правильных значений для индексации Wiki.
-Just insert the front page URL of your wiki.==Добавьте ссылку на главную страницу вашей wiki.
-After you started the crawl you may want to get back==После начала индексирования, возможно вы захотите вернуться назад
to this page to read the integration hints below.==на эту страницу, для чтения подсказок по интеграции, указанных ниже.
-URL of the wiki main page==Ссылка на главную wiki-страницу
-This is a crawl start point==(начальная точка индексирования)
"Get content of Wiki: crawl wiki pages"=="Индексировать Wiki-страницы"
Inserting a Search Window to MediaWiki==Добавьте окно поиска в MediaWiki
To integrate a search window into a MediaWiki, you must insert some code into the wiki template.==Для интеграции окна поиска в MediaWiki, вы должны добавить соответствующий код в wiki-шаблон.
@@ -2015,154 +1927,111 @@ open skins/MonoBook.php==откройте skins/MonoBook.php
find the line where the default search window is displayed, there are the following statements:==найдите строку, где показано окно поиска по-умолчанию. Будет указан следующий текст:
Remove that code or set it in comments using '<!--' and '-->'==Удалите этот код или закомментируйте его, используя '<!--' и '-->'
Insert the following code:==Добавьте следующий код:
-Search with YaCy in this Wiki:==Поиск с YaCy в этой Wiki:
-value="Search"==value="Поиск"
Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Проверьте все статические IP-адреса в фрагменте кода и замените их своими IP-адресами или именем вашего хоста.
You may want to change the default text elements in the code snippet==Вы можете изменить стандартный текст в фрагменте кода
-To see all options for the search widget, look at the more generic description of search widgets at==Посмотреть все опции и описания виджета поиска вы можете на странице
-the configuration for live search.==интеграции поиска.
+To see all options for the search widget, look at the more generic description of search widgets at==Посмотреть все опции и описания виджета поиска вы можете на странице
#-----------------------------
+Just insert the front page URL of your wiki. After you started the crawl you may want to get back==Просто вставьте главную страницу URL вашей вики. После того как вы начали сканирование, вы можете захотеть вернуться
+URL of the wiki main page This is a crawl start point==URL главной страницы вики Это точка начала сканирования.
#File: Load_PHPBB3.html
#---------------------------
-Configuration of a phpBB3 Search==Конфигурация поиска в phpBB3
Integration in phpBB3==Интеграция в phpBB3
It is possible to insert forum pages into the YaCy index using a database import of forum postings.==Возможно добавить страницы форума в индекс YaCy, используя импорт базы данных постов форума.
This guide helps you to insert a search window in your phpBB3 pages.==Это руководство поможет вам добавить окно поиска на ваши phpBB3-страницы.
Retrieval of phpBB3 Forum Pages using a database export==Извлечение phpBB3-страниц форума, используя экспорт базы данных.
Forum posting contain rich information about the topic, the time, the subject and the author.==Посты форума содержат много информации о топиках, времени, теме и авторе.
This information is in an bad annotated form in web pages delivered by the forum software.==Эта информация находится в плохо аннотированной форме на вэб-страницах форума.
-It is much better to retrieve the forum postings directly from the database.==Поэтому намного удобнее извлечь посты форума прямо из базы данных.
-This will cause that YaCy is able to offer nice navigation features after searches.==После поиска это добавит хорошую навигацию.
-YaCy has a phpBB3 extraction feature, please go to the phpBB3 content integration servlet for direct database imports.==Подробную информацию об извлечении phpBB3 смотрите на странице интеграция содержимого phpBB3.
Retrieval of phpBB3 Forum Pages using a web crawl==Для извлечения phpBB3-страниц используется индексация.
The following form is a simplified crawl start that uses the proper values for a phpbb3 forum crawl.==Следующая форма представляет собой упрощённое начало индексирования, с использованием правильных значений для индексации phpbb3-форума.
Just insert the front page URL of your forum. After you started the crawl you may want to get back==Добавьте ссылку на главную страницу вашего форума. После начала индексирования, возможно вы захотите вернуться назад
to this page to read the integration hints below.==на эту страницу, для чтения подсказок по интеграции, указанных ниже.
-URL of the phpBB3 forum main page==Ссылка на главную страницу форума
-This is a crawl start point==(начальная точка индексирования)
"Get content of phpBB3: crawl forum pages"=="Индексировать страницы форума"
Inserting a Search Window to phpBB3==Добавить окно поиска на phpBB3-форум
To integrate a search window into phpBB3, you must insert some code into a forum template.==Для интеграции окна поиска в phpBB3, вы должны добавить соответствующий код в шаблон форума.
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, that's right behind the
<div id="search-box">
statement==найдите строку, где показано окно поиска по-умолчанию. Будет указан следующий текст:
<div id="search-box">
-Insert the following code right behind the div tag==Вставьте следующий код за тэгом "div"
-YaCy Forum Search==Поиск по форуму
-;YaCy Search==;Поиск YaCy
Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Проверьте все статические IP-адреса в фрагменте кода и замените их своими IP-адресами или именем вашего хоста.
You may want to change the default text elements in the code snippet==Вы можете изменить стандартный текст в фрагменте кода
-To see all options for the search widget, look at the more generic description of search widgets at==Посмотреть все опции и описания виджета поиска вы можете на странице
-the configuration for live search.==интеграции поиска.
+To see all options for the search widget, look at the more generic description of search widgets at==Посмотреть все опции и описания виджета поиска вы можете на странице
#-----------------------------
+It is much better to retrieve the forum postings directly from the database. This will cause that YaCy is able to offer nice navigation features after searches.==Гораздо лучше получать сообщения форума непосредственно из базы данных. Это приведет к тому, что YaCy сможет предлагать удобные функции навигации после поиска.
+URL of the phpBB3 forum main page This is a crawl start point==URL главной страницы форума phpBB3 Это начальная точка сканирования.
+you are using the default template, 'prosilver':==вы используете шаблон по умолчанию «prosilver»:
+Insert the following code right behind the div tag:==Вставьте следующий код сразу за тегом div:
#File: Load_RSS_p.html
+Description==Описание
+hours==часов
#---------------------------
-Configuration of a RSS Search==Конфигурация поиска по RSS-лентам
-Loading of RSS Feeds<==Загрузка RSS-лент<
RSS feeds can be loaded into the YaCy search index.==RSS-ленты могут быть загружены в поисковый индекс YaCy.
This does not load the rss file as such into the index but all the messages inside the RSS feeds as individual documents.==В индекс загружается не сам RSS-файл, а все сообщения внутри RSS-ленты, как отдельные документы.
URL of the RSS feed==Ссылка на RSS-ленту
->Preview<==>Предварительный просмотр:<
"Show RSS Items"=="Показать содержимое RSS"
Indexing==Индексирование:
Available after successful loading of rss feed in preview==Станет доступно после успешной загрузки RSS-ленты в предпросмотр.
"Add All Items to Index (full content of url)"=="Добавить все элементы в индекс (полное содержимое ссылки)"
->once<==>Один раз<
->load this feed once now<==>Загрузить эту ленту только один раз<
->scheduled<==>По расписанию<
->repeat the feed loading every<==>Повторять загрузку ленты каждые<
->minutes<==>минут<
->hours<==>часов<
->days<==>дней<
-> automatically.==> автоматически.
-#collection==Хранилище
->List of Scheduled RSS Feed Load Targets<==>Список запланированных загрузок RSS-лент<
->Title<==>Заголовок<
->URL/Referrer<==>Ссылка<
->Recording<==>Записано<
->Last Load<==>Последняя загрузка<
->Next Load<==>Следующая загрузка<
->Last Count<==>Последнее число<
->All Count<==>Все числа<
->Avg. Update/Day<==>Среднее число обновлений в день<
"Remove Selected Feeds from Scheduler"=="Удалить выбранные ленты из планировщика"
"Remove All Feeds from Scheduler"=="Удалить все ленты из планировщика"
->Available RSS Feed List<==>Доступный список RSS-лент<
"Remove Selected Feeds from Feed List"=="Удалить выбранные ленты из списка лент"
"Remove All Feeds from Feed List"=="Удалить все ленты из списка лент"
"Add Selected Feeds to Scheduler"=="Добавить выбранные ленты в планировщик"
->new<==>новый<
->enqueued<==>в очереди<
->indexed<==>проиндексировано<
->RSS Feed of==>RSS-лента
->Author<==>Автор<
->Description<==>Описание<
->Language<==>Язык<
->Date<==>Дата<
->Time-to-live<==>Время существования<
->Docs<==>Документы<
->State<==>Состояние<
-#>URL<==>URL<
"Add Selected Items to Index (full content of url)"=="Добавить выбранные элементы в индекс (полное содержимое ссылки)"
#-----------------------------
-#File: Messages_p.html
-#---------------------------
-#>Messages==>Nachrichten
-#Date==Datum
-#From==Von
-#To==An
-#>Subject==>Betreff
-#Action==Aktion
-#From:==Von:
-#To:==An:
-#Date:==Datum:
-#Subject:==Betreff:
-#>view==>anzeigen
-#reply==antworten
-#>delete==>löschen
-#Compose Message==Nachrichtenerstellung
-#Send message to peer==Sende eine Nachricht an Peer
-#"Compose"=="Erstellen"
-#Message:==Nachricht:
-#inbox==Posteingang
-#-----------------------------
-
+Loading of RSS Feeds==Загрузка фидов RSS
+Preview==Предварительный просмотр
+once==один раз
+load this feed once now==загрузить этот канал один раз сейчас
+scheduled==запланировано
+repeat the feed loading every==повторять загрузку корма каждые
+minutes==минуты
+days==дни
+automatically.==автоматически.
+collection==коллекция
+List of Scheduled RSS Feed Load Targets==Список запланированных RSS целевых показателей загрузки корма
+Title==Заголовок
+URL/Referrer==URL/Referrer
+Recording==Запись
+Last Load==Последняя загрузка
+Next Load==Следующая загрузка
+Last Count==Последний счет
+All Count==Все рассчитывается
+Avg. Update/Day==Среднее Обновление/Day
+Available RSS Feed List==Доступный список каналов RSS
+Author==Автор
+Language==Язык
+Date==Дата
+Time-to-live==Время жить
+Docs==Документы
+State==Состояние
+URL==URL
+new==новый
+enqueued==поставлен в очередь
+indexed==индексируется
+Attached media==Прикрепленные медиа
#File: MessageSend_p.html
#---------------------------
Send message==Отправка сообщения
-You cannot send a message to==Вы не можете отправить сообщение
-The peer does not respond. It was now removed from the peer-list.==Узел не отвечает. Он удалён из списка узлов.
-The peer ==Узел
-is alive and responded:==в сети и работает:
-You are allowed to send me a message==Вам разрешено отправить мне сообщение
-kb and an==KB и
-attachment ≤==вложение ≤
+The peer does not respond. It was now removed from the peer-list.==Узел не отвечает. Он удалён из списка узлов.
Your Message==Ваше сообщение
Subject:==Тема:
Text:==Текст:
"Enter"=="Отправить"
"Preview"=="Предпросмотр"
-You can use==Вы можете использовать
-Wiki Code here.==Wiki-код .
Preview message==Предпросмотр сообщения
The message has not been sent yet!==Сообщение еще не отправлено!
The peer is alive but cannot respond. Sorry.==Узел в сети, но не отвечает.
Your message has been sent. The target peer responded:==Ваше сообщение отправлено. Узел получателя ответил:
The target peer is alive but did not receive your message. Sorry.==Узел получателя в сети, но не смог получить ваше сообщение.
-#Here is a copy of your message, so you can copy it to save it for further attempts:==Hier ist eine Kopie Ihrer Nachricht. Sie können diese kopieren, speichern und es später nochmal versuchen:
-#You cannot call this page directly. Instead, use a link on the Network page.==Sie können diese Seite nicht direkt aufrufen. Benutzen Sie stattdessen einen Link auf der Netzwerk Seite.
#-----------------------------
+Message:==Сообщение:
+Here is a copy of your message, so you can copy it to save it for further attempts:==Вот копия вашего сообщения, которую вы можете скопировать и сохранить для дальнейших попыток:
#File: Network.html
#---------------------------
-YaCy Search Network==Мониторинг сети YaCy
-YaCy Network<==Сеть YaCy<
The information that is presented on this page can also be retrieved as XML.==Информация, указанная на этой странице, также может быть получена как XML.
Click the API icon to see the XML.==Нажмите на иконку API, чтобы увидеть XML.
-To see a list of all APIs, please visit the API wiki page.==Для просмотра списка всех API, пожалуйста, посетите страницу в Wiki.
Network Overview==Обзор сети
Active Principal and Senior Peers==Активные главные и старшие узлы
Passive Senior Peers==Пассивные старшие узлы
@@ -2172,110 +2041,126 @@ Network History==История сети
Count of all Active Peers Per Day in the last week, scale = 1d==Число всех активных узлов в день за последнюю неделю, масштаб = 1 день
Count of all Active Peers Per Week in the last 30d, scale = 7d==Число всех активных узлов в неделю за последние 30 дней, масштаб = 7 дней
Count of all Active Peers Per Month in the last 365d, scale = 30d==Число всех активных узлов в месяц за последний год, масштаб = 30 дней
-Active Principal and Senior Peers in '#[networkName]#' Network==Активные главные и старшие узлы в сети
-Passive Senior Peers in '#[networkName]#' Network==Пассивные старшие узлы в сети
-Junior Peers (a fragment) in '#[networkName]#' Network==Младшие узлы в сети
Manually contacting Peer==Ручное подключение узла
-no remote #[peertype]# peer for this list known==Нет удалённых узлов #[peertype]# в этом списке.
-Showing #[num]# entries from a total of #[total]# peers.==Показаны #[num]# узлов из #[total]#.
send Message/ show Profile/ edit Wiki/ browse Blog==Отправить сообщение (m)/ Смотреть профиль (p)/ Читать Wiki (w)/ Блог (b)
Search for a peername (RegExp allowed)==Поиск узла по имени (разрешены регулярные выражения)
"Search"=="Поиск"
Name==Имя
-Address==Адрес
Hash==Хэш
-Type==Тип
-Release<==Версия YaCy<
-#>PPM<==>Страниц в минуту<
-#>QPH<==>Поисковых запросов в час<
Last Seen==Последний просмотр
Location==Расположение
-Offset==Смещение
-Send message to peer==Отправить сообщение узлу
-View profile of peer==Просмотр профиля узла
-Read and edit wiki on peer==Читать и редактировать wiki узла
-Browse blog of peer==Просмотр блога узла
-#"Ranking Receive: no"=="Получение рейтинга: нет"
-#"no ranking receive"=="нет получения рейтинга"
-#"Ranking Receive: yes"=="Получение рейтинга: да"
-#"Ranking receive enabled"=="получение рейтинга включено"
"DHT Receive: yes"=="DHT приём: да"
"DHT receive enabled"=="DHT приём включён"
-"DHT Receive: no; #[peertags]#"=="DHT приём: нет; #[peertags]#"
"DHT Receive: no"=="DHT приём: нет"
-#no tags given==тэги не заданы
"no DHT receive"=="нет приёма DHT"
"Accept Crawl: no"=="Начато индексирование: нет"
"no crawl"=="нет индексирования"
"Accept Crawl: yes"=="Начато индексирование: да"
"crawl possible"=="индексирование возможно"
-Contact: passive==Контакт: пассивный
-Contact: direct==Контакт: прямой
-Seed download: possible==Загрузка сида: возможна
-runtime:==Время генерации страницы:
-#Peers==Узлы
-#YaCy Cluster==YaCy кластер
-
->Network<==>Сеть<
->Online Peers<==>Узлы онлайн<
->Number of Documents<==>Количество проиндексированных документов<
-Indexing Speed:==Скорость индексации:
-Pages Per Minute (PPM)==Страниц в минуту (PPM)
-Query Frequency:==Частота поисковых запросов:
-Queries Per Hour (QPH)==Запросов в час (QPH)
->Today<==>Сегодня<
->Last Week<==>Последняя неделя<
->Last Month<==>Последний месяц<
+
Last Hour==Последний час
->Now<==>Сейчас<
->Active Senior<==>Активные старшие<
->Passive Senior<==>Пассивные старшие<
->Junior (fragment)<==>Младшие<
->This Peer<==>Ваш узел<
URLs for Remote Crawl==Ссылки для удалённых индексаторов
"The YaCy Network"=="YaCy сеть"
Indexing PPM==Проиндексировано страниц за минуту
-(public local)==(публичный локальный)
-(remote)==(удалённый)
Your Peer:==Ваш узел:
->Name<==>Имя<
->Info<==>Инфо<
->Version<==>Версия<
->UTC<==>UTC<
->Uptime<==>Время работы<
->Links<==>Ссылки<
-#>RWIs<==>RWIs<
Sent URLs==Отправлено ссылок
Sent DHT Word Chunks==Отправлено по DHT частей слов
Received URLs==Получено ссылок
Received DHT Word Chunks==Получено по DHT частей слов
Known Seeds==Известные сиды
Connects per hour==Соединений в час
-#Version==Версия
-#Own/Other==Свой/Другой
->dark green font<==>шрифт темно-зеленый<
senior/principal peers==старшие/главные узлы
->light green font<==>шрифт светло-зеленый<
->passive peers<==>пассивные узлы<
->pink font<==>шрифт розовый<
junior peers==младшие узлы
red point==красная точка
this peer==Ваш узел
->grey waves<==>серые волны<
->crawling activity<==>выполняется индексирование<
->green radiation<==>зеленое излучение<
->strong query activity<==>высокая активность запросов<
->red lines<==>красные линии<
->DHT-out<==>DHT-выход<
->green lines<==>зелёные линии<
->DHT-in<==>DHT-вход<
-#You are in online mode, but probably no internet resource is available.==Вы в сети, но возможно интернет-ресурс недоступен.
-#Please check your internet connection.==Пожалуйста, проверьте ваше соединение с интернетом.
-#You are not in online mode. To get online, press this button:==Вы не в сети. Для входа в сеть, нажмите эту кнопку:
-#"go online"=="Войти в сеть"
#-----------------------------
+"API"=="API"
+"https supported"=="https поддерживается"
+"Type: Junior | Contact: passive"=="Тип: Юниор | Контакт: пассивный"
+"Junior passive"=="Младший пассивный"
+"Type: Junior | Contact: direct"=="Тип: Юниор | Контакт: прямой"
+"Junior direct"=="Младший прямой"
+"Type: Junior | Contact: offline"=="Тип: Юниор | Контакт: офлайн"
+"Junior offline"=="Младший оффлайн"
+"Type: Senior | Contact: passive"=="Тип: Старший | Контакт: пассивный"
+"senior passive"=="старший пассивный"
+"Type: Senior | Contact: direct"=="Тип: Старший | Контакт: прямой"
+"Senior direct"=="Старший прямой"
+"Type: Senior | Contact: offline"=="Тип: Старший | Контакт: офлайн"
+"Senior offline"=="Старший оффлайн"
+"Type: Principal | Contact: passive | Seed download: possible"=="Тип: Директор | Контакт: пассивный | Загрузка семян: возможна"
+"Principal passive"=="Основной пассив"
+"Type: Principal | Contact: direct | Seed download: possible"=="Тип: Директор | Контакт: прямой | Загрузка семян: возможна"
+"Principal active"=="Основной активный"
+"Type: Principal | Contact: offline | Seed download: ?"=="Тип: Директор | Контакт: оффлайн | Загрузка семян: ?"
+"Principal offline"=="Директор оффлайн"
+"Profile updated"=="Профиль обновлен"
+"Wiki updated"=="Вики обновлена"
+"Blog updated"=="Блог обновлен"
+"Crawl"=="Сканировать"
+"Type: Virgin"=="Тип: Девственница"
+"Virgin"=="Девственник"
+"Type: Junior"=="Тип: Юниор"
+"Junior"=="Юниор"
+"Type: Senior"=="Тип: Старший"
+"Senior"=="Старший"
+"Type: Principal"=="Тип: Директор"
+"Principal"=="Главный"
+"Crawl enabled"=="Сканирование включено"
+"DHT Receive enabled"=="DHT Получение включено"
+"add Peer"=="добавить пир"
+"contact current peer from this peer"=="связаться с текущим узлом от этого узла"
+YaCy Network==YaCy Сеть
+Info==Информация
+Release==Выпускать
+Age==Возраст
+con/h ==con/h
+PPM==ППМ
+QPH==QPH
+UTC Offset==UTC Смещение
+Uptime==Время работы
+Links==Ссылки
+RWIs==RWI
+URLs for Remote Crawl==URL-адреса для Удаленного Сканирования
+Sent DHT Word Chunks==Отправлены фрагменты слов DHT
+Received DHT Word Chunks==Получены фрагменты слов DHT Word
+user agent ==пользовательский агент
+Network==Сеть
+Online Peers==Интернет-коллеги
+Number of Documents==Количество документов
+Indexing Speed: Pages Per Minute (PPM)==Скорость индексирования: Страниц в минуту (PPM)
+Query Frequency: Queries Per Hour (QPH)==Частота запросов: Запросов в час (QPH)
+Today==Сегодня
+Last Week==Последняя неделя
+Last Month==Последний месяц
+Now==Сейчас
+Active Senior==Активный старший
+Passive Senior==Пассивный старший
+Junior (fragment)==Младший (фрагмент)
+This Peer==Этот партнер
+Version==Версия
+UTC==универсальное глобальное время
+QPH (public local)==QPH (общедоступный локальный)
+QPH (remote)==QPH (удаленный)
+dark green font==темно-зеленый шрифт
+light green font==светло-зеленый шрифт
+passive peers==пассивные коллеги
+pink font==розовый шрифт
+grey waves==серые волны
+crawling activity==активность сканирования
+green radiation==зеленое излучение
+strong query activity==сильная активность запросов
+red lines==красные линии
+DHT-out==DHT-выход
+green lines==зеленые линии
+DHT-in==DHT-вход
+Peer Hash==Одноранговый хеш
+Peer IP==Одноранговый узел IP
+Peer Port==Одноранговый порт
+Contacting current peer from another:==Обращение к текущему узлу от другого:
+ip:port==ip:порт
#File: News.html
#---------------------------
Overview==Обзор
@@ -2290,58 +2175,38 @@ Other peers may use this information to prevent double-crawls from the same star
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 menus:==Вы увидете четыре меню:
-Incoming News (#[insize]#): latest news that arrived your peer.==Входящие сообщения(#[insize]#): Последние сообщения, полученные вашим узлом.
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==Вы можете управлять этими сообщениями через кнопку на странице, для удаления их из Монитора индексирования и страницы сети.
-Processed News (#[prsize]#): this is simply an archive of incoming news that you removed by processing.==Обработанные сообщения (#[prsize]#): Это простой архив входящих сообщений, удалённых вами при обработке.
-Outgoing News (#[ousize]#): here your can see news entries that you have created. These news are currently broadcasted to other peers.==Исходящие сообщения (#[ousize]#): Здесь вы можете увидеть сообщения, созданные вами. Эти сообщения передаются другим узлам в данный момент.
you can stop the broadcast if you want.==Вы можете остановить передачу сообщений, если пожелаете.
-Published News (#[pusize]#): your news that have been broadcasted sufficiently or that you have removed from the broadcast list.==Опубликованные сообщения (#[pusize]#): Ваши сообщения, переданные другим узлам или удалёнными вами из списка получателей.
Originator==Инициатор
Created==Создано
Category==Категория
Received==Получено
Distributed==Распределение
Attributes==Аттрибуты
-"#(page)#::Process Selected News::Delete Selected News::Abort Publication of Selected News::Delete Selected News#(/page)#"=="#(page)#::Выполнить выбранные сообщения::Удалить выбранные сообщения::Прервать публикацию выбранных сообщений::Удалить выбранные сообщения#(/page)#"
-"#(page)#::Process All News::Delete All News::Abort Publication of All News::Delete All News#(/page)#"=="#(page)#::Выполнить все сообщения::Удалить все сообщения::Прервать публикацию всех сообщений::Удалить все сообщения#(/page)#"
#-----------------------------
+"Incoming News"=="Входящие новости"
+"Processed News"=="Обработанные новости"
+"Outgoing News"=="Исходящие новости"
+"Published News"=="Опубликованные новости"
+Publishing of added or modified translation for the user interface. Other peers may include it in their local translation list.==Публикация добавленного или измененного перевода пользовательского интерфейса. Другие узлы могут включить его в свой локальный список переводов.
+More news services will follow.==За этим последуют и другие новостные службы.
#File: Performance_p.html
+"Save"=="Сохранить"
#---------------------------
-==
Performance Settings==Настройки производительности
Memory Settings==Настройки оперативной памяти
-Memory reserved for JVM==Резервирование динамической памяти для Java
+Memory reserved for JVM==Резервирование динамической памяти для JVM
"Set"=="Сохранить"
Resource Observer==Обзор ресурсов
-Reset state==сбросить состояние
-> free space==> свободного места
-disable DHT-in below==Остановить DHT-приём при достижении
-Accepted change. This will take effect after restart of YaCy==Изменения будут применены после перезапуска YaCy
-restart now==Перезапустить сейчас
-Confirm Restart==Подтвердить перезапуск
refresh graph==Обновлять диаграмму
-#show memory tables==показать таблицы памяти
-Use Default Profile:==Использовать профиль по-умолчанию:
-and use==и использовать
-of the defined performance.==от заданной производительности.
-Save==Сохранить
Changes take effect immediately==Изменения будут применены немедленно
-YaCy Priority Settings==Настройки приоритета YaCy
-YaCy Process Priority==Приоритет процесса
-Normal==Нормальный
-Below normal==Ниже нормального
-Idle==Ожидание
-"Set new Priority"=="Установить новый приоритет"
-Changes take effect after restart of YaCy==Изменения будут применены после перезапуска YaCy.
Online Caution Settings:==Настройки онлайн задержек
This is the time that the crawler idles when the proxy is accessed, or a local or remote search is done.==Это время ожидания индексатора при работе прокси-сервера, выполнении локального или удалённого поиска.
The delay is extended by this time each time the proxy is accessed afterwards.==Задержка выполняется каждый раз при доступности прокси.
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 occurrence==Задержка индексатора (мс)
@@ -2351,107 +2216,126 @@ Remote Search:==Удалённый поиск:
"Enter New Parameters"=="Сохранить"
#-----------------------------
+"PerformanceGraph"=="График производительности"
+"Java Virtual Machine"=="Java Виртуальная машина"
+"Restart now"=="Перезагрузить сейчас"
+"Amount of space (in Mebibytes) that should be kept free as steady state"=="Объем пространства (в мегабайтах), который должен оставаться свободным в устойчивом состоянии."
+"Mebibyte"=="Мебибайт"
+"Amount of space (in Megabytes) that should at least be kept free as hard limit"=="Объем пространства (в мегабайтах), который должен оставаться свободным как минимум в качестве жесткого ограничения."
+"Distributed Hash Table"=="Распределенная хэш-таблица"
+"Free space disk autoregulation info"=="Информация об авторегулировании свободного места на диске"
+"Maximum amount of space (in Mebibytes) that should be used as steady state"=="Максимальный объем пространства (в мегабайтах), который следует использовать в устойчивом состоянии."
+"Maximum amount of space (in Mebibytes) that should be used as hard limit"=="Максимальный объем пространства (в мегабайтах), который следует использовать в качестве жесткого ограничения."
+"Used space disk autoregulation info"=="Информация об авторегулировании используемого пространства диска"
+"Random Access Memory"=="Оперативная память"
+"Proper state info"=="Информация о нормальном состоянии"
+"Exhausted state info"=="Информация об исчерпанном состоянии"
+"Reset state"=="Сбросить состояние"
+"Manually reset to 'proper' state"=="Ручной сброс в «правильное» состояние"
+"Amount of memory (in Mebibytes) that should at least be free for proper operation"=="Объем памяти (в Мебибайтах), который должен быть как минимум свободен для правильной работы."
+MByte==МБайт
+Accepted change. This will take effect after restart of YaCy.==Изменение принято. Оно вступит в силу после перезапуска YaCy.
+Restart now==Перезагрузить сейчас
+Free space disk==Свободное место на диске
+Steady-state minimum==Стационарный минимум
+MiB. Disable crawls when free space is below.==MiB. Отключать сканирование, когда свободного места меньше.
+Absolute minimum==Абсолютный минимум
+MiB. Disable DHT-in when free space is below.==MiB. Отключать DHT-in, когда свободного места меньше.
+Autoregulate==Автоматическое регулирование
+when absolute minimum limit has been reached.==когда достигнут абсолютный минимальный предел.
+The autoregulation task performs the following sequence of operations, stopping once free space disk is over the steady-state value :==Задача авторегулирования выполняет следующую последовательность операций и останавливается, как только свободное пространство на диске превышает установившееся значение:
+delete old releases==удалить старые выпуски
+delete logs==удалить журналы
+delete robots.txt table==удалить таблицу robots.txt
+delete news==удалить новость
+clear HTCACHE==очистить HTCACHE
+clear citations==очистить цитирования
+throw away large crawl queues==отказаться от больших очередей сканирования
+cut away too large RWIs==сократить слишком большие RWI
+Used space disk==Использованное место на диске
+Steady-state maximum==Установившийся максимум
+MiB. Disable crawls when used space is over.==MiB. Отключать сканирование, когда использованного места больше.
+Absolute maximum==Абсолютный максимум
+MiB. Disable DHT-in when used space is over.==MiB. Отключать DHT-in, когда использованного места больше.
+when absolute maximum limit has been reached.==когда достигнут абсолютный максимальный предел.
+The autoregulation task performs the following sequence of operations, stopping once used space disk is below the steady-state value:==Задача авторегулирования выполняет следующую последовательность операций и останавливается, когда использованное место на диске становится ниже установившегося значения:
+RAM==RAM
+Memory state :==Состояние памяти:
+proper==правильный
+Enough memory is available for proper operation.==Памяти достаточно для правильной работы.
+exhausted==исчерпан
+Within the last eleven minutes, at least four operations have tried to request memory that would have reduced free space within the minimum required.==За последние одиннадцать минут как минимум четыре операции пытались запросить память, что позволило бы сократить свободное пространство до требуемого минимума.
+Minimum required==Минимально необходимый
+MiB free space. Disable DHT-in below.==MiB свободного места. Отключать DHT-in ниже этого значения.
#File: PerformanceMemory_p.html
+Delete==Удалить
#---------------------------
-==
Performance Settings for Memory==Настройки производительности памяти
refresh graph==Обновлять диаграмму
-simulate short memory status==Имитация состояния малого размера памяти
-use Standard Memory Strategy (current: #[memoryStrategy]#)==Использовать стратегию стандартного размера памяти (Текущая: #[memoryStrategy]#)
+simulate short memory status==Имитация состояния малого размера памяти
Memory Usage==Использование памяти
After Startup==После запуска
-After Initializations==После инициализации
before GC==до GC
after GC==после GC
->Now==>Сейчас
-before <==до <
Description==Описание
maximum memory that the JVM will attempt to use==максимум выделено памяти для Java
->Available<==>Доступно<
total available memory including free for the JVM within maximum==всего доступной памяти, включая свободную для Java без максимальной
->Max<==>Максимум<
->Total<==>Всего<
total memory taken from the OS==всего памяти, выделенной операционной системой
->Free<==>Свободно<
free memory in the JVM within total amount==свободная память в Java без учёта всей памяти
->Used<==>Используется<
used memory in the JVM within total amount==используемая память в Java без учёта всей памяти
-Solr Resources==Ресурсы базы данных Solr
->Class<==>Класс<
->Type<==>Тип<
->Statistics<==>Статистика<
->Size<==>Размер<
Table RAM Index==Таблица индекса RAM
->Key==>Ключ
->Value==>Значение
-Table==Таблица
-Chunk Size<==Размер части<
-#Count==Счёт
-Used Memory<==Использовано памяти<
Object Index Caches==Кэш индекса объектов
Needed Memory==Необходимо памяти
-Object Read Caches==Чтение кэшированных объектов
->Read Hit Cache<==>Считано ударов в кэш <
->Read Miss Cache<==>Считано попаданий в кэш<
->Read Hit<==>Считано ударов<
->Read Miss<==>Считано попаданий<
-Write Unique<==Уникальная запись<
-Write Double<==Двойная запись<
-Deletes<==Удаления<
-Flushes<==Скрытые<
-Total Mem==Всего памяти
-MB (hit)==MB (удары)
-MB (miss)==MB (попадания)
-Stop Grow when less than #[objectCacheStopGrow]# MB available left==Остановить рост при сокращении до #[objectCacheStopGrow]# MB из доступной
-Start Shrink when less than #[objectCacheStartShrink]# MB availabe left==Начать сжатие при сокращении до #[objectCacheStartShrink]# MB из доступной
Other Caching Structures==Другие структуры кэша
->Hit<==>Удары<
->Miss<==>Попадания<
-Insert<==Вставлено<
-Delete<==Удалено<
-#DNSCache==DNSCache
-#DNSNoCache==DNSNoCache
-#HashBlacklistedCache==HashBlacklistedCache
-Search Event Cache<==Поиск события кэша<
#-----------------------------
+"PerformanceGraph"=="График производительности"
+use Standard Memory Strategy==использовать стандартную стратегию памяти
+Type==Тип
+After Initializations before GC==После инициализации перед GC
+After Initializations after GC==После инициализации после GC
+Now==Сейчас
+Max==Макс
+Available==Доступный
+Total==Общий
+Free==Бесплатно
+Used==Использовал
+Table==Стол
+Size==Размер
+Key==Ключ
+Value==Ценить
+Chunk Size==Размер куска
+Used Memory==Используемая память
+Hit==Ударять
+Miss==Скучать
+Insert==Вставлять
+DNSCache/Hit==DNSCache/Hit
+(ARC)==(АРК)
+DNSCache/Miss==DNSCache/Miss
+DNSNoCache==DNSNoCache
+HashBlacklistedCache==Хэш в черном спискеКэш
+Search Event Cache==Поиск в кеше событий
#File: PerformanceQueues_p.html
+Active==Включено
+Description==Описание
+Total Cycles==Всего циклов
#---------------------------
Performance Settings of Queues and Processes==Настройки производительности очередей и процессов
Scheduled tasks overview and waiting time settings:==Обзор запланированных задач и настройки времени ожидания
->Thread<==>Поток<
Queue Size==Размер очереди
->Total==>Общее
-Cycles==циклов
-Block Time==время блокировки
-Sleep Time==время сна
-Exec Time==время выполнения
-
Idle==
Ожидание,
->Busy==>Пройдено,
Short Mem Cycles==Циклы короткой памяти
->per Cycle==>на цикл
->per Busy-Cycle==>на пройденный цикл.
->Memory Use==>Использовано памяти
->Delay between==>Задержка между
->idle loops==>ожидающими циклами
->busy loops==>пройденными циклами
Minimum of Required Memory==Минимально необходимая память
Maximum of System-Load==Макс. загрузка системы
Full Description==Полное описание
-Submit New Delay Values==Применить новые значения задержек
-Re-set to default==Установить значения по-умолчанию
Changes take effect immediately==Изменения будут применены немедленно
Cache Settings:==Настройки кэша:
RAM Cache==Кэш RAM
-
Description==
Описание
-Words in RAM cache:==Слов в кэше оперативной памяти
-(Size in KBytes)==(размер в КБайтах)
This is the current size of the word caches.==Текущий размер кэша слов.
The indexing cache speeds up the indexing process, the DHT cache holds indexes temporary for approval.==Индексация кэша ускоряет общий процесс индексации. Кэш DHT содержит временно разрешённые индексы.
The maximum of this caches can be set below.==Максимальное значения кэшей может быть установлено ниже.
-Maximum URLs currently assigned to one cached word:==Максимальное число ссылок на одно кэшированное слово в данный момент:
+Maximum URLs currently assigned to one cached word:==Максимальное число ссылок на одно кэшированное слово в данный момент:
This is the maximum size of URLs assigned to a single word cache entry.==Это максимальное число ссылок, описывающих одно кэшированное слово.
If this is a big number, it shows that the caching works efficiently.==Если число большое, то кэширование выполняется эффективно.
Maximum age of a word:==Максимальный возраст слова:
@@ -2460,84 +2344,106 @@ Minimum age of a word:==Минимальный возраст слова:
This is the minimum age of a word in an index in minutes.==Это минимальный возраст слова в индексе в минутах.
Maximum number of words in cache:==Максимальное число слов в кэше:
This is is the number of word indexes that shall be held in the==Это число слов индекса, находящихся
-ram cache during indexing. When YaCy is shut down, this cache must be==в оперативной памяти во время индексирования. Когда YaCy выключается, содержимое кэша
+ram cache during indexing. When YaCy is shut down, this cache must be==в оперативной памяти во время индексирования. Когда YaCy выключается, содержимое кэша
flushed to disc; this may last some minutes.==сохраняется на диск; это может занять несколько минут.
-#Initial space of words in cache:==Первоначальное число слов в кэше:
-#This is is the init size of space for words in cache.==Начальный размер слов в кэше.
-Enter New Cache Size==Установить новый размер кэша
Thread Pool Settings:==Настройка пула:
Thread Pool==Пул
-Crawler Pool==Очередь индексатора
-httpd Session Pool==Количество соединений
maximum Active==Максимум возможно
current Active==В данный момент
-Enter new Threadpool Configuration==Установить новые значения
-milliseconds<==мс<
-kbytes<==Кбайт<
-load<==Загрузка<
#-----------------------------
+"Submit New Delay Values"=="Отправьте новые значения задержки"
+"Re-set to default"=="Сбросить настройки по умолчанию"
+"When the system load average is over the specified value, that type of remote search request is not used to fill search results."=="Если средняя загрузка системы превышает указанное значение, этот тип запроса удаленного поиска не используется для заполнения результатов поиска."
+"Reverse Word Index"=="Обратный указатель слов"
+"Submit New Values"=="Отправить новые значения"
+"Enter New Cache Size"=="Введите новый размер кэша"
+"Enter new Threadpool Configuration"=="Введите новую конфигурацию пула потоков"
+"Total maximum number of simultaneously open connections in the pool"=="Общее максимальное количество одновременно открытых соединений в пуле"
+"Number of connections currently being used to execute requests."=="Количество соединений, используемых в данный момент для выполнения запросов."
+"Number of reusable idle connections"=="Количество многоразовых простаивающих соединений"
+"Number of connection requests being blocked awaiting a free connection"=="Количество запросов на подключение, заблокированных в ожидании свободного соединения"
+Thread==Нить
+Total Block Time==Общее время блокировки
+Total Sleep Time==Общее время сна
+Total Exec Time==Общее время выполнения
+Idle Cycles==Простой Циклов
+Busy Cycles==Занято Циклы
+High CPU Cycles==Высокая загрузка CPU циклов
+Sleep Time per Cycle (millis)==Время сна за цикл (миллис)
+Exec Time per Busy-Cycle (millis)==Время выполнения на цикл занятости (миллисы)
+Memory Use per Busy-Cycle (kbytes)==Использование памяти за цикл занятости (кбайт)
+Delay between idle loops==Задержка между циклами ожидания
+Delay between busy loops==Задержка между занятыми шлейфами
+milliseconds==миллисекунды
+kbytes==килобайты
+load==нагрузка
+Remote search requests:==Запросы на удаленный поиск:
+Type==Тип
+Maximum system load==Максимальная нагрузка на систему
+RWI==RWI
+Search requests performed on remote peers distributed Reverse Word Index==Поисковые запросы, выполняемые на удаленных узлах, распределенных по индексу обратного слова
+Solr==Solr
+Search requests performed on remote peers Solr indexes==Поисковые запросы, выполняемые на индексах удаленных узлов Solr
+Words in RAM cache: (Size in KBytes)==Слова в кэше ОЗУ: (размер в килобайтах)
+Outgoing connections pools settings :==Настройки пулов исходящих соединений:
+Connection Pool==Пул соединений
+Total maximum==Общий максимум
+Current statistics==Текущая статистика
+Idle==Праздный
+Pending==В ожидании
+General==Общий
+Remote Solr servers==Удаленные серверы Solr
#File: PerformanceConcurrency_p.html
#---------------------------
Performance of Concurrent Processes==Производительность параллельных процессов
serverProcessor Objects==Процессы сервера
-#Thread==Поток
Queue Size Current==Текущий размер очереди
Queue Size Maximum==Макс. размер очереди
Executors: Current Number of Threads==Исполнители: Текущее число потоков
Concurrency: Maximum Number of Threads==Параллельность: Макс. число потоков
-Concurrency: Number of Threads==Параллельность: Число потоков
Children==Потомки
Average Block Time Reading==Среднее время блокировки чтения
-Average Exec Time==Среднее время выполнения
+Average Exec Time==Среднее время выполнения
Average Block Time Writing==Среднее время блокировки записи
-Total Cycles==Всего циклов
+Total Cycles==Всего циклов
Full Description==Полное описание
#-----------------------------
+Thread==Нить
#File: PerformanceSearch_p.html
+Comment==Комментарий
+Time==Дата и время
#---------------------------
-Performance Settings of Search Sequence==Настройки производительности последовательного поиска
Search Sequence Timing==Задержки последовательного поиска
Timing results of latest search request:==Задержки результата последнего поискового запроса:
Query==Запрос
-Event<==Событие<
-Comment<==Комментарий<
-Time<==Время<
Duration (ms)==Длительность (мс)
Result-Count==Число результатов
The network picture below shows how the latest search query was solved by asking corresponding peers in the DHT:==Изображение сети показывает, какие последние поисковые запросы были получены от узлов по DHT и решены.
red -> request list alive==Красный -> активный запрос
green -> request has terminated==Зелёный -> завершённый запрос
-grey -> the search target hash order position(s) (more targets if a dht partition is used)<==Серый -> хэш цели поиска (больше целей, если используется DHT)<
"Search event picture"=="Изображение поиска"
#-----------------------------
+Event==Событие
+Delta (ms)==Дельта (мс)
+grey -> the search target hash order position(s) (more targets if a dht partition is used)==серый -> позиция(и) порядка хеширования цели поиска (больше целей, если используется раздел dht)
#File: ProxyIndexingMonitor_p.html
#---------------------------
Indexing with Proxy==Индексация через прокси-сервер
YaCy can be used to 'scrape' content from pages that pass the integrated caching HTTP proxy.==YaCy может индексировать кэшированные страницы с помощью прокси.
When scraping proxy pages then no personal or protected page is indexed;==Личные и защищённые страницы не индексируются!
-# This is the control page for web pages that your peer has indexed during the current application run-time==Здесь показаны вэб-страницы проиндексированные вашим узлом во время с момента запуска приложения,
-# as result of proxy fetch/prefetch.==в результате работы прокси-сервера.
-# No personal or protected page is indexed==Личные или защищённые страницы не индексируются.
those pages are detected by properties in the HTTP header (like Cookie-Use, or HTTP Authorization)==Такие страницы определяются по свойствам HTTP-заголовка (использование куки или HTTP-авторизации)
-or by POST-Parameters (either in URL or as HTTP protocol)==или по параметрам POST (в адресе или передающиеся через HTTP-протокол)
-and automatically excluded from indexing.==и автоматически исключаются из индексирования.
-You have to==Перед использованием прокси, сначала вы должны его
->setup the proxy<==>настроить<
-before use.==.
Proxy Auto Config:==Автоматическая конфигурация прокси:
this controls the proxy auto configuration script for browsers at http://localhost:8090/autoconfig.pac==Используйте скрипт автоматической конфигурации прокси для браузеров http://localhost:8090/autoconfig.pac
-.yacy-domains only==Только домены .yacy
whether the proxy should only be used for .yacy-Domains==Использование прокси-сервера только для доменов .yacy
Proxy pre-fetch setting:==Настройка кэширующего прокси:
this is an automated html page loading procedure that takes actual proxy-requested==Настройка индексации кэшируемых страниц через прокси-сервер
-#URLs as crawling start points for crawling.==
Prefetch Depth==Уровень предварительной выборки
-A prefetch of 0 means no prefetch; a prefetch of 1 means to prefetch all==0 - отключение предварительной выборки, 1 - включение предварительной выборки.
-embedded URLs, but since embedded image links are loaded by the browser==Предварительная выборка
+A prefetch of 0 means no prefetch; a prefetch of 1 means to prefetch all==0 - отключение предварительной выборки, 1 - включение предварительной выборки.
+embedded URLs, but since embedded image links are loaded by the browser==Предварительная выборка
this means that only embedded href-anchors are prefetched additionally.==будет действовать только в отношении href-якорей, так как включенные ссылки загружаются браузером.
Store to Cache==Сохранять в кэш
It is almost always recommended to set this on. The only exception is that you have another caching proxy running as secondary proxy and YaCy is configured to used that proxy in proxy-proxy - mode.==Рекомендуется отключать только в том случае, если вы используете второй кэширующий прокси-сервер и YaCy настроен на использование в режиме прокси-прокси.
@@ -2553,210 +2459,178 @@ Please note that this setting only take effect for a prefetch depth greater than
Proxy generally==Кэш прокси
Path==Путь
The path where the pages are stored (max. length 300)==Место хранения кэша
-Size==Размер
The size in MB of the cache.==Размер кэша в MB.
"Set proxy profile"=="Сохранить настройки"
-The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.==Файл DATA/PLASMADB/crawlProfiles0.db отсутствует или повреждён.
-Please delete that file and restart.==Пожалуйста, удалите этот файл и перезапустите YaCy.
-Pre-fetch is now set to depth==Уровень предварительный выборки установлен
-Caching is now #(caching)#off::on#(/caching)#.==Кэширование #(caching)#выкл::вкл#(/caching)#.
-Local Text Indexing is now #(indexingLocalText)#off::on==Индексация локальных текстовых файлов #(indexingLocalText)#выкл::вкл
-Local Media Indexing is now #(indexingLocalMedia)#off::on==Индексация локальных медиа-файлов #(indexingLocalMedia)#выкл::вкл
-Remote Indexing is now #(indexingRemote)#off::on==Удалённая индексация #(indexingRemote)#выкл::вкл
-Cachepath is now set to '#[return]#'. Please move the old data in the new directory.==Путь хранения кэша установлен как '#[return]#'..
-Cachesize is now set to #[return]#MB.==Размер кэша установлен в #[return]#MB .
Changes will take effect after restart only.==Изменения будут применены только после перезапуска.
-An error has occurred:==Произошла ошибка:
You can see a snapshot of recently indexed pages==Вы можете увидеть недавно проиндексированные данные
-on the==на странице
-Page.==
#-----------------------------
+or by POST-Parameters (either in URL or as HTTP protocol) and automatically excluded from indexing.==или по POST-параметрам (либо в протоколе URL, либо в виде протокола HTTP) и автоматически исключаются из индексации.
+URLs as crawling start points for crawling.==URL-адреса как начальные точки сканирования.
+Size==Размер
+The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.==Файл DATA/PLASMADB/crawlProfiles0.db отсутствует или поврежден.
+Please delete that file and restart.==Пожалуйста, удалите этот файл и перезапустите..
+Caching is now==Кэширование сейчас
+off==выключенный
+on==на
+Local Text Indexing is now==Индексирование локального текста теперь доступно
+Local Media Indexing is now==Индексирование локальных медиа уже запущено
+Remote Indexing is now==Удаленное индексирование уже доступно
#File: QuickCrawlLink_p.html
#---------------------------
-#Quick Crawl Link==Schnell Crawl Link
Quickly adding Bookmarks:==Быстрое добавление закладок:
-#Simply drag and drop the link shown below to your Browsers Toolbar/Link-Bar.==Ziehen Sie einfach den unten stehenden Link auf Ihre Browser Toolbar/Linkbar.
-#If you click on it while browsing, the currently viewed website will be inserted into the YaCy crawling queue for indexing.==Wenn Sie, während Sie surfen, auf dieses Lesezeichen klicken, wird die gerade betrachtete Seite zum YaCy Crawler-Puffer hinzugefügt, um indexiert zu werden.
Crawl with YaCy==Индексировать с YaCy
Title:==Заголовок:
Link:==Ссылка:
Status:==Состояние:
URL successfully added to Crawler Queue==Ссылка успешно добавлена в очередь индексатора.
Malformed URL==Некорректная ссылка
-Unable to create new crawling profile for URL:==Невозможно создать новый профиль индексирования для ссылки:
-Unable to add URL to crawler queue:==Невозможно добавить ссылку в очередь индексатора:
#-----------------------------
+Simply drag and drop the link shown below to your Browsers Toolbar/Link-Bar.==Просто перетащите ссылку, показанную ниже, на панель инструментов браузера/Link-Bar..
+If you click on it while browsing, the currently viewed website will be inserted into the YaCy crawling queue for indexing.==Если вы нажмете на него во время просмотра, просматриваемый в данный момент веб-сайт будет добавлен в очередь сканирования YaCy для индексации.
#File: RankingRWI_p.html
#---------------------------
-RWI Ranking Configuration<==Конфигурация ранжирования RWI<
-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 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 attribute 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.==Коэффициент ранжирования растёт экспоненциально с ранжированием уровней, указанных в таблице ниже. Если вы увеличиваете одно значение на другое, то параметр удваивается.
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.==Два уровня разделены, так как они нуждаются в статистической информации из результата предварительного ранжирования.
Pre-Ranking==Предварительное ранжирование
->Post-Ranking<==>Пост-ранжирование<
"Set as Default Ranking"=="Установить ранжирование по-умолчанию"
"Re-Set to Built-In Ranking"=="Сбросить к исходным значениям"
#-----------------------------
+"info"=="информация"
+RWI Ranking Configuration==Конфигурация ранжирования RWI
+Post-Ranking==Пост-рейтинг
#File: RankingSolr_p.html
#---------------------------
-Solr Ranking Configuration<==Конфигурация ранжирования Solr<
These are ranking attributes for Solr. This ranking applies for internal and remote (P2P or shard) Solr access.==Это аттрибуты ранжирования для Solr. Это ранжирование применяется для внутренного и удалённого (P2P или раздельного) доступа к Solr.
Select a profile:==Выберите профиль:
->Boost Function<==>Функция Boost<
-#A Boost Function can combine numeric values from the result document to produce a number which is multiplied with the score value from the query result.==Eine Boost Funktion kann numerische Werte von Ergebnis-Dokumenten kombinieren, um eine Nummer zu erzeugen die mit den Scoring Werten der Suchergebnisse multipliziert wird.
-To see all available fields, see the==Все доступные поля смотрите
->YaCy Solr Schema<==>схему Solr<
-and look for numeric values (these are names with suffix '_i').==и ищите числовые значения (названия с суффиксом '_i').
-To find out which kind of operations are possible, see the==Чтобы узнать доступные операции, смотрите
->Solr Function Query<==>запрос функций Solr<
-documentation.==.
-Example: to order by date, use==Например: для сортировки по дате, используйте
-, to order by clickdepth, use==, для сортировки по глубине индексации, используйте
->boost<==>Boost<
"Set Boost Function"=="Установить функцию Boost"
"Re-Set to default"=="Восстановить значения по-умолчанию"
->Boost Query<==>Запрос Boost<
-#The Boost Query is attached to every query. Use this to statically boost specific content in the index.==Die Boost Abfrage wird an jede Abfrage angehängt. Verwenden sie diese Einstellung, um spezifischen Inhalt im Index zu boosten.
-Example: "fuzzy==Например: "fuzzy
-# means that documents, identified as 'double' are ranked very bad and appended to the end of all results (because the unique are ranked high).== bedeutet dass Dokumente die als 'double' identifiziert werden sehr schlecht geranked werden und an das Ende der Suchergebnisliste angehängt werden (weil die eindeutigen hoch geranked werden).
-To find appropriate fields for this query, see the ==Чтобы найти соответствующие поля запросов, смотрите
->YaCy Solr Schema<==>схему Solr<
- and look for boolean values (with suffix '_b') or tags inside string fields (with suffix '_s' or '_sxt').== и ищите логические значения (с суффиксом '_b') или тэги внутри строк (с суффиксом '_s' или '_sxt')
-
-#>bq<==>bq<
+
"Set Boost Query"=="Установить запрос Boost"
-#"Re-Set to default"=="Восстановить значения по-умолчанию"
-#>Solr Boosts<==>Solr Boosts<
-#This is the set of searchable fields. Entries without a boost value are not searched. Boost values make hits inside the corresponding field more important.==Das ist das Set der suchbaren Felder. Einträge ohne Boost Werte werden nicht durchsucht. Boost Werte erhöhen die Wichtigkeit der Treffer im passenden Feld.
field not in local index (boost has no effect)==поля нет в локальном индексе (эффект Boost не применяется)
"Set Field Boosts"=="Установить поле Boosts"
-#"Re-Set to default"=="Восстановить значения по-умолчанию"
#-----------------------------
+"Set Filter Query"=="Установить фильтрационный запрос"
+Solr Ranking Configuration==Solr Конфигурация ранжирования
+Boost Function==Функция повышения
+A Boost Function can combine numeric values from the result document to produce a number which is multiplied with the score value from the query result.==Функция Boost может объединять числовые значения из результирующего документа для получения числа, которое умножается на значение оценки из результата запроса.
+Example: to order by date, use "recip(ms(NOW,last_modified),3.16e-11,1,1)", to order by crawldepth, use "div(100,add(crawldepth_i,1))".==Пример: для сортировки по дате используйте «recip(ms(NOW,last_modified),3.16e-11,1,1)», для сортировки по глубине сканирования используйте «div(100,add(crawllength_i,1))».
+Boost Query==Повышение запроса
+The Boost Query is attached to every query. Use this to statically boost specific content in the index.==Запрос Boost прикрепляется к каждому запросу. Используйте это для статического увеличения определенного контента в индексе.
+Example: "fuzzy_signature_unique_b:true^100000.0f" means that documents, identified as 'double' are ranked very bad and appended to the end of all results (because the unique are ranked high).==Пример: «fuzzy_signature_unique_b:true^100000.0f» означает, что документы, определенные как «double», имеют очень низкий рейтинг и добавляются в конец всех результатов (поскольку уникальные документы имеют высокий рейтинг).
+Filter Query==Фильтровать запрос
+The Filter Query is attached to every query. Use this to statically add a selection criteria to reduce the set of results.==Фильтрационный запрос прикрепляется к каждому запросу. Используйте это, чтобы статически добавить критерии выбора, чтобы уменьшить набор результатов.
+Example: "http_unique_b:true AND www_unique_b:true" will filter out all results where urls appear also with/without http(s) and/or with/without 'www.' prefix.==Пример: «http_unique_b:true AND www_unique_b:true» отфильтрует все результаты, в которых URL-адреса встречаются также с /without http(s) и /or с /without 'www.' префикс.
+Solr Boosts==Solr Усиления
#File: RegexTest.html
#---------------------------
Regex Test==Тест регулярного выражения
Test String==Тест строки
Regular Expression==Регулярное выражение
-This is a ==это
-Java Pattern==шаблон Java
-Result<==Результат<
-no match<==Нет совпадений<
-> match<==> Совпадение<
-error in expression:==Ошибка в выражении:
#-----------------------------
+Result==Результат
+no match==нет совпадений
+match==соответствовать
#File: RemoteCrawl_p.html
+Last Seen==Последний просмотр
+Remote Crawler==Удалённая
#---------------------------
-Remote Crawl Configuration==Конфигурация удалённого индексирования
->Remote Crawler<==>Удалённое индексирование<
The remote crawler is a process that requests urls from other peers.==Удалённое индексирование выполняется при получении ссылок для индексирования от других узлов.
-Peers offer remote-crawl urls if the flag 'Do Remote Indexing'==Узлы отправляют удалённому индексатору ссылки с флагом 'Произвести удалённое индексирование'
+Peers offer remote-crawl urls if the flag 'Do Remote Indexing'==Узлы отправляют удалённому индексатору ссылки с флагом 'Произвести удалённое индексирование'
is switched on when a crawl is started.==и после этого начинается индексация.
Remote Crawler Configuration==Конфигурация удалённого индексирования
Your peer cannot accept remote crawls because you need senior or principal peer status for that!==Для удалённого индексирования ваш узел должен быть старшим или главным!
->Accept Remote Crawl Requests<==>Удалённое индексирование<
Perform web indexing upon request of another peer.==Выполнять удалённое индексирование.
Load with a maximum of==Загружать максимум
pages per minute==страниц в минуту
"Save"=="Сохранить"
-Crawl results will appear in the==Результаты индексирования доступны через
->Crawl Result Monitor<==>монитор результатов индексирования<
Peers offering remote crawl URLs==Узлы предлагающие ссылки для удалённого индексирования
If the remote crawl option is switched on, then this peer will load URLs from the following remote peers:==Если удалённое индексирование разрешено, то ваш узел будет загружать ссылки от следующих узлов:
->Name<==>Имя<
URLs for Remote Crawl==Ссылки для удалённых индексаторов
-#>Remote Crawl<==>Удалённый индексатор<
->Release<==>Версия<
->PPM<==>Страниц в минуту (PPM)<
->QPH<==>Запросов в час (QPH)<
->Last Seen<==>Последний просмотр<
->UTC Offset<==>UTC <
->Uptime<==>Время работы<
->Links<==>Ссылки<
-#>RWIs<==>RWIs<
->Age<==>Возраст<
#-----------------------------
+Accept Remote Crawl Requests==Принимать запросы на удаленное сканирование
+Name==Имя
+Release==Выпускать
+PPM==ППМ
+QPH==QPH
+UTC Offset==UTC Смещение
+Uptime==Время работы
+Links==Ссылки
+RWIs==RWI
+Age==Возраст
#File: ServerScannerList.html
#------------------------------
-#Network Scanner Monitor==Network Scanner Monitor
-#The following servers had been detected:==The following servers had been detected:
-#Available server within the given IP range==Available server within the given IP range
->Protocol<==>Протокол<
->IP<==>IP-адрес<
->URL<==>URL-адрес<
->Access<==>Доступ<
->Process<==>Состояние<
->unknown<==>неизвестно<
->empty<==>пусто<
->granted<==>разрешено<
->denied<==>запрещено<
->not in index<==>нет в индексе<
->indexed<==>проиндексировано<
"Add Selected Servers to Crawler"=="Добавить выбранные серверы в индексатор"
#------------------------------
+Network Scanner Monitor==Монитор сетевого сканера
+The following servers can be searched:==Можно осуществлять поиск по следующим серверам:
+Available server within the given IP range==Доступный сервер в заданном диапазоне IP.
+Protocol==Протокол
+IP==IP
+URL==URL
+Access==Доступ
+Process==Процесс
+inaccessible==недоступный
+empty==пустой
+granted==предоставленный
+denied==отклонен
+not in index==нет в индексе
+indexed==индексируется
#File: Settings_p.html
#---------------------------
Advanced Settings==Настройки системы
If you want to restore all settings to the default values,==Если вы хотите восстановить все значения настроек по-умолчанию,
but forgot your administration password, you must stop the proxy,==но забыли свой пароль администратора, то вы должны остановить YaCy,
delete the file 'DATA/SETTINGS/yacy.conf' in the YaCy application root folder and start YaCy again.==удалить файл 'DATA/SETTINGS/yacy.conf' в корневой папке программы и перезапустить YaCy.
-Performance Settings of Busy Queues==Настройки производительности очередей и процессов
-Viewer and administration for database tables==Просмотр и управление таблицами базы данных
-Viewer for Cookies in Proxy==Просмотр сведений о куки (при использовании прокси-сервера)
Server Access Settings==Настройки доступа к серверу
-Proxy Access Settings==Настройки доступа к прокси-серверу
Crawler Settings==Настройки индексатора
-HTTP Networking==HTTP сеть
Remote Proxy (optional)==Удалённый прокси
Seed Upload Settings==Настройки загрузки сида
Message Forwarding (optional)==Отправка уведомления
#-----------------------------
+Referrer Policy Settings==Настройки политики рефералов
+Transparent Proxy Access Settings==Настройки доступа к прозрачному прокси-серверу
+URL/Web Proxy Access Settings==URL/Web Настройки доступа к прокси-серверу
+Debug/Analysis Settings==Настройки отладки/Analysis
+HTTP client Settings==HTTP Настройки клиента
#File: Settings_Crawler.inc
+Changes will take effect immediately.==Изменения будут применены немедленно.
+Crawler Settings==Настройки индексатора
#---------------------------
->Crawler Settings<==>Настройки индексатора<
-Generic Crawler Settings==Общие настройки индексатора
-Connection timeout in ms==Соединение в миллисекундах
-means unlimited==означает неограниченный
HTTP Crawler Settings:==Настройки индексации по HTTP:
-Maximum Filesize==Максимальный размер файла
-FTP Crawler Settings==Настройки индексации по FTP
-SMB Crawler Settings==Настройки индексации по SMB
-Local File Crawler Settings==Настройки индексации локальных файлов
-Maximum allowed file size in bytes that should be downloaded==Максимально разрешённый размер загружаемого файла
-Larger files will be skipped==Файлы большего размера будут пропущены
-Please note that if the crawler uses content compression, this limit is used to check the compressed content size==Обратите внимание, что если индексатор использует сжатый контент, то это ограничение проверяет размер сжатого контента
-Submit==Сохранить
-Changes will take effect immediately==Изменения будут применены немедленно
Timeout:==Ожидание:
#-----------------------------
+"Submit"=="Сохранить"
+Generic Crawler Settings:==Общие настройки сканера:
+Maximum Filesize:==Максимальный размер файла:
+Please note that if the crawler uses content compression, this limit is used to check the compressed content size.==Обратите внимание: если сканер использует сжатие контента, это ограничение используется для проверки размера сжатого контента.
+FTP Crawler Settings:==Настройки FTP-сканера:
+SMB Crawler Settings:==Настройки сканера SMB:
+Local File Crawler Settings:==Настройки локального сканера файлов:
#File: Settings_Proxy.inc
#---------------------------
Remote Proxy (optional)==Удалённый прокси
YaCy can use another proxy to connect to the internet. You can enter the address for the remote proxy here:==YaCy может использовать другой прокси для соединения с интернетом. Вы можете указать адрес удалённого прокси здесь.
-Use remote proxy==Использовать удалённый прокси
Enables the usage of the remote proxy by yacy==Разрешает использование удалённого прокси
-Use remote proxy for yacy <-> yacy communication==Использовать удалённый прокси для связи между узлами
-Specifies if the remote proxy should be used for the communication of this peer to other yacy peers.==Разрешает использование удалённого прокси для связи вашего узла с другими узлами.
-Hint: Enabling this option could cause this peer to remain in junior status.==Совет: Включение этой опции может сделать ваш узел младшим.
Use remote proxy for HTTPS==Использовать удалённый прокси для HTTPS-протокола
Specifies if YaCy should forward ssl connections to the remote proxy.==Разрешает использовать SSL-соединения для удалённого прокси.
Remote proxy host==Хост удалённого прокси
The ip address or domain name of the remote proxy==IP-адрес или домен удалённого прокси
Remote proxy port==Порт удалённого прокси
-#the port of the remote proxy==
Remote proxy user==Пользователь удалённого прокси
Remote proxy password==Пароль удалённого прокси
No-proxy addresses==Не использовать для прокси адреса
@@ -2765,44 +2639,25 @@ IP addresses for which the remote proxy should not be used==IP-адреса, д
Changes will take effect immediately.==Изменения будут применены немедленно.
#-----------------------------
+Use remote proxy==Использовать удаленный прокси
+the port of the remote proxy==порт удаленного прокси
#File: Settings_ProxyAccess.inc
#---------------------------
Proxy Settings==Настройки прокси
Transparent Proxy==Прозрачный прокси
With this you can specify if YaCy can be used as transparent proxy.==Включите эту опцию, если вам нужно использовать YaCy в качестве прозрачного прокси.
-Hint: On linux you can configure your firewall to transparently redirect all http traffic through yacy using this iptables rule==Совет: В линукс-системах вы можете настроить фаервол на прозрачное перенаправление всего трафика через YaCy с этими правилами iptables
-With this you can specify if YaCy should support the HTTP connection keep-alive feature.==Включите эту опцию, если вам необходимо постоянное соединение с YaCy.
Always Fresh==Обновлять кэш
If unchecked, the proxy will act using Cache Fresh / Cache Stale rules. If checked, the cache is always fresh which means==Если не отмечено, то прокси будет использовать правила обновления кэша "новый/старый". Если отмечено, то кэш всегда будет обновляться, и
that a page is never loaded again if it was already stored in the cache. However, if the page does not exist in the cache, it will be loaded in any case.==страница не будет загружаться снова, если сохранен в кэше ранее. Однако, если страница не находится в кэше, то она будет загружена в любом случае.
Send "Via" Header==Отправлять заголовок "Via"
-Specifies if the proxy should send the Via==Отметьте, если прокси должен отправлять заголовок Via-HTTP-Header
http header according to RFC 2616 Sect 14.45.==, описанный в RFC 2616 раздел 14.45.
Send "X-Forwarded-For" Header==Отправлять заголовок "X-Forward-For"
Specifies if the proxy should send the X-Forwarded-For http header.==Отметьте, если прокси должен отправлять заголовок "X-Forward-For"
"Submit"=="Сохранить"
-Changes will take effect immediately.==Изменения будут применены немедленно.
-HTTP Server Port==Порт HTTP
-HTTPS Server Port==Порт HTTPS
"change"=="Изменить"
-Version==версии
Proxy Access Settings==Настройки доступа к прокси
These settings configure the access method to your own http proxy and server.==Здесь вы можете настроить доступ к вашему http-прокси и серверу.
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:==Вы можете указать четыре адреса:
-defining a port only==задать только порт
-e.g. 8090==например, 8090
-defining IP address and port==задать IP-адрес и порт
-e.g. 192.168.0.1:8090==например, 192.168.0.1:8090
-defining host name and port==задать имя хоста и порт
-e.g. home:8090==например, home:8090
-defining interface name and port==задать имя интерфейса и порт
-e.g. #eth0:8090==например, #eth0:8090
-Hint: Dont forget to change your firewall configuration after you have changed the port.==Совет: Не забудьте изменить настройки фаервола после изменения порта.
-Proxy and http-Server Administration Port==Порт прокси и http-сервера
-Changes will take effect in 5-10 seconds==Изменения будут применены через 5-10 секунд
Server Access Restrictions==Ограничения доступа к серверу
You can restrict the access to this proxy/server using a two-stage security barrier:==Вы можете ограничить доступ к своему прокси/серверу используя двухуровневый барьер:
define an access domain with a list of granted client IP-numbers or with wildcards==установить доступ к домену списком предоставленных клиенту IP-адреса или символов
@@ -2813,89 +2668,85 @@ IP-Number Access Domain to a pattern that corresponds to you local intranet.==IP
The default setting should be right in most cases. If you want, you can also set a proxy account==Настройки по-умолчанию подходят в большинстве случаев. Вы также можете установить учётную запись прокси
so that every proxy user must authenticate first, but this is rather unusual.==, чтобы сначала авторизовывался каждый пользователь прокси. Обычно это не практикуется.
IP-Number filter==Фильтр IP-адресов
-Use Hint: On linux you can configure your firewall to transparently redirect all http traffic through yacy using this iptables rule:==Подсказка: в Linux вы можете настроить брандмауэр на прозрачное перенаправление всего HTTP-трафика через yacy, используя это правило iptables:
+HTTPS Server Port:==HTTPS Порт сервера:
+Accounts==Счета
#File: Settings_Seed.inc
#---------------------------
Seed Upload Settings==Настройки загрузка сида
With these settings you can configure if you have an account on a public accessible==Здесь вы можете указать данные вашей учётной записи на общем
server where you can host a seed-list file.==сервере, где вы храните сид-список.
General Settings:==Общие настройки:
-If you enable one of the available uploading methods, you will become a principal peer.==В случае установки, ваш узел станет главным.
+If you enable one of the available uploading methods, you will become a principal peer.==В случае установки, ваш узел станет главным.
Your peer will then upload the seed-bootstrap information periodically,==Ваш узел загрузит начальную информацию о сиде,
but only if there have been changes to the seed-list.==только если сид-список будет изменён.
Upload Method==Способ загрузки
"Submit"=="Сохранить"
->URL<==>Ссылка<
-Retry Uploading==Повторить загрузку
-Here you can specify which upload method should be used.==Здесь вы можете указать желаемый способ загрузки.
-Select 'none' to deactivate uploading.==Выберите 'none' для отключения загрузки.
The URL that can be used to retrieve the uploaded seed file, like==Ссылка для загрузки файла сида, наподобие
#-----------------------------
+"Retry Uploading"=="Повторить загрузку"
+Here you can specify which upload method should be used. Select 'none' to deactivate uploading.==Здесь вы можете указать, какой метод загрузки следует использовать. Выберите «Нет», чтобы отключить загрузку.
+URL==URL
+http://www.<my-host>.net/yacy/seed.txt'==http://www.<my-host>.net/yacy/seed.txt'
#File: Settings_Seed_UploadFile.inc
#---------------------------
Store into filesystem:==Загрузка из локальной папки:
You must configure this if you want to store the seed-list file onto the file system.==Локальный путь к сид-списку.
-File Location==Путь к файлу
Here you can specify the path within the filesystem where the seed-list file should be stored.==Здесь вы можете указать путь к сид-списку.
"Submit"=="Сохранить"
#-----------------------------
+File Location:==Местоположение файла:
+current:==текущий:
#File: Settings_Seed_UploadFtp.inc
+Path==Путь
#---------------------------
Uploading via FTP:==Загрузка из FTP:
This is the account for a FTP server where you can host a seed-list file.==Это данные FTP-сервера, где вы разместили свой сид-список.
If you set this, you will become a principal peer.==В случае установки, ваш узел станет главным.
Your peer will then upload the seed-bootstrap information periodically,==Ваш узел загрузит начальную информацию о сиде,
but only if there had been changes to the seed-list.==только если сид-список будет изменён.
-The host where you have a FTP account, like==Данные вашего FTP-сервера, наподобие
-Path==Путь
-The remote path on the FTP server, like==Удалённый путь FTP-сервера, наподобие
-Missing sub-directories are NOT created automatically.==Отсутствующие подпапки не создаются автоматически.
Username==Имя пользователя
->Server<==>Сервер<
Your log-in at the FTP server==Ваш логин на FTP-сервере
-Password==Пароль
The password==Ваш пароль
"Submit"=="Сохранить"
#-----------------------------
+Server==Сервер
+The host where you have a FTP account, like 'ftp.<my-host>.net'==Хост, на котором у вас есть учетная запись FTP, например «ftp.<my-host>.net».
+The remote path on the FTP server, like 'yacy/seed.txt'. Missing sub-directories are NOT created automatically.==Удаленный путь на сервере FTP, например 'yacy/seed.txt'.. Отсутствующие подкаталоги НЕ создаются автоматически.
+Password==Пароль
#File: Settings_Seed_UploadScp.inc
+Path==Путь
#---------------------------
Uploading via SCP:==Загрузка по SCP:
This is the account for a server where you are able to login via ssh.==Это учётная запись для сервера, на который вы сможете войти через ssh.
->Server<==>Сервер<
-The host where you have an account, like 'my.host.net'==Хост, на котором вы имеете учётную запись, наподобие 'mein.host.net'
+The host where you have an account, like 'my.host.net'==Хост, на котором вы имеете учётную запись, наподобие 'mein.host.net'
Server Port==Порт сервера
The sshd port of the host, like '22'==Sshd-порт хоста, наподобие '22'
-Path==Путь
The remote path on the server, like '~/yacy/seed.txt'. Missing sub-directories are NOT created automatically.==Удалённый путь на сервере, наподобие '~/yacy/seed.txt'. Отсутствующие подпапки не создаются автоматически.
Username==Имя пользователя
Your log-in at the server==Ваш логин на сервере
-Password==Пароль
The password==Ваш пароль
"Submit"=="Сохранить"
#-----------------------------
+Server==Сервер
+Password==Пароль
#File: Settings_ServerAccess.inc
#---------------------------
Server Access Settings==Настройки доступа к серверу
IP-Number filter:==Фильтр IP-адресов:
-requires restart==потребуется перезапуск
-Here you can restrict access to the server.==Здесь вы можете разрешить доступ к серверу.
-By default, the access is not limited,==По-умолчанию доступ неограничен,
because this function is needed to spawn the p2p index-sharing function.==потому что это необходимо для начала передачи индекса посредством пиринга.
If you block access to your server (setting anything else than '*'), then you will also be blocked==Если вы заблокируете доступ к вашему серверу, то вы также заблокируете
from using other peers' indexes for search service.==использование поиска индексов другими узлами.
-However, blocking access may be correct in enterprise environments where you only want to index your==Ограничение доступа может быть полезным в корпоративной сети, где требуется только индексирование
+However, blocking access may be correct in enterprise environments where you only want to index your==Ограничение доступа может быть полезным в корпоративной сети, где требуется только индексирование
company's own web pages.==вэб-страниц компаний.
-further details on format see Jetty ==Подробную информацию об InetAddressSet смотрите
-InetAddressSet documentation.==здесь.
fileHost:==Размещение файлов:
staticIP (optional):==Постоянный IP-адрес (необязательно):
The staticIP can help that your peer can be reached by other peers in case that your==Использование постоянного IP-адреса может помочь вашему узлу соединиться с другиму узлами
@@ -2905,73 +2756,72 @@ an access point for incoming connections.==точку доступа для вх
This access address can be set here (either as IP number or domain name).==Адрес сервера может быть установлен здесь (как IP-адрес или как домен).
If the address of outgoing connections is equal to the address of incoming connections,==Если адреса исходящих и входящих соединений одинаковы,
you don't need to set anything here, please leave it blank.==то оставьте поле пустым.
-ATTENTION: Your current IP is recognized as "#[clientIP]#".==Внимание: Ваш текущий IP-адрес определён как "#[clientIP]#".
If the value you enter here does not match with this IP,==Если IP-адрес указанный вами, не будет совпадать с этим IP-адресом,
you will not be able to access the server pages anymore.==то вы больше не сможете получить доступ к страницам сервера.
-value="Submit"==value="Сохранить"
#-----------------------------
+"Submit"=="Сохранить"
+(requires restart)==(требуется перезагрузка)
+Here you can restrict access to the server. By default, the access is not limited,==Здесь вы можете ограничить доступ к серверу. По умолчанию доступ не ограничен,
+Filter have to be entered as IP, IP range or using CIDR notation separated by comma (e.g. 192.168.1.1,2001:db8==Фильтр необходимо ввести в виде диапазона IP, IP или использовать нотацию CIDR, разделенную запятой (например, 192.168.1.1,2001:db8
+ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)==ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)
+further details on format see Jetty==дополнительную информацию о формате см. в разделе «Пристань».
+publicPort (optional):==публичный порт (необязательно):
+The publicPort can help that your peer can be reached by other peers in case that your==publicPort может помочь другим узлам связаться с вашим одноранговым узлом в случае, если ваш
+peer is behind a reverse proxy.==узел находится за обратным прокси.
+If the port used to access YaCy is the same port the application is listening on,==Если порт, используемый для доступа к YaCy, совпадает с портом, который прослушивает приложение,
+Set this to avoid error-messages like 'proxy use not allowed / granted' on accessing your Peer by its hostname.==Установите это, чтобы избежать сообщений об ошибках, таких как «использование прокси-сервера не разрешено/разрешено» при доступе к вашему узлу по его имени хоста.
+Virtual host for httpdFileServlet access for example http://FILEHOST/ shall access the file servlet and==Виртуальный хост для доступа httpdFileServlet, например http://FILEHOST/, должен получить доступ к файловому сервлету и
+return the defaultFile at rootPath either way, http://FILEHOST/ denotes the same as http://localhost:<port>/==в любом случае верните файл defaultFile в rootPath, http://FILEHOST/ означает то же самое, что http://localhost:<port>/
+for the preconfigured value 'localpeer', the URL is: http://localpeer/.==для предварительно настроенного значения «localpeer» URL: http://localpeer/.
+Server Port Settings==Настройки порта сервера
+Server port:==Порт сервера:
+This is the main port for all http communication (default is 8090). A change requires a restart.==Это основной порт для всех HTTP-коммуникаций (по умолчанию — 8090). Изменение требует перезапуска.
+Server ssl port:==SSL-порт сервера:
+This is the port to connect via https (default is 8443). A change requires a restart.==Это порт для подключения через https (по умолчанию — 8443). Изменение требует перезапуска.
+Shutdown port:==Порт выключения:
+This is the local port on the loopback address (127.0.0.1 or :1) to listen for a shutdown signal to stop the YaCy server (-1 disables the shutdown port, recommended default is 8005). A change requires a restart.==Это локальный порт на адресе обратной связи (127.0.0.1 или :1) для прослушивания сигнала выключения, чтобы остановить сервер YaCy (-1 отключает порт выключения, рекомендуемое значение по умолчанию — 8005). Изменение требует перезапуска.
+Compression settings==Настройки сжатия
+Compress responses with gzip==Сжатие ответов с помощью gzip
+When checked (default), HTTP responses can be compressed using gzip.==Если этот флажок установлен (по умолчанию), ответы HTTP можно сжимать с помощью gzip.
+The requesting user-agent (a web browser, another YaCy peer or any other tool) uses the header 'Accept-Encoding' to tell whether it accepts gzip compression or not.==Запрашивающий пользовательский агент (веб-браузер, другой узел YaCy или любой другой инструмент) использует заголовок «Accept-Encoding», чтобы сообщить, принимает ли он сжатие gzip или нет.
+This adds some processing overhead, but can significantly reduce the amount of bytes transmitted over the network.==Это добавляет некоторые накладные расходы на обработку, но может значительно уменьшить количество байтов, передаваемых по сети.
+Changes need a server restart.==Изменения требуют перезагрузки сервера.
#File: SettingsAck_p.html
#---------------------------
-YaCy '#[clientname]#': Settings Acknowledge==YaCy '#[clientname]#': Применение параметров
Settings Receipt:==Следующие параметры были изменены:
No information has been submitted==Изменения не производились.
Error with submitted information.==Ошибка при сохранении изменений.
-Nothing changed.==Изменения не производились.
The user name must be given.==Укажите имя пользователя
-Your request cannot be processed.==Ваш запрос не может быть выполнен.
The password redundancy check failed. You have probably mistyped your password.==Пароль указан неверно. Введите пароль еще раз.
-Shutting down. Application will terminate after working off all crawling tasks.==Выключение. Приложение будет закрыто после завершения индексирования.
Your administration account setting has been made.==Ваша учётная запись настроена вручную.
-Your new administration account name is #[user]#. The password has been accepted. If you go back to the Settings page, you must log-in again.==Ваше новое имя пользователя #[user]#. Пароль принят. Для возврата на страницу настроек, введите имя пользователя и пароль снова.
Your proxy access setting has been changed.==Настройки прокси изменены.
-Your proxy account check has been disabled.==Учётная запись прокси отключена.
-The new proxy IP filter is set to==IP-фильтр прокси:
+The new proxy IP filter is set to==IP-фильтр прокси:
The proxy port is:==Порт прокси:
Port rebinding will be done in a few seconds.==Порт будет изменён через несколько секунд.
-You can reach your YaCy server under the new location==Вы можете запустить ваш сервер YaCy из нового места:
-Your proxy access setting has been changed.==Настройки доступа к прокси изменены.
-Your server access filter is now set to==Фильтр доступа к серверу установлен -
Auto pop-up of the Status page is now disabled==Автозагрузка страницы состояния отключена.
Auto pop-up of the Status page is now enabled==Автозагрузка страницы состояния включена.
-You are now permanently online.==Сейчас вы постоянно в сети.
-After a short while you should see the effect on the====Через некоторое время вы увидите изменения на
-status page.==странице состояния.
The Peer Name is:==Имя вашего узла:
Your static Ip(or DynDns) is:==Ваш постоянный IP-адрес (или DynDns):
-Seed Settings changed.#(success)#::You are now a principal peer.==Настройки сид-сервера изменены.#(success)#::Ваш узел теперь является главным.
Seed Settings changed, but something is wrong.==Настройки сид-сервера изменены, но произошла ошибка.
Seed Uploading was deactivated automatically.==Загрузка сид-списка была отключена автоматически.
Please return to the settings page and modify the data.==Пожалуйста, вернитесь на страницу настроек и измените данные.
The remote-proxy setting has been changed==Настройки удалённого прокси изменены.
If you open any public web page through the proxy, you must log-in.==Для посещения любой внешней вэб-страницы через прокси, необходимо ввести имя пользователя и пароль.
The new setting is effective immediately, you don't need to re-start.==Новые настройки будут применены немедленно.
-The submitted peer name is already used by another peer. Please choose a different name. The Peer name has not been changed.==Выбранное имя узла уже используется. Пожалуйста, выберите другое имя для вашего узла. Имя узла не изменено.
Your Peer Language is:==Язык вашего узла:
The submitted peer name is not well-formed. Please choose a different name. The Peer name has not been changed.
Peer names must not contain characters other than (a-z, A-Z, 0-9, '-', '_') and must not be longer than 80 characters.
-#The new parser settings where changed successfully.==Новые настройки анализа были изменены успешно.
-Parsing of the following mime-types was enabled:==Анализ следующих типов файлов разрешён:
Seed Upload method was changed successfully.==Способ загрузки сид-списка был успешно изменён.
You are now a principal peer.==Ваш узел теперь является главным.
Seed Upload Method:==Способ загрузки сид-списка:
Seed File URL:==Ссылка на сид-список:
Your proxy networking settings have been changed.==Настройки протокола HTTP изменены.
Transparent Proxy Support is:==Прозрачный прокси:
-Connection Keep-Alive Support is:==Постоянное соединение:
Your message forwarding settings have been changed.==Настройки отправки сообщений были изменены.
Message Forwarding Support is:==Отправка сообщений:
Message Forwarding Command:==Команда для отправки сообщений:
Recipient Address:==Адрес получателя:
-Please return to the settings page and modify the data.==Пожалуйста, вернитесь на страницу настроек и измените данные.
-You are now event-based online.==Вы онлайн.
-After a short while you should see the effect on the==Через некоторое время вы увидите изменения на
-You are now in Cache Mode.==Вы используете только кэш.
-Only Proxy-cache ist available in this mode.==Только кэш-прокси доступен в этом режиме.
-After a short while you should see the effect on the==Через некоторое время вы увидите изменения на
-You can now go back to the==Для возврата на страницу настроек системы, нажмите
-Settings page if you want to make more changes.==здесь.
-You can reach your YaCy server under the new location==Вы можете запустить ваш сервер YaCy из нового места::
Send via header is:==Отправлять заголовок "Via":
Send X-Forwarded-For header is:==Отправлять заголовок "X-Forward-For":
Your crawler settings have been changed.==Настройки индексатора были изменены.
@@ -2986,6 +2836,34 @@ Maximum FTP Filesize:==Максимальный размер файла:
smb Crawler Settings:==Настройки индексации по SMB:
#-----------------------------
+Nothing changed.==Ничего не изменилось.
+Your request cannot be processed. Nothing changed.==Ваш запрос не может быть обработан. Ничего не изменилось.
+Shutting down. Application will terminate after working off all crawling tasks.==Завершение работы. Приложение завершится после завершения всех задач сканирования.
+Your proxy access setting has been changed.==Ваши настройки доступа к прокси-серверу были изменены.
+Your proxy account check has been disabled.==Проверка вашего прокси-аккаунта отключена.
+Port rebinding will be done in a view seconds.==Перепривязка портов будет выполнена за несколько секунд.
+Your public port is:==Ваш общедоступный порт:
+Seed Settings changed.==Настройки начального значения изменены.
+The submitted peer name is already used by another peer. Please choose a different name. The Peer name has not been changed.==Отправленное имя узла уже используется другим узлом. Пожалуйста, выберите другое имя. Имя узла не было изменено.
+The submitted peer name is not well-formed. Please choose a different name. The Peer name has not been changed.==Отправленное имя узла имеет неправильный формат. Пожалуйста, выберите другое имя. Имя узла не было изменено.
+Peer names must not contain characters other than (a-z, A-Z, 0-9, '-', '_') and must not be longer than 80 characters.==Имена одноранговых узлов не должны содержать символы, кроме (a–z, A–Z, 0–9, '-', '_'), и не должны быть длиннее 80 символов.
+Always Fresh is:==Всегда свежее – это:
+Invalid IP-Number filter:==Неверный фильтр IP-Number:
+Invalid crawler timeout value:==Недопустимое значение времени ожидания сканера:
+Invalid maximum file size for http crawler:==Недопустимый максимальный размер файла для http-сканера:
+Invalid maximum file size for ftp crawler:==Недопустимый максимальный размер файла для сканера FTP:
+HTTPS port is now:==Порт HTTPS теперь:
+the change will take effect after restart.==изменение вступит в силу после перезапуска.
+URL Proxy settings have been saved.==Настройки URL-прокси сохранены.
+Debug/Analysis settings have been saved.==Настройки Debug/Analysis сохранены.
+Referrer policy settings have been saved.==Настройки политики рефералов сохранены.
+The ports are now configured as follows (active on next start).==Порты теперь настроены следующим образом (активны при следующем запуске).
+HTTP port==HTTP порт
+HTTPS port==HTTPS порт
+Shutdown port==Порт выключения
+Compression settings have been saved.==Настройки сжатия сохранены.
+HTTP client settings have been saved.==HTTP настройки клиента сохранены.
+Your need to restart YaCy to activate the changes.==Вам необходимо перезапустить YaCy, чтобы активировать изменения.
#File: Settings_MessageForwarding.inc
#---------------------------
Message Forwarding==Отправка сообщения
@@ -2993,163 +2871,116 @@ With this settings you can activate or deactivate forwarding of yacy-messages vi
Enable message forwarding==Включить отправку сообщений
Enabling/Disabling message forwarding via email.==Включение/отключение отправки сообщений на электронную почту
Forwarding Command==Команда для отправки
-The command-line program that should be used to forward the message. ==Путь к программе, которая будет использоваться для отправки сообщения.
Forwarding To==Отправить на
-The recipient email-address. ==Адрес электронной почты получателя
-e.g.:==Например:
"Submit"=="Сохранить"
Changes will take effect immediately.==Изменения будут применены немедленно.
#-----------------------------
+The command-line program that should be used to forward the message.==Программа командной строки, которую следует использовать для пересылки сообщения.
+e.g.:==например:
+The recipient email-address.==Адрес электронной почты получателя.
#File: sharedBlacklist_p.html
+"add"=="Добавить"
#---------------------------
-Shared Blacklist==Общий чёрный список
Add Items to Blacklist==Добавить элементы в чёрный список
Unable to store the items into the blacklist file:==Невозможно сохранить элементы в файле чёрного списка:
-#File Error! Wrong Path?==Ошибка! Неверный путь?
-YaCy-Peer "#[name]#" not found.==Узел YaCy "#[name]#" не найден.
-not found or empty list.==не найден или пустой список.
-Wrong Invocation! Please invoke with==Неправильный вызов! Пожалуйста, вызовите с
Blacklist source:==Blacklist Quelle:
Blacklist target:==Blacklist Ziel:
Blacklist item==Blacklist Eintrag
"select all"=="Выбрать все"
"deselect all"=="Отменить выбор"
-value="add"==Значение="Добавить"
#-----------------------------
+File Error! Unable to fetch data from file.==Ошибка файла! Невозможно получить данные из файла.
+YaCy-Peer "==YaCy-Пир "
+" not found.==" не найдено.
+URL "==URL "
+" not found or empty list.==" не найден или пустой список.
+Wrong Invocation! Please invoke with sharedBlacklist.html?name=PeerName==Неправильный вызов! Пожалуйста, вызовите с помощью sharedBlacklist.html?name=PeerName
+Parse Error! An error occured while parsing XML data. Please check if the XML is valid.==Ошибка разбора! Произошла ошибка при анализе данных XML. Пожалуйста, проверьте, действителен ли XML.
#File: Status.html
#---------------------------
-Console Status==Консоль управления узлом
Log-in as administrator to see full status==Войти, как администратор
Welcome to YaCy!==Добро пожаловать в YaCy!
-Your settings are _not_ protected!==Ваши настройки не защищены паролем!
-Please open the accounts configuration page immediately==Пожалуйста перейдите по ссылке Настройка аккаунтанемедленно
and set an administration password.==и установите пароль администратора.
You have not published your peer seed yet. This happens automatically, just wait.==Ваш узел еще не активен. Потребуется немного времени, пожалуйста, подождите.
The peer must go online to get a peer address.==Ваш узел должен быть онлайн для получения адресов других узлов.
You cannot be reached from outside.==Ваш узел недоступен извне.
A possible reason is that you are behind a firewall, NAT or Router.==Возможно, вы находитесь за брандмауэром, NAT или роутером.
-But you can search the internet using the other peers'==Но вы можете выполнять поиск, с помощью других узлов
global index on your own search page.==на главной странице поиска.
"bad"=="плохой"
"idea"=="идея"
"good"=="хороший"
-"Follow YaCy on Twitter"=="Следуй за YaCy на Twitter"
We encourage you to open your firewall for the port you configured (usually: 8090),==Рекомендуется открыть доступ к используемому порту (обычно, 8090) на вашем брандмауэре,
or to set up a 'virtual server' in your router settings (often called DMZ).==или настройте "виртуальный сервер" на вашем роутере (настройка обычно называется DMZ).
Please be fair, contribute your own index to the global index.==Пожалуйста, примите участие в создании глобального поискового индекса.
-Free disk space is lower than #[minSpace]#. Crawling has been disabled. Please fix==Свободное место на диске меньше, чем #[minSpace]#. Индексирование сайтов приостановлено. Пожалуйста, освободите место на диске.
it as soon as possible and restart YaCy.==Потребуется перезапуск YaCy.
-Free memory is lower than #[minSpace]#. DHT-in has been disabled. Please fix==Свободной памяти меньше, чем #[minSpace]#. DHT-in отключен. Пожалуйста, исправьте.
Crawling is paused! If the crawling was paused automatically, please check your disk space.==Индексирование остановлено! Если индексирование остановлено не вами, то проверьте свободное место на диске.
-Latest public version is==Последняя доступная версия
You can download a more recent version of YaCy. Click here to install this update and restart YaCy:==Вы можете загрузить самую последнюю версию программы. Нажмите здесь для установки этого обновления и перезапуска YaCy:
-#"Update YaCy"=="Обновить YaCy"
-Install YaCy==Установка YaCy
-You can download the latest releases here:==Вы можете загрузить последние версии программы здесь:
You are running a server in senior mode and you support the global internet index,==Ваш узел является старшим и вы участвуете в создании глобального индекса интернета,
-which you can also search yourself.==который вы также можете использовать для своего поиска.
You have a principal peer because you publish your seed-list to a public accessible server==Ваш узел является главным и вы можете публиковать свой сид-лист на публично-доступном сервере,
-where it can be retrieved using the URL==где он может быть получен с помощью ссылки:
-Your Web Page Indexer is idle. You can start your own web crawl here==Ваш индексатор веб-сайтов остановлен. Вы можете начать индексирование сайта по ссылке
-Your Web Page Indexer is busy. You can monitor your web crawl here.==Ваш индексатор веб-сайтов работает. Вы можете посмотреть его работу по этой ссылке
If you need professional support, please write to==Если вам нужна профессиональная поддержка, пожалуйста, напишите
-For community support, please visit our==Для получения поддержки сообщества, пожалуйста, посетите наш
->forum<==>форум<
#-----------------------------
+"Fork me on GitHub"=="Раскошелитесь на GitHub"
+"YaCy Websearch"=="YaCy Веб-поиск"
+"PerformanceGraph"=="График производительности"
+"banner"=="баннер"
+"Update YaCy"=="Обновление YaCy"
+"lock icon"=="значок замка"
+Your settings are _not_ protected!==Ваши настройки _не_ защищены!
+Your network configuration is in private mode. Your peer seed will not be published.==Конфигурация вашей сети находится в приватном режиме. Ваше исходное значение сверстника не будет опубликовано.
+Access is unrestricted from localhost (this includes administration features).==Доступ с локального хоста не ограничен (включая функции администрирования).
+support@yacy.net==support@yacy.net
#File: Status_p.inc
+Address==Адрес
#---------------------------
System Status==Статус системы
System==Система
-YaCy version==Версия YaCy
Unknown==неизвестная
-Uptime:==Время работы:
-Processors:==Процессоры:
-Load:==Загрузка процессора:
-Threads:==Потоки:
-peak:==максимум:
-total:==всего:
Protection==Защита
-Password is missing==Пароль не используется
password-protected==Пароль используется
-Unrestricted access from localhost==Неограниченный доступ с локального хоста
-Address==Адрес
peer address not assigned==Адрес узла не назначен
-Host:==Ваш хост:
-Public Address:==Внешний IP-адрес:
-YaCy Address:==YaCy-адрес:
-Peer Host==Узел хоста
-#Port Forwarding Host==Порт пересылающего узла
-
-Proxy==Прокси
-Transparent ==Прозрачность
+
not used==не используется
-broken::connected==потеряно::подключено
broken==потеряно
connected==подключено
-not used==не используется
-Used for YaCy -> YaCy communication:==Используется для YaCy -> YaCy коммуникаций:
-WARNING:==ПРЕДУПРЕЖДЕНИЕ:
-You do this on your own risk.==Вы делаете это на свой риск.
-If you do this without YaCy running on a desktop-pc, this will possibly break startup.==Используйте эту опцию, только если YaCy запущен.
-In this case, you will have to edit the configuration manually in DATA/SETTINGS/yacy.conf==Эту и другие опции вы можете включить вручную через файл DATA/SETTINGS/yacy.conf
Remote:==Удалённый прокси
Tray-Icon==Иконка в трее
-Experimental<==Включить<
Yes==Да
No==Нет
Auto-popup on start-up==Запускать при старте
-Disabled==Отключено
-Enable]==Включить]
-Enabled==Включено
-Disable]==Отключить]
Memory Usage==Использование памяти
RAM used:==RAM используется:
RAM max:==RAM максимум:
DISK used:==На диске используется:
-(approx.)==(примерно)
DISK free:==На диске свободно:
-on::off==вкл::выкл
-Configure==Настройка
-max:==Максимально:
-Configure==Настройка
-Traffic ==Траффик
->Reset==>Сброс
-Proxy:==Прокси:
-Crawler:==Индексатор:
Incoming Connections==Входящие соединения
-Active:==Активно:
-Max:==Максимально:
-Indexing Queue==Очередь индексации
-Loader Queue==Загружено запросов
-paused==пауза
->Queues<==>Запросы<
Local Crawl==Локальный индексатор
Remote triggered Crawl==Удалённый индексатор
Pre-Queueing==Предварительная очередь
Seed server==Сид-сервер
-Configure==Настройка
-Enabled: Updating to server==Включено: Обновление на сервер:
-Last upload: #[lastUpload]# ago.==Последная передача: #[lastUpload]#
-Enabled: Updating to file==Включено: Обновление до файла
#-----------------------------
+Default password is not changed==Пароль по умолчанию не изменен
+[Configure]==[Настроить]
+Port Forwarding Host==Хост переадресации портов
+Proxy==Прокси
+Transparent==Прозрачный
+on==на
+off==выключенный
+URL==URL
+Experimental==Экспериментальный
+Queues==Очереди
+(paused)==(пауза)
+Disabled.==Отключено.
#File: Steering.html
#---------------------------
-Steering==Управление
-Checking peer status...==Проверка состояния узла...
-Peer is online again, forwarding to status page...==Узел снова онлайн. Перенаправление на страницу управления узлом ...
-Peer is not online yet, will check again in a few seconds...==Узел пока не онлайн. Проверю через несколько секунд...
No action submitted==Нет совершённых действий
-Go back to the Settings page==Вернуться назад на страницу настроек
Your system is not protected by a password==Ваш узел не защищён паролем
-Please go to the User Administration page and set an administration password.==Пожалуйста, перейдите на страницу управления узлом и установите пароль администратора.
You don't have the correct access right to perform this task.==Вы не имеете достаточно прав для выполнения этого действия.
Please log in.==Пожалуйста, авторизуйтесь.
-You can now go back to the Settings page if you want to make more changes.==Вы можете вернуться на страницу настроек, если желаете продолжить изменения параметров узла.
See you soon!==До встречи!
Just a moment, please!==Пожалуйста, подождите!
Application will terminate after working off all scheduled tasks.==Приложение завершает свою работу.
@@ -3157,22 +2988,22 @@ Please send us feed-back!==Пожалуйста, отправляйте нам
We don't track YaCy users, YaCy does not send 'home-pings', we do not even know how many people use YaCy as their private search engine.==Мы не следим за пользователями YaCy. Мы даже не знаем как много людей пользуются поиском YaCy для личных целей.
Therefore we like to ask you: do you like YaCy? Will you use it again... if not, why? Is it possible that we change a bit to suit your needs?==Спросите себя: за что вам нравится YaCy? Вы будете использовать его снова... или нет... почему?
Please send us feed-back about your experience with an==Пожалуйста, отправьте нам отзыв о вашем опыте использования
->anonymous message<==>анонимно<
-or a<==или<
-posting to our==на нашем
-web forums==форуме
->bug report<==>отправьте нам отчёт о найденных ошибках.<
->Professional Support<==>Профессиональная поддержка<
-If you are a professional user and you would like to use YaCy in your company in combination with consulting services by YaCy specialists, please see==Если вы желаете использовать YaCy для нужд своей компании, то, пожалуйста, смотрите
Then YaCy will restart.==А затем перезагрузится.
If you can't reach YaCy's interface after 5 minutes restart failed.==Если интерфейс YaCy не открылся в течение пяти минут, то запуск неудался.
-Installing release==Устанавливается релиз
-YaCy will be restarted after installation==YaCy будет перезапущен после установки.
#-----------------------------
+"Kaskelix"=="Каскеликс"
+"Restart"=="Перезапуск"
+"Shutdown"=="Неисправность"
+Re-Start==Перезапуск
+Shutdown==Неисправность
+or a==или
+Professional Support==Профессиональная поддержка
+YaCy will be restarted after installation.==YaCy будет перезапущен после установки.
+The file you are trying to install is not located in the release directory.==Файл, который вы пытаетесь установить, не находится в каталоге выпуска.
+You are in a development environment or the file you are trying to install is empty.==Вы находитесь в среде разработки или файл, который вы пытаетесь установить, пуст.
#File: Supporter.html
#---------------------------
-Supporter<==Спонсор<
#"Please enter a comment to your link recommendation. (Your Vote is also considered without a comment.)"
Supporter are switched off for users without authorization==Спонсоры отключены для пользователей, не прошедших авторизацию
"bookmark"=="Закладки"
@@ -3181,66 +3012,43 @@ Supporter are switched off for users without authorization==Спонсоры о
"Give positive vote"=="Ссылка понравилась"
"negative vote"=="Не понравилось"
"Give negative vote"=="Ссылка не понравилась"
-#provided by YaCy peers with an URL in their profile. This shows only URLs from peers that are currently online.==bereitgestellt durch YaCy Peers mit einer URL in ihrem Profil. Es werden nur URLs von Peers angezeigt, die online sind.
#-----------------------------
+"YaCy Supporter"=="YaCy Сторонник"
+Supporter==Сторонник
#File: Surftips.html
+"Add to bookmarks"=="Добавить в закладки"
+"Give negative vote"=="Ссылка не понравилась"
+"Give positive vote"=="Ссылка понравилась"
+"negative vote"=="Не понравилось"
+"positive vote"=="Понравилось"
#---------------------------
-Surftips==Подсказки
-Surftips==Подсказки
-Surftips are switched off==Подсказки выключены
-title="bookmark"==title="Закладка"
-alt="Add to bookmarks"==alt="Добавить в закладки"
-title="positive vote"==title="Понравилось"
-alt="Give positive vote"==alt="Ссылка понравилась"
-title="negative vote"==title="Не понравилось"
-alt="Give negative vote"==alt="Ссылка не понравилась"
-YaCy Supporters<==Спонсоры YaCy<
->a list of home pages of yacy users<==>Список домашних страниц пользователей 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 authorization==Скрыть подсказки для неавторизованных пользователей
Show surftips to everyone==Разрешить подсказки всем
#-----------------------------
+"YaCy Surftips"=="YaCy Советы по просмотру"
+"bookmark"=="Закладки"
+"authentication required"=="требуется аутентификация"
+Surftips==Советы
+Surftips are switched off for users without authorization==Surftips отключены для пользователей без авторизации
+YaCy Supporters==YaCy Сторонники
+a list of home pages of yacy users==список домашних страниц пользователей yacy
#File: Automation_p.html
+Comment==Комментарий
+Status==Состояние
+hours==часов
#---------------------------
-: Peer Steering==: Управление узлом
The information that is presented on this page can also be retrieved as XML.==Информация представленная на этой странице, также может быть получена в XML-формате.
Click the API icon to see the XML.==Нажмите на иконку API для просмотра XML.
-To see a list of all APIs, please visit the ==Для просмотра списка всех API, пожалуйста, посетите
-API wiki page==страницу API в Wiki
->Process Scheduler<==>Планировщик<
-This table shows actions that had been issued on the YaCy interface==Эта таблица показывает, какие действия были выполнены с целью изменения настроек
-to change the configuration or to request crawl actions.== или подачи запроса на выполнение сканирования.
These recorded actions can be used to repeat specific actions and to send them==Эти сохранённые действия могут быть использованы, чтобы повторить некоторые и добавить их
to a scheduler for a periodic execution.==в планировщик для периодического выполнения.
->Recorded Actions<==>Запланированные действия<
-"next page"=="следующая страница"
-"previous page"=="предыдущая страница"
"next page"=="следующая страница"
"previous page"=="предыдущая страница"
- of #[of]#== по #[of]#
->Type==>Тип
->Comment==>Комментарий
-Call Count<==Количество вызовов<
Recording Date==Запись Дата
Last Exec Date==Дата последнего запуска Дата
Next Exec Date==Дата следующего запуска Дата
-#>URL<==>URL-адрес<
->Event Trigger<==>Триггер событий<
"clone"=="клонировать"
->Scheduler<==>Планировщик<
->no event<==>нет события<
->activate event<==>активировать событие<
->Scheduler<==>Планировщик<
->no repetition<==>не повторять<
->activate scheduler<==>активировать планировщик<
->off<==>выключить<
->run once<==>выполнить один раз<
->run regular<==>выполнять постоянно<
->after start-up<==>после запуска<
at 00:00h==в 00:00 ч.
at 01:00h==в 01:00 ч.
at 02:00h==в 02:00 ч.
@@ -3268,48 +3076,67 @@ at 23:00h==в 23:00 ч.
"Execute Selected Actions"=="Выполнить действия"
"Delete Selected Actions"=="Удалить действия"
"Delete all Actions which had been created before "=="Удалить все действия старше, чем"
-day<==день<
-days<==дней<
-week<==неделя<
-weeks<==недели<
-month<==месяц<
-months<==месяцев<
-year<==год<
-years<==года<
->Result of API execution==>Результат выполнения API
-#>Status<==>Состояние>
-#>URL<==>URL-адрес<
->minutes<==>минуты<
->hours<==>часы<
-#>days<==>дни<
-Scheduled actions are executed after the next execution date has arrived within a time frame of #[tfminutes]# minutes.==До выполнения запланированных действий осталось #[tfminutes]# минут.
#-----------------------------
+"API"=="API"
+"no previous page"=="нет предыдущей страницы"
+"no next page"=="нет следующей страницы"
+"Apply edited next execution dates"=="Применить измененные даты следующего исполнения"
+"yyyy/MM/dd HH:mm:ss"=="гггг/MM/dd ЧЧ:мм:сс"
+Process Automation==Автоматизация процессов
+This table shows actions that had been issued on the YaCy interface.==В этой таблице показаны действия, выполненные на интерфейсе YaCy.
+Recorded Actions==Записанные действия
+Type==Тип
+Call Count==Количество звонков
+Apply==Применять
+Event Trigger==Триггер события
+Scheduler==Планировщик
+URL==URL
+no event==нет события
+activate event==активировать событие
+off==выключенный
+run once==запустить один раз
+run regular==бегать регулярно
+after start-up==после запуска
+no repetition==без повторений
+activate scheduler==активировать планировщик
+minutes==минуты
+days==дни
+1 day==1 день
+2 days==2 дня
+3 days==3 дня
+4 days==4 дня
+5 days==5 дней
+6 days==6 дней
+1 week==1 неделя
+2 weeks==2 недели
+3 weeks==3 недели
+1 month==1 месяц
+2 months==2 месяца
+3 months==3 месяца
+6 months==6 месяцев
+9 months==9 месяцев
+1 year==1 год
+2 years==2 года
+Result of API execution==Результат выполнения API
#File: Table_RobotsTxt_p.html
#---------------------------
-Table Viewer==Просмотр таблицы
The information that is presented on this page can also be retrieved as XML.==Информация представленная на этой странице, также может быть получена в XML-формате.
Click the API icon to see the XML.==Нажмите на иконку API для просмотра XML.
-To see a list of all APIs, please visit the==Для просмотра списка всех API, пожалуйста, посетите
-API wiki page==страницу API в Wiki
->robots.txt table<==>Значения robots.txt<
#-----------------------------
### This Tables section is removed in current SVN Versions
+"robots.txt Table"=="Таблица robots.txt"
+"API"=="API"
+robots.txt table==таблица robots.txt
#File: Tables_p.html
#---------------------------
-Table Viewer==Просмотр таблиц
Table Administration==Управление таблицами базы данных
Table Selection==Таблицы
Select Table:==Выбрать таблицу:
-#"Show Table"=="Показать таблицу"
show max.==Показать максимум
->all<==>все<
-entries==записей
search rows for==Найти строки
"Search"=="Искать"
-Table Editor: showing table==Редактор таблицы: показать таблицу
-#PK==Первичный ключ
"Edit Selected Row"=="Изменить выбранную строку"
"Add a new Row"=="Добавить новую строку"
"Delete Selected Rows"=="Удалить выбранные строки"
@@ -3320,51 +3147,49 @@ Primary Key==Первичный ключ
#-----------------------------
+"Tables"=="Таблицы"
+all==все
+entries,==записи,
+reverse:==обеспечить регресс:
+PK==ПК
#File: terminal_p.html
+"WebStructurePicture"=="Изображение вэб-структуры"
#---------------------------
YaCy System Terminal Monitor==Системный монитор YaCy
-YaCy Peer Live Monitoring Terminal==Терминал мониторинга узла
-Search Form==Форма поиска
-Crawl Start==Запуск индексирования
-Status Page==Страница состояния
-Confirm Shutdown==Подтвердить выключение
-><Shutdown==><Выключить
Event Terminal==Терминал событий
Image Terminal==Терминал изображений
Domain Monitor==Монитор домена
-"Loading Processing software..."=="Процесс загрузки программы..."
This browser does not have a Java Plug-in.==Этот браузер не поддерживает плагин Java.
Get the latest Java Plug-in here.==последний Java-плагин доступен здесь.
Resource Monitor==Монитор ресурсов
Network Monitor==Монитор сети
#-----------------------------
+"YaCy"=="YaCy"
+"Download Java Plug-in"=="Загрузите плагин Java"
+"PerformanceGraph"=="График производительности"
+"The yacy Network"=="Сеть Yacy"
+<Search Form>==<Форма поиска>
+<Crawl Start>==<Начало сканирования>
+<Status Page>==<Страница состояния>
+<Shutdown>==<Выключение>
#File: Threaddump_p.html
#---------------------------
YaCy Debugging: Thread Dump==Oтладка YaCy: Дамп потока
-Threaddump<==Дамп потока<
"Single Threaddump"=="Простой дамп потока"
"Multiple Dump Statistic"=="Мульти-дамп потока"
-#"create Threaddump"=="Создать дамп потока"
#-----------------------------
+Threaddump==Треддамп
#File: User.html
#---------------------------
User Page==Страница пользователя
-You are not logged in. ==Вы не залогинены.
Username:==Имя пользователя:
-Password: Get URL Viewer<==>Просмотр URL-адреса<
"Show Metadata"=="Показать метаданные"
"Browse Host"=="Просмотр хоста"
->URL Metadata<==>Метаданные<
-#URL==URL
Search in Document:==Поиск в документе:
"Show Snippet"=="Показать фрагмент"
-Hash==Хэш
-(click this for full metadata)==(кликните для отображения полных метаданных)
In Metadata:==В метаданных:
In Cache:==В кэше:
-Word Count==Число слов
-Description==Описание
-Size==Размер
MimeType:==Тип файла:
-Collections==Хранилище
View as==Показать как
-#Original==Original
Plain Text==Простой текст
Parsed Text==Разобранный текст
Parsed Sentences==Разобранные предложения
@@ -3407,54 +3235,80 @@ Invalid URL==Неправильный URL-адрес
Unable to download resource content.==Невозможно загрузить содержимое ресурса.
Unable to parse resource content.==Не удалось разобрать содержимое ресурса.
Unsupported protocol.==Неподдерживаемый протокол.
->Original Content from Web<==>Оригинальное содержимое из вэб<
Parsed Content==Анализ контента
->Original from Web<==>Оригинал из вэб<
->Original from Cache<==>Оригинал из кэша<
->Parsed Tokens<==>Разобранные маркеры<
#-----------------------------
+"API"=="API"
+"action"=="действие"
+Get URL Viewer==Получить URL Viewer
+URL Metadata==URL Метаданные
+Hash:==Хэш:
+First Seen:==Первое посещение:
+Word Count:==Количество слов:
+Size:==Размер:
+Collections:==Коллекции:
+Original from Web==Оригинал из Интернета
+Original from Cache==Оригинал из кэша
+Schema Fields==Поля схемы
+Snippet==Фрагмент
+Headline==Заголовок
+Teaser Text==Текст тизера
+Original Content from Web==Оригинальный контент из Интернета
+dc:title==округ Колумбия: название
+dc:creator==округ Колумбия: создатель
+dc:subject==округ Колумбия: тема
+dc:description==округ Колумбия: описание
+dc:publisher==округ Колумбия: издатель
+dc:format==постоянный ток: формат
+dc:identifier==постоянный ток: идентификатор
+dc:source==постоянный ток: источник
+geo:lat & geo:long==гео: широта и amp; гео:длинный
+nr==номер
+type==тип
+name==имя
+link==связь
+text==текст
+rel==отн.
+Parsed Tokens==Разобранные токены
+CitationReport==Отчет о цитировании
#File: ViewLog_p.html
#---------------------------
Server Log==Лог сервера
-Lines==строк
reversed order==в обратном порядке
"refresh"=="Обновить"
#-----------------------------
+regex==регулярное выражение
+terms==условия
+Invalid regular expression filter.==Недопустимый фильтр регулярных выражений.
#File: ViewProfile.html
#---------------------------
Local Peer Profile:==Профиль локального узла:
-Remote Peer Profile==Профиль удалённого узла
Wrong access of this page==Неверный доступ на эту страницу
The requested peer is unknown or a potential peer.==Запрошенный узел неизвестный или потенциальный.
The profile can't be fetched.==Этот профиль не может быть выбран.
-The peer==Узел
-is not online.==не на связи.
-This is the Profile of==Профиль
->Name==>Имя
Nick Name==Прозвище
Homepage==Домашная страница
eMail==Электронный адрес
-#ICQ==ICQ
-#Jabber==Jabber
-#Yahoo!==Yahoo!
-#MSN==MSN
-#Skype==Skype
Comment==Комментарий
-View this profile as==Просмотр этого профиля как
-> or==> или
-#vCard==vCard
-You can edit your profile here==Вы можете изменить свой профиль по этой ссылке
#-----------------------------
+"vCard"=="визитная карточка"
+"rdf:foaf"=="рдф:пена"
+"Onlinestatus"=="Онлайнстатус"
+Remote Peer Profile:==Профиль удаленного узла:
+Name==Имя
+ICQ==ICQ
+Jabber==Джаббер
+Yahoo!==Yahoo!
+MSN==MSN
+Skype==Скайп
+vCard==визитная карточка
#File: Vocabulary_p.html
+Delete==Удалить
#---------------------------
-==
-YaCy '#[clientname]#': Federated Index==YaCy '#[clientname]#': Управление словарём
The information that is presented on this page can also be retrieved as XML==Информация представленная на этой странице, также может быть получена в виде XML.
Click the API icon to see the RDF Ontology definition for this vocabulary.==Нажмите на иконку API для просмотра определения онтологии RDF для этого словаря.
-To see a list of all APIs, please visit the API wiki page.==Для просмотра списка всех API, пожалуйста, посетите страницу API Wiki.
Vocabulary Administration==Управление словарём
Vocabularies can be used to produce a search navigation. A vocabulary must be created before content is indexed.==Словари могут использоваться при выполнении навигации по поиску. Словарь должен быть создан до индексации содержимого сайта.
The vocabulary is used to annotate the indexed content with a reference to the object that is denoted by the term of the vocabulary.==Словарь используется для комментирования проиндексированного содержимого с ссылкой на объект, которому присвоено значение из словаря.
@@ -3463,281 +3317,264 @@ Vocabulary Selection==Выбор словаря
Vocabulary Name==Название словаря
"View"=="Показать"
Vocabulary Production==Создание словаря
-this shall be a search facet (disable this for large vocabularies!)==сделать параметром поиска (не использовать для больших словарей!)
Empty Vocabulary==Пустой словарь
Auto-Discover==Авто-обнаружение
Import from a csv file==Импорт из csv-файла
-File Path==Путь к файлу
Column for Literals==Столбец литералов
no Synonyms==нет синонимов
Auto-Enrich with Synonyms from Stemming Library==авто-наполнение синонимами с помощью стемминга
Read Column==читать столбец
-first has index==сначала индекс
-if unused set==если не используется, то установить
Column for Object Link (optional)==Столец для ссылки на объект (необязательно)
Charset of Import File==Кодировка импортируемого файла
It is possible to produce a vocabulary out of the existing search index. This is done using a given 'objectspace' which you can enter as a URL Stub.==Возможно создание словаря из существующего индекса поиска. Это делается через использование заданного 'объекта', который может быть введён как законченная ссылка.
This stub is used to find all matching URLs. If the remaining path from the matching URLs then denotes a single file, the file name is used as vocabulary term.==Это используется для поиска всех совпадающих ссылок. Если оставшийся путь из совпадающих ссылок обозначает один файл, то имя файла используется в качестве значения словаря.
This works best with wikis. Try to use a wiki url as objectspace path.==Это лучше работает с Wiki . Попробуйте использовать wiki-ссылку в качестве объекта.
-#Vocabulary Name==Название словаря
Objectspace==Объект
-Discover Terms:==Параметры открытия:
-no auto-discovery (empty vocabulary)==ручное открытие (словарь пуст)
from file name==из названия файла
-from page title ==из заголовка страницы
from page title (split)==из заголовка страницы (разделённой)
from page author==из страницы автора
"Create"=="Создать"
Vocabulary Editor==Редактор словаря
-#This produces the following triples in the==Das produziert die folgenden Tripel im
-#>triplestore<==>triplestore<
-if a term or synonym matches in a document:==если значение или синоним совпадают в документе
-more Triples for linking into objectspace==больше трех ссылок на объект
->Modify<==>Изменить<
->Delete<==>Удалить<
->Literal<==>Буквенный<
->Synonyms<==>Синонимы<
->Object Link<==>Ссылка объекта<
->add<==>Добавить<
clear table (remove all terms)==Очистить таблицу (удалить все значения)
-delete vocabulary<==Удалить словарь<
"Submit"=="Сохранить"
#-----------------------------
+"API"=="API"
+"Uniform Resource Locator"=="Единый указатель ресурсов"
+"Standard CSV field delimiter"=="Стандартный разделитель полей CSV"
+Please provide a CSV file path or URL.==Укажите путь к файлу CSV или URL.
+from page title==из заголовка страницы
+File Path or URL==Путь к файлу или URL
+Start line==Стартовая линия
+(first has index 0)==(сначала имеет индекс 0)
+Synonyms==Синонимы
+(first has index 0, if unused set -1)==(сначала имеет индекс 0, если не используется, установите -1)
+Column separator==Разделитель столбцов
+Comma ','==Запятая ','
+Semicolon ';'==Точка с запятой ';'
+File==Файл
+[automatically generated, not stored, cannot be edited]==[генерируется автоматически, не сохраняется, не подлежит редактированию]
+Size==Размер
+Namespace==Пространство имен
+Predicate==Предикат
+Prefix==Префикс
+Is Facet?==Фасет?
+(If checked, this vocabulary is used for search facets. Not feasible for large vocabularies!)==(Если этот флажок установлен, этот словарь используется для аспектов поиска. Невозможно для больших словарей!)
+Match terms from==Условия соответствия от
+Cleartext==Открытый текст
+Linked data/Semantic web annotations==Связанные данные/Semantic веб-аннотации
+Modify==Изменить
+Literal==Буквальный
+Object Link==Ссылка на объект
+add==добавлять
+delete vocabulary==удалить словарь
#File: Crawler_p.html
+Count==Количество
+Index Size==Документов в индексе
#---------------------------
Click on this API button to see an XML with information about the crawler status==Нажмите для просмотра XML-файла с информацией о состоянии индексатора.
->Crawler<==>Индексатор<
->Queues<==>Очереди индексатора<
->Queue<==>Очередь<
-Pause/==Старт/
-Resume==Стоп
Crawler PPM==Скорость индексатора
Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db==Ошибка профиля. Пожалуйста, остановите YaCy, удалите файл DATA/PLASMADB/crawlProfiles0.db
and restart.==и перезапустите программу.
-Error:==Ошибка:
Application not yet initialized. Sorry. Please wait some seconds and repeat==Приложение не запущено. Подождите несколько секунд и повторите.
-ERROR: Crawl filter==ОШИБКА: фильтр индексирования
-does not match with==не совпадает с
-crawl root==корень индексирования
-Please try again with different==Попробуйте ещё раз с другим
-filter. ::==фильтром. ::
-Crawling of==Индексирование
-failed. Reason:==неудачно. Причина:
-Error with URL input==Ошибка с указанным URL
-Error with file input==Ошибка с указанным файлом
-started.==запущено.
-Please wait some seconds,==Пожалуйста, подождите несколько секунд,
-it may take some seconds until the first result appears there.==до получения первого результата.
-If you crawl any un-wanted pages,==Если вы проиндексировали нежелательные страницы,
-you can delete them here. == то вы можете удалить их здесь.
->Size==>Размер
->Progress<==>Ход работы<
-#Max==Максимально
"set"=="Сохранить"
-#Indexing
==Индексирование
-Loader==Загрузок
->Index Size<==>Размер индекса<
-Seg- ments==Сегменты
->Documents<==>Документы<
->solr search api<==>API базы Solr<
->Webgraph Edges<==>Вэб-графика<
-Citations (reverse link index)==Цитаты (ссылки обратного индекса)
+Seg- ments==Сег- менты
+Citations (reverse link index)==Цитаты (ссылки обратного индекса)
RWIs (P2P Chunks)==RWIs (P2P части)
Local Crawler==Локальная
Limit Crawler==Ограниченная
Remote Crawler==Удалённая
No-Load Crawler==Холостая
-Speed / PPM (Pages Per Minute)==Скорость (страницы в минуту)
+Speed / PPM (Pages Per Minute)==Скорость / PPM (страницы в минуту)
Database==База данных
Entries==Значения
-Segments==Сегменты
Indicator==Показатель
Level==Значение
Postprocessing Progress==Постобработка
Traffic (Crawler)==Трафик индексатора
->Load<==>Загрузка процессора<
pending:==запросы:
-idle==Ожидание
->Running Crawls==>Выполняется индексация
Name==Название сайта
Status==Состояние
Running==Выполняется
Terminate All==Прервать всё
-Confirm Termination of All Crawls==Подтвердите прерывание всех индексаторов
"Terminate"=="Прервать"
Crawled Pages==Проиндексированные страницы
-Title==Заголовок
#-----------------------------
+"API"=="API"
+"Pages Per Minute"=="Страниц в минуту"
+"Latency Factor"=="Коэффициент задержки"
+"Max same Host in queue"=="Макс. тот же хост в очереди"
+"Set PPM to the default minimum value"=="Установите для PPM минимальное значение по умолчанию."
+"Set PPM to the default maximum value"=="Установите для PPM максимальное значение по умолчанию."
+"show link structure"=="показать структуру ссылки"
+"hide graphic"=="скрыть графику"
+Crawler==Гусеничный
+(Please enable JavaScript to automatically update this page!)==(Пожалуйста, включите JavaScript, чтобы автоматически обновлять эту страницу!)
+Queues==Очереди
+Queue==Очередь
+Size==Размер
+Progress==Прогресс
+PPM==PPM
+LF==LF
+MH==MH
+MB==МБ
+Load==Нагрузка
+the request.==запрос.
+filter.==фильтр.
+it may take some seconds until the first result appears there.==появление первого результата может занять несколько секунд.
+No embedded local Solr index is connected. This is required to use a Solr query filter.==Ни один встроенный локальный индекс Solr не подключен. Это необходимо для использования фильтра запроса Solr.
+The Solr filter query syntax is not valid :==Недопустимый синтаксис запроса фильтра Solr:
+Could not parse the Solr filter query :==Не удалось проанализировать запрос фильтра Solr:
+You asked for remote indexing, but remote crawl results won't be added to the local index as the remote crawler is currently disabled on this peer.==Вы запросили удаленное индексирование, но результаты удаленного сканирования не будут добавлены в локальный индекс, поскольку удаленный искатель в настоящее время отключен на этом узле.
#File: WatchWebStructure_p.html
+Text==Текст
#---------------------------
Web Structure==Вэб-структура
The data that is visualized here can also be retrieved in a XML file, which lists the reference relation between the domains.==Эти данные, также могут быть получены в виде XML-файла с перекрёстными ссылками между доменами.
With a GET-property 'about' you get only reference relations about the host that you give in the argument field for 'about'.==Указав параметр "GET" 'about' вы получите только перекрёстные ссылки о хосте, которые указан в поле 'about'.
With a GET-property 'latest' you get a list of references that had been computed during the current run-time of YaCy, and with each next call only an update to the next list of references.==Указав параметр GET" 'latest' вы получите список ссылок вычисленных во время текущей работы YaCy, обновляющийся при каждом следующем вызове.
Click the API icon to see the XML file.==Нажмите на иконку API для просмотра XML-файла.
-To see a list of all APIs, please visit the==Для просмотра списка всех API, пожалуйста, посетите
-API wiki page==страницу API Wiki
->Host List<==>Список хостов<
->#[count]# outlinks==>#[count]# внешних ссылок
-host<==Хост<
-depth<==Глубина<
-nodes<==Узлы<
-time<==Время<
-size<==Размер<
->Background<==>Фон<
->Text<==>Текст<
->Line<==>Линия<
->Pivot Dot<==>Начальная точка<
->Other Dot<==>Другие точки<
->Dot-end<==>Пунктир<
->Color <==>Цвет <
"change"=="Изменить"
"WebStructurePicture"=="Изображение вэб-структуры"
#-----------------------------
+"API"=="API"
+"minus"=="минус"
+"plus"=="плюс"
+Host List==Список хостов
+host==хозяин
+depth==глубина
+nodes==узлы
+time==время
+size==размер
+Background==Фон
+Color==Цвет
+Line==Линия
+Pivot Dot==Поворотная точка
+Other Dot==Другая точка
+Dot-end==точка-конец
#File: Wiki.html
+Edit==Изменить
+Text:==Текст:
#---------------------------
-YaCyWiki page:==Wiki-страница YaCy:
-last edited by==Последнее изменение
-change date==Дата изменения
-Edit<==Изменить<
-only granted to admin==только разрешённые администратором
-Grant Write Access to==Разрешено вести запись
+Grant Write Access to==Разрешено вести запись
# !!! Do not translate the input buttons because that breaks the function to switch rights !!!
-#"all"=="всем"
-#"admin"=="администратору"
Start Page==Стартовая страница
Index==Индекс
Versions==Версии
Author:==Автор:
-#Text:==Текст:
You can use==Вы можете использовать
-Wiki Code here.==Wiki-код здесь.
-"edit"=="изменить"
"Submit"=="Сохранить"
"Preview"=="Предпросмотр"
"Discard"=="Отменить"
->Preview==>Предпросмотр
No changes have been submitted so far!==Изменения не были произведены!
Subject==Тема
Change Date==Дата изменения
Last Author==Последний автор
-IO Error reading wiki database:==Ошибка ввода-вывода при чтении базы данных Wiki:
-Select versions of page==Выберите версию страницы
Compare version from==Сравнить версию из
"Show"=="Показать"
with version from==с версией из
-"current"=="текущей"
"Compare"=="Сравнить"
-Return to==Вернуться к
Changes will be published as announcement on YaCyNews==Изменения будут опубликованы в виде сообщений YaCy.
#-----------------------------
+"all"=="все"
+"admin"=="администратор"
+(only granted to admin)==(предоставлено только администратору)
+Index -==Индекс -
+Preview==Предварительный просмотр
+Error==Ошибка
#File: WikiHelp.html
#---------------------------
-Wiki Help==Wiki-справка
Wiki-Code==Wiki-код
This table contains a short description of the tags that can be used in the Wiki and several other servlets==Эта таблица содержит короткое описание тэгов, которые могут быть использованы в wiki и в некоторых других сервлетах
of YaCy. For a more detailed description visit the==в YaCy. Если вам необходимо более детальное описание тэгов, то посетите
-#YaCy Wiki==YaCy Wiki
Code==Код
Description==Описание
-#=headline===заголовок
-These tags create headlines. If a page has three or more headlines, a table of content will be created automatically.==Эти тэги создают заголовки. Если на странице есть три и более заголовков, то оглавление будет создано автоматически.
-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),==Эти тэги создают подчёркнутый текст. Первая пара делает текст подчёркнутым (большинство браузеров отображают это курсивом),
+These tags create stressed texts. The first pair emphasizes the text (most browsers will display it in italics),==Эти тэги создают подчёркнутый текст. Первая пара делает текст подчёркнутым (большинство браузеров отображают это курсивом),
the second one emphasizes it more strongly (i.e. bold) and the last tags create a combination of both.==второе подчёркивание более выраженно (выделяется жирным) и последний тэг объединяет два предыдущих.
-Text will be displayed struck through.==Текст будет отображаться перечёркнутым.
-Text will be displayed underlined.==Текст будет отображаться подчёркнутым.
Lines will be indented. This tag is supposed to mark citations, but may as well be used for styling purposes.==Линии будут с отступом. Этот тэг служит для выделения цитат, но может быть использован для создания стиля страницы.
-#point==точка
These tags create a numbered list.==Эти тэги создают пронумерованный список.
-#something<==любой<
-#another thing==другой
-#and yet another==произвольный
-#something else==текст
These tags create an unnumbered list.==Эти тэги создают ненумерованный список.
-#word==слово
-#:definition==:определение
These tags create a definition list.==Эти тэги создают список определений.
This tag creates a horizontal line.==Этот тэг создаёт горизонтальную линию.
-3pagename==название страницы
-#description]]==описание]]
This tag creates links to other pages of the wiki.==Этот тэг создаёт ссылки на другие страницы Wiki.
This tag displays an image, it can be aligned left, right or center.==Этот тэг служит для показа изображения, которое может быть выровнено по правую сторону, по левую или по центру.
This tag displays a Youtube or Vimeo video with the id specified and fixed width 425 pixels and height 350 pixels.==Этот тэг служит для добавления видео с Youtube или Vimeo с заданным идентификатором и заданной шириной 425 пикселей и высотой 350 пикселей.
-i.e. use==Например
-to embed this video:==добавит это видео:
-These tags create a table, whereas the first marks the beginning of the table, the second starts==Эти тэги создают таблицу, где первые знаки начинают таблицу, вторые начинают
+These tags create a table, whereas the first marks the beginning of the table, the second starts==Эти тэги создают таблицу, где первые знаки начинают таблицу, вторые начинают
a new line, the third and fourth each create a new cell in the line. The last displayed tag==новую линию, третий и четвёртый создают новый отрезок линии. Последний показанный тэг
closes the table.==закрывает таблицу.
-#The escape tags will cause all tags in the text between the starting and the closing tag to not be treated as wiki-code.==Durch diesen Tag wird der Text, der zwischen den Klammern steht, nicht interpretiert und unformatiert als normaler Text ausgegeben.
A text between these tags will keep all the spaces and linebreaks in it. Great for ASCII-art and program code.==Текст между этими тэгами будет включать все пробелы и переносы. Хорошо подходит для программного кода и ASCII-графики.
If a line starts with a space, it will be displayed in a non-proportional font.==Если линия начинается с пробела, то это может быть отображено непропорциональным шрифтом.
-#url description==описание ссылки
This tag creates links to external websites.==Этот тэг создаёт ссылки на внешние сайты.
-#alt text==alt text
#-----------------------------
+These tags create headlines. If a page has three or more headlines, a table of content will be created automatically. Headlines of level 1 will be ignored in the table of content.==Эти теги создают заголовки. Если на странице три или более заголовков, оглавление будет создано автоматически. Заголовки уровня 1 будут игнорироваться в оглавлении.
+''text'' '''text''' '''''text'''''==''текст'' '''текст''' '''''текст'''''
+<s>text</s>==<s>текст</s>
+Text will be displayed==Текст будет отображаться
+struck through==прочеркнуто
+<u>text</u>==<u>текст</u>
+underlined==подчеркнутый
+text==текст
+;word 1:definition 1==;слово 1:определение 1
+;word 2:definition 2==;слово 2:определение 2
+;;word 3:definition 3==;;слово 3:определение 3
+;word 4:definition 4==;слово 4:определение 4
+[[pagename]]==[[имя страницы]]
+[[pagename|description]]==[[имя страницы|описание]]
+[url]==[URL-адрес]
+[url description]==[описание URL]
+[[Image:url]]==[[Изображение: URL-адрес]]
+[[Image:url|alt text]]==[[Изображение:url|замещающий текст]]
+[[Image:url|align|alt text]]==[[Изображение:url|выровнять|замещающий текст]]
+[[Youtube:id]]==[[Ютуб:идентификатор]]
+[[Vimeo:id]]==[[Вимео:id]]
+i.e. use [[Youtube:QZsWG4-7Qfk]] to embed this video: https://www.youtube.com/watch?v=QZsWG4-7Qfk==т. е. используйте [[Youtube:QZsWG4-7Qfk]] для вставки этого видео: https://www.youtube.com/watch?v=QZsWG4-7Qfk
+i.e. use [[Vimeo:32200946]] to embed this video: http://vimeo.com/32200946==то есть используйте [[Vimeo:32200946]] для вставки этого видео: http://vimeo.com/32200946
+||row 1, col 1||row 1, col 2==||строка 1, столбец 1||строка 1, столбец 2
+||row 2, col 1||row 2, col 2==||строка 2, столбец 1||строка 2, столбец 2
+<pre> text </pre>==<пред> текст </pre>
+text text text==text text text
#File: yacyinteractive.html
#---------------------------
YaCy Interactive Search==Интерактивный поиск
-This search result can also be retrieved as RSS/opensearch output.==Результат поиска может быть отправлен в RSS-ленту/OpenSearch.
-The query format is similar to==Формат запроса аналогичен
-SRU==SRU
Click the API icon to see an example call to the search rss API.==Нажмите на иконку API для просмотра примера вызова API поиска RSS-ленты.
-To see a list of all APIs, please visit the==Список всех API, смотрите на странице
-API wiki page==Wiki API
loading from local index...==загружается из локального индекса...
-parsing result...==анализ результата...
-e="Search"==e="Поиск"
"Search..."=="Введите поисковый запрос..."
#-----------------------------
+"Search"=="Поиск"
+onkeyup="xmlhttpPost(); return false;"==onkeyup="xmlhttpPost(); вернуть ложь;"
#File: yacysearch.html
+Show==Показать
#---------------------------
-Search Page==Страница поиска
-This search result can also be retrieved as RSS/opensearch output.==Результат поиска может быть отправлен в RSS-ленту/OpenSearch.
-The query format is similar to==Формат запроса аналогичен
-#SRU==SRU
-Click the API icon to see an example call to the search rss API.==Нажмите для просмотра примера вызова API поиска RSS-ленты.
-To see a list of all APIs, please visit the==Список всех API, смотрите на
-API wiki page==Wiki-странице API
-"search"=="Поиск"
-'Search'=='Поиск'
-"search again"=="Искать ещё"
-#Text==Текст
-Images==Изображения
-#Audio==Аудио
-Video==Видео
-Applications==Приложения
-more options==Расширенный поиск...
-Illegal URL mask:==Недопустимый формат URL:
-(not a valid regular expression), mask ignored.==(неправильное регулярное выражение), фильтр игнорируется.
-Illegal prefer mask:==Недопустимый предпочтительный фильтр:
Did you mean:==Возможно вы имели ввиду:
-The following words are stop-words and had been excluded from the search:==Следующие слова являются стоп-словами и были исключены из поиска:
No Results.==Нет результатов.
-length of search words must be at least 1 character==Длина искомого слова должно быть не менее 1 символов
-Searching the web with this peer is disabled for unauthorized users. Please==Поиск с помощью этого узла невозможен для неавторизованных пользователей. Пожалуйста,
->log in<==>войдите<
-as administrator to use the search function==под своей учётной записью, для использования поиска.
Location -- click on map to enlarge==Местоположение -- Нажмите на карту для увеличения
-Map (c) by <==Карта (с) <
-#>OpenStreetMap<==>OpenStreetMap<
-and contributors, CC-BY-SA==и участники, лицензия CC-BY-SA
->Media<==>Медиа<
-#>URL<==>URL-адрес<
-> of==> из
-> local,==> локально,
-remote from==удалённо из
-YaCy peers).==узлов YaCy).
->search<==>Поиск<
#-----------------------------
+"Refresh sorting. Depending on their rank, some results fetched in background may then appear on this page."=="Обновить сортировку. В зависимости от их ранга некоторые результаты, полученные в фоновом режиме, могут затем появиться на этой странице."
+"YaCy server is fetching results from available data sources."=="Сервер YaCy извлекает результаты из доступных источников данных."
+"Show anyway links to images that could not be rendered"=="В любом случае показывать ссылки на изображения, которые не удалось отобразить"
+"Hide links to images that could not be rendered"=="Скрыть ссылки на изображения, которые не удалось отобразить"
+"Play all"=="Воспроизвести все"
+"Stop all"=="Остановить все"
+Click the RSS icon to see this search result as RSS message stream.==Щелкните значок RSS, чтобы просмотреть этот результат поиска в виде потока сообщений RSS.
+Use the RSS search result format to add static searches to your RSS reader, if you use one.==Используйте формат результатов поиска RSS, чтобы добавить статические результаты поиска в программу чтения RSS, если вы ее используете.
+search==поиск
+No Results. (length of search words must be at least 1 character)==Нет результатов. (длина искомых слов должна быть не менее 1 символа)
+You are not allowed to search the web with this peer.==Вам не разрешено осуществлять поиск в Интернете с помощью этого узла.
+You have reached the maximum allowed number of accesses to this search page within ten minutes.==Вы достигли максимально разрешенного количества посещений этой страницы поиска в течение десяти минут.
+Please try again later or log in as administrator or as a user with extended search right.==Пожалуйста, повторите попытку позже или войдите в систему как администратор или пользователь с правом расширенного поиска.
+You have reached the maximum allowed number of accesses to this search page within one minute.==Вы достигли максимально разрешенного количества посещений этой страницы поиска в течение одной минуты.
+You have reached the maximum allowed number of accesses to this search page within three seconds.==Вы достигли максимально разрешенного количества посещений этой страницы поиска в течение трех секунд.
+Failed to render 0 thumbnail(s).==Не удалось отобразить 0 миниатюр.
+Hide==Скрывать
+Media==СМИ
+URL==URL
+Player==Игрок
#File: yacysearchitem.html
#---------------------------
"bookmark"=="Добавить в закладки"
@@ -3746,21 +3583,23 @@ YaCy peers).==узлов YaCy).
Pictures==Изображения
#-----------------------------
+"blacklist host"=="черный список хостов"
+"Show all"=="Показать все"
+"Last known modification date"=="Последняя известная дата модификации"
+"Browse index"=="Обзор индекса"
+"Raw ranking score value"=="Исходное значение рейтингового балла"
+Tags:==Теги:
+Metadata==Метаданные
+Parser==Парсер
+Citations==Цитаты
+Cache==Кэш
+View via proxy==Просмотр через прокси
+Not supported==Не поддерживается
#File: yacysearchtrailer.html
+Audio==Аудио
+Location==Расположение
+Video==Видео
#---------------------------
-show search results for "#[query]#" on map==Показать результат поиска "#[query]#" на карте
-Your search is done using peers in the YaCy P2P network.==Ваш поиск выполняется с использованием узлов P2P-сети YaCy.
-You can switch to 'Stealth Mode' which will switch off P2P, giving you full privacy. Expect less results then, because then only your own search index is used.==Вы можете перейти в режим Стелс, который отключит использование P2P, но обеспечит вашу полную анонимность. В этом случае результатов поиска будет меньше, потому что поиск будет осуществляться только в локальном индексе.
-Your search is done using only your own peer, locally.==Поиск выполняется только в вашем локальном индексе.
-You can switch to 'Peer-to-Peer Mode' which will cause that your search is done using the other peers in the YaCy network.==Вы можете перейти в режим P2P, который позволит производить поиск с использованием других узлов сети YaCy.
->Provider==>Домен
->Name Space==>Имя
->Author==>Автор
->Protocol==>Протокол
->Filetype==>Тип файла
->Language==>Язык
->Please support YaCy!==>Пожалуйста, поддержите YaCy!
->Peer-to-Peer<==>P2P<
Stealth Mode==Режим стелс
Privacy==Частный
Context Ranking==Фильтр по рейтингу
@@ -3770,136 +3609,124 @@ Images==Изображения
#-----------------------------
### Subdirectory api ###
+"global"=="глобальный"
+"local"=="местный"
+"Use the default ranking profile (customizable), ordering results by score."=="Используйте профиль ранжирования по умолчанию (настраиваемый), упорядочивая результаты по баллам."
+"Use the 'Date' ranking profile, ordering results by default on each document last modification date."=="Используйте профиль ранжирования «Дата», упорядочивая результаты по умолчанию по дате последнего изменения каждого документа."
+"text"=="текст"
+"image"=="изображение"
+"audio"=="аудио"
+"video"=="видео"
+"app"=="приложение"
+"false"=="ЛОЖЬ"
+"Extend media search results to pages including such medias (provides generally more results, but eventually less relevant)"=="Распространить результаты поиска мультимедиа на страницы, включающие такие медиа (обычно дает больше результатов, но в конечном итоге менее релевантно)"
+"true"=="истинный"
+"Strictly limit media search results to indexed documents matching exactly the desired content domain."=="Строго ограничьте результаты поиска мультимедиа индексированными документами, точно соответствующими желаемому домену контента."
+"earthsearchlogo"=="логотип поиска земли"
+"Sorted by descending counts"=="Сортировка по убыванию количества"
+"Sorted by ascending counts"=="Сортировка по возрастанию количества"
+"Sorted by descending labels"=="Сортировка по убыванию меток"
+"Sorted by ascending labels"=="Сортировка по возрастанию меток"
+"click to expand facet"=="нажмите, чтобы развернуть фасет"
+Peer-to-Peer==Пиринговый
+Stealth Mode==Скрытый режим
+Apps==Приложения
+Extended==Расширенный
+Strict==Строгий
#File: api/table_p.html
#---------------------------
-Table Viewer==Просмотр таблиц
-#>PK<==>Первичный ключ<
"Edit Table"=="Редактировать таблицу"
#-----------------------------
-#File: api/yacydoc.html
-#---------------------------
->Author<==>Автор<
->Description<==>Описание<
->Subject<==>Тема<
-#>Publisher<==>Издатель<
-#>Contributor<==>Beiträger<
->Date<==>Дата<
->Type<==>Тип<
->Identifier<==>Идентификатор<
->Language<==>Язык<
->Load Date<==>Дата загрузки<
->Referrer Identifier<==>Ссылающийся идентификатор<
-#>Referrer URL<==>Ссылка URL<
->Document size<==>Размер документа<
->Number of Words<==>Количество слов<
-#-----------------------------
-
-#File: env/templates/metas.template
-#---------------------------
-English, Englisch==Русский, Русский
-
-#-----------------------------
-
-### Subdirectory env/templates ###
+"Table"=="Стол"
+PK==ПК
#File: env/templates/header.template
+Search==Поиск
#---------------------------
- Administration== Управление
Toggle navigation==Переключение управления
-Administration »==Управление »
-Re-Start<==Перезапуск<
-Shutdown<==Выключение<
->Administration Tutorials<==>Инструкции<
-Download YaCy==Домашняя страница YaCy
-Community (Web Forums)==Форум
-Project Wiki==Wiki-сайт проекта
-Search Interface==Интерфейс поиска
About This Page==Ваш профиль
-YaCy Administration==Управление YaCy
-YaCy - Distributed Search Engine==YaCy - Система распределённого поиска
### SEARCH DESIGN ###
-Search Design==Интеграция поиска
-Search Integration==Интеграция поиска
Portal Configuration==Настройка интеграции поиска
Portal Design==Настройка внешнего вида
Ranking and Heuristics==Ранжирование и эвристика
### INDEX CONTROL ###
-Index Production==Индексирование
-Crawler / Harvester==Индексирование / Сканер сети
Crawler Monitor==Монитор индексирования
Index Administration==Управление индексом
Filter & Blacklists==Фильтр и чёрный список
Content Semantic==Семантический контент
Target Analysis==Анализ цели
-Process Scheduler==Планировщик
### MONITORING ###
Monitoring==Мониторинг
-YaCy Network==Сеть YaCy
Index Browser==Просмотр индекса
Network Access==Монитор доступа к серверу
-Computation==Лог сервера
->Terminal==>Терминал
->Bookmarks==>Закладки
### PEER CONTROL ###
-Peer Control==Управление узлом
-Admin Console==Консоль администратора
-Confirm Re-Start==Подтвердите перезапуск
-Re-Start==Перезапустить
-Confirm Shutdown==Подтвердите выключение
->Shutdown==>Выключить
-Project Wiki<==Wiki‐сайт проекта<
-Git Repository==Git-репозиторий
-Bugtracker==Багтрэкер
-Peer Statistics==Статистика YaCy
-#external==
->Search...<==>Поиск...<
"Search..."=="Поиск..."
### FIRST STEPS ###
-"You just started a YaCy peer!"=="Вы запустили узел YaCy!"
-"As a first-time-user you see only basic functions. Set a use case or name your peer to see more options. Start a first web crawl to see all monitoring options."=="Как начинающий пользователь, вы видите только основные функции. Выберите вариант использования или установите имя вашего узла для просмотра других опций. Запустите вэб-индексацию для просмотра функций мониторинга."
-"You did not yet start a web crawl!"=="Вы не запустили вэб-индексацию!"
-"You do not see all monitoring options here, because some belong to crawl result monitoring. Start a web crawl to see that!"=="Вы не видите всех функций мониторинга здесь, потому что нет результатов индексирования. Запустите вэб-индексацию!"
First Steps==Первые шаги
Use Case & Account==Учётные записи и варианты использования
-Load Web Pages, Crawler==Индексирование сайта
RAM/Disk Usage & Updates==Использование памяти и обновление системы
System Status==Монитор производительности
Peer-to-Peer Network==Сеть YaCy
-Advanced Crawler==Расширенная индексация
-Index Export/Import==Импорт контента
System Administration==Настройки системы
-Configuration==Конфигурация
Production==Индексирование
->Administration<==>Управление узлом<
Search Portal Integration==Интеграция поиска
#-----------------------------
+"YaCy"=="YaCy"
+"Restart"=="Перезапуск"
+"Shutdown"=="Неисправность"
+"Community"=="Сообщество"
+"Help"=="Помощь"
+"Chat"=="Чат"
+"Search"=="Поиск"
+Administration==Администрация
+Re-Start==Перезапуск
+Shutdown==Неисправность
+Forum==Форум
+Help==Помощь
+JavaScript information==JavaScript информация
+external YaCy Tutorials==external YaCy Учебные пособия
+external Download YaCy==external Загрузить YaCy
+external Community (Web Forums)==external Сообщество (веб-форумы)
+external Git Repository==external Репозиторий Git
+Sponsor==Спонсор
+YaCy is free software, so we need the help of many to support the development. You can help by joining a sponsoring plan:==YaCy — бесплатное программное обеспечение, поэтому для поддержки разработки нам нужна помощь многих людей. Вы можете помочь, присоединившись к спонсорскому плану:
+externalbecome a Github Sponsor==externalстаньте спонсором Github
+externalbecome a YaCy Patreon==externalстаньте YaCy Patreon
+Please help! We need financial help to move on with the development!==Пожалуйста, помогите! Нам нужна финансовая помощь, чтобы двигаться дальше в развитии!
+Chat==Чат
+Grab a whole site==Захватить целый сайт
+Crawler==Гусеничный
+AI Lab==Лаборатория искусственного интеллекта
+Automation==Автоматизация
+YaCy Packs & Import/Export==YaCy Пакеты и усилители; Импорт/Export
#File: env/templates/simpleheader.template
#---------------------------
Toggle navigation==Переключение управления
-Search Interfaces==Интерфейсы поиска
Administration »==Управление »
->Web Search<==>Вэб‐поиск<
->File Search<==>Поиск файлов<
->Compare Search<==>Сравнить поиск<
->Index Browser<==>Просмотр хостов<
->URL Viewer<==>Просмотр ссылок<
Example Calls to the Search API:==Примеры запросов в API поиска:
-Solr Default Core==Параметры ядра Solr
-Solr Webgraph Core==Параметры графики Solr
-Google Appliance API==Параметры API Google
->Administration Tutorials<==>Инструкции<
-Download YaCy==Домашняя страница YaCy
-Community (Web Forums)==Форум
-Project Wiki==Wiki-сайт проекта
-Search Interface==Интерфейс поиска
About This Page==Ваш профиль
-#external==
-Bugtracker==Багтрэкер
-Git Repository==Git-репозиторий
-Peer Statistics==Статистика YaCy
#-----------------------------
+"Help"=="Помощь"
+Search Interfaces==Поисковые интерфейсы
+Web Search==Веб-поиск
+File Search==Поиск файлов
+Compare Search==Сравнить поиск
+Chat==Чат
+URL Viewer==URL Просмотрщик
+API YaCy JSON==API YaCy JSON
+API YaCy RSS/Opensearch==API YaCy RSS/Opensearch
+API Solr RSS/Opensearch==API Solr RSS/Opensearch
+API Solr Default Core / JSON==API Solr Ядро по умолчанию / JSON
+API Solr Default Core / XML==API Solr Ядро по умолчанию / XML
+API Solr Webgraph Core / XML==API Solr Ядро веб-графа / XML
+YaCy Tutorials==YaCy Учебники
+JavaScript information==JavaScript информация
+external Download YaCy==external Загрузить YaCy
+external Community (Web Forums)==external Сообщество (веб-форумы)
+external Git Repository==external Репозиторий Git
+external Bugtracker==external Отслеживание ошибок
#File: env/templates/submenuAccessTracker.template
#---------------------------
Access Tracker==Монитор доступа к серверу
@@ -3907,36 +3734,26 @@ Server Access==Запросы к серверу
Access Grid==Обзор соединений
Incoming Requests Overview==Обзор входящих запросов
Incoming Requests Details==Подробности входящих запросов
-All Connections<==Все соединения<
-Local Search<==Локальный поиск<
Log==Лог
Host Tracker==Хост-трекер
-Remote Search<==Удалённый поиск<
Cookie Menu==Монитор куки
Incoming Cookies==Входящие куки
Outgoing Cookies==Исходящие куки
#-----------------------------
-#File: env/templates/submenuIndexImport.template
-#-----------------------------
-Index Export/Import==Импорт контента
-External Datasets==Импорт из внешних источников
->Database Reader<==>Обозреватель баз данных<
-RSS Feed Importer==Импорт RSS-лент
-OAI-PMH Importer==Импорт данных OAI-PMH
-Database Reader for phpBB3 Forums==Обозреватель баз данных phpBB3‐форумов
-Dump Reader for MediaWiki dumps==Обозреватель дампов MediaWiki
-#-----------------------------
-
+All Connections==Все соединения
+Local Search==Локальный поиск
+Access Rate Limitations==Ограничения скорости доступа
+Remote Search==Удаленный поиск
#File: env/templates/submenuMaintenance.template
#---------------------------
RAM/Disk Usage & Updates==Использование памяти и обновление системы
->Performance<==>Производительность<
Web Cache==Вэб-кэш
Download System Update==Обновление системы
#---------------------------
+Performance==Производительность
#File: env/templates/submenuBlacklist.template
#---------------------------
Filter & Blacklists==Фильтр и чёрный список
@@ -3944,34 +3761,35 @@ Blacklist Administration==Управление чёрным списком
Blacklist Cleaner==Очистка черного списка
Blacklist Test==Тест черного списка
Import/Export==Импорт/Экспорт
-Content Control==Управление контентом
#-----------------------------
#File: env/templates/submenuComputation.template
+Incoming News==Входящие сообщения
+Memory Usage==Использование памяти
+Outgoing News==Исходящие сообщения
+Overview==Обзор
+Processed News==Обработанные сообщения
+Published News==Опубликованные сообщения
+Server Log==Лог сервера
+Status==Состояние
#---------------------------
->Application Status<==>Монитор производительности<
->Status<==>Состояние<
System==Система
Thread Dump==Дамп потока
## Processes Submenu
->Processes<==>Процессы<
->Server Log<==>Лог сервера<
->Concurrent Indexing<==>Параллельное индексирование<
->Memory Usage<==>Использование памяти<
->Search Sequence<==>Последовательный поиск<
## Messages Submenu
->Messages<==>Сообщения<
->Overview<==>Обзор<
->Incoming News<==>Входящие сообщения<
->Processed News<==>Обработанные сообщения<
->Outgoing News<==>Исходящие сообщения<
->Published News<==>Опубликованные сообщения<
## Community Data Submenu
->Community Data<==>Ресурсы сообщества<
->Surftips<==>Подсказки<
->Local Peer Wiki<==>Wiki локального узла<
#-----------------------------
+Application Status==Статус приложения
+Processes==Процессы
+Log Reports==Журнал отчетов
+Concurrent Indexing==Параллельная индексация
+Search Sequence==Последовательность поиска
+Messages==Сообщения
+Community Data==Данные сообщества
+Surftips==Советы
+Local Peer Wiki==Локальный пир вики
+Bookmarks==Закладки
#File: env/templates/submenuCrawler.template
#-----------------------------
Load Web Pages==Индексирование сайта
@@ -3983,24 +3801,21 @@ Parser Configuration==Конфигурация парсера
#File: env/templates/submenuConfig.template
#---------------------------
System Administration==Настройки системы
->Status==>Состояние
-Network Configuration==Настройка сети
Advanced Settings==Настройки системы
-Local robots.txt==Локальный robots.txt
Advanced Properties==Расширенные настройки
->Thread Dump<==>Дамп потока<
Viewer and administration for database tables==Просмотр и управление таблицами базы данных
Performance Settings of Busy Queues==Настройки производительности
#-----------------------------
+UI Translations==Переводы пользовательского интерфейса
#File: env/templates/submenuDesign.template
#---------------------------
->Appearance<==>Внешний вид<
->Language<==>Язык<
Search Page Layout==Макет страницы поиска
Design==Настройка поиска
#-----------------------------
+Appearance==Появление
+Language==Язык
#File: env/templates/submenuPortalConfiguration.template
#---------------------------
Search Box Anywhere==Окно поиска
@@ -4014,49 +3829,48 @@ Portal Configuration==Интеграция поиска
#---------------------------
Use Case & Accounts==Учётные записи и варианты использования YaCy
Basic Configuration==Основные настройки
->Accounts<==>Учётные записи<
Network Configuration==Настройка сети
#---------------------------
+Accounts==Счета
#File: env/templates/submenuRanking.template
#---------------------------
Solr Ranking Config==Конфигурация Solr
RWI Ranking Config==Конфигурация RWI
->Heuristics<==>Эвристика<
Ranking and Heuristics==Ранжирование и эвристика
#-----------------------------
+Heuristics==Эвристика
#File: env/templates/submenuCrawlMonitor.template
+Overview==Обзор
#---------------------------
-Overview==Обзор
-Receipts==Удалённое индексирование
-Queries==Запросы
-DHT Transfer==DHT-передача
-Proxy Use==Использование прокси
-Local Crawling==Локальное индексирование
-Global Crawling==Глобальное индексирование
-Pack Import==Замещающий импорт
Crawl Results==Результаты индексирования
Processing Monitor==Монитор процессов
-Crawler Queues==Очереди индексирования
-Web==
-Crawler<==Индексатор<
-Loader<==Загружаемые ссылки<
Rejected URLs==Отклонённые ссылки
->Queues<==>Очереди<
-Local<==Локальная<
Global==Глобальная
Remote==Удалённая
No-Load==Холостая
Crawler Steering==Управление индексатором
-Scheduler and Profile Editor<==Планировщик и редактор профиля<
robots.txt Monitor==Монитор robots.txt
#-----------------------------
+Web Crawler==Веб-сканер
+Crawler==Гусеничный
+Loader==Погрузчик
+Queues==Очереди
+Local==Местный
+Scheduler and Profile Editor==Планировщик и редактор профилей
+(1) Receipts==(1) Квитанции
+(2) Queries==(2) Запросы
+(3) DHT Transfer==(3) DHT Передача
+(4) Proxy Use==(4) Использование прокси
+(5) Local Crawling==(5) Локальное сканирование
+(6) Global Crawling==(6) Глобальное сканирование
+(7) Pack Import==(7) Импорт пакетов
#File: env/templates/submenuIndexControl.template
#---------------------------
Index Administration==Управление индексом
@@ -4066,79 +3880,48 @@ Index Sources & Targets==Индекс источников и целей
Solr Schema Editor==Редактор схемы Solr
Field Re-Indexing==Переиндексация
Reverse Word Index==Обратный индекс слов
-Index Cleaner==Очистка индекса
Content Analysis==Анализ содержимого
-Web Cache==Вэб-кэш
-Parser Configuration==Конфигурация парсера
#-----------------------------
#File: env/templates/submenuIndexCreate.template
#---------------------------
-Web Crawler Control==Управление вэб-индексатором
-Start a Web Crawl==Запуск вэб-индексатора
-#Crawl Start==Запуск индексирования
-Crawl Profile Editor==Изменение профиля индексатора
-Crawler Queues==Очереди индексатора
-Indexing<==Индексирование<
-Full Site Crawl/ Sitemap Loader==Индексирование сайта/Загрузка карты сайта
-Loader<==Загрузчик<
-URLs to be processed==выполняются URL-адреса
-Processing Queues==Состояние очередей
-Local<==Локальный<
-Global<==Глобальный<
-#Remote<==Удалённый<
-#Overhang<==Überhang<
-Media Crawl Queues==Очереди индексирования медиа-файлов
->Images==>Картинки
->Movies==>Фильмы
->Music==>Музыка
#--- New menu items ---
-Index Creation==Создание индекса
-Crawler/Spider<==Индексатор<
Crawl Start (Expert)==Расширенное индексирование
Network Scanner==Сканер сети
-#>Intranet Scanner<==>Сканер Интранет<
Crawling of MediaWikis==Индексирование MediaWiki
->Crawling of phpBB3 Forums<==>Индексирование phpBB3‐форумов<
-Content Import<==Импорт контента<
-Network Harvesting<==Сеть индексирования<
Remote Crawling==Удалённое индексирование
Scraping Proxy==Кэширующий прокси
->Database Reader<==>Обозреватель баз данных<
-#for phpBB3 Forums==для форумов phpBB3
Advanced Crawler==Расширенная индексация
#-----------------------------
+Crawler/Spider==Краулер/Spider
+Crawling of phpBB3 Forums==Сканирование форумов phpBB3
+Network Harvesting==Сетевой сбор данных
+Autocrawl==Автосканирование
#File: env/templates/submenuSemantic.template
#---------------------------
Content Semantic==Семантический контент
# Subemenu: Automated Annotation
->Automated Annotation<==>Автоматическое комментирование<
Auto-Annotation Vocabulary Editor==Редактор словаря авто-комментирования
Knowledge Loader==Загрузка словарей
# Submenu Augmented Content
->Augmented Content<==>Расширенный контент<
-Augmented Browsing==Расширенный просмотр
-Filters and Modules==Фильтры и модули
-Augmented Parsing==Расширенный анализ
#-----------------------------
+Automated Annotation==Автоматизированные аннотации
#File: env/templates/submenuTargetAnalysis.template
#---------------------------
Target Analysis==Анализ цели
-Robots.txt Database==База данных Robots.txt
Mass Crawl Check==Массовая проверка индексирования
Regex Test==Тест регулярного выражения
#-----------------------------
#File: env/templates/submenuPublication.template
+Blog==Блогу
#---------------------------
Publication==Публикации
-#Wiki==Wiki
-#Blog==Блог
-File Hosting==Хостинг файлов
#-----------------------------
+Wiki==Вики
#File: env/templates/submenuWebStructure.template
#---------------------------
Web Visualization==Просмотр индекса
@@ -4148,13 +3931,13 @@ Index Browser==Просмотр хостов
#-----------------------------
#File: proxymsg/authfail.inc
+Username==Имя пользователя
#---------------------------
Your Username/Password is wrong.==Логин и/или пароль неверный.
-Username==Логин
-Password==Пароль
"login"=="логин"
#-----------------------------
+Password==Пароль
#File: proxymsg/error.html
#---------------------------
YaCy: Error Message==YaCy: Сообщение об ошибке
@@ -4163,45 +3946,914 @@ unspecified error==неизвестная ошибка
not-yet-assigned error==пока-не-назначенная ошибка
You don't have an active internet connection. Please go online.==У вас нет активного соединения с интернет. Пожалуйста, подключитесь к интернету.
Could not load resource. The file is not available.==Не могу загрузить ресурс. Файл недоступен.
-Exception occurred==Произошло исключение
-Generated #[date]# by==Сгенерировано: #[date]#
#-----------------------------
+YaCy==YaCy
#File: proxymsg/proxylimits.inc
#---------------------------
Your Account is disabled for surfing.==Вашему аккаунту запрещен просмотр.
-Your Timelimit (#[timelimit]# Minutes per Day) is reached.==Ваш временной лимит (#[timelimit]# минут в день) исчерпан.
#-----------------------------
#File: proxymsg/unknownHost.inc
#---------------------------
-The server==Сервер
-could not be found.==не найден.
Did you mean:==Вы имели ввиду:
#-----------------------------
-#File: js/Crawler.js
+#File: api/citation.html
#---------------------------
-"Continue this queue"=="Запустить эту очередь"
-"Pause this queue"=="Приостановить эту очередь"
+List of other web pages with citations==Список других вэб-страниц с цитатами
#-----------------------------
-#File: js/yacyinteractive.js
+
+
+# EOF
+
+Similar documents from different hosts:==Похожие документы с разных хостов:
+List of==Список
+Cited==Цитируется
+filter cited sentences==фильтровать цитируемые предложения
+filter off==отфильтровать
+#File: Autocrawl_p.html
#---------------------------
->total results==>всего результатов
- topwords:== Topwörter:
->Name==>Название
->Size==>Размер
->Date==>Дата
+"Save"=="Сохранить"
#-----------------------------
-#File: api/citation.html
+Autocrawler==Автокраулер
+Autocrawler automatically selects and adds tasks to the local crawl queue. This will work best when there are already quite a few domains in the index.==Autocrawler автоматически выбирает и добавляет задачи в локальную очередь сканирования. Лучше всего это будет работать, когда в индексе уже довольно много доменов.
+Autocralwer Configuration==Конфигурация автокравера
+You need to restart for some settings to be applied==Необходимо перезагрузить компьютер, чтобы некоторые настройки вступили в силу.
+Enable Autocrawler:==Включить автокраулер:
+Deep crawl every Nth document:==Глубокое сканирование каждого N-го документа:
+Warning: if this is bigger than "Rows to fetch" only shallow crawls will run.==Внимание: если это значение больше, чем «Строки для выборки», будет выполняться только поверхностное сканирование.
+Rows to fetch at once:==Строки для одновременной выборки:
+Recrawl only older than # days:==Повторное сканирование только старше # дня:
+Get hosts by query:==Получить хосты по запросу:
+Can be any valid Solr query.==Это может быть любой допустимый запрос Solr.
+Shallow crawl depth (0 to 2):==Малая глубина сканирования (от 0 до 2):
+Deep crawl depth (1 to 5):==Глубина глубокого сканирования (от 1 до 5):
+Index text:==Индексный текст:
+Index media:==Индексные СМИ:
+#File: ConfigAccountList_p.html
#---------------------------
-Document Citations for==Цитаты документа для
-List of Sentences in==Список предложений в
-List of other web pages with citations==Список других вэб-страниц с цитатами
+Address==Адрес
+First name==Имя
+Last name==Фамилия
+Time==Дата и время
+User Accounts==Учётные записи пользователей
#-----------------------------
+User List==Список пользователей
+User==Пользователь
+Last Access==Последний доступ
+Rights==Права
+Traffic==Трафик
+#File: ConfigUser_p.html
+#---------------------------
+Address==Адрес
+First name==Имя
+Generic error.==Общая ошибка.
+Last name==Фамилия
+Passwords do not match.==Пароли не совпадают.
+Repeat password==Повторите пароль
+Time used==Время использования
+Timelimit==Лимит времени
+Username==Имя пользователя
+Username too short. Username must be >= 4 Characters.==Имя пользователя слишком короткое. Имя пользователя должно быть не меньше 4 символов.
+#-----------------------------
+"Save User"=="Сохранить пользователя"
+"Delete User"=="Удалить пользователя"
+"ConfigAccountList_p.html"=="ConfigAccountList_p.html"
+User Account Editor==Редактор учетных записей пользователей
+Username already used (not allowed).==Имя пользователя уже использовано (не разрешено).
+Password==Пароль
+Rights:==Права:
+back to user list==вернуться к списку пользователей
+#File: CrawlMonitorRemoteStart.html
+#---------------------------
+Depth==Глубина
+no==нет
+yes==да
+#-----------------------------
-# EOF
+Recently started remote crawls in progress==Выполняется недавно начатое удаленное сканирование
+Remote crawl start points, crawl is ongoing==Точки начала удаленного сканирования, сканирование продолжается
+Start Time==Время начала
+Peer Name==Имя узла
+Start URL==Запустить URL
+Intention/Description==Намерение/Description
+Accept '?' URLs==Принимать '?' URL-адреса
+Remote crawl start points, finished:==Начальные точки удаленного сканирования, завершено:
+#File: IndexImportJsonList_p.html
+#---------------------------
+File:==Файл:
+Import Process==Выполнение импорта
+No import thread is running, you can start a new thread here==В настоящее время импорт не производится, вы можете запустить импорт на этой странице.
+Remaining Time:==Осталось времени:
+Running Time:==Прошло времени:
+Speed:==Скорость:
+Thread:==Поток:
+#-----------------------------
+
+"Import JsonList File"=="Импортировать файл JsonList"
+"Stop"=="Останавливаться"
+JSON List Index Dump File Import==JSON Импорт файла дампа индекса списка
+JsonList File Selection: select an jsonlist file (which may be gz compressed)==Выбор файла JsonList: выберите файл jsonlist (который может быть сжат gz).
+or==или
+Url:==URL:
+JsonList File:==Файл JsonList:
+Processed:==Выполнено:
+#File: IndexImportWarc_p.html
+#---------------------------
+File:==Файл:
+Import Process==Выполнение импорта
+No import thread is running, you can start a new thread here==В настоящее время импорт не производится, вы можете запустить импорт на этой странице.
+Remaining Time:==Осталось времени:
+Running Time:==Прошло времени:
+Speed:==Скорость:
+Thread:==Поток:
+#-----------------------------
+
+"Import Warc File"=="Импортировать файл Warc"
+"Stop"=="Останавливаться"
+Web Archive File Import==Импорт файлов веб-архива
+Warc File Selection: select an warc file (which may be gz compressed)==Выбор файла Warc: выберите файл Warc (который может быть сжат gz).
+You can download warc archives for example here==Скачать архивы warc можно например здесь
+or==или
+Url:==URL:
+Collection:==Коллекция:
+Warc File:==Варк-файл:
+Processed:==Выполнено:
+#File: IndexImportZim_p.html
+#---------------------------
+File:==Файл:
+Import Process==Выполнение импорта
+No import thread is running, you can start a new thread here==В настоящее время импорт не производится, вы можете запустить импорт на этой странице.
+Remaining Time:==Осталось времени:
+Running Time:==Прошло времени:
+Speed:==Скорость:
+Thread:==Поток:
+#-----------------------------
+
+"Import ZIM File"=="Импортировать ZIM-файл"
+"Stop"=="Останавливаться"
+ZIM File Import==Импорт ZIM-файла
+Zim File Selection: select a '.zim' file==Выбор файла Zim: выберите файл «.zim».
+You can download ZIM files for example here==Скачать ZIM-файлы можно, например, здесь.
+Collection:==Коллекция:
+ZIM File:==ZIM-файл:
+Processed:==Выполнено:
+#File: Messages_p.html
+#---------------------------
+Subject==Тема
+Subject:==Тема:
+#-----------------------------
+
+"RSS"=="RSS"
+"Compose"=="Сочинить"
+Messages==Сообщения
+Compose Message==Написать сообщение
+Send message to peer==Отправить сообщение партнеру
+Date==Дата
+From==От
+To==К
+Action==Действие
+view==вид
+reply==отвечать
+delete==удалить
+From:==От:
+To:==К:
+Date:==Дата:
+Message:==Сообщение:
+Action:==Действие:
+inbox==входящие
+#File: TransNews_p.html
+#---------------------------
+"negative vote"=="Не понравилось"
+"positive vote"=="Понравилось"
+File:==Файл:
+Originator==Инициатор
+#-----------------------------
+
+"Publish"=="Публиковать"
+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 its own local translation.==Удаленный узел может проголосовать за ваш перевод и добавить его к своему локальному переводу.
+English:==Английский:
+existing==существующий
+Translation:==Перевод:
+Vote on this translation. If you vote positive the translation is added to your local translation list.==Проголосуйте за этот перевод. Если вы проголосуете положительно, перевод будет добавлен в ваш местный список переводов.
+#File: api/share.html
+#---------------------------
+File Share==Общим файлам
+#-----------------------------
+
+"Submit"=="Сохранить"
+This form can be used to share a (index) file==Эту форму можно использовать для обмена (индексным) файлом.
+Files to process:==Файлы для обработки:
+Result for the recently submitted file(s). You can also submit the same form using the servlet share.json to get push confirmations in json format.==Результат для недавно отправленных файлов. Вы также можете отправить ту же форму с помощью сервлета share.json для получения push-подтверждений в формате json.
+successall==успех
+false==ЛОЖЬ
+true==истинный
+countsuccess==подсчет успеха
+countfail==считать неудачно
+Item==Элемент
+URL==URL
+Success==Успех
+Message==Сообщение
+fail==неудача
+ok==хорошо
+If you want to push again files, use this form to pre-define a number of upload forms:==Если вы хотите повторно отправить файлы, используйте эту форму, чтобы заранее определить несколько форм загрузки:
+#File: api/yacydoc.html
+#---------------------------
+Description==Описание
+Location==Расположение
+Subject==Тема
+#-----------------------------
+
+"API"=="API"
+This search result can also be retrieved as XML.==Этот результат поиска также можно получить как XML.
+Click the API icon to see an example call to the search rss API.==Нажмите на иконку для просмотра API примера поиска по rss-ленте.
+Title==Заголовок
+Author==Автор
+Publisher==Издатель
+Contributor==Автор
+Date==Дата
+Type==Тип
+YaCy Identifier==YaCy Идентификатор
+Identifier==Идентификатор
+Language==Язык
+Collections==Коллекции
+Load Date==Дата загрузки
+Referrer Identifier==Идентификатор реферера
+Referrer URL==Реферер URL
+Document size==Размер документа
+Number of Words==Количество слов
+Inbound Links (anchors)==Входящие ссылки (якоря)
+Outbound Links (anchors)==Исходящие ссылки (якоря)
+Incoming Links (citation)==Входящие ссылки (цитата)
+#File: env/templates/simpleSearchHeader.template
+#---------------------------
+About This Page==Ваш профиль
+Administration »==Управление »
+Example Calls to the Search API:==Примеры запросов в API поиска:
+Toggle navigation==Переключение управления
+#-----------------------------
+
+"Log in to use extended search features"=="Войдите, чтобы использовать расширенные функции поиска."
+"Search Interfaces"=="Поиск интерфейсов"
+"Help"=="Помощь"
+"Administration"=="Администрация"
+Log in==Войти
+Search Interfaces==Поисковые интерфейсы
+==
+Web Search==Веб-поиск
+File Search==Поиск файлов
+Compare Search==Сравнить поиск
+Chat==Чат
+URL Viewer==URL Просмотрщик
+API YaCy JSON==API YaCy JSON
+API YaCy RSS/Opensearch==API YaCy RSS/Opensearch
+API Solr RSS/Opensearch==API Solr RSS/Opensearch
+API Solr Default Core / JSON==API Solr Ядро по умолчанию / JSON
+API Solr Default Core / XML==API Solr Ядро по умолчанию / XML
+API Solr Webgraph Core / XML==API Solr Ядро веб-графа / XML
+YaCy Tutorials==YaCy Учебники
+JavaScript information==JavaScript информация
+external Download YaCy==external Загрузить YaCy
+external Community (Web Forums)==external Сообщество (веб-форумы)
+external Git Repository==external Репозиторий Git
+external Bugtracker==external Отслеживание ошибок
+#File: processing/domaingraph/applet/index.html
+#---------------------------
+Get the latest Java Plug-in here.==последний Java-плагин доступен здесь.
+This browser does not have a Java Plug-in.==Этот браузер не поддерживает плагин Java.
+#-----------------------------
+
+"Download Java Plug-in"=="Загрузите плагин Java"
+"Processing.org"=="Обработка.орг"
+domaingraph : Built with Processing==доменный график: построен с обработкой
+Built with Processing==Построено с обработкой
+#File: yacysearch_location.html
+#---------------------------
+The information that is presented on this page can also be retrieved as XML==Информация представленная на этой странице, также может быть получена в виде XML.
+"API"=="API"
+"search"=="поиск"
+Click the API icon to see the XML.==Нажмите на иконку API, чтобы увидеть XML.
+search==поиск
+#-----------------------------
+
+#File: AILab.html
+#---------------------------
+"Inference engine setup"=="Настройка механизма вывода"
+"Model assignment preview"=="Предварительный просмотр назначения модели"
+"Index creation"=="Создание индекса"
+"RAG configuration"=="Конфигурация RAG"
+"Tools configuration"=="Настройка инструментов"
+"Log report monitor"=="Монитор отчетов журнала"
+"Shield definition"=="Настройка защиты"
+AI Lab Build System==Система сборки лаборатории искусственного интеллекта
+Craft your AI toolkit==Создайте свой набор инструментов AI
+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.==Выполните задачи ниже, чтобы включить AI-помощника YaCy: подключите механизм вывода, загрузите рабочие модели, свяжите их с индексом, затем настройте RAG и защиту.
+0 / 6 unlocked==0 / 6 разблокировано
+Mandatory==Обязательный
+Needs setup==Требуется настройка
+Bind an inference engine==Подключить механизм вывода
+Pick your host (Ollama, LM Studio, OpenAI-compatible) and give YaCy a place to send prompts.==Выберите хост (Ollama, LM Studio или OpenAI-совместимый) и укажите YaCy, куда отправлять запросы.
+Open engine setup==Открыть настройку механизма
+Set hoststub, API keys, and defaults to unlock downloads.==Укажите hoststub, API-ключи и значения по умолчанию, чтобы разблокировать загрузки.
+Populate the Production Models Matrix==Заполнить матрицу рабочих моделей
+Assign models for chat, search, translation, and more. This is your loadout bench.==Назначьте модели для чата, поиска, перевода и других задач. Это ваша панель настройки моделей.
+Go to Production Models Matrix==Перейти к матрице рабочих моделей
+Deploy at least one model, then assign capabilities (chat, search-query, tooling, vision).==Разверните хотя бы одну модель, затем назначьте возможности (chat, search-query, tooling, vision).
+Optional==Необязательный
+Grow a search index==Расширить поисковый индекс
+Create a local index for grounding: crawl a site or import a pack to give your AI facts to cite.==Создайте локальный индекс для grounding: просканируйте сайт или импортируйте пакет, чтобы AI мог ссылаться на факты.
+Start a crawl==Начать сканирование
+Import an index pack==Импортировать пакет индексов
+Indexed documents:==Проиндексированные документы:
+required to unlock (need at least 1000 documents).==требуется для разблокировки (нужно не менее 1000 документов).
+Wire RAG retrieval==Настроить извлечение RAG
+Map which production models answer search-query and Q/A pairs so the RAG proxy can mix search with chat.==Укажите, какие рабочие модели отвечают за search-query и пары Q/A, чтобы RAG-прокси мог совмещать поиск с чатом.
+Wire RAG prompts==Настроить подсказки RAG
+Test in Chat==Проверить в чате
+Set the search-query and qapairs columns to connect retrieval to your chat flow.==Заполните столбцы search-query и qapairs, чтобы подключить извлечение к потоку чата.
+Enable/Disable Tools==Включить/отключить инструменты
+Superpowers for the YaCy Chat==Суперспособности для чата YaCy
+Open tools configuration==Открыть настройку инструментов
+Tune descriptions and set maxCallsPerTurn per tool (0 disables a tool).==Настройте описания и установите maxCallsPerTurn для каждого инструмента (0 отключает инструмент).
+Monitor log reports==Отслеживать журналы отчетов
+Assign a log-report model, then review generated hourly and daily self-enhancement reports.==Назначьте модель для log-report, затем просматривайте сгенерированные почасовые и ежедневные отчеты самоанализа.
+Open log reports==Открыть отчеты журнала
+Assign log-report model==Назначить модель log-report
+Report generation stays inactive until a production model is assigned to the log-report role.==Генерация отчетов неактивна, пока рабочая модель не назначена на роль log-report.
+Define a shield==Настроить защиту
+Add guardrails: access rates, grant or deny non-localhost access. Activate the front page link for chat to complete this quest.==Добавьте ограничения: частоту доступа, разрешение или запрет доступа не с localhost. Активируйте ссылку на чат на главной странице, чтобы завершить эту задачу.
+Open shield settings==Открыть настройки защиты
+Store your shield directives (system prompts, stop words) as properties, then exercise them in chat.==Сохраните директивы защиты (системные подсказки, стоп-слова) как свойства, затем проверьте их в чате.
+#-----------------------------
+
+#File: AIShield_p.html
+#---------------------------
+Wire RAG Retrieval Shield==Настроить защиту извлечения RAG
+Control who can access the chat interface and rate-limit non-localhost clients to protect your peer and LLM backends from overload.==Управляйте доступом к интерфейсу чата и ограничивайте частоту запросов от клиентов не с localhost, чтобы защитить ваш узел и LLM-бэкенды от перегрузки.
+Overall Load Protection==Общая защита нагрузки
+Recent access volume across all clients (localhost included). You can enforce global limits here to protect the host.==Недавний объем доступа для всех клиентов (включая локальный хост). Здесь вы можете применить глобальные ограничения для защиты хоста.
+Requests / minute==Запросов/минуту
+Requests / hour==Запросов/час
+Requests / day==Запросов/день
+Limit for all requests, including localhost==Ограничение для всех запросов, включая localhost
+Per minute:==В минуту:
+Per hour:==В час:
+Per day:==В день:
+Guest Access Control & Rate Limits==Контроль гостевого доступа и ограничения скорости
+By default only localhost may reach the chat UI. Enable non-localhost access and throttle requests to reduce abuse.==По умолчанию только localhost может получить доступ к пользовательскому интерфейсу чата. Включите нелокальный доступ и регулируйте запросы, чтобы уменьшить злоупотребления.
+Allow non-localhost clients to access the chat interface==Разрешить клиентам не с localhost доступ к интерфейсу чата
+Requests from non-localhost will be throttled using these caps:==Запросы не с localhost будут ограничиваться этими пределами:
+Front Page Link==Ссылка на главную страницу
+Expose a shortcut to the chat UI on the search front page if you want users to discover it.==Разместите ярлык пользовательского интерфейса чата на главной странице поиска, если вы хотите, чтобы пользователи могли его обнаружить.
+Show a link to yacychat.html on the search front page==Показывать ссылку на yacychat.html на главной странице поиска
+Save Shield Settings==Сохранить настройки защиты
+#-----------------------------
+
+#File: IndexExportImportSolr_p.html
+#---------------------------
+"Create Dump"=="Создать дамп"
+"Restore Dump"=="Восстановить дамп"
+Solr Index Export/Import==Solr Экспорт индекса/Import
+Dump and Restore of Solr Index==Дамп и восстановление индекса Solr
+This feature is available only when a local embedded Solr is active.==Эта функция доступна только в том случае, если активен локальный встроенный Solr.
+(This may take several minutes. Please be patient and wait until the page reloads.)==(Это может занять несколько минут. Наберитесь терпения и подождите, пока страница перезагрузится.)
+Dump File (full path)==Файл дампа (полный путь)
+Could not create the Solr dump : no embedded Solr is available.==Не удалось создать дамп Solr: встроенный Solr недоступен.
+An error occurred while trying to create the Solr dump.==Произошла ошибка при попытке создать дамп Solr.
+Successfully restored Solr index from dump file!==Индекс Solr из файла дампа успешно восстановлен!
+Could not restore the Solr dump : no embedded Solr is available.==Не удалось восстановить дамп Solr: встроенный Solr недоступен.
+An error occurred while trying to restore the Solr dump.==Произошла ошибка при попытке восстановить дамп Solr.
+#-----------------------------
+
+#File: IndexExport_p.html
+#---------------------------
+"Export"=="Экспорт"
+Index Export==Экспорт индекса
+Loaded URL Export==Загружен URL Экспорт
+Export Path==Путь экспорта
+URL Filter==URL Фильтр
+query==запрос
+maximum age (seconds)==максимальный возраст (секунды)
+maximum number of records per chunk==максимальное количество записей в блоке
+if exceeded: several chunks are stored; -1 = unlimited (makes only one chunk)==если превышено: сохраняется несколько чанков; -1 = неограниченно (составляет только один фрагмент)
+Export Size==Размер экспорта
+full size, all fields:==полный размер, все поля:
+minified; only fields sku, date, title, description, text_t==минимизированный; только поля: артикул, дата, заголовок, описание, text_t
+Export Format==Формат экспорта
+Full URL List:==Полный список URL:
+Plain Text List (URLs only)==Обычный текстовый список (только URL-адреса)
+HTML (URLs with title)==HTML (URL-адреса с заголовком)
+Only Domain:==Только домен:
+Plain Text List (domains only)==Обычный текстовый список (только домены)
+HTML (domains as URLs, no title)==HTML (домены в виде URL-адресов, без заголовка)
+Only Text:==Только текст:
+Fulltext of Search Index Text==Полный текст индексного текста поиска
+Import this file by moving it to DATA/PACKS/load==Импортируйте этот файл, переместив его в DATA/PACKS/load.
+#-----------------------------
+
+#File: IndexPackDownloader_p.html
+#---------------------------
+YaCy Pack Downloader==YaCy Загрузчик пакетов
+Available Packs==Доступные пакеты
+Source==Источник
+Repo ID==Идентификатор репо
+File==Файл
+Process==Процесс
+#-----------------------------
+
+#File: IndexPackGenerator_p.html
+#---------------------------
+"info"=="информация"
+"Generate Data Pack"=="Создать пакет данных"
+YaCy Pack Generator==YaCy Генератор пакетов
+Index Pack Generator==Генератор индексных пакетов
+Set a Category (this goes into the filename)==Установите категорию (это входит в имя файла)
+mix - a mix of document types, for content from wide web crawls==mix — сочетание типов документов для контента, полученного при сканировании в Интернете.
+core - technical documentation, operating systems, computer hardware, open source and free software, manuals, protocol standards==ядро — техническая документация, операционные системы, компьютерное оборудование, открытое и бесплатное программное обеспечение, руководства, стандарты протоколов.
+scroll - non-technical documents: knowledge, encyclopedia, linguistic corpora, dictionaries, translation memories, texts, non-fiction books, historical books==свиток - нетехнические документы: знания, энциклопедии, лингвистические корпуса, словари, памяти переводов, тексты, научно-популярные книги, исторические книги.
+regula - non-technical standards: industry standards, laws, rules, compliance==regula - нетехнические стандарты: отраслевые стандарты, законы, правила, комплаенс
+gem - research, papers, university publications, science==драгоценный камень – исследования, статьи, университетские публикации, наука
+fiction - fictional documents: movies, stories, series, books (fiction, science-fiction)==художественная литература - художественные документы: фильмы, рассказы, сериалы, книги (художественные, научно-фантастические)
+map - geological data, geolocation-data, earth/world information==карта - геологические данные, данные геолокации, информация о земле/world
+echo – micro-content (tweets, toots, short headlines, SMS corpora), podcasts, radio archives, audio lectures, spoken-word datasets, logs, incidents, telemetry==echo – микроконтент (твиты, сообщения, короткие заголовки, корпуса SMS), подкасты, радиоархивы, аудиолекции, наборы устных данных, журналы, инциденты, телеметрия.
+spirit – related to non-textual data (possibly only metadata): art, music, game assets, creative-commons media (non-text culture loot)==дух – связан с нетекстовыми данными (возможно, только метаданными): искусство, музыка, игровые ресурсы, средства массовой информации Creative Commons (нетекстовая культурная добыча)
+vault - sensitive data: secrets, leaks, non-public documents, security advisories==хранилище – конфиденциальные данные: секреты, утечки, закрытые документы, рекомендации по безопасности
+Index Collection==Коллекция индексов
+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.==имя коллекции используется как часть имени файла для описания содержимого. Исключение: если коллекция является «пользовательской», то содержимое можно назвать слагом.
+Slug - describe the content (only if collection is "user")==Слаг — опишите содержимое (только если коллекция «пользовательская»)
+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"==Это станет частью имени файла, пробелы будут заменены на «-»; не должно быть пустым; должно заканчиваться описанием языка, например "-ен"
+URL Filter==URL Фильтр
+Search Query -==Поисковый запрос -
+Export Format==Формат экспорта
+This JSON is an elasticsearch index dump format and can be bulk-imported to elasticsearch. Here is an example for opensearch, using docker:==Этот JSON представляет собой формат дампа индекса elasticsearch, и его можно массово импортировать в elasticsearch. Вот пример opensearch с использованием Docker:
+Start docker container of opensearch:==Запустите докер-контейнер opensearch:
+Unblock index creation:==Разблокировать создание индекса:
+Create the search index:==Создайте поисковый индекс:
+Bulk-upload the index file:==Массовая загрузка индексного файла:
+Make a search, get 10 results, search in fields text_t, title, description with boosts:==Сделайте поиск, получите 10 результатов, ищите по полям text_t, title,description с надбавками:
+JSON (Rich and full-text Elasticsearch data, one document per line in one flat JSON file)==JSON (полнотекстовые данные Elasticsearch, по одному документу на строку в одном плоском файле JSON)
+XML (Rich and full-text Solr data, one document per line in one large xml file,==XML (полнотекстовые данные Solr, по одному документу на строку в одном большом XML-файле,
+can be processed with shell tools, can be imported with DATA/PACKS/load/)==можно обрабатывать с помощью инструментов оболочки, можно импортировать с помощью DATA/PACKS/load/)
+XML (RSS)==XML (RSS)
+Import this file by moving it to DATA/PACKS/load==Импортируйте этот файл, переместив его в DATA/PACKS/load.
+Pack List==Список пакетов
+Pack==Пакет
+Process==Процесс
+Size (KB)==Размер (КБ)
+#-----------------------------
+
+#File: IndexPackManager_p.html
+#---------------------------
+YaCy Pack Manager==YaCy Менеджер пакетов
+Pack Folders==Упаковать папки
+Packs: Hold List==Пакеты: Список удержания
+Size (KB)==Размер (КБ)
+Process==Процесс
+Packs: Load List==Пакеты: список загрузки
+Packs: Loaded List==Пакеты: Загруженный список
+#-----------------------------
+
+#File: IndexShare_p.html
+#---------------------------
+"Set"=="Сохранить"
+Index Sharing==Совместное использование индекса
+Index:==Индекс:
+distribute ==распространять
+receive==получать
+receive grant default:==получить грант по умолчанию:
+for each remote peer==для каждого удаленного узла
+links/minute ==ссылки/minute
+words/minute==слова/minute
+#-----------------------------
+
+#File: LLMSelection_p.html
+#---------------------------
+"info"=="информация"
+LLM Selection==Выбор LLM
+Here you can pick models from an LLM model service to select them as production model.==Здесь вы можете выбрать модели из модельного сервиса LLM, чтобы выбрать их в качестве серийной модели.
+In the "Production Models Matrix" you can then assign each selected model a function inside YaCy==Затем в «Матрице производственных моделей» вы можете назначить каждой выбранной модели функцию внутри YaCy.
+Service Selection==Выбор услуги
+service==услуга
+Ollama==Ollama
+LMStudio==LMStudio
+OpenAI==OpenAI
+Open Router==Открыть маршрутизатор
+This makes a preset to the Hoststub value==Это делает предустановку для значения Hoststub.
+hoststub==hoststub
+you can probably leave this to the default value==вы, вероятно, можете оставить это значение по умолчанию
+api_key==API_ключ
+(not required for Ollama or LMStudio)==(не требуется для Ollama или LMStudio)
+Services==Услуги
+num_ctx is the context window (in tokens) of the inference service — a per-service==num_ctx — это контекстное окно (в токенах) службы вывода — за услугу
+value, shared by all models on that endpoint. It is the total budget for prompt plus==значение, общее для всех моделей в этой конечной точке. Это общий бюджет для запроса plus.
+generated output; YaCy uses it to size prompts so they leave room to generate. The row for the==сгенерированный результат; YaCy использует его для изменения размера подсказок, чтобы они оставляли место для генерации. Строка для
+service selected above appears here automatically with its stored (or default) window.==выбранная выше служба автоматически появляется здесь в сохраненном (или по умолчанию) окне.
+This value is advisory: set it to match the window your backend actually serves==Это значение advisory: установите его так, чтобы оно соответствовало окну, которое фактически обслуживает ваш сервер.
+Context Length setting). YaCy does not enforce it on the backend.==Настройка длины контекста). YaCy не применяет его на серверной стороне.
+num_ctx==num_ctx
+Model Downloads==Загрузки моделей
+Production Models Matrix==Матрица производственных моделей
+model==модель
+max_tokens==max_tokens
+search-answers==поиск-ответы
+This model creates answers for search requests==Эта модель создает ответы на поисковые запросы.
+chat==чат
+This model is used in the chat interface and as default for the RAG proxy==Эта модель используется в интерфейсе чата и по умолчанию для прокси RAG.
+translation==перевод
+This model can be used to make translations of the web UI==Эту модель можно использовать для перевода веб-интерфейса.
+classification==классификация
+This model is used to classify prompts to find out what they demand==Эта модель используется для классификации подсказок, чтобы выяснить, что они требуют.
+search-query==search-query
+This model produces search queries to YaCy search from prompts in RAG or chat==Эта модель создает поисковые запросы для поиска YaCy из подсказок в RAG или в чате.
+qa-pairs==qa-пары
+This model can be used to produce query-answer pairs which enhance search from chat prompts==Эту модель можно использовать для создания пар «запрос-ответ», которые улучшают поиск из подсказок чата.
+tldr-shortener==tldr-коротенер
+This model is used to make summaries from web content==Эта модель используется для составления сводок веб-контента.
+log-report==журнал-отчет
+This model evaluates YaCy runtime logs and creates self-enhancement reports==Эта модель оценивает журналы времени выполнения YaCy и создает отчеты о самосовершенствовании.
+thinking==мышление
+we detect thinking only to be able to suppress thinking. thinking is not used in YaCy==мы обнаруживаем мышление только для того, чтобы иметь возможность подавить мышление. мышление не используется в YaCy
+tooling==оснастка
+tooling is required for agentic abilities.==для агентских способностей необходимы инструменты.
+vision==зрение
+this enables image recognition in the chat==это позволяет распознавать изображения в чате
+format==формат
+this is required for classification==это необходимо для классификации
+Actions==Действия
+#-----------------------------
+
+#File: LogReports_p.html
+#---------------------------
+"delete this report"=="удалить этот отчет"
+Log Reports==Журнал отчетов
+run report now==запустить отчет сейчас
+Generating report from the current-hour log lines — the LLM call can take a while …==Создание отчета из строк журнала за текущий час — звонок LLM может занять некоторое время …
+seconds elapsed==прошло секунд
+No log lines were found for the current hour.==За текущий час строк журнала не найдено.
+No production model is configured for the log-report role. Assign one in the==Для роли отчета журнала не настроена производственная модель. Назначьте один в
+No production model is configured for the log-report role. Log report generation stays inactive until a model is assigned in the==Для роли отчета журнала не настроена производственная модель. Создание отчета журнала остается неактивным до тех пор, пока модель не будет назначена в
+Feeds:==Каналы:
+JSON==JSON
+RSS==RSS
+The report directory does not exist yet. Reports will appear here after the scheduler has generated the first completed hourly report.==Каталог отчетов еще не существует. Отчеты появятся здесь после того, как планировщик сформирует первый завершенный почасовой отчет.
+×==×
+Report generation in progress …==Выполняется создание отчета …
+the report below is completed live while the model is writing==отчет ниже заполняется в реальном времени, пока модель пишет
+No generated log reports were found.==Сгенерированные отчеты журналов не найдены.
+#-----------------------------
+
+#File: RAGConfig_p.html
+#---------------------------
+Wire RAG Retrieval==Настроить извлечение RAG
+Tune how YaCy constructs prompts and search queries for Retrieval Augmented Generation.==Настройте, как YaCy создает подсказки и поисковые запросы для Retrieval Augmented Generation.
+System Prompt==Системная подсказка
+This is sent as the system message for chats. Keep it concise and friendly.==Это отправляется как системное сообщение для чатов. Держите его кратким и дружелюбным.
+User Retrieval Prefix==Префикс поиска пользователя
+Prepended before attached search snippets in RAG mode to tell the LLM how to use them.==Добавляется перед прикрепленными фрагментами поиска в режиме RAG, чтобы сообщить LLM, как их использовать.
+Query Generator Prefix==Префикс генератора запросов
+Prompt given to the model that generates search queries from user requests.==Подсказка задана модели, которая генерирует поисковые запросы на основе запросов пользователей.
+Search Document Max Length==Максимальная длина поискового документа
+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.==Максимальная длина символов документа виртуального поиска, используемого в качестве вложения RAG и в качестве результата инструмента поиска. Контент, превышающий этот лимит, обрезается. По умолчанию: 30000.
+Save RAG Settings==Сохраните настройки RAG
+#-----------------------------
+
+#File: SearchAccessRate_p.html
+#---------------------------
+"Submit"=="Сохранить"
+"Set defaults"=="Установить настройки по умолчанию"
+"Reset to defaults settings"=="Сброс к настройкам по умолчанию"
+limitations==ограничения
+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==Здесь вы можете настроить ограничения на скорость доступа к этому интерфейсу однорангового поиска для неаутентифицированных пользователей и пользователей без права расширенного поиска.
+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.==Когда пользователь с ограниченными правами (не прошедший аутентификацию или не имеющий права расширенного поиска) превышает лимит, поиск блокируется.
+Max searches in 3s==Макс. поиск за 3 с.
+Max searches in 1mn==Максимальное количество поисков за 1 минуту
+Max searches in 10mn==Макс. поиск за 10 минут
+Peer-to-peer search==Одноранговый поиск
+Access rate limitations to the peer-to-peer search mode.==Ограничения скорости доступа в режиме однорангового поиска.
+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.==Когда пользователь с ограниченными правами (не прошедший проверку подлинности или без права расширенного поиска) превышает ограничение, область поиска возвращается только к этому локальному индексу узла.
+Max searches in 10mn==Макс. поиск за 10 минут
+Peer-to-peer search with JavaScript results resorting==Одноранговый поиск с сортировкой результатов JavaScript
+Access rate limitations to the peer-to-peer search mode with browser-side JavaScript results resorting enabled==Ограничения скорости доступа в режиме однорангового поиска с включенной сортировкой результатов JavaScript на стороне браузера
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, results resorting becomes only applicable on demand, server-side.==Когда пользователь с ограниченными правами (не прошедший аутентификацию или не имеющий права расширенного поиска) превышает лимит, сортировка результатов становится применимой только по запросу на стороне сервера.
+Remote snippet load==Удаленная загрузка фрагмента
+Limitations on snippet loading from remote websites.==Ограничения на загрузку фрагментов с удаленных сайтов.
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the snippets fetch strategy falls back to 'CACHEONLY'==Когда пользователь с ограниченными правами (не прошедший проверку подлинности или без права расширенного поиска) превышает лимит, стратегия выборки фрагментов возвращается к «CACHEONLY».
+Max searches in 3s==Макс. поиск за 3 с.
+Changes will take effect immediately.==Изменения вступят в силу немедленно.
+#-----------------------------
+
+#File: Settings_Debug.inc
+#---------------------------
+"Extensible Markup Language"=="Расширяемый язык разметки"
+"Distributed Hash Table"=="Распределенная хэш-таблица"
+"Reverse Word Index"=="Обратный указатель слов"
+"Submit"=="Сохранить"
+Debug/Analysis Settings==Настройки отладки/Analysis
+Be careful with these advanced settings, they can deeply affect the search process! You probably don't need to modify them for normal use.==Будьте осторожны с этими расширенными настройками, они могут сильно повлиять на процесс поиска! Вероятно, вам не нужно изменять их для обычного использования.
+Solr communication==Solr общение
+Enable remote Solr binary responses==Включить удаленные двоичные ответы Solr
+When checked (default), responses from remote Solr index instances are transferred using an efficient binary data format.==Если этот флажок установлен (по умолчанию), ответы от удаленных экземпляров индекса Solr передаются с использованием эффективного двоичного формата данных.
+When unchecked, responses are transferred as XML,==Если флажок снят, ответы передаются как XML,
+which can be captured and parsed by any external XML aware tool for debug/analysis.==который может быть захвачен и проанализирован любым внешним инструментом, поддерживающим XML, для отладки/analysis..
+Search data sources==Поиск источников данных
+By default all data sources are enabled to obtain search results,==По умолчанию все источники данных включены для получения результатов поиска.
+but you can here disable one or more ones to check the behavior of the process.==но здесь вы можете отключить один или несколько из них, чтобы проверить поведение процесса.
+Local DHT/RWI==Локальный DHT/RWI
+Local Solr index==Локальный индекс Solr
+Remote DHT/RWI==Удаленный DHT/RWI
+Remote Solr indexes==Удаленные индексы Solr
+Search testing tweaks==Твики тестирования поиска
+Override DHT peers selection by local only==Переопределить выбор одноранговых узлов DHT только локально
+When checked, the remote DHT peers selection is overridden and only the local peer is selected to provide remote DHT search results.==Если этот флажок установлен, выбор удаленных узлов DHT переопределяется, и для предоставления удаленных результатов поиска DHT выбирается только локальный узел.
+Override Solr peers selection by local only==Переопределить выбор одноранговых узлов Solr только локально
+When checked, the remote Solr peers selection is overridden and only this peer is selected to provide remote Solr search results.==Если этот флажок установлен, выбор удаленных узлов Solr переопределяется, и только этот узел выбирается для предоставления результатов поиска по удаленному Solr.
+Ranking information==Информация о рейтинге
+Show search results scores==Показать результаты поиска
+When checked, the raw ranking score value is displayed for each text search result in the HTML results page.==Если этот флажок установлен, исходное значение рейтинга отображается для каждого результата текстового поиска на странице результатов HTML.
+Text snippets statistics==Статистика текстовых фрагментов
+Enable text snippets statistics==Включить статистику фрагментов текста
+Changes will take effect immediately.==Изменения вступят в силу немедленно.
+#-----------------------------
+
+#File: Settings_HttpClient.inc
+#---------------------------
+"Transport Layer Security"=="Безопасность транспортного уровня"
+"Server Name Indication"=="Индикация имени сервера"
+"Submit"=="Сохранить"
+HTTP client settings==HTTP настройки клиента
+You can configure here some advanced settings of the clients used by YaCy to handle outgoing HTTP connections.==Здесь вы можете настроить некоторые дополнительные параметры клиентов, используемых YaCy для обработки исходящих соединений HTTP.
+About Server Name Indication (SNI):==Об указании имени сервера (SNI):
+this extension to the TLS 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==это расширение протокола TLS должно быть включено для загрузки некоторых URL-адресов https (для веб-сайтов, развернутых с разными сертификатами и именами хостов на одном и том же общем адресе IP), в противном случае загрузка завершается с ошибками, такими как
+Received fatal alert: handshake_failure==Получено фатальное предупреждение:handshake_failure.
+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==Но может потребоваться отключить его, чтобы загрузить некоторые URL-адреса https, обслуживаемые старыми и неправильно настроенными веб-серверами, в противном случае загрузка завершится с ошибкой.
+javax.net.ssl.SSLProtocolException: "handshake alert: unrecognized_name"==javax.net.ssl.SSLProtocolException: «предупреждение о рукопожатии: неопознанное_имя»
+Controlling SNI extension activation can also be done with the JVM option==Управление активацией расширения SNI также можно выполнить с помощью опции JVM.
+jsse.enableSNIExtension==jsse.enableSNIExtension
+, 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).==, но в этом случае требуется перезагрузка сервера, если вы хотите изменить этот параметр, и его нельзя настроить для каждого http-клиента (общего или для удаленного Solr).
+General HTTP client==Общий клиент HTTP
+Configuration settings for the main HTTP client, used notably to crawl websites and communicate with other YaCy peers.==Параметры конфигурации для основного клиента HTTP, используемого, в частности, для сканирования веб-сайтов и связи с другими узлами YaCy.
+Enable SNI extension to TLS==Включите расширение SNI для TLS
+Remote Solr HTTP client==Удаленный клиент Solr HTTP
+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).==Параметры конфигурации для конкретного клиента HTTP, предназначенного для связи с удаленными серверами Solr (расположенными на других узлах YaCy или в конечном итоге принадлежащими этому клиенту, когда он настроен на использование удаленного индекса Solr).
+Changes will take effect immediately.==Изменения вступят в силу немедленно.
+#-----------------------------
+
+#File: Settings_Referrer.inc
+#---------------------------
+"'Referer' section from the standard IETF specification"=="Раздел «Referer» из стандартной спецификации IETF."
+"Link types section at W3C HTML specification"=="Раздел типов ссылок в спецификации W3C HTML"
+"Submit"=="Сохранить"
+Referrer Policy Settings==Настройки политики рефералов
+When loading pages and navigating through links, a web browser sends some information about the origin of the request,==При загрузке страниц и переходе по ссылкам веб-браузер отправляет некоторую информацию об источнике запроса.
+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.==Посещенные веб-сайты могут обрабатывать эту информацию по своему усмотрению, поэтому это может стать проблемой конфиденциальности, например, при переходе со страницы, которая содержит искомые термины в своем URL.
+This page offers some configuration settings to instruct your browser how it should fill this referrer information.==На этой странице представлены некоторые настройки конфигурации, позволяющие указать вашему браузеру, как ему следует заполнять эту информацию о реферере.
+Beware that every browser behaves differently: some settings may be unsupported by your particular browser and therefore ignored.==Помните, что каждый браузер ведет себя по-разному: некоторые настройки могут не поддерживаться вашим конкретным браузером и поэтому игнорироваться.
+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.==Если вас действительно беспокоит конфиденциальность, проверьте, что на самом деле отправляет ваш браузер, используя встроенную сетевую консоль инструментов разработчика или анализатор сетевого трафика по вашему выбору.
+Global policy==Глобальная политика
+This referrer policy applies for every page on this peer. It is set by the "meta" HTML tag.==Эта политика перехода применяется для каждой страницы на этом узле. Он устанавливается мета-тегом HTML.
+Values are sorted by decreasing privacy level.==Значения отсортированы по уменьшению уровня конфиденциальности.
+no-referrer==не реферер
+Highest privacy setting: referrer information should never be sent, even when navigating on this peer internal links.==Наивысшая настройка конфиденциальности: информация о реферере никогда не должна отправляться, даже при переходе по внутренним ссылкам этого узла.
+Be careful with this: some websites might reject requests with no referrer.==Будьте осторожны: некоторые веб-сайты могут отклонять запросы без ссылки.
+same-origin==того же происхождения
+Peer internal links: referrer information should be stripped from any private data and contain only this peer host name.==Внутренние ссылки однорангового узла: информация о реферере должна быть удалена из любых личных данных и содержать только имя хоста однорангового узла.
+External links: referrer information should never be sent.==Внешние ссылки: никогда не следует отправлять информацию о реферере.
+strict-origin==строгое происхождение
+Peer internal and external links: referrer information should be stripped from any private data and contain only this peer host name.==Внутренние и внешние ссылки однорангового узла: информация о реферере должна быть удалена из любых личных данных и содержать только имя хоста однорангового узла.
+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.==Ограничение: когда ссылка переходит с защищенного соединения TLS (https) на этом узле на незащищенную цель (http), никакая информация о реферере вообще не должна отправляться.
+origin==источник
+strict-origin-when-cross-origin==строгое происхождение при перекрестном происхождении
+Peer internal links: referrer information should contain full URLs.==Внутренние ссылки одноранговых узлов: информация о реферере должна содержать полные URL-адреса.
+External links: referrer information should be stripped from any private data and contain only this peer host name.==Внешние ссылки: информация о реферере должна быть удалена из любых личных данных и содержать только это имя хоста однорангового узла.
+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.==Ограничение: когда внешняя ссылка переходит с защищенного соединения TLS (https) на этом узле на незащищенную цель (http), никакая информация о реферере вообще не должна отправляться.
+origin-when-cross-origin==происхождение-когда-перекрестное происхождение
+no-referrer-when-downgrade==нет реферера при понижении рейтинга
+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).==Информация о реферере должна содержать полные URL-адреса, за исключением случаев, когда ссылка переходит от защищенного соединения TLS (https) на этом узле к незащищенному целевому соединению (http).
+empty value==пустое значение
+Default browser behavior: it should correspond to "no-referrer-when-downgrade".==Поведение браузера по умолчанию: оно должно соответствовать «без реферера при переходе на более раннюю версию».
+unsafe-url==небезопасный URL
+Unsafe setting: referrer information should always contain full URLs.==Небезопасная настройка: информация о реферере всегда должна содержать полные URL-адреса.
+Custom setting: probably manually edited, be sure this value is the desired one.==Пользовательская настройка: возможно, отредактировано вручную, убедитесь, что это значение является желаемым.
+Search results links==Ссылки на результаты поиска
+Add the "noreferrer" link type to search results links==Добавьте тип ссылки «noreferrer» в ссылки результатов поиска.
+When checked, this overrides the global referrer policy and adds the standard "noreferrer"==Если этот флажок установлен, это переопределяет глобальную политику рефереров и добавляет стандартный «noreferrer».
+thus instructing the browser that it should not send any referrer information at all when visiting them.==тем самым сообщая браузеру, что он вообще не должен отправлять какую-либо информацию о реферере при их посещении.
+It is a standard HTML5 attribute value,==Это стандартное значение атрибута HTML5.
+supported by many more browsers than the meta tag: if you want a higher level of privacy but use an old or incompatible browser,==поддерживается гораздо большим количеством браузеров, чем метатег: если вам нужен более высокий уровень конфиденциальности, но вы используете старый или несовместимый браузер,
+this can be a valuable option.==это может быть ценным вариантом.
+Changes will take effect immediately.==Изменения вступят в силу немедленно.
+#-----------------------------
+
+#File: ToolsConfig_p.html
+#---------------------------
+Tools==Инструменты
+Add superpowers to the YaCy Chat. Tools may be disabled by setting maxCallsPerTurn to 0.==Добавьте суперспособности в чат YaCy. Инструменты можно отключить, установив для maxCallsPerTurn значение 0.
+Tool settings were saved.==Настройки инструмента сохранены.
+Basic Tools==Основные инструменты
+maxCallsPerTurn==maxCallsPerTurn
+disable==запрещать
+Visualization Tools==Инструменты визуализации
+Data Retrieval Tools==Инструменты поиска данных
+Save Tools Configuration==Сохранить конфигурацию инструментов
+#-----------------------------
+
+#File: Trails.html
+#---------------------------
+CyTag Trails==CyTag Тропы
+#-----------------------------
+
+#File: Translator_p.html
+#---------------------------
+"Save translation"=="Сохранить перевод"
+Translation Editor==Редактор перевода
+Translate untranslated text of the user interface (current language). The modified translation file is stored in DATA/LOCALE directory.==Перевести непереведенный текст пользовательского интерфейса (текущий язык). Модифицированный файл перевода хранится в каталоге DATA/LOCALE.
+UI Translation==Перевод пользовательского интерфейса
+Source File==Исходный файл
+view it==просмотреть это
+filter untranslated==фильтровать непереведенные
+Source Text==Исходный текст
+#-----------------------------
+
+#File: VFS.html
+#---------------------------
+"File system browser"=="Браузер файловой системы"
+"Root contents"=="Корневое содержимое"
+Virtual File System==Виртуальная файловая система
+User storage in the browser cache with file-system-like navigation.==Пользовательское хранилище в кеше браузера с навигацией, аналогичной файловой системе.
+New Folder==Новая папка
+Upload File==Загрузить файл
+No files yet. Upload a file or create a folder.==Файлов пока нет. Загрузите файл или создайте папку.
+Preview==Предварительный просмотр
+Edit file==Редактировать файл
+Discard==Отказаться
+Save==Сохранять
+#-----------------------------
+
+#File: YaCySearchPluginFF.html
+#---------------------------
+"YaCy-Logo"=="YaCy-Логотип"
+YaCy Firefox Search-Plugin Installation:==YaCy Установка плагина поиска Firefox:
+Simply click on the link shown below to integrate the YaCy Firefox Search-Plugin into your browser.==Просто нажмите на ссылку, показанную ниже, чтобы интегрировать поисковый плагин YaCy Firefox в свой браузер.
+In Mozilla Firefox, you can the Search-Plugin via the search box on the toolbar. In Mozilla (Seamonkey) you can access the Search-Plugin via the Sidebar or the Location Bar.==В Mozilla Firefox вы можете получить доступ к плагину поиска через поле поиска на панели инструментов. В Mozilla (Seamonkey) вы можете получить доступ к плагину поиска через боковую панель или строку адреса.
+Install the YaCy search plugin.==Установите плагин поиска YaCy.
+#-----------------------------
+
+#File: api/push_p.html
+#---------------------------
+"Submit"=="Сохранить"
+File Upload==Загрузка файла
+This form can be used to upload a file and assign it to an url.==Эту форму можно использовать для загрузки файла и присвоения ему URL-адреса.
+Example usage is the direct attachment of a content management system to YaCy to push newly changed files directly to the YaCy indexer.==Пример использования — прямое подключение системы управления контентом к YaCy для передачи недавно измененных файлов непосредственно в индексатор YaCy.
+File Count==Количество файлов
+synchronous==синхронный
+commit==совершить
+Files to process:==Файлы для обработки:
+File Number==Номер файла
+Data==Данные
+URL==URL
+Collection==Коллекция
+Last-Modified==Последнее изменение
+Content-Type==Тип контента
+The following attributes are only used for media type content==Следующие атрибуты используются только для контента типа мультимедиа.
+Media-Title==Медиа-Название
+Media-Keywords ()==Медиа-ключевые слова ()
+Result for the recently submitted file(s). You can also submit the same form using the servlet push_p.json to get push confirmations in json format.==Результат для недавно отправленных файлов. Вы также можете отправить ту же форму с помощью сервлета push_p.json для получения push-подтверждений в формате json.
+count==считать
+successall==успех
+false==ЛОЖЬ
+true==истинный
+countsuccess==подсчет успеха
+countfail==считать неудачно
+Item==Элемент
+Success==Успех
+Message==Сообщение
+fail==неудача
+ok==хорошо
+If you want to push again files, use this form to pre-define a number of upload forms:==Если вы хотите повторно отправить файлы, используйте эту форму, чтобы заранее определить несколько форм загрузки:
+#-----------------------------
+
+#File: env/grafics/donate.html
+#---------------------------
+"Donate!"=="Пожертвуйте!"
+Please support our work on YaCy!==Пожалуйста, поддержите нашу работу над YaCy!
+Github Sponsors==Спонсоры Github
+beneficial: 5 €==выгодно: 5 евро;
+generous: 25 €==щедрый: 25 евро;
+gracious: 50 €==любезно: 50 евро;
+#-----------------------------
+
+#File: env/templates/submenuAI.template
+#---------------------------
+AI Lab==Лаборатория искусственного интеллекта
+LLM Selection==Выбор LLM
+RAG Config==RAG Конфигурация
+Tools Config==Конфигурация инструментов
+Log Reports==Журнал отчетов
+AI Shield==AI-защита
+Chat==Чат
+#-----------------------------
+
+#File: env/templates/submenuIndexImport.template
+#---------------------------
+Content Export / Import==Экспорт/импорт контента
+YaCy Packs==YaCy Пакеты
+Pack Generator==Генератор пакетов
+Pack Downloader==Загрузчик пакетов
+Pack Manager==Менеджер пакетов
+Export==Экспорт
+Index Export==Экспорт индекса
+Solr Dump Export/Import==Solr Экспорт дампа/Import
+Import==Импорт
+RSS==RSS
+OAI-PMH==ОАИ-ПМХ
+WARC==ВАРК
+ZIM==ЗИМ
+JsonList==JsonList
+Database Reader==Читатель базы данных
+phpBB3 Database==База данных phpBB3
+MediaWiki Dump==Дамп MediaWiki
+#-----------------------------
+
+#File: goto_p.html
+#---------------------------
+forwarding==пересылка
+forward to remote peer==переслать удаленному узлу
+#-----------------------------
+
+#File: jslicense.html
+#---------------------------
+YaCy JavaScript license information==YaCy JavaScript информация о лицензии
+YaCy JavaScript files license information==YaCy JavaScript хранит информацию о лицензии
+Script==Скрипт
+License==Лицензия
+Source==Источник
+#-----------------------------
+
+#File: portalsearch/yacy-portalsearch.html
+#---------------------------
+YaCy Bookmarks==YaCy Закладки
+YaCy Portalsearch:==YaCyПоиск по порталу:
+#-----------------------------
+
+#File: proxymsg/urlproxyheader.html
+#---------------------------
+"add bookmark"=="добавить закладку"
+YaCy stop proxy==YaCy остановить прокси
+(Warning: secure target viewed over normal http)==(Предупреждение: безопасная цель просматривается через обычный http)
+#-----------------------------
+
+#File: rct_p.html
+#---------------------------
+"retrieve"=="забрать"
+remote crawl fetch test==тест удаленного сканирования
+Retrieve remote crawl url list==Получить список URL-адресов удаленного сканирования
+Target Peer:==Целевой партнер:
+select==выбирать
+#-----------------------------
+
+#File: rssTerminal.html
+#---------------------------
+rss terminal==RSS-терминал
+#-----------------------------
+
+#File: yacychat.html
+#---------------------------
+"Attach search results by default"=="Прикрепите результаты поиска по умолчанию"
+"Search"=="Поиск"
+"Attach a file"=="Прикрепить файл"
+"Send"=="Отправлять"
+"Clear chat"=="Очистить чат"
+"Download chat"=="Скачать чат"
+"Upload chat"=="Загрузить чат"
+"Show system prompt"=="Показать системное приглашение"
+YaCy Chat==YaCy Чат
+This Chat is private. YaCy does not keep any history — only your browser remembers the current conversation.==Этот чат является приватным. YaCy не сохраняет никакой истории — текущий разговор помнит только ваш браузер.
+Default Dialog Augmentation:==Расширение диалога по умолчанию:
+no search, allow attachments==нет поиска, разрешить вложения
+use local search==используйте локальный поиск
+use global search==используйте глобальный поиск
+User==Пользователь
+Attach Search Results==Прикрепите результаты поиска
+Attach PNG/JPG or text (.txt/.md/.tex)==Прикрепите PNG/JPG или текстовое сообщение (.txt/.md/.tex)).
+Clear Chat==Очистить чат
+Download Chat==Скачать чат
+Upload Chat==Загрузить чат
+Show System==Показать систему
+#-----------------------------
+
+#File: yacysearchpagination.html
+#---------------------------
+"Previous page"=="Предыдущая страница"
+"Next page"=="Следующая страница"
+«==«
+»==»
+#-----------------------------
diff --git a/locales/sk.lng b/locales/sk.lng
index 572dc8b21..8c5bab49d 100644
--- a/locales/sk.lng
+++ b/locales/sk.lng
@@ -1,1608 +1,4771 @@
-# sk.lng
-# English-->Slovak
-# -----------------------
-# part of YaCy
-# (C) by Michael Peter Christen; mc@anomic.de
-# first published on http://www.anomic.de
-# Frankfurt, Germany, 2005
-#
-# This file is maintained by Rostislav Svoboda
-# This file is written by (chronological order) Rostislav Svoboda
-#
-
-# If you find any mistakes or untranslated strings in this file please don't hesitate to email them to the maintainer.
-
-#File: ConfigLanguage_p.html
-#---------------------------
-#Only part 1.
-#Contributors are in chronological ordern, not how much they did absolutely.
-#Thank you for your help!
-default(english)==Slovensky
-==Rostislav Svoboda
-==<Rostislav.Svoboda@gmail.com>
-#-----------------------------
-
-#File: Blacklist_p.html
-#---------------------------
-Blacklist Manager==Spravca blacklistu
-#Blacklist==Blacklist
-This function provides an URL filter to the proxy; any blacklisted URL is blocked==Tato funkcia poskytuje URL filter pre proxy: URL adresa z blacklistu je blokovana
-from being loaded. You can define several blacklists and activate them separately.==a nebude nahravana. Mozete definovat a nezavisle aktivovat niekolko blacklistov.
-You may also provide your blacklist to other peers by sharing them; in return you may==Vas blacklist mozete takisto poskytnut inemu peerovy na stiahnutie a naopak
-collect blacklist entries from other peers.==zaznamy z blacklistov inych peerov mozete zhromazdovat.
-# NOT USED
-#Edit list:==Edituj zoznam:
-# NOT USED
-#(active)#not active::active#(/active)# #(shared)#not shared::shared#(/shared)==(aktivny)#neaktivny::aktivny#(/aktivny)# #(zdielany)#nezdielany::zdielany#(/zdielany)
-"select"=="vyber"
-New list:==Novy zoznam:
-"create"=="vytvor"
-Enable/disable this list==Aktivuj/deaktivuj zoznam
-Share/don't share this list==Povol/zakaz zdielanie zoznamu
-# NOT USED Change==Zmen
-Delete this list==Vymaz tento zoznam
-# NOT USED
-#/>active==/>aktivny
-# NOT USED
-#/>shared==/>zdielany
-Active list:==Aktivny zoznam:
-These are the domain name / path patterns in this blacklist:==Toto su nazvy domen/ciest nachadzajucich sa v blackliste:
-# NOT USED
-#You can select them here for deletion==Mozu byt jednotlivo vybrane na zmazanie
-Delete URL pattern==Vymaz masku URL adresy/adries zo zoznamu
-# NOT USED
-#Enter new domain name / path pattern in the form:==Zadaj novu domenu/cestu v nasledovnom tvare:
-Add URL pattern==Pridaj URL masku
-# NOT USED
-#Import blacklist items from other YaCy peers:==Importuj blacklist ineho peera:
-# NOT USED
-#Host:==Host:
-"Load new blacklist items"=="Nahraj novy blacklist"
-# NOT USED
-#Import blacklist items from URL:==Importuj blacklist z URL adresy:
-#URL:==URL:
-# NOT USED
-#Import blacklist items from file:==Importuj blacklist zo suboru:
-was removed from blacklist==bol z blacklistu vymazany
-was added to the blacklist==bol do blacklistu pridany
-or==alebo
-Activate this list for==Tento zoznam je platny pre
-#-----------------------------
-
-#File: Blog.html
-#---------------------------
-# NOT USED
-#>by==>od
->edit==>edituj
->delete==>zmaz
-show more entries==zobraz dalsie zaznamy
-new entry==Novy zaznam
-import XML-File==importuj XML subor
-export as XML==exportuj ako XML subor
-Blog-Home==Blog-Domovska stranka
-Author:==Autor:
-Subject:==Titul:
-# NOT USED
-#"Submit">=="Odosli">
-# NOT USED
-#"Preview">=="Nahlad">
-# NOT USED
-#"Discard">=="Zrus">
->Preview==>Nahlad
-No changes have been submitted so far!==Ziadne zmeny este neboli vytvorene!
-Access denied==Pristup zakazany
-To edit or create blog-entries you need to be logged in as Admin or User who has Blog rights.==Na editaciu alebo vytvorenie blogu musite byt prihlaseny ako Admin alebo ako User s blog-pravami.
-Are you sure==Ste si isty
-# NOT USED
-#that you want to delete #[subject]# by #[author]#?==ze chcete zmazat #[subject]# od #[author]#?
-Yes, delete it.==Ano zmazat.
-No, leave it.==Nie, ponechat.
-# NOT USED
-#Import was successful!==Import prebehol uspesne!
-Import failed, maybe the supplied file was no valid blog-backup?==Import zlyhal. Skutocne je importovany subor block-backup subor?
-Please select the XML-file you want to import:==Prosim zvolte XML subor ktory chcete importovat:
-Import==Importuj
-# NOT USED
-#Browse...==Hladaj...
-#-----------------------------
-
-#File: Bookmarks.html
-#---------------------------
-YaCy '#[clientname]#': Bookmarks==YaCy '#[clientname]#': Zálozky
-
Bookmarks==
Zálozky
-Add Bookmark==Pridaj zálozku
-Import XML Bookmarks==Importuj XML zálozku
-Edit Bookmark==Edituj zálozky
-#URL:==URL:
-Title:==Titul:
-Description:==Popis:
-Tags (comma separated):==Tagy (oddelené ciarkou):
-Public:==Verejné:
-yes==áno
-no==nie
-"create"=="vytvor"
-"edit"=="edituj"
-File:==Súbor:
-import as Public==importuj ako verejné
-"private bookmark"=="Súkromné zálozky"
-"public bookmark"=="Verejné zálozky"
-Tagged with==Klúcové slová:
-Edit==Edituj
-Delete==Zmaz
-Bookmark List==Zoznam záloziek
-previous page==predošlá stránka
-next page==dalšia stránka
-All==Všetky
-Show==Zobraz
-Bookmarks per page.==záloziek na stránku.
-#-----------------------------
-
-#File: ConfigBasic.html
-#---------------------------
-Select a language for the interface==Zvolte jazyk web rozhrania
-Basic Configuration==Zakladne nastavenia
-Your YaCy Peer needs some basic information to operate properly==Vase YaCy vyzaduje pre spravne fungovanie niekolko zakladnych udajov
-Your peer name has not been customized==Meno Vaseho peera nebolo zvolene
-please set your own peer name==zvolte prosim nazov Vaseho vlastneho peera
-You have a nice peer name==Mate pekne meno peera
-Peer Name:==Nazov peera:
-Please set a password for your peer to protect your settings==Prosim zvolte heslo na ochranu Vasich nastaveni
-> 3 characters==viac ako 3 znaky
-if this is successful you will be asked to log in with these values immediately==budete okamzite vyzvany prihlasit sa s novym heslo (ak zvolite vyhovujuce heslo)
-Password is set==Heslo bolo nastavene
-Peer User:==Peer User:
-Peer Password:==Peer Heslo:
-repeat same password==zopakujte heslo
-# NOT USED
-#Your peer cannot be reached from outside (which is not fatal, but would be good for the YaCy network);==Vas peer nemoze byt z vonka dosiahnuty (co nie je fatalna chyba, bolo by to vsak dobre pre siet YaCy);
-please open your firewall for this port and/or set a virtual server option in your router to allow connections on this port==Prosim otvorte firewall pre tento port a/alebo vytvorte virtualny server vo Vasom routeri na povolenie spojeni cez tento port
-Your peer can be reached by other peers==Vas peer nie je dosiahnutelny z inych peerov.
-Peer Port:==Port peera:
-Set Configuration==Uloz konfiguraciu
-What you should do next:==Co mozete urobit v nasledovnych krokoch:
-Your basic configuration is complete! You can now (for example)== Konfiguracia zaklanych nastaveny je hotova. Teraz mozete (napriklad)
-just <==jednoducho <
-start an uncensored search==odstartovat necenzurovane vyhladavanie
-start your own crawl and contribute to the global index, or create your own private web index== odstartovat vlastny crawl na prispievanie do globalneho indexu, alebo vytvorit vlastny web index
-set a personal peer profile (optional settings)==vytvorit vlastny profil peera (nepovinne nastavenia)
-monitor at the network page what the other peers are doing==na stranke siete pozorovat comu sa prave venuju ostatni peeri
-Your Peer name is a default name; please set another peer name.==Vas peer pouziva standarte predzvolene meno. Prosim zvolte si ine meno.
-If this does not work, the name is probably taken by someone else.==Ak to nepojde tak je toto meno uz pravdepodobne pouzite niekym inym.
-Please try to choose another one.==Prosim skuste nejake ine meno.
-You did not set a user name and/or a password.==Nezvolili ste ziadne meno pouzivatela a/alebo heslo.
-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 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 in 10 seconds.==adresu za 10 sekund.
-#-----------------------------
-
-#File: ConfigLanguage_p.html
-#---------------------------
-Language selection==Výber jazyka
-You can change the language of the YaCy-webinterface with translation files.==Jazyk YaCy web rozhrania môzete zmenit pomocou prekladových súborov. Vyberte zvolený jazyk zo zoznamu.
-Current language==Aktuálny jazyk
-Languagefile Author(s) (chronological):==Autor(y) jazykových súborov (chronologicky):
-Send additions to maintainer==Prosím pošlite zmeny maintainerovy na
-Available Languages==Podporované jazyky
-Install new language from URL==Nainštaluj nový jazyk z URL adresy
-Use this language==Tento jazyk ihned pouzit
-"Use"=="Pouzi"
-"Delete"=="Zmaz"
-"Install"=="Inštaluj"
-Unable to get URL:==Nie je mozné nainštalovat súbor z tejto URL adresy::
-Error saving the language file.==Pri nahrávaní súboru došlo k chybe.
-#-----------------------------
-
-#File: ConfigProfile_p.html
-#---------------------------
-Your Personal Profile==Váš osobný profil.
-You can create a personal profile here. Other YaCy users can view these information using a link on the network page.==Na tomto mieste môzete vytvorit váš osobný profil. Ostatný uzívatelia YaCy uvidia tieto informácie pomocou odkazu na stránke siete.
-You do not need to provide any personal data here, but if you want to distribute your contact information, you can do that here.==Vaše osobné údaje nemusíte udávat, ak však chcete distribuovat vaše kontaktné údaje, môzete tak urobit tu.
-Name==Meno
-# NOT USED
-#Nick Name==Prezývka
-Homepage==Domovská stránka
-eMail==email
-#ICQ==ICQ
-#Jabber==Jabber
-#Yahoo!==Yahoo!
-#MSN==MSN
-Comment==Komentár
-"Save"=="Uloz profil"
-#-----------------------------
-
-#File: ConfigProperties_p.html
-#---------------------------
-Advanced Config==Pokrocile nastavenia
-Here are all configuration options from YaCy.==Tu sa nachadzaju vsetky konfiguracne nastavenia YaCy.
-You can change anything, but some options need a restart, and some options can crash YaCy, if wrong values are used.==Vsetky konfiguracne nastavenia mozu byt zmenene, avsak niektore volby vyzaduju restart a niektore mozu sposobit pad YaCy v pripade zadnia nespravnych hodnot.
-For explanation please look into defaults/yacy.init==Vysvetlenie najdete v subore defaults/yacy.init
-"Save"=="Uloz"
-#-----------------------------
-
-#File: Connections_p.html
-#---------------------------
-Connection Tracking==Stav spojenia
-Incoming Connections==Prichadzajuce spojenia
-Showing #[numActiveRunning]# active, #[numActivePending]# pending connections from a max. of #[numMax]# allowed incoming connections.== Zobrazenych je #[numActiveRunning]# aktivnych a #[numActivePending]# cakajuci spojeni z max. #[numMax]# povolenych prichadzajucich spojeni.
-Protocol==Protokol
-Duration==Trvanie
-Source IP[:Port]==Zdrojova-IP[:Port]
-Dest. IP[:Port]==Zielova-IP[:Port]
-Command==Prikaz
-Used==Pouzity
-Close==Zatvor
-Waiting for new request nr.==Caka sa na poziadavku cislo.
-#-----------------------------
-
-#File: CookieMonitorIncoming_p.html
-#---------------------------
-Incoming Cookies Monitor==Sledovanie prichadzajucich cookies
-Cookie Monitor: Incoming Cookies==Sledovanie cookies: Prichadzajuce cookies
-This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:==Toto je zoznam vsetkych cookies, ktore web server poslal klientom YaCy proxy:
-Showing==Zobrazovanie
-entries from a total of==zaznamov z celkoveho poctu
-Cookies==Cookies
-Sending Host==Odosielatej
-Date==Datum
-Receiving Client==Prijemca
-Cookie==Cookie
-#-----------------------------
-
-#File: CookieMonitorOutgoing_p.html
-#---------------------------
-Outgoing Cookies Monitor==Sledovanie odchadzajucich cookies
-Cookie Monitor: Outgoing Cookies==Sledovanie cookies: Odchadzajuce cookies
-This is a list of Cookies that a browser using the YaCy Proxy has sent to a web server:==Toto je zoznam vsetkych cookies, ktore Vas web prehliadac pouzivajuci YaCy proxy poslal web serverom:
-Showing==Zobrazovanie
-entries from a total of==zaznamov z celkoveho poctu
-Cookies==Cookies
-# NOT USED
-#Sending Host==Odosielatej
-Date==Datum
-# NOT USED
-#Receiving Client==Prijemca
-Cookie==Cookie
-#-----------------------------
-
-#File: Help.html
-#---------------------------
-YaCy: Help==YaCy: Pomoc
->Help==>Pomoc
-
-#-----------------------------
-
-#File: index.html
-#---------------------------
-==
-YaCy '#[clientname]#': Search Page==YaCy '#[clientname]#': Vyhladavacia stranka
-# NOT USED
-#P2P WEB SEARCH==P2P Internetové Vyhladávanie
-"Search"=="Hladaj"
-more options...==Rozšírené vyhladávanie...
-Max. number of results:==Max. pocet výsledkov:
-order by:==Zorad podla:
-YBR-Date-Quality==YBR-Dátum-Kvalita
-YBR-Quality-Date==YBR-Kvalita-Dátum
-Date-YBR-Quality==Dátum-YBR-Kvalita
-Quality-YBR-Date==Kvalita-YBR-Dátum
-Date-Quality-YBR==Dátum-Kvalita-YBR
-Quality-Date-YBR==Kvalita-Dátum-YBR
-Resource:==Zdroj:
-global==globálne
-local==lokálne
-Max. search time==Max. doba vyhladávania
-(seconds)==(sekúnd)
-URL mask:==URL-Filter:
-restrict on==obmedzenie na
-show all==zobrazit vsetko
-# NOT USED
-#The following words are stop-words and had been excluded from the search:==Nasledujuce slova su stop-slova a boli z vyhladavania vylucene
-# NOT USED
-#No Results.==Ziadne vysledky.
-# NOT USED
-#length of search words must be at least 3 characters==Vyhladavane slova musia mas aspon 3 znaky
-# NOT USED
-#If you think this is unsatisfactory then you may consider to support the global index by running your own proxy/peer.==Ziadne vysledky. Zvazte podporu globalneho indexu pomocou proxies/peerov ak to povazujete za nedostatocne.
-# NOT USED
-#If everybody contributes, the results will get better.==Vysledky vyhladavania sa zlepsia ak bude kazdy prispievat.
-# NOT USED
-#Other possible reasons for no result:==Dalsie mozne dovody preco ste neobdrzali ziadne vysledku su:
-# NOT USED
-#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.
-# NOT USED
-#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.
-# NOT USED
-#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.
-# NOT USED
-#Only complete words are indexed, not parts of words==Len kompletne slova su indexovane, nie casti slov.
-# NOT USED
-#Don't use stopwords as search words==Prosim nepouzivajte stop-slova vo vyhladavani.
-# NOT USED
-#During this test phase the reaction time of remote peers is unknown.==Pocas tejto testovacej fazy je reakcny cas vzdialenych peerov neznami.
-# NOT USED
-#Please repeat your search to see if there are late-responses from remote peers==Prosim opakujte vyhladavanie na ziskanie pripadnej odpovede od pomalych peerov.
-# NOT USED
-#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,
-# NOT USED
-#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
-# NOT USED
-#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!
-# NOT USED
-#results from==vysledkov z
-# NOT USED
-#ordered links of a total number of==z celkovo najdenych
-# NOT USED
-#known.==znamych odkazov.
-# NOT USED
-#Catch up more links==Zhromazdit viacej odkazov
-# NOT USED
-#from 'late' peers.==z pomalych peerov.
-# NOT USED
-#Topwords (to refine search):==Top-slova (na zjemnenie vyhladavania):
-# NOT USED
-#You can enrich the search results by using the 'global' option==Zapnutim nastavenia 'global' mozete zvysit pocet vysledkov
-# NOT USED
-#This will search also other YaCy peers==takto budu prehladavani aj ostatni YaCy peeri.
-# NOT USED
-#You cannot get global search results because you are not connected to another YaCy peer.==Nemozete ziskat vysledky globalneho vyhlavania, pretoze nie ste pripojeny k ziadnemu inemu YaCy peerovi.
-# NOT USED
-#To connect you must first use the proxy.==na pripojenie musite najprv pouzit proxy.
-# NOT USED
-#See here for an==Tu najdete
-# NOT USED
-#installation guide==instalacnu prirucku
-# NOT USED
-#Alternatively, you can run the proxy in permanent online mode, which also grants global search.==Alternativne mozete nechat bezat proxy permanentne v online mode. Tento mod garantuje globalne vyhladavanie.
-# NOT USED
-#To do this, press this button:==Kliknite prosim na nasledujuce tlacitko na prechod do online modu:
-# NOT USED
-#"go online"==pripoj online
-# NOT USED
-#you must also switch to online mode==najprv sa vsak musite prepnut do online modu
-# NOT USED
-#(by using the proxy) to contribute to the global index.==(v ktorom pouzivate proxy) aby ste mohli prehladavat globalny index.
-# NOT USED
-#The global search resulted in #[globalresults]# link contributions from other YaCy peers.==Globalne vyhladavanie obsahuje #[globalresults]# vysledkov, ktore boli vytvorene za prispenia ostatnych peerov.
-# NOT USED
-#YaCy is a GPL'ed project==YaCy je GPL projekt
-# NOT USED
-#with the target of implementing a P2P-based global search engine.==s cielom vytvorenia globalneho, na principoch sieti P2P postaveneho vyhladavaca.
-# NOT USED
-#Architecture (C) by Michael Peter Christen==Architektur (c) vytvoril Michael Peter Christen
-#-----------------------------
-
-#File: CrawlStartExpert.html
-#---------------------------
-==
-Index Creation==Tvorba indexu
-Start Crawling Job:==Odstartuj crawling:
-You can define URLs as start points for Web page crawling and start crawling here. "Crawling" means that YaCy will download the given website, extract all links in it and then download the content behind these links. This is repeated as long as specified under "Crawling Depth".==Tu mozete zadat URL adresy web stranok ktore budu preliezane (crawled) a z ktorych sa preliezanie (crawling) odstartuje. "Crawling" znamena, ze YaCy siahne zvolenu web stranku, extrahuje vsetky odkazy a nasledne stiahne web stranky pod tymito odkazmi. Toto sa opakuje do hlbky zadanej v policku "Hlbka crawlingu".
-Crawling Depth:==Hlbka crawlingu:
-This defines how often the Crawler will follow links embedded in websites.==Definuje ako casto crawler nasleduje odkazy zahrnute vo web strankach.
-A minimum of 1 is recommended and means that the page you enter under "Starting Point" will be added to the index, but no linked content is indexed. 2-4 is good for normal indexing.==Doporucuje sa minimum 1, co znamena ze stranka ktoru ste zadali v "Startovacom bode" bude pridana do index avsak zlinkovany obsah indexovany nebude. Hodnoty 2-4 su vhodne pre normalne indexovanie.
-Be careful with the depth. Consider a branching factor of average 20;==Hlbku crawlovania zvolte opatrne. Uvazte ze pri priemernom faktore vetvenia 20
-
-A prefetch-depth of 8 would index 25.600.000.000 pages, maybe this is the whole WWW.==a hlbke crawlovania 8 bude indexovanych 25.600.000.000 web stranok, co je mozno cely web priestor.
-Crawling Filter:==Filter crawlingu:
-This is an emacs-like regular expression that must match with the URLs which are used to be crawled.==Toto je regularny vyraz v style emacs, ktory musi oznacovat URL adresu pouzitu na crawlovanie.
-# NOT USED
-#Use this i.e. to crawl a single domain. If you set this filter it would make sense to increase==Pouzite ho napr. na crawlovanie v jednej domene. Ak aktivujete tento filter tak ma zmysel
-the crawling depth.==zvysit hlbku crawlovania.
-Re-Crawl Option:==Nastavenia re-crawlovania:
-Use:==Pouzi:
-Interval:==Interval:
-Year(s)==Rok(y)
-Month(s)==Mesiac(e)
-Day(s)==Den(Dni)
-Hour(s)==Hodina(y)
-Minute(s)==Minuta(y)
-If you use this option, web pages that are already existent in your database are crawled and indexed again.==Ak aktivujete tuto volbu, tak web stranky ulozene vo Vasej databaze budu nanovo precrawlovane a indexovane.
-It depends on the age of the last crawl if this is done or not: if the last crawl is older than the given==Zavisi od veku posledneho crawlu ci tak bude vykonane alebo nie. Ak je posledny crawl starsi ako zadany
-# NOT USED
-#date, the page is crawled again, othervise it is treaded as 'double' and not loaded or indexed again.==datum, tak budu tieto stranky nanovo precrawlovane. V opacnom pripade budu oznacene ako 'double' a nebudu nanovo nahravane ani indexovane.
-Auto-Dom-Filter:==Auto-Dom-Filter:
-Depth:==Hlbka:
-# NOT USED
-#This option will automatically create a domain-filter which limits the crawl on domains the crawler will find on the given depth. You can use this option i.e. to crawl a page with bookmarks while restricting the crawl on only those domains that appear on the bookmark-page. The adequate depth for this example would be 1.==Tato volba automaticky vytvory domenovy filter ktory obmedzuje crawl na domeny ktore crawler najde v zadanej hlbke. Mozete pouzit tuto volbu t.j. crawlovat stranku zo zalozkami a nasledne obmedzit nasledujuci crawl na tie domeny ktore sa vyskytuje v zozname zaloziek. Primerana hlbka by v tomto pripade bola 1.
-The default value 0 gives no restrictions.==Prednastavena hodnota 0 znamena ziadne obmedzenie.
-Maximum Pages per Domain:==Maximum stranok na domenu:
-Page-Count:==Pocet stranok:
-You can limit the maxmimum number of pages that are fetched and indexed from a single domain with this option.==Maximalny pocet stranok vybratych a indexovanych z jednej domeny mozete touto volbou obmedzit.
-You can combine this limitation with the 'Auto-Dom-Filter', so that the limit is applied to all the domains within==Tuto volbu mozete kombinovat s 'Auto-Dom-Filtrom', takze toto obmedzenie bude aplikovane na vsetky domeny vo
-the given depth. Domains outside the given depth are then sorted-out anyway.==zvolenej hlbke. Domeny mimo zvolenej hlbky budu v kazdom pripade vytriedene.
-Accept URLs with '?' / dynamic URLs:==Akceptuj URL adresy s '?' / dynamicke URL adresy:
-A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled. However, there are sometimes web pages with static content that==Otaznik sa vacsinou pouziva ako priznak dynamickej stranky. URL adresa odkazujuca na dynamicky obsah by v normalnom pripade nemala byt crawlovana. Niekedy sa vsak stava ze stranky na ktore sa odkazuje URL adresou
-is accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.==obsahujucou otaznik maju staticky obsah. Neaktivujte tuto volbu ak ste si nie isty nebezpecenstvom zacyklenia crawlingu.
-Store to Proxy Cache:==Uloz do proxy cache:
-This option is used by default for proxy prefetch, but is not needed for explicit crawling.==Tato volba je standartne pouzita na proxy predvyber, avsak pre cisty crawling nie je potrebna.
-We recommend to leave this switched off unless you want to control the crawl results with the==Odporucame ponechat tuto volbu vypnutu ak nechcete kontrolovat vysledky crawlingu pomocou
-Cache Monitor==cache monitoru.
-Do Local Indexing:==Lokalne indexovanie:
-This enables indexing of the wepages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the==Toto aktivuje indexovanie web stranok, ktore crawler stiahol. Toto by malo byt standartne vypnute, ak nechcete crawlovat
-Proxy Cache without indexing.==len na vyplnenie proxy cache bez indexovania.
-Do Remote Indexing:==Indexovanie inych peerov:
-Describe your intention to start this global crawl (optional):==Popiste preco chcete zacat tento globalny crawl (popis je nepovinny):
-This message will appear in the 'Other Peer Crawl Start' table of other peers.==Tento popis sa u ostatnych peerov objavi v tabulke 'Start crawlingu ineho peera'.
-If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Ak aktivovane tak crawler bude kontaktovat inych peerov and bude ich vyuzivat ako vzdialenych indexatorov pre Vas crawl.
-If you need your crawling results locally, you should switch this off.==Vypnite tuto volbu, ak potrebujete mat vysledy crawlingu lokalne.
-Only senior and principal peers can initiate or receive remote crawls.==Len Senior a Principal peeri mozu odstartovat alebo obdrzat vzialene crawly.
-# NOT USED
-#A YaCyNews message will be created to inform all peers about a global crawl, so they can omit starting a crawl with the same start point.==YaCy sprava bude vytvorena na informovanie ostatnych peerov o globalnom crawle, aby sa zabranilo odstartovaniu crawlu z rovnakeho startovacieho bodu.
-# NOT USED
-#Exclude static Stop-Words==Vyluc staticke stop slova
-# NOT USED
-#This can be useful to circumvent that extremely common words are added to the database, i.e. "the", "he", "she", "it"... To exclude all words given in the file yacy.stopwords from indexing,==Toto ma zmysel pre zabranenie pridavania velmi casto sa vyskytujucich slov do databazy, ako napr. "a", "alebo", "to" atd. Aktivujte tuto volbu na vylucenie indexovania vsetkych slov uvedenych
-check this box.==v subore yacy.stopwords.
-Starting Point:==Startovaci bod:
-From File:==Zo suboru:
-From URL:==Z URL adresy:
-Existing start URLs are re-crawled.==Existjuce start URL adresy sa crawluju nanovo.
-Other already visited URLs are sorted out as "double"==Ine uz navstivene stranky budu ako 'dvojnasobne' vylucene
-A complete re-crawl will be available soon.==Kompletny re-crawl bude uz coskoro mozny.
-"Start New Crawl"=="Odstartuj novy crawl"
-# NOT USED
-#Distributed Indexing: ==Distribuovane indexovanie:
-Crawling and indexing can be done by remote peers.==Crawling a indexovanie moze byt vykonane inymi peermi.
-Your peer can search and index for other peers and they can search for you.==Vas peer moze hladat a indexovat pre inych peerov a ine peeri mozu hladat pre Vas.
-Accept remote crawling requests and perform crawl at maximum load==Akceptuj poziadavky na vzdialeny crawling a vykonaj crawling s maximalnym moznym vytazenim.
-Accept remote crawling requests and perform crawl at maximum of==Akceptuj poziadavky na vzdialeny crawling a vykonaj crawling s maximalnym vytazenim
-# NOT USED
-#Pages Per Minute (minimum is 1, low system load usually at PPM <= 30)==stranok za minutu (minimum je 1, pomale systemy nahravaju normalne pod 30 stranok za minutu)
-Do not accept remote crawling requests (please set this only if you cannot accept to crawl only one page per minute; see option above)==Neakceptuj poziadavky na vzdialeny crawling (prosim aktivujte tuto volbu len ak nemozete crawlovat 1 stranku za minut - pozri vyzsie)
-
-#Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db and restart.==
-# NOT USED
-#ERROR: Crawl filter "#[newcrawlingfilter]#" does not match with crawl root "#[crawlingStart]#".
Please try again with different filter.==
-# NOT USED
-#Error with URL input "#[crawlingStart]#": #[error]#==
-
-
-"set"=="Uloz"
-Error:==Chyba:
-# NOT USED
-#Application not yet initialized. Sorry. Please wait some seconds and repeat the request.==Nespravna inicializacia. Sorry. Prosim cakajte niekolko sekund a zopakujte Vasu poziadavku.
-Crawling of "#[crawlingURL]#" failed. Reason:==Crawling URL adresy "#[crawlingURL]#" skoncil s chybou. Dovod:
-Error with file input==Chyba vstupneho suboru
-Set new prefetch depth to==Nastav novu hlbku crawlingu na
-Crawling of "#[crawlingURL]#" started.==Crawling URL adresy "#[crawlingURL]#" bol odstartovany.
-You can monitor the crawling progress either by watching the URL queues==Crawling proces mozete monitorovat pomocou jedneho al. viacerych z nasledovnych URL cakacich listin:
-local queue==lokalna cakacia listina
-global queue==globalna cakacia listina
-loader queue==nahravacia cakacia listina
-indexing queue==indexovacia cakacia listina
-or see the fill/process count of all queues on the==alebo sa pozrite na proces vyplnania vsetkych cakacich listin na
->performance page.==>stranke vykonu.
-
-# NOT USED
-#Please wait some seconds, because the request is enqueued and delayed until the proxy/HTTP-server is idle for a certain time.==
-#The indexing results are presented on the==
-
-Index Monitor-page.==stranke Monitor indexu.
-# NOT USED
-#It will take at least 30 seconds until the first result appears there. Please be patient, the crawling will pause each time you use the proxy or web server to ensure maximum availability.==Bude trvat priblizne 30 sekund pokym sa zobrazi prvy vysledok. Budte prosim trpezlivy. Kvoli zabezpeceniu maximalnej dostupnosti bude crawling pozastaveny pri kazdom pouziti proxy alebo web servera na
-If you crawl any un-wanted pages, you can delete them==Ak crawlujete stranky ktore ste povodne nechceli crawlovat tak ich mozete
-here.==na tomto mieste zmazat.
-Removed #[numEntries]# entries from crawl queue. This queue may fill again if the loading and indexing queue is not empty==#[numEntries]# zaznamov bolo zmazanych z crawl cakacej listiny. Tato cakacia listina sa nanovo naplni ak nahravacia al. indexovacia listina nie je prazdna.
-Crawling paused successfully.==Crawling bol uspesne pozastaveny (pauzaa).
-Continue crawling.==Pokracuj v crawlingu.
-"refresh"=="aktualizuj"
-"continue crawling"=="pokracuj v crawlingu"
-"pause crawling"=="pozastav crawling"
-Crawl Profile List:==Profil crawl zoznamu:
-Crawl Thread==Vlakno crawlu
-Start URL==Startovacia URL
-# NOT USED
-#Depth==Hlbka
-# NOT USED
-#Filter==Filter
-
-#Auto Filter Hlbka==
-# NOT USED
-#MaxAge==
-#Auto Filter Content==
-#Max Page Per Domain==
-# NOT USED
-#Accept "?" URLs==
-
-Fill Proxy Cache==Vypln proxy cache
-# NOT USED
-#Local Indexing==Lokalne indexovanie
-# NOT USED
-#Remote Indexing==Indexovanie na inych peeroch
-Recently started remote crawls in progress:==Posledne odstartovane a spracovavane indexovania na inych peeroch:
-Start Time==Startovaci cas
-Peer Name==Meno peera
-Start URL==Startovacia URL adresa
-Intention/Description==Umysel/Popis
-Recently started remote crawls, finished:==Posledne odstartovane a ukoncene indexovania na inych peeroch:
-Remote Crawling Peers:==Peeri na vzdialeny crawl:
-No remote crawl peers availible.==Ziadny peer na vzdialeny crawling nie je dostupny.
-peers available for remote crawling.==Peeri dostupni na vzialeny crawling.
-Idle Peers==Necinni peeri
-Accept '?' URLs==Akceptuj URL adresy s '?'
-Busy Peers==Vytazeni peeri
-#(withQuery)#no::yes#(/withQuery)#==#(withQuery)#nie::ano#(/withQuery)#
-#(storeCache)#no::yes#(/storeCache)#==#(storeCache)#nie::ano#(/storeCache)#
-#(localIndexing)#no::yes#(/localIndexing)#==#(localIndexing)#nie::ano#(/localIndexing)#
-#(remoteIndexing)#no::yes#(/remoteIndexing)#==#(remoteIndexing)#nie::ano#(/remoteIndexing)#
-#(crawlingQ)#no::yes#(/crawlingQ)#==#(crawlingQ)#nie::ano#(/crawlingQ)#
-#{available}##[name]# (#[due]# seconds due) #{/available}#==#{available}##[name]# (#[due]# sekund) #{/available}#
-#{busy}##[name]# (#[due]# seconds due) #{/busy}#==#{busy}##[name]# (#[due]# sekund) #{/busy}#
-#-----------------------------
-
-#File: IndexCreateLoaderQueue_p.html
-#---------------------------
-Index Creation / Loader Queue==Vytvorenie indexu / Cakacia listina nahravaca
-Index Creation: Loader Queue==Vytvorenie indexu: Cakacia listina nahravaca
-The loader set is empty==Cakacia listina nahravaca je prazdna.
-There are #[num]# entries in the loader set:==V cakacej listine nahravaca sa nachadza #[num]# zaznamov:
-Initiator==Iniciator
-Depth==Hlbka
-URL==URL adresa
-#-----------------------------
-
-#File: IndexCreateQueues_p.html
-#-----------------------------
-#Crawl Queue<==Crawl Queue<
-#Click on this API button to see an XML with information about the crawler latency and other statistics.==Click on this API button to see an XML with information about the crawler latency and other statistics.
-#This crawler queue is empty==This crawler queue is empty
-Delete Entries:==Zmaz zaznami:
-"Delete"=="Zmaz"
-#>Count<==>Count<
->Initiator<==>Iniciator<
->Profile<==>Profil<
->Depth<==>Hlbka<
-Modified Date==Datum poslednej zmeny
-Anchor Name==Meno kotvy
-#-----------------------------
-
-#File: Messages_p.html
-#---------------------------
->Messages==>Spravy
->Date==>Datum
->From==>Od
->To==>Pre
->Subject==>Nazov
->Action==>Akcia
-From:==Od:
-To:==Pre:
-Date:==Datum:
-Subject:==Subjekt:
-reply==odpovedaj
->delete==>zmaz
-I/O error reading message table: ==Vstupno/Vystupna chyba pri citani tabulky sprav:
-#-----------------------------
-
-#File: MessageSend_p.html
-#---------------------------
-Send message==Posli spravu
-You cannot send a message to==Nemozete poslat spravu pre
-The peer does not respond. It was now removed from the peer-list.==Peer neodpoveda. Bol prave zmazany zo zoznamu peerov.
-# NOT USED
-#You are allowed to send me a message ≤==Nie je Vam dovolene posielat spravu ≤
-# NOT USED
-#kb and an attachment ≤==Kb a prilohu
-The peer==Peer
-is alive and responded:==je zivy a odpoveda:
-# NOT USED
-#Your Message==Vasa sprava
-Subject:==Nazov:
-Text:==Text:
-Enter==Odosli
-#The peer is alive but cannot respond. Sorry.==Peer je zivy avsak nemoze odpovedat. # cannot be translated
-Your message has been sent. The target peer responded:==Vasa sprava bola odoslana. Cielovy peer odpovedal:
-The target peer is alive but did not receive your message. Sorry.==Cielovy peer je zivy avsak nedostal Vasu spravu. Prepacte.
-Here is a copy of your message, so you can copy it to save it for further attempts:==Tu je kopia Vasej spravy, mozete si ju skopirovat a ulozit pre neskorsie pokusy:
-You cannot call this page directly. Instead, use a link on the==Na tuto stranku sa nemozete priamo odkazovat. Namiesto toho pouzite odkaz na
-Network page.==stranku siete.
-#-----------------------------
-
-#File: Network.html
-#---------------------------
-Network Overview==Prehlad stavu siete
-Network Menu==Menu siet
-Network Overview==Prehlad stavu siete
-Active Peers==Aktivny peeri
-# NOT USED
-#Passive Peers==Pasivny peeri
-Potential Peers==Potencionalny peeri
-Network Overview==Prehlad stavu siete
-# NOT USED
-#Active Peers==Aktivny peeri
-# NOT USED
-#Passive Peers==Pasivny peeri
-# NOT USED
-#Potential Peers==Potencionalny peeri
-Manually contacting Peer== Manualne kontaktujuci peer
-no remote #[peertype]# peer for this list known==ziadny vzdialeny #[peertype]# nie je znamy alebo online
-Showing #[num]# entries from a total of #[total]# peers.==Zobrazenych je #[num]# zaznamov z celkoveho poctu #[total]# peerov.
-# NOT USED
-#send Message/ show Profile/ edit Wiki==Posli spravu (m)/ Zobraz profil (p)/ Edituj wiki (w)
-Name==Meno
-Address==Adresa
-Hash==Hash
-# NOT USED
-#CR- Files==CR- subory
-Age==Vek
-con/h==spojeni za hodinu
-Type==Typ
-# NOT USED
-#Release/ SVN==Verzia YaCy/ SVN
-Contact==Kontakt
-# NOT USED
-#Last Seen==Naposledy videny
-Location==Miesto
-Offset==Offset
-Uptime==Uptime
-Links==Odkazy
-RWIs==RWIs
-# NOT USED
-#Sent Words==Odoslane slova
-
-# NOT USED
-#Sent URLs==Odoslane URL adresy
-# NOT USED
-#Received Words==Prijate Slova
-# NOT USED
-#Received URLs==Prijate URL adresy
-PPM==PPM
-Seeds==Seeds
-# NOT USED
-#Connects per hour==Spojeni za hodinu
-Send message to peer==Posli spravu peerovi
-View profile of peer==Zobraz profil peera
-Read and edit wiki on peer==Nacitaj a edituj wiki ineho peera
-# NOT USED
-#All Peers:==Vsetki peeri:
-Branch==Typ
-Peers==peeri
-All Links==Vsetky odkazy
-All Words==Vsetky slova
-Active (connected Senior and Principal)==Aktivny peeri (pripopojeni Seniori a Principal-i)
-Passive (disconnected Senior and Principal)==Pasivny peeri (odpojeny Seniori a Principal-i)
-Potential (Junior)==Potencionalny peeri (Juniori)
-Network Total==Celkovy prehlad siete
-YaCy Cluster Indexing Speed:==Rychlost YaCy cluster indexu
-# NOT USED
-#Pages Per Minute (Accumulated PPM over Active Peers).==Stranok za minutu (PPM aktivnych peerov)
-Your Peer:==Vas peer:
-Version==Verzia
-Own/Other==Vlastne/Ine
-Accept Crawl==Akceptuje Crawl
-# NOT USED
-#Sent Words==Odoslane slova
-# NOT USED
-#Sent URLs==Odoslane URL adresy
-# NOT USED
-#Received Words==Prijate Slova
-# NOT USED
-#Received URLs==Prijate URL adresy
-PPM==PPM
-Seeds==Seeds
-# NOT USED
-#Connects per hour==Spojeni za hodinu
-Network legend:==Legenda siete:
-dark font==tmavy font
-senior/principal peers==Senior/Principal peeri
-lightred font==svetly font
-# NOT USED
-#passiv peers (< 5 hour passiv time)==pasivny peeri (vyse 5 hodin pasivny)
-turquoise font==turquoise font
-junior peers==Junior peeri
-red point==cerveny bod
-this peer==Vas peer
-You are in online mode, but probably no internet resource is available. Please check your internet connection.==Nachadzate sa v online mode, avsak momentalne nie ste pripojeny do internetu. Prosim overte Vase internetove pripojenie.
-You are either not in online mode or you do not use the proxy option.==Bud nie ste v online mode, alebo nepouzivate proxy nastavenie.
-To get connection to the YaCy network, you must use the proxy by setting your browser's settings==Na ziskanie pripojenia do siete YaCy musite pouzit proxy nastavenia Vaseho browsera
-'on-demand - mode', see==mod 'na poziadanie', pozri
-here==tu
-for an installation guide) or you can go online by activating the permanent online mode.==Mozete sa vsak prejst do online modu tak, ze aktivujete permanentny online mod.
-To do this, press this button:==Na prechod do online stavu, kliknite prosim na toto tlacitko:
-"go online"=="Online mod"
-Progress towards the next peer:==Postup k dalsiemu peeru:
-At current PPM you will reach him==Pri sucasnom pocte stranok za minutu (PPM - Pages Per Minute) dosiahnete dalsieho peera
-in an unknown time:==za neznamy cas
-#in==za # the translation causes troubles - must be done somehow else
-never, because he is faster than you==nikdy pretoze je rychlejsi ako vy
-Peer Hash==Hash peera
-Peer IP==IP adresa peera
-Peer Port==Port peera
-add Peer==Pridaj peera
-#-----------------------------
-
-#File: News.html
-#---------------------------
-Network Menu==Menu siete
-News Overview==Prehlad sprav
-Incoming News==Prichadzajuce spravy
-Processed News==Precitane spravy
-Outgoing News==Odchadzajuce spravy
-Published News==Zverejnene spravy
-News Overview==Prehlad sprav
-This is the YaCyNews system (currently under testing).==Toto je YaCy system sprav (momentalne v stave testovania).
-The news service is controlled by several entry points:==Tento servis sprav je kontrolovany z nasledovnych vstupnych bodov:
-# NOT USED
-#A crawl start with activated remote-indexing will automatically create a news entry.==Start procesu preliezania (crawl) s aktiovanym vzdialenym indexovanim vytvori automaticky zaznam v spravach.
-Other peers may use this information to prevent double-crawls from the same start point.==Ostatni peeri mozu pouzit tuto informaciu aby nevytvorili taky isty proces preliezania (crawl) z rovnakym startovacim bodom.
-A table with recently started crawls is presented on the Index Create - page==Tabulka s prave odstartovanymi procesmi preliezania (crawls) je zobrazena na stranke "Vytvor index".
-A change in the personal profile will create a news entry. You can see recently made changes of==Zmena v profile sposobi vytvorenie zaznamu v spravach. Posledne vykonane zmeny
-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 menus:==V menu mozete vidiet tieto styri zaznami:
-# NOT USED
-#Incoming News (#[insize]#): latest news that arrived your peer.==Prichadzajuce spravy (#[insize]#): 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.
-You can process these news with a button on the page to remove their appearance from the IndexCreate and Network page==Tieto spravy mozete spracovat pomocou tlacitka na stranke. Po ich spracovani budu tieto spravy zo stranok "Vytvor index" a "Stav siete" odstranene.
-# NOT USED
-#Processed News (#[prsize]#): this is simply an archive of incoming news that you removed by processing.==Precitane spravy (#[prsize]#): Toto je jednoduchy archiv obdrzanych sprav, ktore ste odstranili spracovanim.
-# NOT USED
-#Outgoing News (#[ousize]#): here your can see news entries that you have created. These news are currently broadcasted to other peers.==Odchadzajuce spravy (#[ousize]#): Tu vidite spravy, ktore ste vytvorili. Tieto spravy sa prave dorucuju ostatnym peerom.
-you can stop the broadcast if you want.==Toto dorucovanie mozete kedykolvek zastavit.
-# NOT USED
-#Published News (#[pusize]#): your news that have been broadcasted sufficiently or that you have removed from the broadcast list.==Zverejnene spravy (#[pusize]#): Vase spravy, ktore boli uspesne dorucene alebo ktore ste odstranili zo zoznamu dorucovanych sprav.
-Originator==Autor
-Created==Vytvorene
-Category==Kategoria
-Received==Obdrzania
-Distributed==Distribuovane
-Attributes==Atribut
-"#(page)#::Process Selected News::Delete Selected News::Abort Publication of Selected News::Delete Selected News#(/page)#"=="#(page)#::Oznac vybrate spravy ako precitane::Zmaz vybrate spravy::Prerus rozsirovanie oznacenych sprav::Zmaz oznacene spravy#(/page)#"
-"#(page)#::Process All News::Delete All News::Abort Publication of All News::Delete All News#(/page)#"=="#(page)#::Oznac vsetky spravy ako precitane::Zmaz vsetky spravy::Prerus rozsirovanie vsetkych sprav::Zmaz vsetky spravy#(/page)#"
-#-----------------------------
-
-#File: PerformanceQueues_p.html
-#---------------------------
-Performance Settings of Queues and Processes==Nastavenia vykonu pre cakacie listiny a procesy
-Scheduled tasks overview and waiting time settings:==Prehlad naplanovanych uloh a nastaveny casov cakania
-Queue Size==Velkost cakacej listiny
->Total==>Celkovo
-#Block Time==
-#Sleep Time==
-#Exec Time==
->Cycles==>Cyklov
->Idle==>Necinny
->Busy==>Cinny
-# NOT USED
-#Short Mem Cycles==Kratke pamatove cykly
->per Cycle==>za cyklus
->per Busy-Cycle==>za cinny cyklus
->Memoy Use==>Vyuzitie pamate
->Delay between==>Zdrzania medzi
->idle loops==>necinne cyckly
->busy loops==>cinne cykly
-# NOT USED
-#Minimum of Required Memory==Pozadovane minimum pamate
-# NOT USED
-#Full Description==Pnly popis
-Submit New Delay Values==Uloz nove hodnoty zdrzani
-Reset To Default Values==Obnov predvolene nastavenia
-Changes take effect immediately==Zmenu su okamzite ucinne
-# NOT USED
-#Indexing Cache Settings:==Nastavenia indexovaceh cache:
-# NOT USED
-#Words in RAM Cache:==Slov v RAM chache
-This is the current size of the word caches.==Toto je momentalna velkost cache slov.
-# NOT USED
-#The smaller this number, the faster the shut-down procedure will be.==Cim mensie cislo, tym bude vypnutie YaCy rychlesie
-# NOT USED
-#The maximum of this cache can be set below.==Maximalna velkost cache moze byt nastavena nizsie.
-# NOT USED
-#Maximum URLs currently assigned to one cached word:==Maximalny pocet URL adries prave priradenych jednemu slovu v cache pamati:
-This is the maximum size of URLs assigned to a single word cache entry.==Toto je maximalna velkost URL adries ktore su priradene jedinemu slovu v cache slov.
-If this is a big number, it shows that the caching works efficiently.==Ak je to velke cislo, znamena to ze cachovanie pracuje efektivne.
-# NOT USED
-#Maximum Age of Word in cache:==Maximalny vek jedneho slova v cache:
-# NOT USED
-#This is the maximum age of a word index that is in the RAM cache in minutes.==Toto je maximalny vek jedneho slova v RAM cache v minutach
-# NOT USED
-#Minimum Age of Word in cache:==Minimalny vek jedneho slova v cache:
-# NOT USED
-#This is the minimum age of a word index that is in the RAM cache in minutes.==Toto je minimalny vek jedneho slova v RAM cache v minutach
-# NOT USED
-#Maximum number of Word Caches, low limit:==Maximalny poces slov v cache, dolna hranica
-# NOT USED
-#Maximum number of Word Caches, high limit:==Maximalny poces slov v cache, horna hranica
-This is is the number of word indexes that shall be held in the==Toto je pocet indexov slov ktore by mali byt
-ram cache during indexing. When YaCy is shut down, this cache must be==v RAM cache pocas indexacie. Ak je YaCy vypnute, tato cache musi byt
-flushed to disc; this may last some minutes.==ulozena na disk. To moze trvat niekolko minut.
-# NOT USED
-#The low limit is valid for crawling tasks, the high limit is valid==Dolna hranica plati pre ulohy crawlingu. Horna hranica plati pre
-# NOT USED
-#for search and DHT transmission tasks.==vyhladavacie ulohy a ulohy DHT prenosu.
-Enter New Cache Size==Zadajte novu velkost cache
-Thread pool settings:==Nastavenia threadpool-u
-maximum Active==max. aktivnych
-maximum Idle==max. neaktivnych
-minimum Idle==min. neaktivnych
-current Active==prave aktivnych
-current Idle==prave neaktivnych
-Enter new Threadpool Configuration==Zadajte novu konfiguraciu Threadpool-u
-Proxy Performance Settings:==Nastavenia vykonu proxy
-#Online Caution Delay==
-This is the time that the crawler idles when the proxy is accessed.==Toto je cas pocas ktoreho je crawler neaktivny ked sa pristupuje na proxy.
-The delay is extended by this time==Normalne zdrzanie bude predlzene o tento cas,
-each time the proxy is accessed afterwards. This shall improve performance of the proxy throughput.==pri kazdom pristupe na proxy. Toto by malo zlepsit priepustnost proxy.
-current delta is==Od posledneho pristupu k proxy
-since last proxy access.==uplynulo.
-Enter New Parameters==Zadajte nove parametre
-milliseconds==Millisekundy
-# NOT USED
-#Cache Settings:==Nastavenia cache:
-Cache Type==Typ cache pamate
-Words in RAM cache:==Slov v cache pamati
-# NOT USED
-#Indexing==Indexovanie
-Description==Popis
-The indexing cache speeds up the indexing process, the DHT cache holds indexes temporary for approval.==Indexovacia cache pamat urychli proces indexacie, DHT cache docasne udrzuje indexy na schvalenie
-The maximum of this caches can be set below.==Maxima tychto cache pamati mozete vidiet nizsie.
-Maximum URLs currently assigned==Maximalny pocet prave priradenych URL adries
-# NOT USED
-#not controlled for DHT cache==nekontrolovane na DHT cache
-#-----------------------------
-
-#File: PerformanceMemory_p.html
-#---------------------------
-==
-Performance Settings for Memory==Nastavenia vykonu pamate
-Memory Usage==Vyuzitie pamate
-After Startup==Po starte
-After Initializations==Po inicializacii
-before GC==pred GC
-after GC==po GC
->Now==>Teraz
-before <==pred <
-# NOT USED
-#Next Startup==Dalsi start
-Description==Popis
-maximum memory that the JVM will attempt to use==maximum pamate pre JVM
->Available<==>Dostupna<
-total available memory including free for the JVM within maximum==celkovo dostupnej pamate vratane volnej pamate pre JVM v ramci maxima
->Total<==>Celkovo<
-total memory taken from the OS==celkove mnozstvo pamate priradenej od operacneho systemu
->Free<==>Volna<
-free memory in the JVM within total amount==volna pamat v JVM v ramci celkovej pamate
->Used<==>Pouzitej<
-used memory in the JVM within total amount==pouzita pamat v JVM v ramci celkovej pamate
-Re-Configuration of Startup Paramenters:==Nova konfiguracia startovacich parametrov:
-# NOT USED
-#Changes take effect after re-start of YaCy==Zmeny sa prejavia az po restarte YaCy
-RAM Cache for Database Files:==RAM-Cache pre databazove subory:
-Chunk Size==Velkost chunk-u
-#Slots==
-Memory Occupation==Obsadenie pamate
-# NOT USED
-#Needed ==Potrebna
-# NOT USED
-# DB Size== Velkost DB
->Empty==>Volna
-# NOT USED
-#High Prio==Vysoka prioria
-# NOT USED
-#Medium Prio==Stredna prioria
-# NOT USED
-#Low Prio==Nizska priorita
-Used Now==Prave pouzita
-Assigned Max==Maximalne priradenej
-Default Max==Maximum standartne
-# NOT USED
-#Good Max==Dobre maximum
-Best Max==Najlepsie maximum
-The Assortment Cluster stores most of the page indexes.==Assortment cluster uklada vacsinu indexov stranok.
-Flushing speed of the temporary RWI cache depends on the size of this file cache. Increasing the space of this==Rychlost vyprazdnovania pomocnej RWI cache zavisi na velkosti tejto suborovej cache. Zvacsenie tejto
-cache will speed up crawls with a depth > 3.==cache urychly crawly s hlbkou > 3.
-#HTTP Response Header==
-The Response Header database stores the HTTP heades that other servers send when YaCy retrieves web pages==Databaza Response Headerov uklada HTTP headery ktore posielaju ostatne servery ked YaCy obdrzi web stranky
-during proxy mode, when performing crawls or if it fetches pages for snippet generation.==pocas proxy modu, pri vykonavani crawlov alebo prijati web stranky na generovanie snippetu.
-Increasing this cache will be most important for a fast proxy mode.==Zvacsenie tejto cache je najpodstatnejsie pre rychly proxy mod.
-'loaded' URLs=='nahrate' URL adresy
-This is the database that holds the hash/url - relation and properties regarding the url like load date and server date.==Toto je databaza obsahujuca vztahy "hash/URL adresa" a ine vlastnosti prinaleziace URL adresam, ako napr. datum nahratia, datum servera atd.
-This cache is very important for a fast search process.==Tato cache je velmi dolezita pre rychle vyhladavanie.
-Increasing the cache size will result in more search results and less IO during DHT transfer.==Dosledok zvacsenie tejto cache je viac vysledkov vyhladavania a menej vstupno/vystupnej zataze pocas DHT prenosu.
-'noticed' URLs=='zname' URL adresy
-A noticed URL is one that was discovered during crawling but was not loaded yet.==Znama URL adresa je taka ktora bola objavena pocas crawlingu avsak nebola este nahrata.
-#Increasing the cache size will result in faster double-check during URL recognition when doing crawls.==Erhöhen der Cachegröße resultiert in schnellerer Rücküberprüfung beim Durchführen von Crawls.
-'error' URLs=='chybne' URL adresy
-URLs that cannot be loaded are stored in this database. It is also used for double-checked during crawling.==URL adresy ktore nemozu byt nahrante su ulozene v tejto databaze. Takisto sa pouziva pri dvojnasobnej kontrole pocas crawlingu.
-Increasing the cache size will most probably speed up crawling slightly, but not significantly.==Zvacsenie tejto cache pravdepodobne jemne zvysi rychlost crawlingu, nie vsak o vela.
-DHT Control==DHT kontrola
-This is simply the cache for the seed-dbs==Toto je cache pre seed-dbs
-active, passive, potential==aktivna, pasivna, potencialna
-This cache is divided into three equal parts.==Tato cache je rozdelena na 3 rovnako velke casti.
-Increasing this cache may speed up many functions, but we need to test this to see the effects.==Zvacsenie tejto cache moze zrychlit mnoho funkcii, avsak potrebujeme to otestovat kvoli zisteniu vsetkych dosledkov.
->Messages==>Spravy
-The Message cache for peer-to-peer messages. Less important.==Cache sprav pre peer-to-peer spravy. Nema velky vyznam.
-The YaCy-Wiki uses a database to store its pages.==YaCy-Wiki pouziva databazu na ukladanie jej stranok.
-This cache is divided in two parts, one for the wiki database and one for its backup.==Tato cache je rozdelena na dve casti, jednu pre wiki databazu a druhu pre jej backup.
-Increasing this cache may speed up access to the wiki pages.==Zvacsenie tejto cache moze zvysit rychlost wiki stranok.
-The News-DB stores property-lists for news that are included in seeds.==Databaza novych sprav (News-DB) uklada zoznamy pre nove spravy ktore sa nachadzaju v seed-och.
-Increasing this cache may speed up the peer-ping.==Zvacsenie tejto cache moze zrychlit peer-ping.
-The robots.txt DB stores downloaded records from robots.txt files.==Databaza robots.txt uklada zaznami stiahnute zo suboru robots.txt.
-Increasing this cache may speed up validation if crawling of the URL is allowed.==Zvacsenie tejto cache moze zvysit rychlost kontroly ak je povoleny crawling URL adries.
-Crawl Profiles==Profil crawlu
-The profile database stores properties for each crawl that is started on the local peer.==Databaza profilov uklada vlastnosti pre kazdy crawl odstartovany na lokalnom peeri.
-Increasing this cache may speed up crawling, but not much space is needed, so the effect may be low.==Zvacsenie tejto cache moze zrychlit crawling, na ten vsak nie je potrebne vela miesta, takze efekt zvysenia bude pravdepodobne nizsky.
->Totals==>Celkovo
-Sum of memory amounts==Suma mnozstiev pamate
-Re-Configuration:==Nova konfiguracia:
-"Set"=="Nastav"
-# NOT USED
-#these custom values==tieto uzivatelom vytvorene hodnoty
-# NOT USED
-#all default values==vsetky standartne- hodnoty
-# NOT USED
-#all recom- mended values==vsetky odporucane hodnoty
-# NOT USED
-#all optimum values==vsetky optimalne- hodnoty
-#Write Cache Object Allocation:==
-#now alive in write cache==
-#currently held in write buffer heap==
-#-----------------------------
-
-#File: PerformanceSearch_p.html
-#---------------------------
-Performance Settings of Search Sequence==Nastavenia vykonu priebehu vyhladavania
-Timing Settings of Search Sequence==Casove nastavenia priebehu vyhladavania
-Settings for local search profile:==Nastavenia lokalneho profilu vyhladavania
-#Entity==
-#Collection==
-#Join==
-#Pre-Sort==
-#URL Fetch==
-#Post-Sort==
-#Filter==
-#Snippet-Fetch==
-execution Time==cas vykonavania
-percentage; sum of this must be 100==percentualne; suma musi davat 100%
-#result count==
-#percentage of requested amount==
-Submit New Profile Values==Uloz nove hodnoty profilu
-Reset To Default Values==Obnov predvolene hodnoty
-Your settings are valid and will be used for next search.==Vase nastavenia su platne a budu pouzite pri dalsom vyhladavani
-Reset to default settings done.==Predvolene nastavenia boli obnovene.
-Your settings cannot be accepted: sum of execution time percentage is not 100==Vase nastavenia memozu byt akceptovane: suma percentualneho casu vykonavania nie je 100%
-Timing results of latest search request:==Casove vysledky posledneho vyhladavacieho dotazu:
-absolute milliseconds==absolutne, v millisekundach
-absolute amount==absolutna hodnota
-The network picture below shows how the latest search query was solved by asking corresponding peers in the DHT:==Obrazok siete nizsie ukazuje bol vyrieseny posledny vyhladavaci dotaz u prislusnych peerov v DHT:
-#-----------------------------
-
-#File: ProxyIndexingMonitor_p.html
-#---------------------------
-Index Monitor for Proxy Indexing==Monitor indexu pre indexaciu proxy
-This is the control page for web pages that your peer has indexed during the current application run-time==Toto je kontrolna stranke pre web stranky, ktore Vas peer indexoval pocas aktualneho behu aplikacie
-as result of proxy fetch/prefetch.==ako vysledok proxy vyberu/predvyberu.
-No personal or protected page is indexed==Osobne a chranene stranky nebudu indexovane
-those pages are detected by properties in the HTTP header (like Cookie-Use, or HTTP Authorization)==taketo stranky su detekovane pomocou vlastnosti (properties) v HTTP hlavicke (headery) stranky (napr. cookies alebo HTTP autorizacia)
-or by POST-Parameters (either in URL or as HTTP protocol)==alebo pomocou POST parametru (napr. v URL adrese alebo v HTTP protokole)
-and automatically excluded from indexing.==a automaticky z indexovania vylucene.
-Proxy pre-fetch setting:==Nastavenia indexacie proxy:
-this is an automated html page loading procedure that takes actual proxy-requested==Toto je automaticka funkcia nahravania web stranok, ktora pouziva prave navstevovane
-URLs as crawling start points for crawling.==URL adresy ako startovaci bod indexacie.
-Prefetch Depth==Hlbka predvyberu
-A prefetch of 0 means no prefetch; a prefetch of 1 means to prefetch all==Hlbke 0 znamena ziaden predvyber. Hlbka 1 znamena predvyber vsetkych
-embedded URLs, but since embedded image links are loaded by the browser==URL adries ktore sa na konkretnej web stranke vyskytuju. Kedze vsak obrazk su nahravane web browserom
-this means that only embedded href-anchors are prefetched additionally.==znamena to ze len emdedded href kotvy "" budu dodatocne predvyberane
-Store to Cache==Uloz do cache
-It is almost always recommended to set this on. The only exception is that you have another caching proxy running as secondary proxy and YaCy is configured to used that proxy in proxy-proxy - mode.==Doporucujeme mat tuto volbu vzdy aktivovanu. Jedinou vynimkou je ak Vam bezi dalsi proxi ako cache a chcete aby YaCy bezalo v mode "od proxy k proxy".
-Do Remote Indexing==Vzdialene indexovanie
-If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Ak je aktivovane, tak crawler bude kontaktovat ine peeri a pouzivat ich ako vzialenych indexatorov pre Vas crawl.
-If you need your crawling results locally, you should switch this off.==Deaktivujte tuto funkciu ak potrebujete lokalne ulozit vysledky Vaseho crawlingu.
-Only senior and principal peers can initiate or receive remote crawls.==Len Senior a Principal peeri mozu odstartovat alebo prijat vzdialeny crawl.
-Please note that this setting only take effect for a prefetch depth greater than 0.==Prosim uvazte ze tieto nastavenia su ucinne len ak je zvolena hlbka predvyberu vacsia ako 0.
-Proxy generally==Proxy vseobecne
-Path==Adresar
-The path where the pages are stored (max. length 300)==Adresar kde je ulozena cache (max. 300 znakov)
-Size==Velkost
-The size in MB of the cache.==Velkost cache v MB.
-"Set proxy profile"=="Uloz proxy profil"
-The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.==Subor DATA/PLASMADB/crawlProfiles0.db nebol najdeny alebo je poskodeny.
-Please delete that file and restart.==Prosim zmazte tento subor a restartujte YaCy.
-Pre-fetch is now set to depth==Predvyber je nastaveny na hlbku
-Caching is now #(caching)#off::on#(/caching)#.==Ukladamie do chache je momentalne #(caching)#vypnute::zapnute#(/caching)#.
-# NOT USED
-#Cachepath is now set to '#[return]#'. Please move the old data in the new directory.==Cache sa momentalne nachadza v adresari '#[return]#'. Presunte prosim Vase stare subory do tohoto noveho adresara
-Cachesize is now set to #[return]#MB.==Velkost cache je momentalne nastavena na #[return]#MB.
-Changes will take effect after restart only.==Zmeny budu ucinne az po restarte YaCy.
-Remote Indexing is now #(crawlOrder)#off::on==Vzdialene indexovanie je momentalne #(crawlOrder)#vypnute::zapnute
-An error has occurred:==Nastala chyba:
-You can see a snapshot of recently indexed pages==Mozete si pozriet 'aktualny snimok' (snapshot) prave zaindexovanych web stranok
-on the==na
-Page.==stranke.
-#-----------------------------
-
-#File: QuickCrawlLink_p.html
-#---------------------------
-Quick Crawl Link==Rychly Crawl Link
-Quickly adding Bookmarks:==Rychly Crawl - Zalozky:
-Simply drag and drop the link shown below to your Browsers Toolbar/Link-Bar.==Kliknite na tahajte (drag and drop) odkaz nizsie do toolbar/linkbaru Vaseho browsera.
-If you click on it while browsing, the currently viewed website will be inserted into the YaCy crawling queue for indexing.==Ak nan kliknete pocas surfovania, tak bude prave prehliadana stranka pridana na indexaciu do cakacej listiny YaCy crawleru.
-Crawl with YaCy==Crawl s YaCy
-Title:==Titul:
-Link:==Odkaz:
-Status:==Stav:
-URL successfully added to Crawler Queue==URL adresa bola uspesne pridana do cakacej listiny crawleru.
-Malformed URL==Chyba v URL adrese
-Unable to create new crawling profile for URL:==Nie je mozne vytvorit crawling profil pre tuto URL adresu:
-Unable to add URL to crawler queue:==Nie je mozne pridat URL adresu do cakacej listiny crawleru:
-#-----------------------------
-
-#File: Settings_p.html
-#---------------------------
-YaCy '#[clientname]#': Settings==YaCy '#[clientname]#': Nastavenia
-
-This is the configuration page for YaCy. Access to this page should be limited to an administration person only.==Toto je konfiguracna stranka pre YaCy. Pristun na tuto stranku by mal mat iba administrator.
-To restrict the access to this page, please set an administrator account and password below.==Na obmedzenie pristupu na tuto stranku vytvorte prosim ucet a heslo pre administratora tu.
-If you want to restore all settings to the default values,==Ak chcete obnovit povodne nastavenia,
-# NOT USED
-#but forgot your administration password, you must stop the proxy,==avsak zabudli ste heslo administratora, tak musite YaCy zastavit (prikaz 'stopYaCy.*'),
-delete the file 'DATA/SETTINGS/yacy.conf' in the YaCy application root folder and start YaCy again.==zmazat subor 'DATA/SETTINGS/yacy.conf' v domovskom adresary YaCy a YaCy restartovat (prikaz 'startYaCy.*')
-# NOT USED
-#Administration Account Settings==Nastavenia konta administratora
-# NOT USED
-#Server Access Settings==Nastavenia pristupu k serveru
-# NOT USED
-#General Settings==Vseobecne nastavenia
-System Behaviour Settings==Systemove nastavenia
-# NOT USED
-#Server Access Settings==Nastavenia pristupu k serveru
-Seed Upload Settings==Nastavenia seed-uploadu
-HTTP Networking==Siet HTTP
-Message Forwarding (optional)==Preposielanie sprav (nepovinne)
-#Remote Proxy (optional)==Vzdialene proxy (nepovinne)
-Content Parser Settings==Nastavenia parsera obsahu
-Port Forwarding (optional)==Port Forwarding (nepovinne)
-#-----------------------------
-
-#File: Settings_ProxyAccess.inc
-#---------------------------
-# NOT USED
-#Server Access Settings==Nastavenia pristupu k serveru
-These settings configure the access method to your own http proxy and server.==Tieto nastavenia ovplyvnuju pristup na Vas HTTP proxy a HTTP server.
-Server/Proxy Port Configuration==Konfiguracia porty servera/proxy
-The socket addresses where YaCy should listen for incoming connections from other YaCy peers or http clients.==Socket-adresy na ktorych by malo YaCy cakat na prichadzajuce spojenia z ostatnych YaCy peerov a http klientov.
-You have four possibilities to specify the address:==Mate styri moznosti specifikacie adresy:
-defining a port only==zadanim len portu
-e.g. 8080==napr. 8080
-defining IP address and port==zadanim IP adresy a portu
-e.g. 192.168.0.1:8080==napr. 192.168.0.1:8080
-defining host name and port==zadanim hostname pocitaca a portu
-e.g. home:8080==napr. home:8080
-defining interface name and port==zadanim rozhrania a portu
-e.g. #eth0:8080==napr.. #eth0:8080
-Hint: Dont forget to change your firewall configuration after you have changed the port.==Rada: Nezabudnite zmenit nastavenia firewallu po zmene portu.
-Proxy and http-Server Administration Port:==Administracny port proxy a HTTP servera:
-Changes will take effect in 5-10 seconds==Zmeny budu ucinne za 5-10 sekund
-Server Access Restrictions==Obmedzenia pristupu k serveru
-You can restrict the access to this proxy/server using a two-stage security barrier:==Pristup k tomuto proxy resp. HTTP serveru mozete obmedzit pouzitym 2-stupnovej bezpecnostnej bariery:
-define an access domain with a list of granted client IP-numbers or with wildcards==zadajte priestor sietovych domen so zoznamom IP adries povolenych klientov alebo pomocou wildcard znakov
-define an user account with an user:password - pair==vytvorte uzivatelsky ucet pomocou paru 'uzivatel:heslo'
-#This is the account that restricts access to the proxy function.==Dies sind die Nutzer denen der Zugriff auf die Proxyfunktion gewährt wird.
-You probably don't want to share the proxy to the internet, so you should set the IP-Number Access Domain to a pattern that corresponds to you local intranet.==Pravdepodobne nechcete na internete zielat Vase proxy, takze by ste mali zvolit IP adresovy priestor tak aby zodpovedal adresam Vaseho intranetu.
-The default setting should be right in most cases.==Predvolene nastavenia by mali byt vo vacsine pripadov spravne.
-If you want, you can also set a proxy account so that every proxy user must authenticate first, but this is rather unusual.==Ak chcete mozete tiez vytvorit proxy ucet, takze kazdy uzivatel proxy sa musi najprv prihlasit, co je vsak neobvykle riesenie.
-IP-Number filter:==Filter IP adries:
-Use yacy communication==Pouzi vzdialeny proxy server pre YaCy <-> YaCy komunikaciu
-Specifies if the remote proxy should be used for the communication of this peer to other yacy peers.==Udava ci vzdialeny proxy server ma byt pouzity na komunikaciu medzi tymto a inymi peermi.
-Hint: Enabling this option could cause this peer to remain in junior status.==Rada: Zapnutie tejto volby moze sposobit ze Vas peer ostane v stave Junior.
-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 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_ServerAccess.inc
-#---------------------------
-Server Access Settings==Nastavenia pristupu k serveru
-Here you can restrict access to the server.==Na tomto mieste mozete obmedzit pristup k serveru.
-# NOT USED
-#By default, the access is not limited, because this function is needed to spawn the p2p index-sharing function.==Standartne je pristup neobmedzeny, pretoze tato funkcia je potrebna na vytvorenie zdielania p2p indexu.
-If you block access to your server==Ak zablokujete pristup k Vasemu serveru
-setting anything else than==nastavenie cohokolvek ineho ako
-# NOT USED
-#then you will also be blocked from using other peers' indexes for search service.==potom Vam nebude umoznene pouzivat indexy ostatnych peerov.
-# NOT USED
-#However, blocking access may be correct in enterprise environments where you only want to index your company's own web pages.==Avsak zablokovanie pristupu moze byt spravnym opatrenim vo firemnej sieti kde chcete indexovat len stranky vlastnej firmy.
-ATTENTION: Your current IP is recognized as==POZOR: Vasa aktualna IP adresa rozpoznavana ako
-# NOT USED
-#. If the value you enter here does not match with this IP, you will not be able to access the server pages anymore==Ak hodnota ktoru ste tu zadali nezodpoveda tejto IP adrese, tak nebudete schopny pristupovat na tiete stranky servera.
-IP-Number filter:==Filter IP adries:
-#-----------------------------
-
-#File: Settings_Seed.inc
-#---------------------------
-Seed Upload Settings==Nastavenia nahravania seedu
-With these settings you can configure if you have an account on a public accessible==Tymito nastaveniami mozete urcit ci mate konto na verejne dostupnom
-server where you can host a seed-list file.==serveri, kde mozete dat k dispozicii subor seed-zoznamu
-General Settings:==Vseobecne nastavenia:
-If you enable one of the available uploading methods, you will become a principal peer.==Ak aktivujete jednu z dostupnych nahravacich metod, 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 have been changes to the seed-list.==avsak len ak sa v seed zozname vyskytli zmeny.
-Upload Method:==Sposob nahravania:
-Retry Uploading==Vyskusaj nahravanie
-Here you can specify which upload method should be used.==Tu mozete urcit aka nahravacia metoda sa ma pouzit.
-Select 'none' to deactivate uploading.==Zvojte 'none' na deaktivovanie nahravania.
-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: Settings_MessageForwarding.inc
-#---------------------------
-Message Forwarding==Presmerovanie sprav
-With this settings you can activate or deactivate forwarding of yacy-messages via email.==S tymito nastaveniami mozete zapnut alebo vypnut presmerovanie YaCy sprav cez email.
-Enable message forwarding:==Zapni presmerovanie sprav:
-Enabling/Disabling message forwarding via email.==Zapni/Vypni presmerovanie sprav cez email.
-Forwarding Command:==Prikaz presmerovania:
-The command-line program that should be used to forward the message. e.g.:==Program prikazoveho riadku, ktory ma byt pouzity na presmerovanie sprav. napr.:
-Forwarding To:==Presmeruj na:
-The recipient email-address. e.g.:==Email adresa prijimatela. napr.:
-Changes will take effect immediately.==Zmeny su okamzite ucinne.
-#-----------------------------
-
-#File: SettingsAck_p.html
-#---------------------------
-YaCy '#[clientname]#': Settings Acknowledge==YaCy '#[clientname]#': Spracovanie nastaveni
-Settings Receipt:==Prijatie nastaveni:
-No information has been submitted==Ziadne informacie neboli prenesene:
-# NOT USED
-#Nothing changed==Nic nebolo zmenene.
-Error with submitted information.==Pri prenose informacii doslo k chybe.
-Nothing changed.==Nic nebolo zmenene.
-The user name must be given.==Meno uzivatela musi byt zadane
-# NOT USED
-#Your request cannot be processed. Nothing changed.==Vasa poziadavka nemoze byt vykonanana. Nic nebolo zmenene.
-The password redundancy check failed. You have probably mistyped your password.==Chyba pri kontrole hesla. Pravdepodobne preklep.
-# NOT USED
-#Shutting down. Application will terminate after working off all crawling tasks.==Vypnut Aplikacia bude ukoncena po ukonceni vsetkych crawlov.
-Your administration account setting has been made.==Nastavenia k uctu administratora boli ulozene.
-# NOT USED
-#Your new administration account name is #[user]#. The password has been accepted. If you go back to the Settings page, you must log-in again.==Novy nazov Vaseho administratorskeho uctu je #[user]#. Heslo bolo prijate. Ak sa chcete vratit naspat na stranku nastaveni tak sa musite do YaCy znova prihlasit.
-Your proxy access setting has been changed.==Nastavenia pristupu k Vasemu proxy serveru boli zmenene.
-Your proxy account check has been disabled, since you did not supply a password.==Kontrola Vaseho proxy uctu bola vypnuta, pretoze ste nezadali heslo.
-The new proxy IP filter is set to==Novy proxy IP filter je nastaveny na
-The proxy port is:==Proxy port je:
-# NOT USED
-#if you changed the Port or Port Forwarding Settings, you need to restart YaCy.==Musite restartovat YaCy, ak ste zmenili cislo portu alebo nastavenia presmerovania portu.
-Your proxy access setting has been changed.==Nastavenia pristupu k Vasemu proxy serveru boli zmenene.
-# NOT USED
-#Your new proxy account name is #[user]#. The password has been accepted.==Novy nazov Vaseho proxy uctu je #[user]#. Heslo bolo prijate.
-# NOT USED
-#If you open any public web page through the proxy, you must log-in then.==Musite sa prihlasit ak chcete otvorit nejaku verejnu web stranku cez proxy.
-# NOT USED
-#Your server access filter is now set to #[filter]#==Filter Vaseho pristupu k serveru je nastaveny na #[filter]#
-# NOT USED
-#Auto pop-up of the Status page is now disabled==Automaticky pop-up stranky stavu pri starte browsera je teraz vypnuty.
-# NOT USED
-#Auto pop-up of the Status page is now enabled==Automaticky pop-up stranky stavu pri starte browsera je teraz zapnuty.
-# NOT USED
-#You are now permanently online.==Nachadzate sa prave v permanentnom online mode.
-After a short while you should see the effect on the==Za kratky uvidite zmeny na
-status page.==stranke stavu
-The Peer Name is:==Meno tohoto peera je:
-Your static Ip(or DynDns) is:==Vasa staticka IP adresa (alebo DynDns) je:
-Seed Settings changed.#(success)#::You are now a principal peer.==Nastavenia seed-u sa zmenili.#(success)#::Teraz ste Principal peerom.
-Seed Settings changed, but something is wrong.===Nastavenia seed-u sa zmenili avsak nieco je nespravne.
-Seed Uploading was deactivated automatically.==Nahravanie seed-u bolo automaticky deaktivovane.
-Please return to the settings page and modify the data.==Prosim vratte sa naspat do nastaveni a zmente udaje.
-The remote-proxy setting has been changed==Nastavenia vzdialeneho proxy servera boli zmenene.
-The new setting is effective immediately, you don't need to re-start.==Nove nastavenie je okamzite ucinne, nepotrebujete restart.
-# NOT USED
-#The submitted peer name is already used by another peer. Please choose a different name. The Peer name has not been changed.==Pozadovane meno peera je uz pouzite inym peerom. Vyberte prosim ine meno. Meno peera nebolo zmene.
-Your Peer Language is:==Jazyk Vaseho peera je:
-# NOT USED
-#The submitted peer name is not well-formed. Please choose a different name. The Peer name has not been changed.==Pozadova meno peera ma zly format. Vyberte prosim ine meno. Meno peera nebolo zmene.
-# NOT USED
-#Peer names must not contain characters other than (a-z, A-Z, 0-9, '-', '_') and must not be longer than 80 characters.==Meno peera nesmie obsahovat ine znaky ako (a-z, A-Z, 0-9, '-', '_') a nesmie byt dlhsie ako 80 znakov.
-The new parser settings where changed successfully.==Nove nastavenia parsera boli uspesne ulozene.
-Parsing of the following mime-types was enabled:==Aktivovane bolo parsovanie nasledujuci mime-typov:
-Seed Upload method was changed successfully.==Nahravacia seed metoda bola uspesne zmenena.
-You are now a principal peer.==Teraz ste Principal peer.
-Seed Upload Method:==Nahravacia seed metoda:
-Seed File URL:==URL adresa seed suboru:
-Your proxy networking settings have been changed.==Vase nastavenia proxi siete boli zmemene.
-Transparent Proxy Support is:==Transparentna podpora proxi je:
-Connection Keep-Alive Support is:==Podpora keep-alive spojenia je:
-Your message forwarding settings have been changed.==Nastavenia presmerovania Vasich sprav boli zmenene.
-Message Forwarding Support is:==Podpora presmerovania sprav je:
-Message Forwarding Command:==Prikaz presmerovania sprav:
-Recipient Address:==Adresa prijimatela:
-Your port forwarding settings have been changed.==Nastavenia presmerovania na porte boli zmenene.
-Port Forwarding Support is:==Podpora presmerovania na porte je:
-Port Forwarding Port:==Port presmerovania portu:
-Port Forwarding Host:==Host presmerovania portu:
-Port Forwarding uses proxy:==Presmerovanie portu pouziva proxy:
-Port Forwarding Settings changed, but something is wrong.==Nastavenia presmerovania portu boli zmenene, avsak nieco je nespravne.
-Port Forwarding was deactivated automatically.==Presmerovanie portu bolo automaticky vypnute.
-Please return to the settings page and modify the data.==Prosim vratte sa naspat do nastaveni a zmente udaje.
-# NOT USED
-#You are now event-based online.==Nachadzate sa v aktivitou riadenom mode.
-After a short while you should see the effect on the==Za kratky uvidite zmeny na
-# NOT USED
-#You are now in Cache Mode.==Nachadzate sa v cache mode.
-Only Proxy-cache ist available in this mode.==Iba proxy cache je v tomto mode dostupna.
-After a short while you should see the effect on the==Za kratky uvidite zmeny na
-You can now go back to the==Mozete sa vratit do
-Settings page if you want to make more changes.==Nastaveni a vykonat dalsie zmeny.
-Port rebinding will be done in a few seconds==Novy port bude aktivovany za niekolko sekund.
-You can reach your YaCy server under the new location==Vas YaCy server je pristupny pod novou adresou:
-#-----------------------------
-
-#File: Status.html
-#---------------------------
-System-, Index- and Peer-Status==Stav systemu, indexu a peera
-Welcome to YaCy!==Vitajte v YaCy!
-Your settings are _not_ protected!==Vase nastavenia _nie_su_ chranene heslom!
-"Restart"=="Restartuj"
-"Shutdown"=="Vypni"
-Public System Properties==Vseobecne systemove vlastnosti
-System version==Verzia systemu
-the latest public version is==posledna zverejnena stabilna verzia je
-Click here to==Kliknite
-download it.==tu, na jej stiahnutie.
-This peer's address==Adresa tohoto peera
-#Not assigned==nepriradena
-# NOT USED
-#enabled==aktivovana
-Not assigned. The peer must go online to get an address.==Nepriradena. Vas pees musi prejst do online modu aby dostal adresu.
-#---
-The peer does not go online until you use the proxy to surf the internet,==Vas peer neprejde do online modu pokym nepouzijete proxy na surfovanie v internete,
-thus proving that you want to go online.==cim signalizujete ze chcete prejst do online modu.
-#---
-If you don't know how to configure your system,==Navod ako nakonfigurovat system,
-see the .==instalacne instrukcie.
-#---
-Your '.yacy' home at==Vasa YaCy domena je
-This peer's name==Nazov tohoto peera
-This peer's statistics==Statistika tohoto peera
-Unknown==Neznamy
-Uptime==Uptime
-Connects ==Spojenia
-peers/hour==Peerov za hodinu
-This peer's status==Stav tohoto peera
-Virgin - You have not published your peer yet, because you have not used the proxy yet. If you configured your browser's proxy settings==Virgin (Panna) - Vas peer je YaCy sieti neznamy, pretoze ste este nepouzili proxy. Ak ste spravne nakonfigurovali proxy nastavenia Vasho web browseru
-see online: search the internet using the other peers' global index on your own search page. We encourage you to open your firewall for the port you configured (usually: 8080), or to set up a 'virtual server' in your router settings (often called DMZ). Please be fair, contribute your own index to the global index.==Junior - Vas peer nie je dosiahnutelny z internetu. Mozny dovod tohto stavu je, ze sa nachadzate za firewall-om, NAT alebo routerom. Napriek tomu stavu mozete vyhladavat na internete, vdaka prehladavaniu globalneho indexu ostatnych peerov z Vasej vlastnej vyhladavacej stranky. Doporucujeme Vam otvorit firewall pre port ktory ste zvoli v nastaveniach (obvykle: 8080), alebo vytvorit "virtualny server" vo Vasom routery (casto nazyvanom aj DMZ). Prosim budte ferovy a prispejte Vasim dielom do globalneho indexu!
-Senior - You are running a server and you support the global internet index, which you can also search yourself. Thank you!==Senior - Mate spusteny YaCy server a prispievate do globalneho indexu, v ktorom mozete takisto vyhladavat. Dakujeme!
-Principal - You are senior and you publish your seed-list to a public accessible server where it can be retrieved using the URL==Prinzipal - Mate status Seniora a zverejnujete Vas seed-list na verejne dostupnom servery odkial je dostupny pon touto URL adresou:
-You can of course search the internet using the other peers' global index on your own search page.==Samozrejme mozete vyhladavat na internete v globalnom indexe od ostatnych peerov na Vasej vlastnej vyhladavacej stranke.
-Other peers==Ostatni peeri
-other peers online.==online peerov
-not online==offline
-# NOT USED
-#Seed server==Seed Server
-# NOT USED
-#Disabled. To enable this you need a FTP account where you can upload files to a web space. If you do that, you become a YaCy root server. You can configure your account details on the==Deaktivovane. Na aktivaciu potrebujete FTP konto na ktore mozete nahrat subory na web. Ak tak urobite stanete sa YaCy root serverom. Detaily k tomuto FTP kontu mozete nakonfigurovat na
-# NOT USED
-#Settings page.==stranke nastaveni .
-# NOT USED
-#Enabled: Updating periodically to server==Aktivovany: Periodicky update voci serveru
-# NOT USED
-#Enabled: Updating periodically to file==Aktivovany: Periodicky update voci suboru
-# NOT USED
-#Last upload:==Posledny upload:
-Online-mode==Online mod
-You are in Cache-browsing mode.==Nachadzate sa v mode prezeracie cache.
-Only websites from the proxy-cache are accessible.==Pristupne su len stranky z proxy cache.
-To switch online-mode, press one of the following buttons:==Na prechod do online modu kliknite na jedno z nasledujutich tlacidiel:
-"event-based Mode"=="aktivitou riadeny mod"
-"Permanent Mode"=="permanentny mod"
-You are in event-based online mode.==Nachadzate sa v udalostami riadenom online mode.
-The YaCy p2p network will boot when you start using the proxy or you switch to permanent mode.==Siet YaCy p2p bude aktivovana po prvom pouziti proxy alebo po prechode do permanentneho modu.
-Attention: Using the proxy in permanent mode will keep your internet connection online as long as YaCy runs.==Upozornenie: Pri pouziti proxy v permanentnom mode ostavate online po celu dobu behu YaCy.
-Use this only if you have a flatrate or you have an always-on connection.==Pouzite tento mod len ak mate flatrate pripojenie alebo ste do internetu neustale pripojeny.
-"Go on-line"=="Prejdi do online modu"
-"Go to Cache-Mode"=="Prejdi do cache modu"
-You are in permanent mode. Attention: If you don't have a flatrate or are always-on, you must switch off the proxy to go off-line.==Pracujete v permanentom mode. Upozornenie: Ak nemate flatrate a/alebo nechtece byt trvalo online musite vypnut proxy na prechod do offline modu
-Last Refresh:==Posledna aktualizacia:
-# NOT USED
-#Click <==Kliknite <
-# NOT USED
-#>here<==>tu<
-# NOT USED
-#to log in as administrator and see full status.==na prihlasenie sa ako administrator a na zobrazenie vsetkych informacii
-#-----------------------------
-
-#File: Status_p.inc
-#---------------------------
-Private System Properties==Sukromne systemove vlastnosti
-System Resources==Systemove zdroje
-Processors:==Procesory:
-Protection==Ochrana
-#Your settings are _not_ protected! Please go to the==Vase nastavenia _nie_su_ chranene heslom Chodte prosim na
-settings page immediately and set an administration password.==stranku nastaveni a ihned si zvolte heslo.
-Your settings are protected by a password.==Vase nastavenia su chranene heslom.
-Peer host==Peer Host
-Port forwarding host==Port forwarding Host
-not used==nepouzite
-broken==prerusene
-connected==spojene
-Remote proxy==vzdialene proxy
-not used==nepouzite
-Used for YaCy -> YaCy communication:==Pozite pre YaCy -> YaCy komunikacia:
-Yes==Ano
-No==Nie
-Auto-popup on start-up==Auto-Popup pri starte
-Disabled. To enable this again please use the==Deaktivovane. Na aktivaciu tejto funkcie pouzite prosim
-Settings page.==stranku nastaveni.
-Enabled. To disable this please use the==Aktivovane. Na deaktivaciu tejto funkcie pouzite prosim
-Memory Usage==Spotreba pamate
-free:==volna:
-total:==celkova:
-max:==maximalna:
-Connections Incoming==Prichadzajuce spojenia
-Active:==Aktivne:
-Idle:==Cakajuce:
-#Max:Max:
-Indexing Queue==Cakacia listina indexacie
-Loader Queue==Cakacia listina nahravaca
-paused==pozastavene
-Crawler Queues==Cakacia listina crawleru
-Local Crawl==Lokalne crawlovat
-Remote triggered Crawl==prichadzajuce vzialene crawly
-Global Crawl Trigger==odchadzajuce vzialene crawly
-#Pre-Queueing==
- local== lokalne
-#-----------------------------
-
-#File: Steering.html
-#---------------------------
-Steering==Ovladanie
-Steering Receipt:==Navod na ovladanie
-No information has been submitted==Udaje neboli odoslane
-Nothing changed==Udaje neboli zmenene
-Your system is not protected by a password==Vas system nie je chraneny heslom
-Please go to the Settings page and set an administration password==Chodte prosim do nastaveni a zvolte administratorske heslo.
-You don't have the correct access right to perform this task.==Nemate prava na spustenie tejto aplikacie.
-Please log in.==Prosim prihlaste sa.
-Shutting down.==Vypinanie.
-Application will terminate after working off all scheduled tasks.==YaCy proxy bude ukonceny po vykonani vsetkych nasledujucich uloh.
-Then YaCy will restart.==Potom sa YaCy restartuje.
-You can now go back to the Settings page if you want to make more changes.==Mozete sa vratit na stranku nastavenia ak chcete vykonat viacero zmien.
-#-----------------------------
-
-#File: ViewFile.html
-#---------------------------
-View URL Content==Zobraz obsah URL adresy
-#URL==URL
-#Hash==Hash
-Word Count==Pocet slov
-Description==Popis
-Size==Velkost
-View as:==Zeige als:
-#Original==Original
-Plain Text==Plain text
-Parsed Text==Parsovany text
-Parsed Sentences==Parsovane vety
-No URL hash submitted.==Ziadna URL hash nebola odoslana.
-Unable to find URL Entry in DB==Nebolo mozne najst URL zaznam v databaze.
-Invalid URL==Neplatna URL
-Unable to download resource content.==Nebolo mozne stiahnut obsah zdroja.
-Unable to parse resource content.==Nebolo mozne parsovat obsah zdroja.
-Plain Resource Content==Cisty obsah zdroja
-Parsed Resource Content==Parsovany obsah zdroja
-Parsed Resource Sentences==Parsovane zdrojove vety
-Original Resource Content==Originalny obsah zdroja
-#-----------------------------
-
-#File: ViewLog_p.html
-#---------------------------
-Lines==Riadkov
-reversed order==v prevratenom poradi
-"refresh"=="aktualizuj"
-#-----------------------------
-
-#File: ViewProfile.html
-#---------------------------
-Remote Peer Profile==Profil vzdialeneho peera
-Remote Peer Profile:==Profil vzdialeneho peera:
-Wrong access of this page==Nespravny pristup na tuto stranku
-# NOT USED
-#The requested peer is not known or a potential peer, what means the peer's profile can't be fetched, because he is behind a firewall.==Pozadovany peer je neznamy alebo je to potencionalny peer, co znamena ze jeho profil nemoze byt nahrany, pretoze je za firewall-om
-The peer==Peer
-is not online.==nie je online.
-This is==Toto je profil peera s nazvom:
-#'s Profile:==
-Name==Meno
-# NOT USED
-#Nick Name==Prezyvka
-Homepage==Domovska stranka
-eMail==eMail
-#ICQ==ICQ
-#Jabber==Jabber
-#Yahoo!==Yahoo!
-#MSN==MSN
-Comment==Komentar
-#-----------------------------
-
-#File: Wiki.html
-#---------------------------
-yacyWiki==YaCyWiki
-Changes will be published as announcement on YaCyNews==Zmeny budu zverejnene pomocou oznamov na YaCyNews-och
-#-----------------------------
-
-#File: yacysearch.html
-#---------------------------
-# NOT USED
-#Result Page==Stranka vysledkov
-# NOT USED
-#P2P WEB SEARCH==P2P Internetové Vyhladávanie
-"Search"=="Hladaj"
-"delete"=="zmaz"
-The following words are stop-words and had been excluded from the search:==Nasledujuce slova su stop-slova a do vyhladavania neboli zahrnute
-No Results.==Ziadne vysledky
-length of search words must be at least 3 characters==dlzka vyhladavaneho slova musi byt najmenej 3 znaky
-If you think this is unsatisfactory then you may consider to support the global index by running your own proxy/peer.==Ziadne vysledky. Zvazte podporu globalneho indexu pomocou proxies/peerov ak to povazujete za nedostatocne.
-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==vysledkov z
-ordered links of a total number of==z celkovo najdenych
-known.==znamych odkazov.
-# NOT USED
-#Catch up more links==Zhromazdit viacej odkazov
-# NOT USED
-#from 'late' peers.==z pomalych peerov.
-# NOT USED
-#Topwords (to refine search):==Top-slova (na zjemnenie vyhladavania):
-You can enrich the search results by using the 'global' option==Zapnutim nastavenia 'global' mozete zvysit pocet vysledkov
-This will search also other YaCy peers==takto budu prehladavani aj ostatni YaCy peeri.
-You cannot get global search results because you are not connected to another YaCy peer.==Nemozete ziskat vysledky globalneho vyhlavania, pretoze nie ste pripojeny k ziadnemu inemu YaCy peerovi.
-To connect you must first use the proxy.==na pripojenie musite najprv pouzit proxy.
-See here for an==Tu najdete
-installation guide==instalacnu prirucku
-Alternatively, you can run the proxy in permanent online mode, which also grants global search.==Alternativne mozete nechat bezat proxy permanentne v online mode. Tento mod garantuje globalne vyhladavanie.
-To do this, press this button:==Kliknite prosim na nasledujuce tlacitko na prechod do online modu:
-"go online"=="pripoj online"
-you must also switch to online mode==najprv sa vsak musite prepnut do online modu
-(by using the proxy) to contribute to the global index.==(v ktorom pouzivate proxy) aby ste mohli prehladavat globalny index.
-The global search resulted in #[globalresults]# link contributions from other YaCy peers.==Globalne vyhladavanie obsahuje #[globalresults]# vysledkov, ktore boli vytvorene za prispenia ostatnych peerov.
-YaCy is a GPL'ed project==YaCy ist ein GPL Projekt
-#with the target of implementing a P2P-based global search engine.==mit dem Ziel eine globale P2P-basierte Suchmaschine zu realisieren.
-Architecture (C) by Michael Peter Christen==Architektur (C) von Michael Peter Christen
-#-----------------------------
-
-#File: env/templates/simpleheader.template
-#---------------------------
-Project Home==Domovská stránka
-Help / Wiki==Pomoc / Wiki
-#Peer Owner Profile==Profi vlastníka peera
-#-----------------------------
-
-#File: env/templates/submenuAccessTracker.template
-#---------------------------
-Cookie Menu==Cookie Menu
-Incoming Cookies==Prichadzajuce cookies
-Outgoing Cookies==Odchadzajuce cookies
-#-----------------------------
-
-#File: env/templates/header.template
-#---------------------------
-# NOT USED
-#YaCy - Distributed Web Indexing - Administration==YaCy - Indexovanie Distribuovaného Internetu - Administrácia
-# NOT USED
-#Global Index==Globálny index
-Crawler Control==Kontrola crawleru
-Local Proxy==Lokálne proxy
-Communication / Publication==Komunikácia / Publikácia
-# NOT USED
-#Peer Control==Správa peera
-The Project==Projekt
-Search Page==Vyhladávacia stránka
-Detailed Search==Detailné vyhladávanie
->Bookmarks==>Zálozky
->Help==>Pomoc
-Index Create==Vytvorenie indexu
-Index Control==Kontrola indexu
-#Index Monitor==Index Monitor
-#Blacklist==Blacklist
-Proxy Indexing==Indexácia proxy
-#Cache Monitor==Cache Monitor
-#Cookie Monitor==Cookie Monitor
-#Home Page==Domovská stránka
-# NOT USED
-#File Share==Zdielanie súborov
-#Wiki==Wiki
->Messages==>Správy
-Basic Configuration==Základné nastavenia
-Advanced Settings==Pokrocilé nastavenia
-#Status==Stav
->Network==>Siet
-#News==News
-#Log==Log
-#Performance==Výkon
->Connections==>Spojenia
-#Skins==Vzhlad
-Project Home==Domovská stránka
-Project News==Nové
-English Forum==Anglické fórum
-Newsletters==Newsletter
-#Deutsches Forum==Nemecké fórum
-Download YaCy==Stiahni YaCy
-#YaCy Wiki==YaCy Wiki
->Contact==>Kontakt
-#-----------------------------
-
-#File: env/templates/submenuConfig.template
-#---------------------------
-Peer Configuration Menu==Konfigurácia menu peera
-Basic Configuraton==Základné nastavenia
-Advanced Settings==Pokrocilé nastavenia
->Language==>Jazyk
-Peer Profile==Profil
-Interface Skins==Nastavenie vzhladu
->Advanced==>Pokrocilé nastavenia
-#-----------------------------
-
-#File: env/templates/submenuIndexControl.template
-#---------------------------
-Index Control Menu==Menu spravy indexu
-#Index Administration==Administracia indexu
-#Index Import==Import indexu
-#Index Transfer==Prenos indexu
-#-----------------------------
-
-#File: env/templates/submenuIndexCreate.template
-#---------------------------
-Index Creation Menu==Menu vytvorenia indexu
-Control Queues==Kontrola cakacej listiny
-WWW Crawl Queues==Cakacia listina WWW crawlu
-Media Crawl Queues==Cakacia listina Media crawlu
-#Crawl Start==Start crawlu
->Indexing==>Indexovanie
->Loader==>Nahravac
->Local==>Lokal
-#Global==Global
-#>Overhang==>Overhang
->Images==>Obrazky
->Movies==>Filmy
->Music==>Hudba
-#-----------------------------
-
-#File: env/templates/submenuUseCaseAccount.template
-#---------------------------
-#Use Case & Accounts==Use Case & Accounts
-Basic Configuration==Základné nastavenia
-#>Accounts<==>Accounts<
-#Network Configuration==Network Configuration
-#-----------------------------
-
+# sk.lng
+# English-->Slovak
+# -----------------------
+# part of YaCy
+# (C) by Michael Peter Christen; mc@anomic.de
+# first published on http://www.anomic.de
+# Frankfurt, Germany, 2005
+#
+# This file is maintained by Rostislav Svoboda
+# This file is written by (chronological order) Rostislav Svoboda
+#
+
+# If you find any mistakes or untranslated strings in this file please don't hesitate to email them to the maintainer.
+
+#File: AILab.html
+#---------------------------
+"Inference engine setup"=="Nastavenie inferenčného motora"
+"Model assignment preview"=="Ukážka zadania modelu"
+"Index creation"=="Vytvorenie indexu"
+"RAG configuration"=="RAG konfigurácia"
+"Tools configuration"=="Konfigurácia nástrojov"
+"Log report monitor"=="Log report monitor"
+"Shield definition"=="Nastavenie ochrany"
+AI Lab Build System==AI Lab Build System
+Craft your AI toolkit==Vytvorte si súpravu nástrojov AI
+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.==Splňte úlohy nižšie, aby ste aktivovali AI pomocníka YaCy: pripojte inferenčný mechanizmus, načítajte pracovné modely, prepojte ich s indexom a potom nastavte RAG a ochrany.
+0 / 6 unlocked==0/6 odomknuté
+Mandatory==Povinné
+Needs setup==Vyžaduje nastavenie
+Bind an inference engine==Naviazať inferenčný mechanizmus
+Pick your host (Ollama, LM Studio, OpenAI-compatible) and give YaCy a place to send prompts.==Vyberte si hostiteľa (Ollama, LM Studio, OpenAI-kompatibilný) a poskytnite YaCy miesto na odosielanie výziev.
+Open engine setup==Otvorte nastavenie motora
+Set hoststub, API keys, and defaults to unlock downloads.==Nastavte kľúče hoststub, API a predvolené hodnoty na odomknutie stiahnutých súborov.
+Populate the Production Models Matrix==Vyplňte maticu výrobných modelov
+Assign models for chat, search, translation, and more. This is your loadout bench.==Priraďte modely pre čet, vyhľadávanie, preklad a ďalšie. Toto je vaša záťažová lavica.
+Go to Production Models Matrix==Prejdite do Matice výrobných modelov
+Deploy at least one model, then assign capabilities (chat, search-query, tooling, vision).==Nasaďte aspoň jeden model a potom priraďte funkcie (chat, search-query, nástroje, vízia).
+Optional==Voliteľné
+Grow a search index==Rozšírte index vyhľadávania
+Create a local index for grounding: crawl a site or import a pack to give your AI facts to cite.==Vytvorte lokálny index na uzemnenie: prehľadajte stránku alebo importujte balík, aby ste mohli citovať svoje fakty o AI.
+Start a crawl==Začnite prehľadávať
+Import an index pack==Importujte indexový balík
+Indexed documents:==Indexované dokumenty:
+required to unlock (need at least 1000 documents).==potrebné na odomknutie (potrebujete aspoň 1000 dokumentov).
+Wire RAG retrieval==Nastaviť získavanie RAG
+Map which production models answer search-query and Q/A pairs so the RAG proxy can mix search with chat.==Zmapujte, ktoré produkčné modely odpovedajú na páry search-query a Q/A, aby proxy server RAG mohol kombinovať vyhľadávanie s rozhovorom.
+Wire RAG prompts==Prepojte výzvy RAG
+Test in Chat==Test v chate
+Set the search-query and qapairs columns to connect retrieval to your chat flow.==Nastavte stĺpce search-query a qapairs, aby ste pripojili načítanie k vášmu toku rozhovoru.
+Enable/Disable Tools==Povoliť/zakázať nástroje
+Superpowers for the YaCy Chat==Superschopnosti pre chat YaCy
+Open tools configuration==Otvorte konfiguráciu nástrojov
+Tune descriptions and set maxCallsPerTurn per tool (0 disables a tool).==Dolaďte popisy a nastavte maxCallsPerTurn na nástroj (0 deaktivuje nástroj).
+Monitor log reports==Monitorujte protokolové správy
+Assign a log-report model, then review generated hourly and daily self-enhancement reports.==Priraďte model log-report a potom si prezrite vygenerované hodinové a denné reporty vlastného vylepšenia.
+Open log reports==Otvoriť prehľady denníkov
+Assign log-report model==Priradiť model protokolu
+Report generation stays inactive until a production model is assigned to the log-report role.==Generovanie správ zostane neaktívne, kým k role log-report nebude priradený pracovný model.
+Define a shield==Nastaviť ochranu
+Add guardrails: access rates, grant or deny non-localhost access. Activate the front page link for chat to complete this quest.==Pridajte ochranné zábradlia: sadzby za prístup, udeľte alebo zamietnite prístup mimo lokálneho hostiteľa. Ak chcete dokončiť túto úlohu, aktivujte odkaz na úvodnú stránku na rozhovor.
+Open shield settings==Otvoriť nastavenia ochrany
+Store your shield directives (system prompts, stop words) as properties, then exercise them in chat.==Uložte direktívy ochrany (systémové prompty, stop slová) ako vlastnosti a potom ich vyskúšajte v chate.
+#-----------------------------
+
+#File: AIShield_p.html
+#---------------------------
+Wire RAG Retrieval Shield==Wire RAG Retrieval Shield
+Control who can access the chat interface and rate-limit non-localhost clients to protect your peer and LLM backends from overload.==Ovládajte, kto môže pristupovať k rozhraniu chatu a klientom bez lokálneho hostiteľa s limitom rýchlosti, aby ste ochránili svojich kolegov a LLM backendy pred preťažením.
+Overall Load Protection==Celková ochrana nákladu
+Recent access volume across all clients (localhost included). You can enforce global limits here to protect the host.==Objem nedávneho prístupu naprieč všetkými klientmi (vrátane lokálneho hostiteľa). Tu môžete presadiť globálne limity na ochranu hostiteľa.
+Requests / minute==Žiadosti / minúta
+Requests / hour==Žiadosti / hod
+Requests / day==Žiadosti / deň
+Limit for all requests, including localhost==Limit pre všetky požiadavky vrátane localhost
+Per minute:==Za minútu:
+Per hour:==Za hodinu:
+Per day:==Za deň:
+Guest Access Control & Rate Limits==Kontrola prístupu hostí a limity sadzieb
+By default only localhost may reach the chat UI. Enable non-localhost access and throttle requests to reduce abuse.==V predvolenom nastavení môže používateľské rozhranie chatu dosiahnuť iba localhost. Povoľte prístup mimo lokálneho hostiteľa a obmedzte požiadavky na obmedzenie zneužívania.
+Allow non-localhost clients to access the chat interface==Povoliť klientom, ktorí nie sú miestnymi hostiteľmi, prístup k rozhraniu chatu
+Requests from non-localhost will be throttled using these caps:==Požiadavky od iného než miestneho hostiteľa budú obmedzené pomocou týchto limitov:
+Front Page Link==Odkaz na prednú stranu
+Expose a shortcut to the chat UI on the search front page if you want users to discover it.==Ak chcete, aby ho používatelia objavili, zobrazte skratku používateľského rozhrania rozhovoru na hlavnej stránke vyhľadávania.
+Show a link to yacychat.html on the search front page==Zobraziť odkaz na yacychat.html na hlavnej stránke vyhľadávania
+Save Shield Settings==Uložiť nastavenia ochrany
+#-----------------------------
+
+#File: AccessGrid_p.html
+#---------------------------
+"YaCy Access Grid"=="YaCy Prístupová mriežka"
+Server Access Grid==Server Access Grid
+This images shows incoming connections to your YaCy peer and outgoing connections from your peer to other peers and web servers==Tieto obrázky zobrazujú prichádzajúce pripojenia k YaCy rovesníkovi a odchádzajúce pripojenia z rovesníka k iným rovesníkom a webovým serverom
+#-----------------------------
+
+#File: AccessTracker_p.html
+#---------------------------
+Server Access Overview==Prehľad prístupu k serveru
+Host==Hostiteľ
+Access Count During==Počet prístupov počas
+last Second==posledná sekunda
+last Minute==last minute
+last 10 Minutes==posledných 10 minút
+last Hour==posledná hodina
+The following hosts are registered as source for brute-force requests to protected pages==Nasledujúci hostitelia sú zaregistrovaní ako zdroj žiadostí hrubou silou na chránené stránky
+Access Times==Časy prístupu
+Server Access Details==Podrobnosti o prístupe k serveru
+This is a list of requests (max. 1000) to the local http server within the last hour.==Toto je zoznam požiadaviek (max. 1000) na lokálny http server za poslednú hodinu.
+Date==Datum
+Path==Adresar
+Local Search Log==Denník miestneho vyhľadávania
+This is a list of searches that had been requested from this' peer search interface==Toto je zoznam vyhľadávaní, ktoré boli vyžiadané z tohto rozhrania vyhľadávania
+Requesting Host==Žiadosť o hostiteľa
+Offset==Offset
+Expected Results==Očakávané výsledky
+Returned Results==Vrátené výsledky
+Known Results==Známe výsledky
+Used Time (ms)==Využitý čas (ms)
+URL fetch (ms)==URL načítanie (ms)
+Snippet comp (ms)==Snippet comp (ms)
+Query==Dopyt
+User Agent==User Agent
+Top Search Words (last 7 Days)==Najčastejšie hľadané slová (posledných 7 dní)
+Local Search Host Tracker==Lokálne vyhľadávanie hostiteľa Tracker
+Count==počítať
+Queries Per Last Hour==Počet dopytov za poslednú hodinu
+Access Dates==Dátumy prístupu
+Remote Search Log==Protokol vzdialeného vyhľadávania
+This is a list of searches that had been requested from remote peer search interface==Toto je zoznam vyhľadávaní, ktoré boli vyžiadané zo vzdialeného partnerského vyhľadávacieho rozhrania
+Peer Name==Meno partnera
+Search Word Hashes==Hľadanie hash slov
+Remote Search Host Tracker==Remote Search Host Tracker
+#-----------------------------
+
+#File: Autocrawl_p.html
+#---------------------------
+"Save"=="Uloz profil"
+Autocrawler==Autocrawler
+Autocrawler automatically selects and adds tasks to the local crawl queue. This will work best when there are already quite a few domains in the index.==Autocrawler automaticky vyberie a pridá úlohy do miestneho frontu indexového prehľadávania. Toto bude fungovať najlepšie, keď je v indexe už pomerne veľa domén.
+Autocralwer Configuration==Konfigurácia autocralweru
+You need to restart for some settings to be applied==Ak chcete použiť niektoré nastavenia, musíte reštartovať
+Enable Autocrawler:==Povoliť Autocrawler:
+Deep crawl every Nth document:==Podrobné indexové prehľadávanie každého N-tého dokumentu:
+Warning: if this is bigger than "Rows to fetch" only shallow crawls will run.==Upozornenie: Ak je toto číslo väčšie ako riadky na načítanie, spustí sa iba plytké indexové prehľadávanie.
+Rows to fetch at once:==Riadky na načítanie naraz:
+Recrawl only older than # days:==Iba opätovné indexové prehľadávanie staršie ako # dní:
+Get hosts by query:==Získajte hostiteľov podľa dopytu:
+Can be any valid Solr query.==Môže to byť akýkoľvek platný dopyt Solr.
+Shallow crawl depth (0 to 2):==Malá hĺbka prehľadávania (0 až 2):
+Deep crawl depth (1 to 5):==Veľká hĺbka prehľadávania (1 až 5):
+Index text:==Indexový text:
+Index media:==Indexové médium:
+#-----------------------------
+
+#File: Automation_p.html
+#---------------------------
+"API"=="API"
+"no previous page"=="žiadna predchádzajúca strana"
+"previous page"=="predchádzajúca strana"
+"no next page"=="žiadna ďalšia strana"
+"next page"=="ďalšia strana"
+"Apply edited next execution dates"=="Použiť upravené dátumy ďalšieho vykonania"
+"clone"=="klonovať"
+"yyyy/MM/dd HH:mm:ss"=="yyyy/MM/dd HH:mm:ss"
+"Execute Selected Actions"=="Vykonajte vybraté akcie"
+"Delete Selected Actions"=="Odstrániť vybraté akcie"
+"Delete all Actions which had been created before "=="Odstráňte všetky predtým vytvorené akcie"
+Process Automation==Automatizácia procesov
+This table shows actions that had been issued on the YaCy interface.==Táto tabuľka zobrazuje akcie, ktoré boli vykonané na rozhraní YaCy.
+These recorded actions can be used to repeat specific actions and to send them==Tieto zaznamenané akcie možno použiť na opakovanie konkrétnych akcií a ich odoslanie
+to a scheduler for a periodic execution.==do plánovača na pravidelné vykonávanie.
+The information that is presented on this page can also be retrieved as XML.==Informácie uvedené na tejto stránke je možné získať aj ako XML.
+Click the API icon to see the XML.==Kliknutím na ikonu API zobrazíte XML.
+Recorded Actions==Zaznamenané akcie
+Type==Typ
+Comment==Komentár
+Call Count==Počet hovorov
+Recording Date==Nahrávanie Dátum
+Last Exec Date==Posledný Exec Dátum
+Next Exec Date==Ďalší Exec Dátum
+Apply==Použiť
+Event Trigger==Spúšťač udalosti
+Scheduler==Plánovač
+URL==URL adresa
+no event==žiadna udalosť
+activate event==aktivovať udalosť
+off==vypnuté
+run once==spustiť raz
+run regular==behať pravidelne
+after start-up==po spustení
+at 00:00h==o 00:00 hod
+at 01:00h==o 01:00 hod
+at 02:00h==o 02:00 hod
+at 03:00h==o 03:00 hod
+at 04:00h==o 04:00 hod
+at 05:00h==o 05:00 hod
+at 06:00h==o 06:00 hod
+at 07:00h==o 07:00 hod
+at 08:00h==o 08:00 hod
+at 09:00h==o 09:00 hod
+at 10:00h==o 10:00 hod
+at 11:00h==o 11:00 hod
+at 12:00h==o 12:00 hod
+at 13:00h==o 13:00 hod
+at 14:00h==o 14:00 hod
+at 15:00h==o 15:00 hod
+at 16:00h==o 16:00 hod
+at 17:00h==o 17:00 hod
+at 18:00h==o 18:00 hod
+at 19:00h==o 19:00 hod
+at 20:00h==o 20:00 hod
+at 21:00h==o 21:00 hod
+at 22:00h==o 22:00 hod
+at 23:00h==o 23:00 hod
+no repetition==žiadne opakovanie
+activate scheduler==aktivovať plánovač
+minutes==minút
+hours==hodiny
+days==dní
+1 day==1 deň
+2 days==2 dni
+3 days==3 dni
+4 days==4 dni
+5 days==5 dní
+6 days==6 dní
+1 week==1 týždeň
+2 weeks==2 týždne
+3 weeks==3 týždne
+1 month==1 mesiac
+2 months==2 mesiace
+3 months==3 mesiace
+6 months==6 mesiacov
+9 months==9 mesiacov
+1 year==1 rok
+2 years==2 roky
+Result of API execution==Výsledok vykonania API
+Status==Stav
+#-----------------------------
+
+#File: BlacklistCleaner_p.html
+#---------------------------
+"Check"=="Skontrolujte"
+"Change Selected"=="Zmeniť vybraté"
+"Delete Selected"=="Odstrániť vybraté"
+Blacklist Cleaner==Čistič čiernej listiny
+Here you can remove or edit illegal or double blacklist-entries.==Tu môžete odstrániť alebo upraviť nelegálne alebo dvojité položky čiernej listiny.
+Check list==Kontrolný zoznam
+Allow regular expressions in host part of blacklist entries.==Povoliť regulárne výrazy v hostiteľskej časti položiek čiernej listiny.
+The blacklist-cleaner only works for the following blacklist-engines up to now:==Čistič čiernej listiny zatiaľ funguje iba pre nasledujúce motory na čiernej listine:
+Two wildcards in host-part==Dva zástupné znaky v hostiteľskej časti
+Either subdomain==Buď subdoména
+or==alebo
+wildcard==zástupný znak
+Path is invalid Regex==Cesta je neplatný regulárny výraz
+Wildcard not on begin or end==Zástupný znak nie je na začiatku ani na konci
+Host contains illegal chars==Hostiteľ obsahuje nelegálne znaky
+Double==Dvojité
+Host is invalid Regex==Hostiteľ je neplatný regulárny výraz
+No Blacklist selected==Nie je vybratá žiadna čierna listina
+#-----------------------------
+
+#File: BlacklistImpExp_p.html
+#---------------------------
+"Load new blacklist items"=="Načítať nové položky čiernej listiny"
+"Export list as XML"=="Exportovať zoznam ako XML"
+"Export list as text"=="Exportovať zoznam ako text"
+Blacklist Import==Import čiernej listiny
+Used Blacklist engine:==Použitý nástroj Blacklist:
+Import blacklist items from...==Importovať položky čiernej listiny z...
+other YaCy peers:==ďalší YaCy kolegovia:
+URL:==URL:
+plain text file:==obyčajný textový súbor:
+Upload a regular text file which contains one blacklist entry per line.==Nahrajte bežný textový súbor, ktorý obsahuje jednu položku čiernej listiny na riadok.
+XML file:==XML súbor:
+Upload an XML file which contains one or more blacklists.==Odovzdajte súbor XML, ktorý obsahuje jeden alebo viac čiernych zoznamov.
+Export blacklist items to...==Exportovať položky zo zoznamu zakázaných položiek do...
+Here you can export a blacklist as an XML file. This file will contain additional==Tu môžete exportovať čiernu listinu ako súbor XML. Tento súbor bude obsahovať ďalšie
+information about which cases a blacklist is activated for.==informácie o tom, pre ktoré prípady je čierna listina aktivovaná.
+all==všetky
+Here you can export a blacklist as a regular text file with one blacklist entry per line.==Tu môžete exportovať čiernu listinu ako bežný textový súbor s jednou položkou čiernej listiny na riadok.
+This file will not contain any additional information.==Tento súbor nebude obsahovať žiadne ďalšie informácie.
+#-----------------------------
+
+#File: BlacklistTest_p.html
+#---------------------------
+"Test"=="Test"
+Blacklist Test==Test čiernej listiny
+Used Blacklist engine:==Použitý nástroj Blacklist:
+Test list:==Zoznam testov:
+It is blocked for the following cases:==Je zablokovaný v nasledujúcich prípadoch:
+is not blocked==nie je blokovaný
+Crawling==Plazenie
+DHT==DHT
+News==Správy
+Proxy==Proxy
+Search==Hľadať
+Surftips==Tipy na surfovanie
+The tested URL was not valid.==Testované URL nebolo platné.
+#-----------------------------
+
+#File: Blacklist_p.html
+#---------------------------
+"create"=="vytvor"
+"Add URL pattern"=="Pridať vzor URL"
+"set"=="nastaviť"
+"Save URL pattern(s)"=="Uložiť vzory (URL)"
+"Share/don't share this list"=="Zdieľať/don't zdieľať tento zoznam"
+"Delete this list"=="Odstrániť tento zoznam"
+"Save"=="Uloz profil"
+Blacklist Administration==Administrácia čiernej listiny
+This function provides an URL filter to the proxy; any blacklisted URL is blocked==Tato funkcia poskytuje URL filter pre proxy: URL adresa z blacklistu je blokovana
+from being loaded. You can define several blacklists and activate them separately.==a nebude nahravana. Mozete definovat a nezavisle aktivovat niekolko blacklistov.
+You may also provide your blacklist to other peers by sharing them; in return you may==Vas blacklist mozete takisto poskytnut inemu peerovy na stiahnutie a naopak
+collect blacklist entries from other peers.==zaznamy z blacklistov inych peerov mozete zhromazdovat.
+Active list:==Aktivny zoznam:
+No blacklist selected==Nie je vybratá žiadna čierna listina
+Select list to edit:==Vyberte zoznam na úpravu:
+not shared==nezdieľané
+shared==zdieľané
+Create new list:==Vytvoriť nový zoznam:
+A legal name is made up from a letter, digit, minus, plus or underscore as the first character==Oficiálne meno sa skladá z písmena, číslice, mínus, plus alebo podčiarknutia ako prvého znaku
+followed by letters, digits, minus, plus, underscores or dots.==za ktorými nasledujú písmená, číslice, mínus, plus, podčiarkovník alebo bodky.
+An error occurred while moving entries to the target list.==Pri presúvaní položiek do cieľového zoznamu sa vyskytla chyba.
+Add new pattern:==Pridať nový vzor:
+domain.net/fullpath==domain.net/fullpath
+domain.net/*==domain.net/*
+sub.domain.*/*==sub.domain.*/*
+domain.*/*==doména.*/*
+Blacklist Pattern==Vzor čiernej listiny
+Edit selected pattern(s)==Upraviť vybraté vzory
+Delete selected pattern(s)==Odstrániť vybraté vzory
+Move selected pattern(s) to==Presunúť vybraný vzor(y) do
+Show entries:==Zobraziť položky:
+Entries per page:==Počet záznamov na stránku:
+Edit existing pattern(s):==Upraviť existujúce vzory:
+An error occurred while editing the following entries. Please check syntax.==Pri úprave nasledujúcich záznamov sa vyskytla chyba. Skontrolujte syntax.
+Activate this list for ...==Aktivujte tento zoznam pre...
+#-----------------------------
+
+#File: Blog.html
+#---------------------------
+"RSS"=="RSS"
+"Submit"=="Odoslať"
+"Preview"=="Ukážka"
+"Discard"=="Zahodiť"
+"Yes, delete it."=="Áno, vymazať."
+"No, leave it."=="Nie, nechaj tak."
+"Import"=="Importovať"
+<< previous entries==<< predchádzajúce položky
+next entries >>==ďalšie záznamy >>
+Blog-Home==Blog-Domovska stranka
+Edit==Edituj
+Author:==Autor:
+Subject:==Titul:
+Text:==Text:
+Comments:==Komentáre:
+deactivated==deaktivovaný
+activated==aktivovaný
+moderated==moderované
+Preview==Ukážka
+No changes have been submitted so far!==Ziadne zmeny este neboli vytvorene!
+Access denied==Pristup zakazany
+To edit or create blog-entries you need to be logged in as Admin or User who has Blog rights.==Na editaciu alebo vytvorenie blogu musite byt prihlaseny ako Admin alebo ako User s blog-pravami.
+Are you sure...==Si si istý...
+Confirm deletion==Potvrďte vymazanie
+XML-Import==XML-Import
+Import was successful!==Import bol úspešný!
+Import failed, maybe the supplied file was no valid blog-backup?==Import zlyhal. Skutocne je importovany subor block-backup subor?
+Please select the XML-file you want to import:==Prosim zvolte XML subor ktory chcete importovat:
+#-----------------------------
+
+#File: BlogComments.html
+#---------------------------
+"Submit"=="Odoslať"
+"Preview"=="Ukážka"
+"Discard"=="Zahodiť"
+Blog-Home==Blog-Domovska stranka
+Comments:==Komentáre:
+<< previous entries==<< predchádzajúce položky
+next entries >>==ďalšie záznamy >>
+Comments are not allowed for this posting!==K tomuto príspevku nie sú povolené komentáre!
+Comment on this Blog==Komentujte tento blog
+Author:==Autor:
+Subject:==Titul:
+Text:==Text:
+#-----------------------------
+
+#File: Bookmarks.html
+#---------------------------
+"RSS"=="RSS"
+"create"=="vytvor"
+"Save"=="Uloz profil"
+"import"=="importovať"
+"API"=="API"
+"start it"=="začnite to"
+"stop it"=="prestaň s tým"
+"private bookmark"=="Súkromné zálozky"
+"public bookmark"=="Verejné zálozky"
+Bookmarks==Záložky
+Login==Prihláste sa
+List Bookmarks==Zoznam záložiek
+Add Bookmark==Pridaj zálozku
+Import Bookmarks==Importovať záložky
+Bookmarks (XBEL)==Záložky (XBEL)
+Bookmarks (XML)==Záložky (XML)
+Bookmarks (RSS)==Záložky (RSS)
+Edit Bookmark==Edituj zálozky
+URL:==URL:
+Title:==Titul:
+Description:==Popis:
+Query:==dotaz:
+Folder (/folder/subfolder):==Priečinok (/folder/subfolder):
+Tags (comma separated):==Tagy (oddelené ciarkou):
+Public:==Verejné:
+yes==áno
+no==nie
+Bookmark is a newsfeed==Záložka je informačný kanál
+Import XML Bookmarks==Importuj XML zálozku
+File:==Súbor:
+import as Public:==importovať ako verejné:
+Import HTML Bookmarks==Importovať HTML záložky
+Default Tags:==Predvolené značky:
+The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.==Zoznam záložiek je možné získať aj ako informačný kanál RSS. Môžete to urobiť aj vtedy, keď vyberiete konkrétnu značku.
+Click the API icon to load the RSS from the current selection.==Kliknutím na ikonu API načítate RSS z aktuálneho výberu.
+Folders==Priečinky
+Bookmark Folder==Priečinok so záložkami
+Tags==Tagy
+Auto Search==Automatické vyhľadávanie
+start autosearch of new bookmarks==spustiť automatické vyhľadávanie nových záložiek
+autosearch queue:==front automatického vyhľadávania:
+received results:==prijaté výsledky:
+current query:==aktuálny dopyt:
+This starts a search of new or modified bookmarks since startup==Tým sa spustí vyhľadávanie nových alebo upravených záložiek od spustenia
+in folder "search" with "query=<original_search_term>"==v priečinku „search“ s „query=<original_search_term>“
+Every peer online will be ask for results.==Každý rovesník online sa bude pýtať na výsledky.
+Bookmark List==Zoznam záloziek
+Tagged with |==Označené s |
+Edit==Edituj
+Delete==Zmaz
+Info==Info
+search==hľadať
+previous page==predošlá stránka
+next page==dalšia stránka
+Show==Zobraz
+Bookmarks per page.==záloziek na stránku.
+#-----------------------------
+
+#File: Collage.html
+#---------------------------
+Image Collage==Koláž obrázkov
+Private Queue==Súkromný rad
+Public Queue==Verejná fronta
+#-----------------------------
+
+#File: ConfigAccountList_p.html
+#---------------------------
+User List==Zoznam používateľov
+User Accounts==Používateľské účty
+User==Používateľ
+First name==Krstné meno
+Last name==Priezvisko
+Address==Adresa
+Last Access==Posledný prístup
+Rights==práva
+Time==Čas
+Traffic==Doprava
+#-----------------------------
+
+#File: ConfigAccounts_p.html
+#---------------------------
+"Define Administrator"=="Definujte správcu"
+"Set Access Rules"=="Nastavte pravidlá prístupu"
+"Edit User"=="Upraviť používateľa"
+"Delete User"=="Odstrániť používateľa"
+"Save User"=="Uložiť používateľa"
+User Administration==Správa používateľov
+Generic error.==Všeobecná chyba.
+Passwords do not match.==Heslá sa nezhodujú.
+Username too short. Username must be >= 4 Characters.==Používateľské meno je príliš krátke. Používateľské meno musí mať >= 4 znaky.
+Username already used (not allowed).==Používateľské meno sa už používa (nie je povolené).
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==WARNING Túto inštanciu YaCy možno spravovať pomocou účtu „admin“ a predvoleného hesla „yacy“.
+Change the password as soon as possible!==Zmeňte heslo čo najskôr!
+Admin Account==Účet správcu
+Access from localhost without account==Prístup z localhost bez účtu
+Access to your peer from your own computer (localhost access) is granted with administrator rights. No need to configure an administration account.==Prístup k vášmu partnerovi z vášho vlastného počítača (lokálny prístup) je udelený s právami správcu. Nie je potrebné konfigurovať správcovský účet.
+This setting is convenient but less secure than using a qualified admin account.==Toto nastavenie je pohodlné, ale menej bezpečné ako používanie účtu kvalifikovaného správcu.
+Please use with care, notably when you browse untrusted and potentially malicious websites while running your YaCy peer on the same computer.==Používajte ho opatrne, najmä keď prehliadate nedôveryhodné a potenciálne škodlivé webové stránky a zároveň používate YaCy partnera na rovnakom počítači.
+Access only with qualified account==Prístup len s kvalifikovaným účtom
+This is required if you want a remote access to your peer, but it also hardens access controls on administration operations of your peer.==Vyžaduje sa to, ak chcete vzdialený prístup k svojmu partnerovi, ale zároveň to sprísňuje riadenie prístupu k operáciám správy vášho partnera.
+Peer User:==Peer užívateľ:
+New Peer Password:==Nové heslo partnera:
+Repeat Peer Password:==Opakovať heslo partnera:
+Access Rules==Pravidlá prístupu
+Protection of all pages: if set to on, access to all pages need authorization; if off, only pages with "_p" extension are protected.==Ochrana všetkých stránok: ak je zapnutá, prístup na všetky stránky vyžaduje autorizáciu; ak je vypnuté, chránené sú iba stránky s príponou „_p“.
+User Accounts==Používateľské účty
+Select user==Vyberte používateľa
+New user==Nový používateľ
+Username==Používateľské meno
+Password==heslo
+Repeat password==Zopakujte heslo
+First name==Krstné meno
+Last name==Priezvisko
+Address==Adresa
+Rights:==práva:
+Timelimit==Časový limit
+Time used==Využitý čas
+#-----------------------------
+
+#File: ConfigAppearance_p.html
+#---------------------------
+"Use"=="Pouzi"
+"Delete"=="Zmaz"
+"Set Colors"=="Nastaviť farby"
+"Install"=="Inštaluj"
+Appearance and Integration==Vzhľad a integrácia
+You can change the appearance of the YaCy interface with skins.==Vzhľad rozhrania YaCy môžete zmeniť pomocou vzhľadov.
+The selected skin and language also affects the appearance of the search page.==Vybraný vzhľad a jazyk ovplyvňuje aj vzhľad stránky vyhľadávania.
+change the appearance of the search page here.==tu zmeniť vzhľad stránky vyhľadávania.
+Skin Selection==Výber pleti
+Select one of the default skins. After selection it might be required to reload the web page while holding the shift key to refresh cached style files.==Vyberte jeden z predvolených vzhľadov. Po výbere môže byť potrebné znova načítať webovú stránku a súčasne podržať kláves Shift, aby sa obnovili súbory štýlu vo vyrovnávacej pamäti.
+Current skin==Aktuálna koža
+Available Skins==Dostupné skiny
+Skin Color Definition==Definícia farby pleti
+The generic skin 'generic_pd' can be configured here with custom colors:==Všeobecný vzhľad 'generic_pd' tu možno nakonfigurovať pomocou vlastných farieb:
+Background==Pozadie
+Text==Text
+Legend==Legenda
+Table Header==Tabuľka Hlavička
+Table Item==Tabuľka Item
+Table Item 2==Tabuľka Item 2
+Table Bottom==Tabuľka Dol
+Border Line==Hranica Line
+Sign 'bad'==Znak 'zlý'
+Sign 'good'==Označte „dobre“
+Sign 'other'==Podpísať 'iné'
+Search Headline==Hľadať Nadpis
+Search URL==Hľadať URL
+Search URL + hover==Hľadať URL + umiestnenie kurzora myši
+Skin Download==Sťahovanie kože
+Skins can be installed from download locations:==Vzhľady je možné nainštalovať z miest na stiahnutie:
+Install new skin from URL==Nainštalovať nový vzhľad z URL
+Use this skin==Použite túto kožu
+Make sure that you only download data from trustworthy sources. The new Skin file==Uistite sa, že sťahujete údaje iba z dôveryhodných zdrojov. Nový súbor Skin
+might overwrite existing data if a file of the same name exists already.==môže prepísať existujúce údaje, ak súbor s rovnakým názvom už existuje.
+Error saving the skin.==Chyba pri ukladaní vzhľadu.
+#-----------------------------
+
+#File: ConfigBasic.html
+#---------------------------
+"ok"=="ok"
+"Use the browser preferred language if available"=="Použite preferovaný jazyk prehliadača, ak je k dispozícii"
+"Click to generate translated pages"=="Kliknutím vygenerujete preložené stránky"
+"Active : translated pages are available"=="Aktívne: k dispozícii sú preložené stránky"
+"Usecase Freeworld"=="Usecase Freeworld"
+"Usecase Portal"=="Portál použitia"
+"Usecase Intranet"=="Použitie intranetu"
+"warning"=="POZOR"
+"Set Configuration"=="Nastaviť konfiguráciu"
+Basic Configuration==Zakladne nastavenia
+Your port has changed. Please wait 10 seconds.==Váš port sa zmenil. Počkajte 10 sekúnd.
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==WARNING Túto inštanciu YaCy možno spravovať pomocou účtu „admin“ a predvoleného hesla „yacy“.
+Your YaCy Peer needs some basic information to operate properly==Vase YaCy vyzaduje pre spravne fungovanie niekolko zakladnych udajov
+Select a language for the interface:==Vyberte jazyk rozhrania:
+Browser==Prehliadač
+English==angličtina
+Deutsch==Deutsch
+Français==Français
+Greek==grécky
+Italiano==Italiano
+Español==Španielčina
+Use Case: what do you want to do with YaCy:==Prípad použitia: čo chcete robiť s YaCy:
+Can not leave from Intranet Indexing : one or more remote Solr instances are attached and may contain private documents indexed.==Nedá sa opustiť z indexovania intranetu: je pripojená jedna alebo viacero vzdialených inštancií Solr, ktoré môžu obsahovať indexované súkromné dokumenty.
+One or more remote Solr instances are attached and may contain indexed public documents irrelevant to your local domain.==Je pripojená jedna alebo viacero vzdialených inštancií Solr, ktoré môžu obsahovať indexované verejné dokumenty, ktoré nie sú relevantné pre vašu lokálnu doménu.
+One or more remote Solr instances are attached.==Je pripojená jedna alebo viacero vzdialených inštancií Solr.
+Community-based web search==Komunitné vyhľadávanie na webe
+Search portal for your own web pages==Vyhľadávací portál pre svoje vlastné webové stránky
+Intranet Indexing==Indexovanie intranetu
+Join and support the global network 'freeworld', search the web with an uncensored user-owned search network==Pripojte sa a podporte globálnu sieť „freeworld“, prehľadávajte web pomocou necenzurovanej používateľskej vyhľadávacej siete
+Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.==Vaša inštalácia YaCy sa správa nezávisle od ostatných kolegov a vy definujete svoj vlastný webový index spustením vlastného prehľadávania webu. Toto možno použiť na vyhľadávanie vlastných webových stránok alebo na definovanie tematicky orientovaného vyhľadávacieho portálu.
+Create a search portal for your intranet or web pages or your (shared) file system. URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form file:///<path> or smb://<server>/<path>==Vytvorte vyhľadávací portál pre váš intranet alebo webové stránky alebo váš (zdieľaný) súborový systém. Adresy URL možno použiť s http/https/ftp a názvom lokálnej domény alebo IP, alebo s URL súboru formulára:///<path> alebo smb://<server>/<path>
+Your peer name has not been customized; please set your own peer name==Meno vášho partnera nebolo prispôsobené; nastavte svoje vlastné meno partnera
+You may change your peer name==Meno partnera môžete zmeniť
+Peer Name:==Nazov peera:
+Your peer can be reached by other peers==Vas peer nie je dosiahnutelny z inych peerov.
+Peer Port:==Port peera:
+with SSL (https enabled==s protokolom SSL (povolený protokol https
+Configure your router for YaCy using UPnP:==Nakonfigurujte svoj smerovač pre YaCy pomocou UPnP:
+Configuration was not successful. This may take a moment.==Konfigurácia nebola úspešná. Môže to chvíľu trvať.
+Your Browser will reload the YaCy UI with the new port in 5 seconds...==Váš prehliadač znova načíta používateľské rozhranie YaCy s novým portom za 5 sekúnd...
+What you should do next:==Co mozete urobit v nasledovnych krokoch:
+Your basic configuration is complete! You can now (for example):==Vaša základná konfigurácia je dokončená! Teraz môžete (napríklad):
+Your Peer name is a default name; please set an individual peer name.==Meno vášho partnera je predvolené meno; nastavte individuálne meno partnera.
+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 recommended.==Neotvorili ste port vo vašej bráne firewall alebo váš smerovač neposiela port servera vášmu partnerovi. Toto je potrebné, ak sa chcete plne zapojiť do siete YaCy. Svojho rovesníka môžete použiť aj bez jeho otvorenia, ale to sa neodporúča.
+#-----------------------------
+
+#File: ConfigHTCache_p.html
+#---------------------------
+"A cache hit occurs when the requested data can be found in a cache."=="Zásah do vyrovnávacej pamäte nastane, keď sa požadované údaje nachádzajú vo vyrovnávacej pamäti."
+"Concurrent access timeout info"=="Informácie o časovom limite súbežného prístupu"
+"Set"=="Set"
+"Delete"=="Zmaz"
+Hypertext Cache Configuration==Konfigurácia hypertextovej vyrovnávacej pamäte
+The HTCache stores content retrieved by the HTTP and FTP protocol. Documents from smb:// and file:// locations are not cached.==HTCache ukladá obsah získaný pomocou protokolov HTTP a FTP. Dokumenty z miest smb:// a file:// sa neukladajú do vyrovnávacej pamäte.
+The cache is a rotating cache: if it is full, then the oldest entries are deleted and new one can fill the space.==Vyrovnávacia pamäť je rotujúca vyrovnávacia pamäť: ak je plná, najstaršie záznamy sa vymažú a miesto môže zaplniť nová.
+HTCache Configuration==Konfigurácia HTCache
+Cache hits==Zásahy do vyrovnávacej pamäte
+The path where the cache is stored==Cesta, kde je uložená vyrovnávacia pamäť
+The current size of the cache==Aktuálna veľkosť vyrovnávacej pamäte
+The maximum size of the cache==Maximálna veľkosť vyrovnávacej pamäte
+MB==MB
+Compression level==Úroveň kompresie
+Concurrent access timeout==Časový limit súbežného prístupu vypršal
+The maximum time to wait for acquiring a synchronization lock on concurrent get/store cache operations.==Maximálny čas čakania na získanie zámku synchronizácie pri súbežných operáciách get/store cache.
+Beyond this limit, the crawler or proxy falls back to regular remote resource loading.==Po prekročení tohto limitu sa indexový prehľadávač alebo server proxy vráti k bežnému načítaniu vzdialených zdrojov.
+milliseconds==Millisekundy
+Cleanup==Upratovanie
+Cache Deletion==Vymazanie vyrovnávacej pamäte
+Delete HTTP & FTP Cache==Odstrániť vyrovnávaciu pamäť HTTP & FTP
+Delete robots.txt Cache==Odstrániť vyrovnávaciu pamäť robots.txt
+#-----------------------------
+
+#File: ConfigHeuristics_p.html
+#---------------------------
+"heuristic:<name> (redundant)"=="heuristika:<name> (nadbytočné)"
+"heuristic:<name> (new link)"=="heuristika:<name> (nový odkaz)"
+"add"=="pridať"
+"Save"=="Uloz profil"
+"reset to default list"=="obnoviť predvolený zoznam"
+"discover from index"=="zistiť z indexu"
+"switch Solr fields on"=="zapnite polia Solr"
+Heuristics Configuration==Konfigurácia heuristiky
+When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content. This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==Keď sa použije heuristika vyhľadávania, výsledné odkazy sa nepoužijú priamo ako výsledok vyhľadávania, ale načítané stránky sa indexujú a ukladajú ako iný obsah. To zaisťuje, že je možné použiť čierne listiny a že hľadané slovo sa skutočne objaví na stránke, ktorú heuristika objavila.
+The success of heuristics are marked with an image (==Úspešnosť heuristiky je označená obrázkom (
+) below the favicon left from the search result entry:==) pod ikonou favicon vľavo od položky výsledku vyhľadávania:
+The search result was discovered by a heuristic, but the link was already known by YaCy==Výsledok vyhľadávania bol objavený heuristikou, ale odkaz už poznal YaCy
+The search result was discovered by a heuristic, not previously known by YaCy==Výsledok vyhľadávania bol objavený heuristikou, ktorú YaCy predtým nepoznala
+'site'-operator: instant shallow crawl=='site'-operátor: okamžité plytké prehľadávanie
+When a search is made using a 'site'-operator (like: 'download site:yacy.net') then the host of the site-operator is instantly crawled with a host-restricted depth-1 crawl.==Keď sa vyhľadávanie uskutoční pomocou operátora „site“ (napríklad: „download site:yacy.net“), hostiteľ tohto operátora sa okamžite prehľadá pomocou prehľadávania s obmedzenou hĺbkou 1 na hostiteľa.
+That means: right after the search request the portal page of the host is loaded and every page that is linked on this page that points to a page on the same host.==To znamená: hneď po požiadavke na vyhľadávanie sa načíta portálová stránka hostiteľa a každá stránka, ktorá je na tejto stránke prepojená, ukazuje na stránku na tom istom hostiteľovi.
+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).==Pretože toto „okamžité prehľadávanie“ sa musí riadiť súborom robots.txt a minimálnym časom prístupu pre dve po sebe idúce stránky, je táto heuristika dosť pomalá, ale môže objaviť všetky požadované výsledky vyhľadávania pomocou druhého vyhľadávania (po krátkej prestávke niekoľkých sekúnd).
+search-result: shallow crawl on all displayed search results==výsledok vyhľadávania: plytké prehľadávanie všetkých zobrazených výsledkov vyhľadávania
+add as global crawl job==pridať ako globálnu úlohu prehľadávania
+When a search is made then all displayed result links are crawled with a depth-1 crawl.==Po vykonaní vyhľadávania sa všetky zobrazené odkazy na výsledky prehľadajú pomocou prehľadávania hĺbky 1.
+This means: right after the search request every page is loaded and every page that is linked on this page.==To znamená: hneď po požiadavke na vyhľadávanie sa načíta každá stránka a každá stránka, ktorá je na tejto stránke prepojená.
+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).==Ak začiarknete políčko „pridať ako globálnu úlohu prehľadávania“, stránky, ktoré sa majú prehľadávať, sa pridajú do frontu globálneho prehľadávania (vzdialení partneri môžu prevziať stránky, ktoré sa majú prehľadávať).
+Default is to add the links to the local crawl queue (your peer crawls the linked pages).==Predvolené je pridanie odkazov do frontu lokálneho prehľadávania (váš partner prehľadáva prepojené stránky).
+opensearch load external search result list from active systems below==opensearch nižšie načíta zoznam výsledkov externého vyhľadávania z aktívnych systémov
+When using this heuristic, then every new search request line is used for a call to listed opensearch systems.==Pri použití tejto heuristiky sa potom každý nový riadok požiadavky na vyhľadávanie použije na volanie do uvedených systémov opensearch.
+20 results are taken from remote system and loaded simultaneously, parsed and indexed immediately.==20 výsledkov je prevzatých zo vzdialeného systému a súčasne načítaných, analyzovaných a okamžite indexovaných.
+Available/Active Opensearch System==Dostupné/Active Opensearch System
+Active==Aktívne
+Title==Názov
+Comment==Komentár
+Url==Url
+delete==vymazať
+new==nové
+With the button "discover from index" you can search within the metadata of your local index (Web Structure Index) to find systems which support the Opensearch specification.==Pomocou tlačidla „objaviť z indexu“ môžete vyhľadávať v metadátach vášho lokálneho indexu (Web Structure Index) a nájsť systémy, ktoré podporujú špecifikáciu Opensearch.
+The task is started in the background. It may take some minutes before new entries appear (after refreshing the page).==Úloha sa spustí na pozadí. Môže trvať niekoľko minút, kým sa objavia nové položky (po obnovení stránky).
+#-----------------------------
+
+#File: ConfigLanguage_p.html
+#---------------------------
+"Use"=="Pouzi"
+"Delete"=="Zmaz"
+"Install"=="Inštaluj"
+Language selection==Výber jazyka
+You can change the language of the YaCy-webinterface with translation files.==Jazyk YaCy web rozhrania môzete zmenit pomocou prekladových súborov. Vyberte zvolený jazyk zo zoznamu.
+Current language==Aktuálny jazyk
+default(english)==predvolené (anglicky)
+Author(s) (chronological)==Autor(i) (chronologicky)
+Send additions to maintainer==Pošlite dodatky správcovi
+Available Languages==Dostupné jazyky
+Download Language File==Stiahnite si jazykový súbor
+Supported formats are the internal language file (extension .lng) or XLIFF (extension .xlf) format.==Podporované formáty sú interný jazykový súbor (prípona .lng) alebo formát XLIFF (prípona .xlf).
+Install new language from URL==Nainštaluj nový jazyk z URL adresy
+Use this language==Tento jazyk ihned pouzit
+Make sure that you only download data from trustworthy sources. The new language file==Uistite sa, že sťahujete údaje iba z dôveryhodných zdrojov. Nový jazykový súbor
+might overwrite existing data if a file of the same name exists already.==môže prepísať existujúce údaje, ak súbor s rovnakým názvom už existuje.
+Error saving the language file.==Pri nahrávaní súboru došlo k chybe.
+#-----------------------------
+
+#File: ConfigNetwork_p.html
+#---------------------------
+"Change Network"=="Zmeniť sieť"
+"Save"=="Uloz profil"
+"Transport Layer Security"=="Zabezpečenie transportnej vrstvy"
+"Secure Sockets Layer"=="Secure Sockets Layer"
+Network Configuration==Konfigurácia siete
+Accepted Changes.==Prijaté zmeny.
+Inapplicable Setting Combination:==Nepoužiteľná kombinácia nastavení:
+No changes were made!==Neboli vykonané žiadne zmeny!
+For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration.==Pre operáciu P2P musí byť nastavená aspoň distribúcia DHT alebo DHT príjem (alebo oboje). Takto ste definovali konfiguráciu Robinson.
+Global Search in P2P configuration is only allowed, if index receive is switched on. You have a P2P configuration, but are not allowed to search other peers.==Globálne vyhľadávanie v konfigurácii P2P je povolené len vtedy, ak je zapnuté prijímanie indexov. Máte konfiguráciu P2P, ale nemáte povolené vyhľadávať iných partnerov.
+For Robinson Mode, index distribution and receive is switched off.==V režime Robinson je distribúcia indexu a príjem vypnuté.
+Network and Domain Specification==Špecifikácia siete a domény
+YaCy can operate a computing grid of YaCy peers or as a stand-alone node.==YaCy môže prevádzkovať výpočtovú mriežku YaCy rovesníkov alebo ako samostatný uzol.
+To control that all participants within a web indexing domain have access to the same domain,==Ak chcete kontrolovať, aby všetci účastníci v rámci domény webového indexovania mali prístup k rovnakej doméne,
+this network definition must be equal to all members of the same YaCy network.==táto definícia siete sa musí zhodovať so všetkými členmi rovnakej siete YaCy.
+Network Definition==Definícia siete
+Enter custom URL...==Zadajte vlastné URL...
+Remote Network Definition URL==Definícia vzdialenej siete URL
+Network Nick==Network Nick
+Long Description==Dlhý popis
+Indexing Domain==Indexovanie domény
+DHT==DHT
+Distributed Computing Network for Domain==Distribuovaná výpočtová sieť pre doménu
+Enable Peer-to-Peer Mode to participate in the global YaCy network,==Ak sa chcete zapojiť do globálnej siete YaCy, povoľte režim Peer-to-Peer,
+or if you want your own separate search cluster with or without connection to the global network.==alebo ak chcete svoj vlastný samostatný vyhľadávací klaster s alebo bez pripojenia na globálnu sieť.
+Enable 'Robinson Mode' for a completely independent search engine instance,==Povoľte režim Robinson pre úplne nezávislú inštanciu vyhľadávacieho nástroja,
+without any data exchange between your peer and other peers.==bez akejkoľvek výmeny údajov medzi vašimi partnermi a ostatnými kolegami.
+Peer-to-Peer Mode==Režim Peer-to-Peer
+Index Distribution==Distribúcia indexu
+This enables automated, DHT-ruled Index Transmission to other peers.==To umožňuje automatizovaný, DHT riadený prenos indexu iným partnerom.
+enabled==povolené
+disabled during crawling==deaktivované počas prehľadávania
+disabled during indexing==vypnuté počas indexovania
+Index Receive==Index Príjem
+Accept remote Index Transmissions.==Prijmite vzdialené prenosy indexov.
+This works only if you have a senior peer. The DHT-rules do not work without this function.==Funguje to iba vtedy, ak máte staršieho rovesníka. Bez tejto funkcie pravidlá DHT nefungujú.
+reject==odmietnuť
+accept transmitted URLs that match your blacklist==akceptovať prenášané adresy URL, ktoré zodpovedajú vašej čiernej listine
+allow==povoliť
+deny remote search==odmietnuť vyhľadávanie na diaľku
+Robinson Mode==Robinsonov režim
+If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers.==Ak váš partner beží v režime Robinson, spustíte YaCy ako vyhľadávací nástroj pre svoj vlastný vyhľadávací portál bez výmeny údajov s inými partnermi.
+There is no index receive and no index distribution between your peer and any other peer.==Neexistuje žiadny príjem indexu a žiadna distribúcia indexu medzi vašou a akýmkoľvek iným rovesníkom.
+In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster.==V prípade Robinsonovho klastra môže dôjsť k akceptovaniu požiadaviek na vzdialené prehľadávanie od partnerov tohto klastra.
+Private Peer==Súkromný Peer
+Your search engine will not contact any other peer, and will reject every request.==Váš vyhľadávací nástroj nebude kontaktovať žiadneho iného partnera a odmietne každú žiadosť.
+Public Peer==Public Peer
+You are visible to other peers and contact them to distribute your presence.==Ste viditeľní pre ostatných kolegov a kontaktujte ich, aby ste mohli šíriť svoju prítomnosť.
+Your peer does not accept any outside index data, but responds on all remote search requests.==Váš partner neakceptuje žiadne externé údaje indexu, ale odpovedá na všetky požiadavky vzdialeného vyhľadávania.
+Public Cluster==Verejný klaster
+Your peer is part of a public cluster within the YaCy network.==Váš partner je súčasťou verejného klastra v sieti YaCy.
+Index data is not distributed, but remote crawl requests are distributed and accepted==Údaje indexu sa nedistribuujú, ale distribuujú a prijímajú sa požiadavky na vzdialené prehľadávanie
+Search requests are spread over all peers of the cluster, and answered from all peers of the cluster.==Požiadavky na vyhľadávanie sú rozložené medzi všetkých rovesníkov klastra a odpovedajú na ne všetci rovesníci klastra.
+List of .yacy or .yacyh - domains of the cluster: (comma-separated)==Zoznam domén .yacy alebo .yacyh - klastra: (oddelené čiarkou)
+Peer Tags==Peer Tagy
+When you allow access from the YaCy network, your data is recognized using keywords.==Keď povolíte prístup zo siete YaCy, vaše údaje sa rozpoznajú pomocou kľúčových slov.
+Please describe your search portal with some keywords (comma-separated).==Popíšte svoj vyhľadávací portál pomocou niekoľkých kľúčových slov (oddeľte ich čiarkami).
+If you leave the field empty, no peer asks your peer. If you fill in a '*', your peer is always asked.==Ak necháte pole prázdne, žiadny partner sa nebude pýtať vášho partnera. Ak vyplníte '*', váš partner sa vždy opýta.
+Outgoing communications encryption==Šifrovanie odchádzajúcej komunikácie
+Protocol operations encryption==Šifrovanie operácií protokolu
+Prefer HTTPS for outgoing connexions to remote peers.==Pre odchádzajúce spojenia so vzdialenými partnermi uprednostňujte HTTPS.
+When TLS/SSL is enabled on remote peers, it should be used to encrypt outgoing communications with them (for operations such as network presence, index transfer, remote crawl...).==Keď je TLS/SSL povolené na vzdialených partneroch, malo by sa používať na šifrovanie odchádzajúcej komunikácie s nimi (pre operácie, ako je prítomnosť v sieti, prenos indexu, vzdialené prehľadávanie...).
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Upozorňujeme, že na rozdiel od prísneho protokolu TLS sa certifikáty neoverujú voči dôveryhodným certifikačným autoritám (CA), čo umožňuje YaCy partnerom používať certifikáty s vlastným podpisom.
+#-----------------------------
+
+#File: ConfigParser_p.html
+#---------------------------
+"Submit"=="Odoslať"
+Parser Configuration==Konfigurácia analyzátora
+Content Parser Settings==Nastavenia analyzátora obsahu
+With this settings you can activate or deactivate parsing of additional content-types based on their MIME-types.==Pomocou týchto nastavení môžete aktivovať alebo deaktivovať analýzu ďalších typov obsahu na základe ich typov MIME.
+For a detailed description of the various MIME-types take a look at==Podrobný popis rôznych typov MIME nájdete na
+Extension==Rozšírenie
+Mime-Type==Mime-Typ
+#-----------------------------
+
+#File: ConfigPortal_p.html
+#---------------------------
+"Remote results resorting can be triggered once the 'Refresh sorting' button (near the 'Search' button) becomes available."=="Vzdialené uchyľovanie výsledkov je možné spustiť, keď bude k dispozícii tlačidlo 'Obnoviť triedenie' (v blízkosti tlačidla 'Hľadať')."
+"This usually improves ranking accuracy, but doesn't work well for users who have Javascript disabled, are using screen readers, or are on slow computers."=="To zvyčajne zlepšuje presnosť hodnotenia, ale nefunguje to dobre pre používateľov, ktorí majú vypnutý JavaScript, používajú čítačky obrazovky alebo sú na pomalých počítačoch."
+"idea"=="nápad"
+"Detailed statistics"=="Podrobné štatistiky"
+"Change Search Page"=="Zmeniť stránku vyhľadávania"
+"Set to Default Values"=="Nastaviť na predvolené hodnoty"
+Integration of a Search Portal==Integrácia vyhľadávacieho portálu
+If you like to integrate YaCy as portal for your web pages, you may want to change icons and messages on the search page.==Ak chcete integrovať YaCy ako portál pre svoje webové stránky, možno budete chcieť zmeniť ikony a správy na stránke vyhľadávania.
+The search page may be customized. You can change the 'corporate identity'-images, the greeting line==Stránka vyhľadávania môže byť prispôsobená. Môžete zmeniť obrázky „corporate identity“, riadok pozdravu
+and a link to a home page that is reached when the 'corporate identity'-images are clicked.==a odkaz na domovskú stránku, na ktorú sa dostanete po kliknutí na obrázky „corporate identity“.
+Greeting Line==Pozdravová linka
+URL of Home Page==URL domovskej stránky
+URL of a Small Corporate Image==URL malého firemného obrázka
+URL of a Large Corporate Image==URL veľkého firemného obrázka
+Alternative text for Corporate Images==Alternatívny text pre firemné obrázky
+Enable Search for Everyone?==Povoliť vyhľadávanie pre všetkých?
+Search is available for everyone==Vyhľadávanie je dostupné pre každého
+Only the administrator is allowed to search==Vyhľadávať môže iba administrátor
+Show Navigation Bar on Search Page?==Zobraziť navigačný panel na stránke vyhľadávania?
+Show Navigation Top-Menu==Zobraziť hornú ponuku navigácie
+no link to YaCy Menu (admin must navigate to /Status.html manually)==žiadny odkaz na ponuku YaCy (správca musí prejsť na /Status.html manuálne)
+Show Advanced Search Options on Search Page?==Zobraziť možnosti rozšíreného vyhľadávania na stránke vyhľadávania?
+Show Advanced Search Options on index.html==Zobraziť možnosti rozšíreného vyhľadávania na index.html
+do not show Advanced Search==nezobrazovať Rozšírené vyhľadávanie
+Media Search==Vyhľadávanie médií
+Extended==Rozšírené
+Strict==Prísne
+Control whether media search results are as default strictly limited to indexed documents matching exactly the desired content domain (images, videos or applications specific),==Kontrola, či sú výsledky vyhľadávania médií v predvolenom nastavení prísne obmedzené na indexované dokumenty, ktoré sa presne zhodujú s požadovanou doménou obsahu (obrázky, videá alebo špecifické aplikácie),
+or extended to pages including such medias (provide generally more results, but eventually less relevant).==alebo rozšírené na stránky obsahujúce takéto médiá (poskytujú vo všeobecnosti viac výsledkov, ale nakoniec menej relevantné).
+Remote results resorting==Vzdialené uchyľovanie výsledkov
+On demand, server-side==Na požiadanie, na strane servera
+Automated, with JavaScript in the browser.==Automatizované s JavaScript v prehliadači.
+Automated results resorting with JavaScript makes the browser load the full result set of each search request.==Automatické výsledky využívajúce JavaScript spôsobia, že prehliadač načíta celú množinu výsledkov každej požiadavky vyhľadávania.
+This may lead to high system loads on the server.==To môže viesť k vysokému zaťaženiu systému na serveri.
+Remote search encryption==Šifrovanie vzdialeného vyhľadávania
+Prefer https for search queries on remote peers.==Pre vyhľadávacie dopyty na vzdialených partneroch uprednostňujte protokol https.
+When SSL/TLS is enabled on remote peers, https should be used to encrypt data exchanged with them when performing peer-to-peer searches.==Keď je povolený protokol SSL/TLS na vzdialených partneroch, pri vyhľadávaní typu peer-to-peer by sa na šifrovanie údajov, ktoré sa s nimi vymieňajú, malo použiť https.
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Upozorňujeme, že na rozdiel od prísneho protokolu TLS sa certifikáty neoverujú voči dôveryhodným certifikačným autoritám (CA), čo umožňuje YaCy partnerom používať certifikáty s vlastným podpisom.
+Snippet Fetch Strategy & Link Verification==Stratégia načítania úryvkov & Overenie odkazu
+Speed up search results with this option! (use CACHEONLY or FALSE to switch off verification)==Urýchlite výsledky vyhľadávania pomocou tejto možnosti! (na vypnutie overovania použite CACHEONLY alebo FALSE)
+Counts by origin :==Počet podľa pôvodu:
+NOCACHE: no use of web cache, load all snippets online==NOCACHE: bez použitia webovej vyrovnávacej pamäte, načítať všetky úryvky online
+IFFRESH: use the cache if the cache exists and is fresh otherwise load online==IFFRESH: použite vyrovnávaciu pamäť, ak existuje a je čerstvá, inak sa načíta online
+IFEXIST: use the cache if the cache exist or load online==IFEXIST: použite vyrovnávaciu pamäť, ak existuje alebo sa načíta online
+If verification fails, delete index reference==Ak overenie zlyhá, vymažte referenciu indexu
+CACHEONLY: never go online, use all content from cache. If no cache entry exist, consider content nevertheless as available and show result without snippet==CACHEONLY: nikdy nechoďte online, používajte všetok obsah z vyrovnávacej pamäte. Ak neexistuje žiadny záznam vo vyrovnávacej pamäti, považujte obsah za dostupný a zobrazte výsledok bez úryvku
+FALSE: no link verification and not snippet generation: all search results are valid without verification==FALSE: žiadne overenie odkazu ani generovanie úryvkov: všetky výsledky vyhľadávania sú platné bez overenia
+Greedy Learning Mode==Režim Greedy Learning
+Index remote results==Indexujte vzdialené výsledky
+add remote search results to the local index ( default=on, it is recommended to enable this option ! )==pridať výsledky vzdialeného hľadania do lokálneho indexu ( predvolené=zapnuté, odporúča sa povoliť túto možnosť! )
+Limit size of indexed remote results==Obmedzte veľkosť indexovaných vzdialených výsledkov
+maximum allowed size in kbytes for each remote search result to be added to the local index (for example, a 1000kbytes limit might be useful if you are running YaCy with a low memory setup)==maximálna povolená veľkosť v kB pre každý výsledok vzdialeného vyhľadávania, ktorý sa má pridať do lokálneho indexu (napríklad limit 1 000 kB môže byť užitočný, ak používate YaCy s nastavením nízkej pamäte)
+Default Pop-Up Page==Predvolená kontextová stránka
+Status Page==Stavová stránka
+Search Front Page==Hľadať na titulnej stránke
+Search Page (small header)==Stránka vyhľadávania (malá hlavička)
+Interactive Search Page==Interaktívna stránka vyhľadávania
+Default maximum number of results per page==Predvolený maximálny počet výsledkov na stránku
+Default index.html Page (by forwarder)==Predvolená stránka index.html (od odosielateľa)
+Target for Click on Search Results==Cieľ pre kliknutie na výsledky vyhľadávania
+"_blank" (new window)=="_blank" (nové okno)
+"_self" (same window)=="_self" (rovnaké okno)
+"_parent" (the parent frame of a frameset)=="_parent" (nadradený rámec sady rámcov)
+"_top" (top of all frames)=="_top" (horná časť všetkých snímok)
+"searchresult" (a default custom page name for search results)=="searchresult" (predvolený názov vlastnej stránky pre výsledky vyhľadávania)
+Special Target as Exception for an URL-Pattern==Špeciálny cieľ ako výnimka pre URL-vzor
+Pattern:==vzor:
+Exclude Hosts==Vylúčiť hostiteľov
+List of hosts that shall be excluded from search results by default but can be included using the site:<host> operator:==Zoznam hostiteľov, ktorí budú predvolene vylúčení z výsledkov vyhľadávania, ale môžu byť zahrnutí pomocou operátora site:<host>:
+'About' Column (shown in a column alongside with the search result page)==Stĺpec „O“ (zobrazený v stĺpci vedľa so stránkou s výsledkami vyhľadávania)
+(Headline)==(Nadpis)
+(Content)==(obsah)
+The search page can be integrated in your own web pages with an iframe. Simply use the following code:==Vyhľadávaciu stránku je možné integrovať do vašich vlastných webových stránok pomocou prvku iframe. Stačí použiť nasledujúci kód:
+This would look like:==Toto by vyzeralo takto:
+For a search page with a small header, use this code:==Pre stránku vyhľadávania s malou hlavičkou použite tento kód:
+A third option is the interactive search. Use this code:==Treťou možnosťou je interaktívne vyhľadávanie. Použite tento kód:
+#-----------------------------
+
+#File: ConfigProfile_p.html
+#---------------------------
+"Save"=="Uloz profil"
+Your Personal Profile==Váš osobný profil.
+You can create a personal profile here, which can be seen by other YaCy-members==Tu si môžete vytvoriť osobný profil, ktorý môžu vidieť ostatní YaCy-členovia
+Name==Meno
+Nick Name==Nick Name
+eMail==email
+ICQ==ICQ
+Jabber==Jabber
+Yahoo!==Yahoo!
+MSN==MSN
+Skype==Skype
+Comment==Komentár
+#-----------------------------
+
+#File: ConfigProperties_p.html
+#---------------------------
+"Save"=="Uloz"
+"Clear"=="Jasné"
+Advanced Config==Pokrocile nastavenia
+Here are all configuration options from YaCy.==Tu sa nachadzaju vsetky konfiguracne nastavenia YaCy.
+You can change anything, but some options need a restart, and some options can crash YaCy, if wrong values are used.==Vsetky konfiguracne nastavenia mozu byt zmenene, avsak niektore volby vyzaduju restart a niektore mozu sposobit pad YaCy v pripade zadnia nespravnych hodnot.
+For explanation please look into defaults/yacy.init==Vysvetlenie najdete v subore defaults/yacy.init
+#-----------------------------
+
+#File: ConfigRobotsTxt_p.html
+#---------------------------
+"Save restrictions"=="Uložiť obmedzenia"
+Exclude Web-Spiders==Vylúčiť Web-Spiders
+Here you can set up a robots.txt for all webcrawlers that try to access the webinterface of your peer.==Tu môžete nastaviť súbor robots.txt pre všetkých webcrawlerov, ktorí sa pokúšajú získať prístup k webovému rozhraniu vášho partnera.
+robots.txt==robots.txt
+is a voluntary agreement most search-engines (including YaCy) follow.==je dobrovoľná dohoda, ktorú väčšina vyhľadávačov (vrátane YaCy) dodržiava.
+It disallows crawlers to access webpages or even entire domains.==Neumožňuje prehľadávačom prístup k webovým stránkam alebo dokonca k celým doménam.
+Unable to access the local file:==Nie je možné získať prístup k lokálnemu súboru:
+Deletion of==Vymazanie
+htroot/robots.txt==htroot/robots.txt
+failed==nepodarilo
+Deny access to==Zakázať prístup k
+Entire Peer==Celý Peer
+Status page==Stavová stránka
+Network pages==Sieťové stránky
+Surftips==Tipy na surfovanie
+News pages==Spravodajské stránky
+Blog==Blog
+Wiki==Wiki
+Public bookmarks==Verejné záložky
+Home Page==Domovská stránka
+File Share==Zdieľanie súborov
+Impressum==Impressum
+#-----------------------------
+
+#File: ConfigSearchBox.html
+#---------------------------
+"Search"=="Hľadať"
+Integration of a Search Box==Integrácia vyhľadávacieho poľa
+We give information how to integrate a search box on any web page that==Poskytujeme informácie o tom, ako integrovať vyhľadávacie pole na ľubovoľnú webovú stránku, ktorá
+calls the normal YaCy search window.==zavolá normálne okno vyhľadávania YaCy.
+Simply use the following code:==Stačí použiť nasledujúci kód:
+This would look like:==Toto by vyzeralo takto:
+MySearch==MySearch
+This does not use a style sheet file to make the integration into another web page with a different style sheet easier.==Na uľahčenie integrácie do inej webovej stránky s inou šablónou štýlov sa nepoužíva súbor so štýlom.
+You would need to change the following items:==Budete musieť zmeniť nasledujúce položky:
+Replace the given colors #eeeeee (box background) and #cccccc (box border)==Nahraďte dané farby #eeeeee (pozadie rámčeka) a #cccccc (okraj rámčeka)
+Replace the word "MySearch" with your own message==Nahraďte slovo „MySearch“ svojou vlastnou správou
+#-----------------------------
+
+#File: ConfigSearchPage_p.html
+#---------------------------
+"Top navigation bar"=="Horná navigačná lišta"
+"Enable login link/status"=="Povoliť prihlasovacie prepojenie/status"
+"Log in to use extended search features"=="Ak chcete používať funkcie rozšíreného vyhľadávania, prihláste sa"
+"You are authenticated as userName"=="Ste overený ako používateľské meno"
+"Help"=="Pomoc"
+"Protocols"=="Protokoly"
+"Tag cloud"=="Tag cloud"
+"earthsearchlogo"=="logo earthsearch"
+"Delete navigator"=="Odstrániť navigátor"
+"Sorted by descending counts"=="Zoradené zostupne"
+"Sorted by ascending counts"=="Zoradené podľa vzostupných počtov"
+"Sorted by descending labels"=="Zoradené podľa zostupných štítkov"
+"Sorted by ascending labels"=="Zoradené podľa vzostupných štítkov"
+"search..."=="hľadať..."
+"Maximum days number in the histogram. Beware that a large value may trigger high CPU loads both on the server and on the browser with large result sets."=="Maximálny počet dní v histograme. Upozorňujeme, že veľká hodnota môže spôsobiť vysoké zaťaženie procesora na serveri aj v prehliadači s veľkými súbormi výsledkov."
+"info"=="info"
+"Website favicon"=="Favicon webovej stránky"
+"Last known modification date"=="Posledný známy dátum úpravy"
+"Browse index"=="Prehľadávať index"
+"Raw ranking score value"=="Surová hodnota skóre hodnotenia"
+"Date"=="Dátum"
+"Size"=="Veľkosť"
+"Add navigator"=="Pridať navigátor"
+"Save Settings"=="Uložiť nastavenia"
+"Set Default Values"=="Nastaviť predvolené hodnoty"
+Search Result Page Layout Configuration==Konfigurácia rozloženia stránky s výsledkami vyhľadávania
+Below is a generic template of the search result page. Mark the check boxes for features you would like to be displayed.==Nižšie je uvedená všeobecná šablóna stránky s výsledkami vyhľadávania. Začiarknite políčka pre funkcie, ktoré chcete zobraziť.
+Page Template==Šablóna stránky
+Toggle navigation==Prepnúť navigáciu
+Log in==Prihláste sa
+userName==užívateľské meno
+Search Interfaces==Vyhľadávacie rozhrania
+Administration »==Správa »
+http==http
+https==https
+ftp==ftp
+smb==koho
+file==súbor
+Tag==Tag
+Topics==Témy
+Cloud==Cloud
+Location==Miesto
+show search results on map==zobraziť výsledky vyhľadávania na mape
+Sort by==Zoradiť podľa
+Descending counts==Klesajúci počet
+Ascending counts==Vzostupné počty
+Descending labels==Zostupné štítky
+Ascending labels==Vzostupné štítky
+Vocabulary==Slovná zásoba
+search==hľadať
+Text==Text
+Images==Obrázky
+Audio==Zvuk
+Video==Video
+Applications==Aplikácie
+more options==viac možností
+Date Navigation==Navigácia podľa dátumu
+Maximum range (in days)==Maximálny rozsah (v dňoch)
+Show websites favicon==Zobraziť favicon webových stránok
+Not showing websites favicon can help you save some CPU time and network bandwidth.==Nezobrazovanie favicon webových stránok vám môže pomôcť ušetriť čas procesora a šírku pásma siete.
+Title of Result==Názov výsledku
+Description and text snippet of the search result==Popis a textový úryvok výsledku vyhľadávania
+http://url-of-the-search-result.net==http://url-of-the-search-result.net
+Tags==Tagy
+keyword==kľúčové slovo
+subject==predmet
+keyword2==kľúčové slovo2
+keyword3==kľúčové slovo3
+Max. tags initially displayed==Max. pôvodne zobrazené značky
+(remaining can then be expanded)==(zostávajúce možno potom rozšíriť)
+42 kbyte==42 kbajtov
+Metadata==Metadáta
+Parser==Analyzátor
+Citation==Citácia
+Pictures==Obrázky
+Cache==Cache
+View via Proxy==Zobraziť cez proxy
+Ranking: 1.12195955E9==Poradie: 1,12195955E9
+For this option URL proxy must be enabled.==Pre túto možnosť musí byť povolený server proxy URL.
+menu: System Administration > Advanced Settings==menu: Správa systému > Rozšírené nastavenia
+Menu: System Administration > Advanced Settings > Debug/Analysis Settings==Ponuka: Správa systému > Rozšírené nastavenia > Nastavenia ladenia/Analysis
+Add Navigators==Pridať navigátory
+append==priložiť
+max. items==max. položky
+#-----------------------------
+
+#File: ConfigUpdate_p.html
+#---------------------------
+"Download Release"=="Stiahnuť vydanie"
+"Check for new Release"=="Skontrolujte nové vydanie"
+"Install Release"=="Inštalovať vydanie"
+"Delete Release"=="Odstrániť vydanie"
+"Check + Download + Install Release Now"=="Zaškrtnite + Stiahnuť + Nainštalujte vydanie teraz"
+"Submit"=="Odoslať"
+System Update==Aktualizácia systému
+Release will be installed. Please wait.==Vydanie sa nainštaluje. Čakajte prosím.
+This servlet can only be used on operating systems that are currently supported for deploy functions.==Tento servlet je možné použiť iba v operačných systémoch, ktoré sú momentálne podporované pre funkcie nasadenia.
+If you see this message this means that your operation system is not supported.==Ak uvidíte túto správu, znamená to, že váš operačný systém nie je podporovaný.
+Manual System Update==Manuálna aktualizácia systému
+Current installed Release==Aktuálne nainštalované vydanie
+(unsigned)==(nepodpísané)
+(signed)==(podpísané)
+Downloaded Releases==Stiahnuté vydania
+No downloaded releases available for deployment.==Nie sú k dispozícii žiadne stiahnuté vydania na nasadenie.
+(no signature)==(bez podpisu)
+no automated installation on development environments==no automatizovaná inštalácia vo vývojových prostrediach
+Automatic Update==Automatická aktualizácia
+check for new releases, download if available and restart with downloaded release==skontrolujte nové vydania, stiahnite, ak sú k dispozícii, a reštartujte so stiahnutým vydaním
+No more recent release found.==Nenašlo sa žiadne novšie vydanie.
+Omitting update because this is a development environment.==Aktualizácia sa vynecháva, pretože ide o vývojové prostredie.
+Omitting update because an error occurred while trying to deploy the release.==Aktualizácia sa vynecháva, pretože pri pokuse o nasadenie vydania sa vyskytla chyba.
+Automated System Update==Automatická aktualizácia systému
+manual update==manuálna aktualizácia
+no automatic look-up, updates can be made manually using this interface (see options above)==žiadne automatické vyhľadávanie, aktualizácie je možné vykonať manuálne pomocou tohto rozhrania (pozri možnosti vyššie)
+automatic update==automatická aktualizácia
+updates are made within fixed cycles:==aktualizácie sa vykonávajú v rámci pevných cyklov:
+Time between lookup==Čas medzi vyhľadávaním
+hours==hodiny
+Release blacklist==Uvoľnite čiernu listinu
+(regex on release number strings)==(regulárny výraz v reťazcoch čísla vydania)
+Release type==Typ uvoľnenia
+only main releases==iba hlavné vydania
+any release including developer releases==akékoľvek vydanie vrátane vydaní pre vývojárov
+Signed autoupdate:==Podpísaná automatická aktualizácia:
+only accept signed files==akceptovať iba podpísané súbory
+Accepted Changes.==Prijaté zmeny.
+System Update Statistics==Štatistika aktualizácie systému
+Last System Lookup==Posledné vyhľadávanie systému
+never==nikdy
+Last Release Download==Stiahnutie posledného vydania
+Last Deploy==Posledné nasadenie
+You installed YaCy with a package manager. To update YaCy, use the package manager:==Nainštalovali ste YaCy pomocou správcu balíkov. Ak chcete aktualizovať YaCy, použite správcu balíkov:
+manual update: apt-get update && apt-get install yacy==manuálna aktualizácia: apt-get update && apt-get install yacy
+automatic update: add the following line to /etc/crontab 0 6 * * * root apt-get update && apt-get -y --force-yes install yacy==automatická aktualizácia: pridajte nasledujúci riadok do /etc/crontab 0 6 * * * aktualizácia root apt-get && apt-get -y --force-yes install yacy
+#-----------------------------
+
+#File: ConfigUser_p.html
+#---------------------------
+"Save User"=="Uložiť používateľa"
+"Delete User"=="Odstrániť používateľa"
+"ConfigAccountList_p.html"=="ConfigAccountList_p.html"
+User Account Editor==Editor používateľských účtov
+Generic error.==Všeobecná chyba.
+Passwords do not match.==Heslá sa nezhodujú.
+Username too short. Username must be >= 4 Characters.==Používateľské meno je príliš krátke. Používateľské meno musí mať >= 4 znaky.
+Username already used (not allowed).==Používateľské meno sa už používa (nie je povolené).
+Username==Používateľské meno
+Password==heslo
+Repeat password==Zopakujte heslo
+First name==Krstné meno
+Last name==Priezvisko
+Address==Adresa
+Rights:==práva:
+Timelimit==Časový limit
+Time used==Využitý čas
+back to user list==späť na zoznam používateľov
+#-----------------------------
+
+#File: Connections_p.html
+#---------------------------
+Server Connection Tracking==Sledovanie pripojenia k serveru
+Incoming Connections==Prichadzajuce spojenia
+Protocol==Protokol
+Duration==Trvanie
+Source IP[:Port]==Zdrojova-IP[:Port]
+Command==Prikaz
+ID==ID
+Outgoing Connections==Odchádzajúce spojenia
+Up-Bytes==Up-Bytes
+Dest. IP[:Port]==Zielova-IP[:Port]
+#-----------------------------
+
+#File: ContentAnalysis_p.html
+#---------------------------
+"Set"=="Set"
+"Re-Set to default"=="Re-set to default"
+Content Analysis==Analýza obsahu
+These are document analysis attributes.==Toto sú atribúty analýzy dokumentov.
+Double Content Detection==Dvojitá detekcia obsahu
+Double-Content detection is done using a ranking on a 'unique'-Field, named 'fuzzy_signature_unique_b'.==Detekcia dvojitého obsahu sa vykonáva pomocou hodnotenia v 'jedinečnom' poli s názvom 'fuzzy_signature_unique_b'.
+minTokenLen==minTokenLen
+This is the minimum length of a word which shall be considered as element of the signature. Should be either 2 or 3.==Toto je minimálna dĺžka slova, ktoré sa považuje za prvok podpisu. Malo by byť 2 alebo 3.
+quantRate==kvantitatívnej miery
+The quantRate is a measurement for the number of words that take part in a signature computation. The higher the number, the less==quantRate je miera počtu slov, ktoré sa zúčastňujú na výpočte podpisu. Čím vyššie číslo, tým menej
+words are used for the signature.==na podpis sa používajú slová.
+For minTokenLen = 2 the quantRate value should not be below 0.24; for minTokenLen = 3 the quantRate value must be not below 0.5.==Pre minTokenLen = 2 by hodnota quantRate nemala byť nižšia ako 0,24; pre minTokenLen = 3 hodnota quantRate nesmie byť nižšia ako 0,5.
+#-----------------------------
+
+#File: ContentIntegrationPHPBB3_p.html
+#---------------------------
+"Check database connection"=="Skontrolujte pripojenie k databáze"
+"Export Content to Packs"=="Exportovať obsah do balíkov"
+"Import Dump"=="Importovať výpis"
+Content Integration: Retrieval from phpBB3 Databases==Integrácia obsahu: Získavanie z databáz phpBB3
+It is possible to extract texts directly from mySQL and postgreSQL databases.==Je možné extrahovať texty priamo z databáz mySQL a postgreSQL.
+Each extraction is specific to the data that is hosted in the database.==Každá extrakcia je špecifická pre údaje, ktoré sú hosťované v databáze.
+This interface gives you access to the phpBB3 forums software content.==Toto rozhranie vám umožňuje prístup k softvérovému obsahu fór phpBB3.
+If you read from an imported database, here are some hints to get around problems when importing dumps in phpMyAdmin:==Ak čítate z importovanej databázy, tu je niekoľko rád, ako obísť problémy pri importovaní výpisov v phpMyAdmin:
+before importing large database dumps, set the following Line in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB):==pred importovaním veľkých výpisov databázy nastavte nasledujúci riadok v phpmyadmin/config.inc.php a umiestnite súbor výpisu do /tmp (inak nie je možné nahrávať súbory väčšie ako 2 MB):
+deselect the partial import flag==zrušte označenie príznaku čiastočného importu
+When an export is started, pack files are generated into DATA/PACKS/load which are automatically fetched by an indexer thread.==Keď sa spustí export, súbory balíkov sa vygenerujú do DATA/PACKS/load, ktoré sa automaticky načítajú vláknom indexátora.
+All indexed pack files are then moved to DATA/PACKS/loaded and can be re-cycled when an index is deleted.==Všetky indexované súbory balíka sa potom presunú do DATA/PACKS/loaded a po odstránení indexu sa dajú znova cyklovať.
+The URL stub, like http://forum.yacy-websuche.de this must be the path right in front of '/viewtopic.php?'==Základ URL, napríklad http://forum.yacy-websuche.de musí to byť cesta priamo pred '/viewtopic.php?'
+Type of database (use either 'mysql' or 'pgsql')==Typ databázy (použite buď 'mysql' alebo 'pgsql')
+Host of the database==Hostiteľ databázy
+Port of database service (usually 3306 for mySQL)==Port databázovej služby (zvyčajne 3306 pre mySQL)
+Name of the database on the host==Názov databázy na hostiteľovi
+Table prefix string for table names==reťazec predpony tabuľky pre názvy tabuliek
+User that can access the database==User, ktorý má prístup k databáze
+Password for the account of that user given above==Heslo pre účet daného používateľa uvedeného vyššie
+Posts per file in exported packs==Príspevkov na súbor v exportovaných balíkoch
+Import a database dump,==Importovať výpis databázy,
+Posts in database==Príspevky v databáze
+first entry==prvý záznam
+last entry==posledný záznam
+Import successful!==Import bol úspešný!
+#-----------------------------
+
+#File: CookieMonitorIncoming_p.html
+#---------------------------
+"Enable Cookie Monitoring"=="Povoliť monitorovanie súborov cookie"
+"Disable Cookie Monitoring"=="Zakázať sledovanie súborov cookie"
+Cookie Monitor: Incoming Cookies==Sledovanie cookies: Prichadzajuce cookies
+This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:==Toto je zoznam vsetkych cookies, ktore web server poslal klientom YaCy proxy:
+Sending Host==Odosielatej
+Date==Datum
+Receiving Client==Prijemca
+Cookie==Cookie
+#-----------------------------
+
+#File: CookieMonitorOutgoing_p.html
+#---------------------------
+"Enable Cookie Monitoring"=="Povoliť monitorovanie súborov cookie"
+"Disable Cookie Monitoring"=="Zakázať sledovanie súborov cookie"
+Cookie Monitor: Outgoing Cookies==Sledovanie cookies: Odchadzajuce cookies
+This is a list of cookies that browsers using the YaCy proxy sent to webservers:==Toto je zoznam súborov cookie, ktoré prehliadače používajúce proxy server YaCy odosielajú webovým serverom:
+Receiving Host==Prijímanie hostiteľa
+Date==Datum
+Sending Client==Odosielajúci klient
+Cookie==Cookie
+#-----------------------------
+
+#File: CrawlCheck_p.html
+#---------------------------
+"Check given urls"=="Skontrolujte zadané adresy URL"
+Crawl Check==Kontrola indexového prehľadávania
+This pages gives you an analysis about the possible success for a web crawl on given addresses.==Tieto stránky vám poskytujú analýzu možného úspechu indexového prehľadávania webu na daných adresách.
+List of possible crawl start URLs==Zoznam možných adries URL spustenia indexového prehľadávania
+Analysis==Analýza
+URL==URL adresa
+Access==Prístup
+Robots==Roboty
+Crawl-Delay==Crawl-Delay
+Sitemap==Sitemap
+#-----------------------------
+
+#File: CrawlMonitorRemoteStart.html
+#---------------------------
+Recently started remote crawls in progress==Prebieha nedávno spustené vzdialené indexové prehľadávanie
+Remote crawl start points, crawl is ongoing==Vzdialené začiatočné body prehľadávania, prehľadávanie prebieha
+Start Time==Čas začiatku
+Peer Name==Meno partnera
+Start URL==Začať URL
+Intention/Description==Intention/Description
+Depth==Hlbka
+Accept '?' URLs==Prijať '?' URL
+no==nie
+yes==áno
+Remote crawl start points, finished:==Začiatočné body vzdialeného indexového prehľadávania, dokončené:
+#-----------------------------
+
+#File: CrawlProfileEditor_p.html
+#---------------------------
+"Terminate"=="Ukončiť"
+"Delete"=="Zmaz"
+"Delete finished crawls"=="Odstrániť dokončené indexové prehľadávania"
+"Edit profile"=="Upraviť profil"
+"Submit changes"=="Odoslať zmeny"
+Crawler Steering==Pásové riadenie
+Crawl Scheduler==Plánovač indexového prehľadávania
+Scheduled Crawls can be modified in this table==Naplánované indexové prehľadávanie je možné upraviť v tejto tabuľke
+Crawl Profile Editor==Editor profilov indexového prehľadávania
+Crawl profiles hold information about a crawl process that is currently ongoing.==Profily indexového prehľadávania obsahujú informácie o procese indexového prehľadávania, ktorý práve prebieha.
+Crawl Profile List==Zoznam profilov indexového prehľadávania
+Crawl Thread==Crawl Thread
+Collections==zbierky
+Status==Stav
+Depth==Hlbka
+Must Match==Musí sa zhodovať
+Must Not Match==Nesmie sa zhodovať
+Recrawl if older than==Opätovne prehľadať, ak je staršie ako
+Domain Counter Content==Obsah počítadla domény
+Max Page Per Domain==Maximálny počet stránok na doménu
+Accept '?' URLs==Prijať '?' URL
+Fill Proxy Cache==Vyplňte vyrovnávaciu pamäť proxy
+Local Text Indexing==Lokálne indexovanie textu
+Local Media Indexing==Indexovanie miestnych médií
+Remote Indexing==Vzdialené indexovanie
+Running==Beh
+Finished==Dokončené
+no==nie
+yes==áno
+Select the profile to edit==Vyberte profil, ktorý chcete upraviť
+false==falošné
+true==pravda
+#-----------------------------
+
+#File: CrawlResults.html
+#---------------------------
+"An illustration how yacy works"=="Ilustrácia toho, ako yacy funguje"
+"delete all"=="vymazať všetky"
+"del & blacklist"=="del & blacklist"
+"clear list"=="prehľadný zoznam"
+"delete"=="vymazať"
+Crawl Results Overview==Prehľad výsledkov indexového prehľadávania
+These are monitoring pages for the different indexing queues.==Toto sú monitorovacie stránky pre rôzne indexovacie fronty.
+YaCy knows 5 different ways to acquire web indexes. The details of these processes (1-5) are described within the submenu's listed==YaCy pozná 5 rôznych spôsobov získavania webových indexov. Podrobnosti o týchto procesoch (1-5) sú popísané v zozname podmenu
+above which also will show you a table with indexing results so far. The information in these tables is considered as private,==nad ktorým sa vám tiež zobrazí tabuľka s doterajšími výsledkami indexovania. Informácie v týchto tabuľkách sa považujú za súkromné,
+so you need to log-in with your administration password.==takže sa musíte prihlásiť pomocou administračného hesla.
+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 monitorom miestneho generátora príjmov, opačný prípad (1). Obsahuje tiež monitor výsledkov indexovania, ale nepovažuje sa za súkromný
+since it shows crawl requests from other peers.==pretože zobrazuje požiadavky na indexové prehľadávanie od iných partnerov.
+Case (7) occurs if pack files are imported==Prípad (7) nastane, ak sa importujú súbory balíka
+The image above illustrates the data flow initiated by web index acquisition.==Vyššie uvedený obrázok ilustruje tok údajov iniciovaný akvizíciou webového indexu.
+Some processes occur double to document the complex index migration structure.==Niektoré procesy sa vyskytujú dvakrát, aby dokumentovali komplexnú štruktúru migrácie indexov.
+(1) Results of Remote Crawl Receipts==(1) Výsledky vzdialených potvrdení o indexovom prehľadávaní
+This is the list of web pages that this peer initiated to crawl,==Toto je zoznam webových stránok, ktorých prehľadávanie inicioval tento partner,
+but had been crawled by other peers.==ale bol prehľadaný inými partnermi.
+This is the 'mirror'-case of process (6).==Toto je „zrkadlový“ prípad procesu (6).
+Every page that a remote peer indexes upon this peer's request is reported back and can be monitored here.==Každá stránka, ktorú vzdialený partner indexuje na základe požiadavky tohto partnera, je hlásená späť a možno ju tu monitorovať.
+No remote crawl results can currently been added to the local index as the remote crawler is disabled on this peer.==Do lokálneho indexu sa momentálne nedajú pridať žiadne výsledky vzdialeného prehľadávania, pretože vzdialený prehľadávač je na tomto partnerovi zakázaný.
+(2) Results for Result of Search Queries==(2) Výsledky pre Výsledok vyhľadávacích dopytov
+This index transfer was initiated by your peer by doing a search query.==Tento prenos indexu inicioval váš partner zadaním vyhľadávacieho dopytu.
+The index was crawled and contributed by other peers.==Index bol prehľadávaný a prispievaný inými partnermi.
+Use Case: This list fills up if you do a search query on the 'Search Page'==Prípad použitia: Tento zoznam sa zaplní, ak zadáte vyhľadávací dopyt na „Stránka vyhľadávania“
+(3) Results for Index Transfer==(3) Výsledky pre prenos indexu
+The url fetch was initiated and executed by other peers.==Načítanie adresy URL spustili a vykonali iní partneri.
+These links here have been transmitted to you because your peer is the most appropriate for storage according to==Tieto odkazy vám boli odovzdané, pretože váš partner je najvhodnejší na uloženie podľa
+the logic of the Global Distributed Hash Table.==logika globálnej distribuovanej hash tabuľky.
+Use Case: This list may fill if you check the 'Index Receive'-flag on the 'Index Control' page==Prípad použitia: Tento zoznam sa môže vyplniť, ak začiarknete príznak „Prijatie indexu“ na stránke „Kontrola indexu“
+(4) Results for Proxy Indexing==(4) Výsledky indexovania proxy
+These web pages had been indexed as result of your proxy usage.==Tieto webové stránky boli indexované v dôsledku vášho používania servera proxy.
+No personal or protected page is indexed;==Neindexuje sa žiadna osobná ani chránená stránka;
+such pages are detected by Cookie-Use or POST-Parameters (either in URL or as HTTP protocol)==takéto stránky zisťujú parametre používania súborov cookie alebo POST (buď v protokole URL alebo ako protokol HTTP)
+and automatically excluded from indexing.==a automaticky vylúčené z indexovania.
+Use Case: You must use YaCy as proxy to fill up this table.==Prípad použitia: Na vyplnenie tejto tabuľky musíte použiť YaCy ako proxy.
+Set the proxy settings of your browser to the same port as given==Nastavte proxy nastavenia vášho prehliadača na rovnaký port, ako je uvedený
+on the 'Settings'-page in the 'Proxy and Administration Port' field.==na stránke 'Nastavenia' v poli 'Proxy a administračný port'.
+(5) Results for Local Crawling==(5) Výsledky pre miestne indexové prehľadávanie
+These web pages had been crawled by your own crawl task.==Tieto webové stránky boli prehľadané vašou vlastnou úlohou prehľadávania.
+Use Case: start a crawl by setting a crawl start point on the 'Index Create' page.==Prípad použitia: spustite prehľadávanie nastavením počiatočného bodu prehľadávania na stránke „Vytvorenie indexu“.
+(6) Results for Global Crawling==(6) Výsledky pre globálne indexové prehľadávanie
+These pages had been indexed by your peer, but the crawl was initiated by a remote peer.==Tieto stránky indexoval váš partner, ale indexové prehľadávanie spustil vzdialený partner.
+This is the 'mirror'-case of process (1).==Toto je „zrkadlový“ prípad procesu (1).
+The remote crawler is currently disabled==Vzdialený prehľadávač je momentálne zakázaný
+(7) Results from pack import==(7) Výsledky z dovozu balenia
+These records had been imported from pack files in DATA/PACKS/load==Tieto záznamy boli importované zo súborov balíka v DATA/PACKS/load
+The stack is empty.==Zásobník je prázdny.
+Domain==doména
+URLs==URL
+Blacklist to use==Čierna listina na použitie
+Collection==Zbierka
+Initiator==Iniciator
+Executor==Exekútor
+Modified==Upravené
+Words==Slová
+Title==Názov
+Country==Krajina
+IP of Host==IP hostiteľa
+URL==URL adresa
+no title==žiadny titul
+#-----------------------------
+
+#File: CrawlStartExpert.html
+#---------------------------
+"API"=="API"
+"info"=="info"
+"empty"=="prázdny"
+"Show all links"=="Zobraziť všetky odkazy"
+"Media Type checking info"=="Informácie o kontrole typu média"
+"Media Type filter info"=="Informácie o filtri typu média"
+"Solr query filter info"=="Solr informácie o filtri dopytov"
+"Clean up search events cache info"=="Vyčistite informácie z vyrovnávacej pamäte udalostí vyhľadávania"
+"Start New Crawl Job"=="Začnite novú úlohu indexového prehľadávania"
+Click on this API button to see a documentation of the POST request parameter for crawl starts.==Kliknutím na toto tlačidlo API zobrazíte dokumentáciu parametra požiadavky POST na spustenie indexového prehľadávania.
+Expert Crawl Start==Spustenie expertného indexového prehľadávania
+Start Crawling Job:==Odstartuj crawling:
+You can define URLs as start points for Web page crawling and start crawling here.==Tu môžete definovať adresy URL ako počiatočné body pre prehľadávanie webových stránok a začať prehľadávať.
+"Crawling" means that YaCy will download the given website, extract all links in it and then download the content behind these links.==„Indexové prehľadávanie“ znamená, že YaCy stiahne danú webovú lokalitu, rozbalí z nej všetky odkazy a potom stiahne obsah za týmito odkazmi.
+This is repeated as long as specified under "Crawling Depth".==Toto sa opakuje tak dlho, ako je špecifikované v časti „Hĺbka prehľadávania“.
+Crawl Job==Crawl Job
+A Crawl Job consist of one or more start point, crawl limitations and document freshness rules.==Úloha indexového prehľadávania pozostáva z jedného alebo viacerých počiatočných bodov, obmedzení indexového prehľadávania a pravidiel aktuálnosti dokumentu.
+Start Point==Počiatočný bod
+One Start URL or a list of URLs: (must start with http:// https:// ftp:// smb:// file://)==Jedna štartovacia URL alebo zoznam URL: (musí začínať http:// https:// ftp:// smb:// file://)
+Define the start-url(s) here. You can submit more than one URL, each line one URL please.==Tu definujte počiatočné adresy URL. Môžete odoslať viac ako jeden URL, každý riadok jeden URL.
+Each of these URLs are the root for a crawl start, existing start URLs are always re-loaded.==Každá z týchto adries URL je základom pre začiatok indexového prehľadávania, existujúce počiatočné adresy URL sa vždy znova načítajú.
+Other already visited URLs are sorted out as "double", if they are not allowed using the re-crawl option.==Ostatné už navštívené adresy URL sú zoradené ako „dvojité“, ak nie sú povolené pomocou možnosti opätovného indexového prehľadávania.
+From Link-List of URL==Zo zoznamu odkazov URL
+From Sitemap==Zo súboru Sitemap
+From File (enter a path within your local file system)==Zo súboru (zadajte cestu v rámci vášho lokálneho systému súborov)
+Index Attributes==Indexové atribúty
+Add Crawl result to collection (important for Index Pack generation)==Pridať výsledok indexového prehľadávania do kolekcie (dôležité pre generovanie indexového balíka)
+A crawl result can be tagged with names which are candidates for a collection request.==Výsledok prehľadávania môže byť označený menami, ktoré sú kandidátmi na žiadosť o zhromaždenie.
+Do not use underline '_' in collection name, use '-' instead. When useful, add a language code to the collection name, e.g. 'top-100-en'.==V názve kolekcie nepoužívajte podčiarknutie '_', namiesto toho použite '-'. Keď je to užitočné, pridajte do názvu kolekcie kód jazyka, napr. „top-100-en“.
+Time Zone Offset==Posun časového pásma
+The time zone is required when the parser detects a date in the crawled web page. Content can be searched with the on: - modifier which==Časové pásmo sa vyžaduje, keď syntaktický analyzátor zistí dátum na prehľadávanej webovej stránke. Obsah je možné vyhľadávať so zapnutým: - modifikátorom ktorý
+requires also a time zone when a query is made. To normalize all given dates, the date is stored in UTC time zone. To get the right offset==vyžaduje aj časové pásmo pri zadávaní dopytu. Na normalizáciu všetkých daných dátumov je dátum uložený v časovom pásme UTC. Ak chcete získať správny offset
+from dates without time zones to UTC, this offset must be given here. The offset is given in minutes;==od dátumov bez časových pásiem po UTC, toto posunutie musí byť uvedené tu. Posun sa uvádza v minútach;
+Time zone offsets for locations east of UTC must be negative; offsets for zones west of UTC must be positve.==Posuny časových pásiem pre miesta východne od UTC musia byť záporné; posuny pre zóny západne od UTC musia byť kladné.
+Crawler Filter==Pásový filter
+These are limitations on the crawl stacker. The filters will be applied before a web page is loaded.==Toto sú obmedzenia pre prehľadávač. Filtre sa použijú pred načítaním webovej stránky.
+Indexing==Indexovanie
+This enables indexing of the webpages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the==To umožňuje indexovanie webových stránok, ktoré indexový prehľadávač stiahne. Toto by malo byť predvolene zapnuté, pokiaľ nechcete prehľadávať iba na vyplnenie
+Document Cache without indexing.==Vyrovnávacia pamäť dokumentov bez indexovania.
+index text==indexový text
+index media==indexové médiá
+Do Remote Indexing==Vzdialene indexovanie
+If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Ak aktivovane tak crawler bude kontaktovat inych peerov and bude ich vyuzivat ako vzdialenych indexatorov pre Vas crawl.
+If you need your crawling results locally, you should switch this off.==Vypnite tuto volbu, ak potrebujete mat vysledy crawlingu lokalne.
+Only senior and principal peers can initiate or receive remote crawls.==Len Senior a Principal peeri mozu odstartovat alebo obdrzat vzialene crawly.
+A YaCyNews message will be created to inform all peers about a global crawl,==Vytvorí sa správa YaCyNews, ktorá bude informovať všetkých partnerov o globálnom prehľadávaní,
+so they can omit starting a crawl with the same start point.==takže môžu vynechať začatie prehľadávania s rovnakým počiatočným bodom.
+Remote crawl results won't be added to the local index as the remote crawler is disabled on this peer.==Výsledky vzdialeného prehľadávania sa nepridajú do lokálneho indexu, pretože vzdialený prehľadávač je na tomto partnerovi zakázaný.
+Describe your intention to start this global crawl (optional)==Opíšte svoj zámer začať toto globálne indexové prehľadávanie (voliteľné)
+This message will appear in the 'Other Peer Crawl Start' table of other peers.==Tento popis sa u ostatnych peerov objavi v tabulke 'Start crawlingu ineho peera'.
+Crawling Depth==Hĺbka prehľadávania
+This defines how often the Crawler will follow links (of links..) embedded in websites.==Toto definuje, ako často bude Crawler sledovať odkazy (odkazov...) vložené do webových stránok.
+0 means that only the page you enter under "Starting Point" will be added==0 znamená, že sa pridá iba stránka, ktorú zadáte pod "Počiatočný bod".
+to the index. 2-4 is good for normal indexing. Values over 8 are not useful, since a depth-8 crawl will==do indexu. 2-4 je dobré pre normálne indexovanie. Hodnoty nad 8 nie sú užitočné, pretože indexové prehľadávanie hĺbky 8 áno
+index approximately 25.600.000.000 pages, maybe this is the whole WWW.==index cca 25 600 000 000 strán, možno toto je celý WWW.
+also all linked non-parsable documents==aj všetky prepojené neparsovateľné dokumenty
+Unlimited crawl depth for URLs matching with==Neobmedzená hĺbka indexového prehľadávania pre zhodné adresy URL
+Maximum Pages per Domain==Maximálny počet stránok na doménu
+You can limit the maximum number of pages that are fetched and indexed from a single domain with this option.==Pomocou tejto možnosti môžete obmedziť maximálny počet stránok, ktoré sa načítajú a indexujú z jednej domény.
+You can combine this limitation with the 'Auto-Dom-Filter', so that the limit is applied to all the domains within==Tuto volbu mozete kombinovat s 'Auto-Dom-Filtrom', takze toto obmedzenie bude aplikovane na vsetky domeny vo
+the given depth. Domains outside the given depth are then sorted-out anyway.==zvolenej hlbke. Domeny mimo zvolenej hlbky budu v kazdom pripade vytriedene.
+Use==Použite
+Page-Count==Počet strán
+misc. Constraints==rôzne Obmedzenia
+A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled.==Otáznik je zvyčajne náznakom dynamickej stránky. Adresy URL odkazujúce na dynamický obsah by sa zvyčajne nemali prehľadávať.
+However, there are sometimes web pages with static content that==Niekedy však existujú webové stránky so statickým obsahom
+is accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.==obsahujucou otaznik maju staticky obsah. Neaktivujte tuto volbu ak ste si nie isty nebezpecenstvom zacyklenia crawlingu.
+Following frames is NOT done by Gxxg1e, but we do by default to have a richer content. 'nofollow' in robots metadata can be overridden; this does not affect obeying of the robots.txt which is never ignored.==Nasledujúce snímky NEMÁ Gxxg1e, ale štandardne to robíme, aby sme mali bohatší obsah. „nofollow“ v metadátach robotov možno prepísať; to nemá vplyv na dodržiavanie súboru robots.txt, ktorý sa nikdy neignoruje.
+Accept URLs with query-part ('?'):==Prijať adresy URL s časťou dopytu ('?'):
+Obey html-robots-noindex:==Dodržujte html-robots-noindex:
+Obey html-robots-nofollow:==Dodržujte html-robots-nofollow:
+Media Type detection==Detekcia typu média
+Not loading URLs with unsupported file extension is faster but less accurate.==Nenačítanie adries URL s nepodporovanou príponou súboru je rýchlejšie, ale menej presné.
+Indeed, for some web resources the actual Media Type is not consistent with the URL file extension. Here are some examples:==V prípade niektorých webových zdrojov sa skutočný typ média nezhoduje s príponou súboru URL. Tu je niekoľko príkladov:
+Do not load URLs with an unsupported file extension==Nenačítavajte adresy URL s nepodporovanou príponou súboru
+Always cross check file extension against Content-Type header==Vždy skontrolujte príponu súboru s hlavičkou Content-Type
+Load Filter on URLs==Načítať filter na URL
+Example: to allow only urls that contain the word 'science', set the must-match filter to '.*science.*'.==Príklad: ak chcete povoliť iba adresy URL, ktoré obsahujú slovo 'science', nastavte filter, ktorý musí zodpovedať, na '.*science.*'.
+You can also use an automatic domain-restriction to fully crawl a single domain.==Na úplné prehľadávanie jednej domény môžete použiť aj automatické obmedzenie domény.
+must-match==must-match
+Restrict to start domain(s)==Obmedziť na spustené domény
+Restrict to sub-path(s)==Obmedziť na podcesty
+Use filter==Použite filter
+(must not be empty)==(nesmie byť prázdne)
+must-not-match==nesmie sa zhodovať
+Load Filter on URL origin of links==Načítať filter na URL pôvode odkazov
+Example: to allow loading only links from pages on example.org domain, set the must-match filter to '.*example.org.*'.==Príklad: ak chcete povoliť načítanie iba odkazov zo stránok na doméne example.org, nastavte filter, ktorý musí zodpovedať, na „.*example.org.*“.
+Load Filter on IPs==Načítať filter na IP adresy
+Must-Match List for Country Codes==Zoznam nevyhnutných zhôd pre kódy krajín
+Crawls can be restricted to specific countries. This uses the country code that can be computed from==Indexové prehľadávanie môže byť obmedzené na konkrétne krajiny. Toto používa kód krajiny, z ktorého sa dá vypočítať
+the IP of the server that hosts the page. The filter is not a regular expressions but a list of country codes, separated by comma.==IP servera, ktorý je hostiteľom stránky. Filter nie je regulárnym výrazom, ale zoznamom kódov krajín oddelených čiarkou.
+no country code restriction==žiadne obmedzenie kódu krajiny
+Document Filter==Filter dokumentov
+These are limitations on index feeder. The filters will be applied after a web page was loaded.==Toto sú obmedzenia indexového podávača. Filtre sa použijú po načítaní webovej stránky.
+Filter on URLs==Filtrujte podľa adries URL
+that must not match with the URLs to allow that the content of the url is indexed.==že sa nesmie zhodovať s s adresami URL, aby sa umožnilo indexovanie obsahu adresy URL.
+No Indexing when Canonical present and Canonical != URL==Žiadne indexovanie, keď je prítomný Canonical a Canonical != URL
+Filter on Content of Document (all visible text, including camel-case-tokenized url and title)==Filtrovať obsah dokumentu (všetok viditeľný text vrátane adresy URL a názvu s tokenizovanou veľkosťou ťavy)
+Filter on Document Media Type (aka MIME type)==Filter podľa typu média dokumentu (známy ako typ MIME)
+that must match with the document Media Type (also known as MIME Type) to allow the URL to be indexed.==že musí zodpovedať dokumentu Typ média (známy aj ako typ MIME), aby bolo možné indexovať URL.
+Each parsed document is checked against the given Solr query before being added to the index.==Každý analyzovaný dokument sa pred pridaním do indexu porovná s daným dopytom Solr.
+The embedded local Solr index must be connected to use this kind of filter.==Ak chcete použiť tento druh filtra, musí byť pripojený vložený lokálny index Solr.
+Content Filter==Filter obsahu
+These are limitations on parts of a document. The filter will be applied after a web page was loaded.==Toto sú obmedzenia na časti dokumentu. Filter sa použije po načítaní webovej stránky.
+You can choose to:==Môžete si vybrať:
+Evaluate by default==Predvolene hodnotiť
+Use all words in document by default until a CSS class as listed below appears; then ignore all==Štandardne používať všetky slová v dokumente, kým sa nezobrazí trieda CSS uvedená nižšie; potom všetko ignoruj
+Ignore by default==V predvolenom nastavení ignorovať
+Ignore all words in document by default until a CSS class as listed below appears, then evaluate all==V predvolenom nastavení ignorujte všetky slová v dokumente, kým sa nezobrazí trieda CSS uvedená nižšie, potom vyhodnoťte všetky
+Filter div or nav class names==Filtrujte názvy tried div alebo nav
+comma-separated list of <div> or <nav> element class names which should be filtered out/in according to switch above.==čiarkami oddelený zoznam názvov tried prvkov <div> alebo <nav>, ktoré by mali byť odfiltrované/in podľa vyššie uvedeného prepínača.
+Clean-Up before Crawl Start==Vyčistenie pred spustením indexového prehľadávania
+Clean up search events cache==Vyčistite vyrovnávaciu pamäť udalostí vyhľadávania
+Check this option to be sure to get fresh search results including newly crawled documents. Beware that it will also interrupt any refreshing/resorting of search results currently requested from browser-side.==Začiarknite túto možnosť, aby ste si boli istí, že získate nové výsledky vyhľadávania vrátane novo prehľadaných dokumentov. Upozorňujeme, že to tiež preruší akékoľvek obnovovanie/resorting výsledkov vyhľadávania, ktoré sú momentálne požadované zo strany prehliadača.
+No Deletion==Žiadne vymazanie
+After a crawl was done in the past, document may become stale and eventually they are also deleted on the target host.==Po vykonaní prehľadávania v minulosti môže dokument zastarať a nakoniec sa odstráni aj na cieľovom hostiteľovi.
+To remove old files from the search index it is not sufficient to just consider them for re-load but it may be necessary==Na odstránenie starých súborov z indexu vyhľadávania nestačí len zvážiť ich opätovné načítanie, ale môže to byť potrebné
+to delete them because they simply do not exist any more. Use this in combination with re-crawl while this time should be longer.==vymazať ich, pretože už jednoducho neexistujú. Použite to v kombinácii s opätovným indexovým prehľadávaním, pričom tento čas by mal byť dlhší.
+Do not delete any document before the crawl is started.==Pred spustením indexového prehľadávania neodstraňujte žiadny dokument.
+Delete sub-path==Odstrániť podcestu
+For each host in the start url list, delete all documents (in the given subpath) from that host.==Pre každého hostiteľa v zozname počiatočných adries URL odstráňte všetky dokumenty (v danej podceste) z tohto hostiteľa.
+Delete only old==Odstrániť iba staré
+Treat documents that are loaded==Zaobchádzajte s načítanými dokumentmi
+ago as stale and delete them before the crawl is started.==ago ako neaktuálne a odstráňte ich pred spustením indexového prehľadávania.
+Double-Check Rules==Pravidlá dvojitej kontroly
+No Doubles==Žiadne Doubles
+A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==Prehľadávanie webu vykoná dvojitú kontrolu všetkých odkazov nájdených na internete oproti internej databáze. Ak sa znova nájde rovnaká adresa URL,
+then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,==potom sa adresa URL považuje za dvojitú, keď začiarknete možnosť „žiadne dvojité“. Adresa URL sa môže znova načítať, keď dosiahne určitý vek,
+to use that check the 're-load' option.==ak to chcete použiť, začiarknite možnosť „znova načítať“.
+Never load any page that is already known. Only the start-url may be loaded again.==Nikdy nenačítavajte žiadnu stránku, ktorá je už známa. Znova sa môže načítať iba počiatočná adresa URL.
+Re-load==Znovu načítať
+ago as stale and load them again. If they are younger, they are ignored.==pred ako zatuchnuté a znova ich načítať. Ak sú mladší, ignorujú sa.
+Document Cache==Vyrovnávacia pamäť dokumentov
+Store to Web Cache==Uložiť do webovej vyrovnávacej pamäte
+This option is used by default for proxy prefetch, but is not needed for explicit crawling.==Tato volba je standartne pouzita na proxy predvyber, avsak pre cisty crawling nie je potrebna.
+Policy for usage of Web Cache==Zásady používania webovej vyrovnávacej pamäte
+The caching policy states when to use the cache during crawling:==Politika ukladania do vyrovnávacej pamäte uvádza, kedy sa má použiť vyrovnávacia pamäť počas prehľadávania:
+no cache: never use the cache, all content from fresh internet source;==no cache: nikdy nepoužívať vyrovnávaciu pamäť, všetok obsah z čerstvého internetového zdroja;
+if fresh: use the cache if the cache exists and is fresh using the proxy-fresh rules;==if fresh: použiť vyrovnávaciu pamäť, ak existuje a je čerstvá pomocou pravidiel proxy-fresh;
+if exist: use the cache if the cache exist. Do no check freshness. Otherwise use online source;==if exist: použite vyrovnávaciu pamäť, ak existuje. Nekontrolujte čerstvosť. V opačnom prípade použite online zdroj;
+cache only: never go online, use all content from cache. If no cache exist, treat content as unavailable==cache only: nikdy sa nepripájajte online, používajte všetok obsah z vyrovnávacej pamäte. Ak žiadna vyrovnávacia pamäť neexistuje, považujte obsah za nedostupný
+no cache==no cache
+if fresh==if fresh
+if exist==ak existuje
+cache only==iba cache
+Robot Behaviour==Správanie robotov
+Use Special User Agent and robot identification==Použite špeciálneho používateľského agenta a identifikáciu robota
+Because YaCy can be used as replacement for commercial search appliances==Pretože YaCy možno použiť ako náhradu za komerčné vyhľadávacie zariadenia
+(like the Google Search Appliance aka GSA) the user must be able to crawl all web pages that are granted to such commercial platforms.==(ako Google Search Appliance aka GSA) používateľ musí byť schopný indexovo prehľadávať všetky webové stránky, ktoré sú povolené pre takéto komerčné platformy.
+Not having this option would be a strong handicap for professional usage of this software. Therefore you are able to select==Neexistencia tejto možnosti by bola silným handicapom pre profesionálne použitie tohto softvéru. Preto si môžete vybrať
+alternative user agents here which have different crawl timings and also identify itself with another user agent and obey the corresponding robots rule.==alternatívnych používateľských agentov, ktorí majú rôzne časovanie prehľadávania a tiež sa identifikujú s iným používateľským agentom a riadia sa príslušnými pravidlami robotov.
+Enrich Vocabulary==Obohatiť slovnú zásobu
+Scraping Fields==Škrabacie polia
+You can use class names to enrich the terms of a vocabulary based on the text content that appears on web pages. Please write the names of classes into the matrix.==Názvy tried môžete použiť na obohatenie výrazov slovnej zásoby na základe textového obsahu, ktorý sa objavuje na webových stránkach. Názvy tried napíšte do matice.
+Vocabulary==Slovná zásoba
+Class==triedy
+#-----------------------------
+
+#File: CrawlStartScanner_p.html
+#---------------------------
+"Scan"=="skenovať"
+Network Scanner==Sieťový skener
+YaCy can scan a network segment for available http, ftp and smb server.==YaCy dokáže v segmente siete vyhľadať dostupné servery http, ftp a smb.
+You must first select a IP range and then, after this range is scanned,==Najprv musíte vybrať rozsah IP a po naskenovaní tohto rozsahu
+it is possible to select servers that had been found for a full-site crawl.==je možné vybrať servery, ktoré boli nájdené na úplné prehľadávanie lokality.
+Scan the network==Skenujte sieť
+Scan Range==Rozsah skenovania
+Scan sub-range with given host==Skenujte podrozsah s daným hostiteľom
+Do not use intranet scan results, you are not in an intranet environment!==Nepoužívajte výsledky intranetovej kontroly, nenachádzate sa v intranetovom prostredí!
+All known hosts in the search index (/31 subnet recommended!)==Všetci známi hostitelia v indexe vyhľadávania (odporúča sa podsieť /31!)
+Subnet==Podsieť
+/31 (only the given host(s))==/31 (iba daných hostiteľov)
+/24 (254 addresses)==/24 (254 adries)
+/20 (4064 addresses)==/20 (4064 adries)
+/16 (65024 addresses)==/16 (65024 adries)
+Time-Out==Časový limit
+ms==pani
+Scan Cache==Skenovať vyrovnávaciu pamäť
+accumulate scan results with access type "granted" into scan cache (do not delete old scan result)==akumulovať výsledky kontroly s typom prístupu „udelený“ do vyrovnávacej pamäte kontroly (neodstraňujte starý výsledok kontroly)
+Service Type==Typ služby
+ftp==ftp
+smb==koho
+http==http
+https==https
+Scheduler==Plánovač
+run only a scan==spustiť iba skenovanie
+scan and add all sites with granted access automatically. This disables the scan cache accumulation.==automaticky skenovať a pridávať všetky lokality s udeleným prístupom. Tým sa zakáže akumulácia vyrovnávacej pamäte skenovania.
+ Look every== Pozri každý
+minutes==minút
+hours==hodiny
+days==dní
+again and add new sites automatically to indexer.==znova a automaticky pridávať nové stránky do indexátora.
+Sites that do not appear during a scheduled scan period will be excluded from search results.==Stránky, ktoré sa nezobrazia počas plánovaného obdobia kontroly, budú vylúčené z výsledkov vyhľadávania.
+#-----------------------------
+
+#File: CrawlStartSite.html
+#---------------------------
+"empty"=="prázdny"
+"Show all links"=="Zobraziť všetky odkazy"
+"Start New Crawl"=="Začať nové indexové prehľadávanie"
+Site Crawling==Prehľadávanie stránok
+Site Crawler:==Indexový prehľadávač stránok:
+Download all web pages from a given domain or base URL.==Stiahnite si všetky webové stránky z danej domény alebo základne URL.
+Site Crawl Start==Začiatok indexového prehľadávania stránok
+Site==stránky
+Start URL (must start with http:// https:// ftp:// smb:// file://)==Spustiť URL (musí začínať http:// https:// ftp:// smb:// súbor://)
+Link-List of URL==Zoznam odkazov URL
+Sitemap URL==Mapa stránok URL
+Path==Adresar
+load all files in domain==načítať všetky súbory v doméne
+load only files in a sub-path of given url==načítať iba súbory v podceste danej adresy URL
+Limitation==Obmedzenie
+not more than==nie viac ako
+documents==dokumenty
+Collection==Zbierka
+Start==Štart
+Hints==Tipy
+Crawl Speed Limitation==Obmedzenie rýchlosti prehľadávania
+No more that four pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.==Z rovnakého hostiteľa sa za sekundu nenačítajú viac ako štyri strany (nie viac ako 120 dokumentov za minútu), aby sa obmedzilo zaťaženie cieľového servera.
+Target Balancer==Cieľový Balancer
+A second crawl for a different host increases the throughput to a maximum of 240 documents per minute since the crawler balances the load over all hosts.==Druhé prehľadávanie pre iného hostiteľa zvyšuje priepustnosť na maximálne 240 dokumentov za minútu, pretože prehľadávač vyrovnáva zaťaženie všetkých hostiteľov.
+High Speed Crawling==Vysokorýchlostné prehľadávanie
+A 'shallow crawl' which is not limited to a single host (or site)==„Plytké prehľadávanie“, ktoré nie je obmedzené na jedného hostiteľa (alebo lokalitu)
+can extend the pages per minute (ppm) rate to unlimited documents per minute when the number of target hosts is high.==môže rozšíriť počet strán za minútu (ppm) na neobmedzený počet dokumentov za minútu, keď je počet cieľových hostiteľov vysoký.
+Scheduler Steering==Riadenie plánovača
+#-----------------------------
+
+#File: Crawler_p.html
+#---------------------------
+"API"=="API"
+"Pages Per Minute"=="Počet strán za minútu"
+"Latency Factor"=="Faktor latencie"
+"Max same Host in queue"=="Maximálny počet rovnakých hostiteľov vo fronte"
+"set"=="nastaviť"
+"Set PPM to the default minimum value"=="Nastavte PPM na predvolenú minimálnu hodnotu"
+"Set PPM to the default maximum value"=="Nastavte PPM na predvolenú maximálnu hodnotu"
+"Terminate"=="Ukončiť"
+"show link structure"=="zobraziť štruktúru odkazov"
+"hide graphic"=="skryť grafiku"
+Click on this API button to see an XML with information about the crawler status==Kliknutím na toto tlačidlo API zobrazíte XML s informáciami o stave prehľadávača
+Crawler==Crawler
+(Please enable JavaScript to automatically update this page!)==(Ak chcete automaticky aktualizovať túto stránku, povoľte JavaScript!)
+Queues==Fronty
+Queue==Fronta
+Size==Veľkosť
+Local Crawler==Miestny prehľadávač
+Limit Crawler==Limit Crawler
+Remote Crawler==Vzdialený pásový prehľadávač
+No-Load Crawler==Pásový pás bez zaťaženia
+Terminate All==Ukončiť všetko
+Index Size==Veľkosť indexu
+Database==Databáza
+Entries==Príspevky
+Seg- ments==Seg- ments
+Citations (reverse link index)==Citations (index spätného odkazu)
+RWIs (P2P Chunks)==RWIs (P2P kusy)
+Progress==Pokrok
+Indicator==Indikátor
+Level==úroveň
+Speed / PPM (Pages Per Minute)==Rýchlosť / PPM (stránok za minútu)
+PPM==PPM
+LF==LF
+MH==MH
+Crawler PPM==PPM pre pásové zariadenie
+Postprocessing Progress==Postprocessing Progress
+pending:==čakajúce:
+Traffic (Crawler)==Premávka (crawler)
+MB==MB
+Load==Načítať
+Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db==Chyba pri správe profilu. Zastavte YaCy, odstráňte súbor DATA/PLASMADB/crawlProfiles0.db
+and restart.==a reštartujte.
+Application not yet initialized. Sorry. Please wait some seconds and repeat==Application not yet initialized. prepáč. Please wait some seconds and repeat
+the request.==žiadosť.
+filter.==filter.
+it may take some seconds until the first result appears there.==môže trvať niekoľko sekúnd, kým sa tam objaví prvý výsledok.
+No embedded local Solr index is connected. This is required to use a Solr query filter.==Nie je pripojený žiadny vložený lokálny index Solr. Toto je potrebné na použitie filtra dopytov Solr.
+The Solr filter query syntax is not valid :==Syntax dopytu filtra Solr nie je platná:
+Could not parse the Solr filter query :==Nepodarilo sa analyzovať dotaz filtra Solr:
+You asked for remote indexing, but remote crawl results won't be added to the local index as the remote crawler is currently disabled on this peer.==Požiadali ste o vzdialené indexovanie, ale výsledky vzdialeného prehľadávania sa nepridajú do lokálneho indexu, pretože vzdialený prehľadávač je na tomto partnerovi momentálne zakázaný.
+Name==Meno
+Count==počítať
+Status==Stav
+Running==Beh
+Crawled Pages==Crawled Pages
+#-----------------------------
+
+#File: DictionaryLoader_p.html
+#---------------------------
+"Load"=="Načítať"
+"Deactivate"=="Deaktivovať"
+"Remove"=="Odstrániť"
+"Activate"=="Aktivovať"
+Knowledge Loader==Knowledge Loader
+YaCy can use external libraries to enable or enhance some functions. These libraries are not==YaCy môže použiť externé knižnice na povolenie alebo vylepšenie niektorých funkcií. Tieto knižnice nie sú
+included in the main release of YaCy because they would increase the application file too much.==zahrnuté v hlavnom vydaní YaCy, pretože by príliš zvýšili súbor aplikácie.
+You can download additional files here.==Ďalšie súbory si môžete stiahnuť tu.
+Geolocalization==Geolokalizácia
+Geolocalization will enable YaCy to present locations from OpenStreetMap according to given search words.==Geolokalizácia umožní YaCy prezentovať miesta z OpenStreetMap podľa zadaných hľadaných slov.
+GeoNames==GeoNames
+With this file it is possible to find cities all over the world.==Pomocou tohto súboru je možné nájsť mestá po celom svete.
+Content==Obsah
+cities with a population > 1000 all over the world==mestá s počtom obyvateľov > 1000 na celom svete
+Download from==Stiahnuť z
+Storage location==Miesto uloženia
+Status==Stav
+not loaded==nenačítané
+loaded==naložené
+deactivated==deaktivovaný
+Action==Akcia
+Result==Výsledok
+loaded and activated dictionary file==načítaný a aktivovaný súbor slovníka
+deactivated and removed dictionary file==deaktivovaný a odstránený súbor slovníka
+deactivated dictionary file==deaktivovaný súbor slovníka
+activated dictionary file==aktivovaný súbor slovníka
+cities with a population > 5000 all over the world==mestá s počtom obyvateľov > 5000 na celom svete
+cities with a population > 100000 all over the world (the set is is reduced to cities > 100000)==mestá s populáciou > 100 000 na celom svete (súprava je zredukovaná na mestá > 100 000)
+OpenGeoDB==OpenGeoDB
+With this file it is possible to find locations in Germany using the location (city) name, a zip code, a car sign or a telephone pre-dial number.==Pomocou tohto súboru je možné nájsť miesta v Nemecku pomocou názvu miesta (mesta), PSČ, značky auta alebo telefónneho čísla predvolby.
+Downloaded from==Stiahnuté z
+loaded - can be upgraded using the Load button for the new URL==načítané – dá sa inovovať pomocou tlačidla Načítať pre nový URL
+loaded and upgraded dictionary file==načítaný a aktualizovaný súbor slovníka
+Suggestions==Návrhy
+Suggestion dictionaries will help YaCy to provide better suggestions during the input of search words==Slovníky návrhov pomôžu YaCy poskytovať lepšie návrhy pri zadávaní hľadaných slov
+DeReWo - Korpusbasierte Grund-/Wortformenlisten (German) of 'Institut für Deutsche Sprache'==DeReWo - Korpusbasierte Grund-/Wortformenlisten (nemčina) z 'Institut für Deutsche Sprache'
+This file provides 100000 most common german words for suggestions==Tento súbor obsahuje 100 000 najbežnejších nemeckých slov pre návrhy
+Synonyms==Synonymá
+Synonyms are used to find not only the searched word but also their synonyms. This is done by adding all synonyms of words in documents to the document and searching the synonyms as well.==Synonymá slúžia na nájdenie nielen hľadaného slova, ale aj ich synoným. To sa dosiahne pridaním všetkých synoným slov v dokumentoch do dokumentu a tiež vyhľadaním synoným.
+OpenThesaurus - German Thesaurus from http://www.openthesaurus.de==OpenThesaurus – nemecký tezaurus z http://www.openthesaurus.de
+The data from this source was converted to the YaCy synonym file format and part of the YaCy distribution.==Údaje z tohto zdroja boli skonvertované do formátu súboru so synonymami YaCy a sú súčasťou distribúcie YaCy.
+Deactivated==Deaktivované
+Activated==Aktivované
+Moby Lexicon - English Thesaurus from https://www.gutenberg.org/ebooks/3202==Moby Lexicon – anglický tezaurus od https://www.gutenberg.org/ebooks/3202
+Russian Thesaurus==Ruský tezaurus
+The data was converted to the YaCy synonym file format and part of the YaCy distribution.==Údaje boli skonvertované do formátu súboru so synonymami YaCy a sú súčasťou distribúcie YaCy.
+#-----------------------------
+
+#File: Help.html
+#---------------------------
+YaCy: Tutorial==YaCy: Návod
+Tutorial==Návod
+You are using the administration interface of your own search engine. You can create your own search index with YaCy.==Používate administračné rozhranie vlastného vyhľadávača. Pomocou YaCy si môžete vytvoriť svoj vlastný index vyhľadávania.
+To learn how to do that, watch one of the demonstration videos below:==Ak sa chcete dozvedieť, ako to urobiť, pozrite si jedno z demonštračných videí nižšie:
+twitter this video==twitter toto video
+More Tutorials==Ďalšie návody
+#-----------------------------
+
+#File: IndexBrowser_p.html
+#---------------------------
+"Delete Subpath"=="Odstrániť podcestu"
+"Re-load load-failure docs (404s etc)"=="Znova načítať dokumenty o zlyhaní načítania (404s atď.)"
+"Directory"=="Adresár"
+"Delete Load Errors"=="Odstrániť chyby načítania"
+Index Browser==Indexový prehliadač
+Host/URL==Host/URL
+Browse Host==Prehľadávať hostiteľa
+Host List==Zoznam hostiteľov
+URLs==URL
+Count Colors:==Počet farieb:
+Documents without Errors==Dokumenty bez chýb
+Pending in Crawler==Čaká na spracovanie v Crawleri
+Crawler Excludes==Crawler nezahŕňa
+Load Errors==Chyby načítania
+Host Analysis==Analýza hostiteľa
+Add to blacklist==Pridať na čiernu listinu
+Path==Adresar
+stored==uložené
+linked==prepojené
+pending==čakajúce
+excluded==vylúčené
+failed==nepodarilo
+Metadata==Metadáta
+link, detected from context==odkaz, zistený z kontextu
+load & index==načítať index &
+indexed==indexované
+loading==načítavanie
+Administration Options==Možnosti správy
+Delete all==Odstrániť všetky
+from index==z indexu
+#-----------------------------
+
+#File: IndexControlRWIs_p.html
+#---------------------------
+"Show URL Entries for Word"=="Zobraziť URL položky pre Word"
+"Show URL Entries for Word-Hash"=="Zobraziť URL položky pre Word-Hash"
+"Generate List"=="Generovať zoznam"
+"List Selected URLs"=="Zoznam vybratých adries URL"
+"Delete Word"=="Odstrániť Word"
+"Transfer to other peer"=="Preniesť na iného rovesníka"
+"Delete reference to selected URLs"=="Odstrániť odkaz na vybraté adresy URL"
+"Add selected URLs to blacklist"=="Pridajte vybraté adresy URL na čiernu listinu"
+"Add selected domains to blacklist"=="Pridajte vybrané domény na čiernu listinu"
+Reverse Word Index Administration==Reverzná správa indexu slov
+RWI Retrieval (= search for a single word)==RWI načítanie (= hľadanie jedného slova)
+Retrieve by Word:==Načítať cez Word:
+Retrieve by Word-Hash:==Získať pomocou Word-Hash:
+Limitations==Obmedzenia
+Index Reference Size==Referenčná veľkosť indexu
+No reference size limitation (this may cause strong CPU load when words are searched that appear very often)==Žiadne obmedzenie veľkosti odkazu (to môže spôsobiť silné zaťaženie procesora pri vyhľadávaní slov, ktoré sa objavujú veľmi často)
+Limitation of number of references per word:==Obmedzenie počtu odkazov na slovo:
+(this causes that old references are deleted if that limit is reached)==(to spôsobí, že staré referencie sa vymažú, ak sa dosiahne tento limit)
+Set References Limit==Nastavte limit referencií
+Search result:==Výsledok vyhľadávania:
+total URLs==celkový počet adries URL
+appearance in==vzhľad v
+in link type==v type odkazu
+document type==typ dokumentu
+description==popis
+title==titul
+creator==tvorca
+subject==predmet
+url==url
+emphasized==zdôraznil
+image==obrázok
+audio==audio
+video==video
+app==aplikácie
+index of==index
+Selection==Výber
+Display URL List==Zobraziť zoznam URL
+Number of lines:==Počet riadkov:
+all lines==všetky riadky
+Word Deletion==Vymazanie slov
+delete also the referenced URL (recommended, may produce unresolved references==vymažte aj odkazovaný URL (odporúča sa, môže spôsobiť nevyriešené odkazy
+at other word indexes but they do not harm)==pri iných slovných indexoch, ale neškodia)
+for every resolvable and deleted URL reference, delete the same reference at every other word where==pre každý rozlíšiteľný a odstránený odkaz URL vymažte rovnaký odkaz pri každom druhom slove, kde
+the reference exists (very extensive, but prevents further unresolved references)==odkaz existuje (veľmi rozsiahly, ale zabraňuje ďalším nevyriešeným odkazom)
+Transfer RWI to other Peer==Preneste RWI na iného partnera
+Transfer by Word-Hash:==Prenos pomocou Word-Hash:
+to Peer:==k Peerovi:
+select==vyberte
+or enter a hash or peer name:==alebo zadajte hash alebo meno partnera:
+Sequential List of Word-Hashes:==Sekvenčný zoznam slovných hashov:
+No URL entries related to this word hash==Žiadne URL položky súvisiace s týmto hashom slova
+Resource==Zdroj
+Negative Ranking Factors==Negatívne faktory hodnotenia
+Positive Ranking Factors==Pozitívne faktory hodnotenia
+props==rekvizity
+Reverse Normalized Weighted Ranking Sum==Reverzná normalizovaná vážená poradová suma
+hash==hash
+dom length==dĺžka domčeka
+url comps==url comps
+url length==dĺžka adresy URL
+pos in text==pozícia v texte
+pos of phrase==pozícia frázy
+pos in phrase==pozícia vo fráze
+term frequency==termínová frekvencia
+authority==autorita
+date==dátum
+words in title==slová v názve
+words in text==slová v texte
+local links==miestne odkazy
+remote links==vzdialené odkazy
+hitcount==počet zásahov
+unresolved URL Hash==nevyriešené URL Hash
+Deletion of selected URLs==Odstránenie vybratých adries URL
+Blacklist Extension==Rozšírenie čiernej listiny
+#-----------------------------
+
+#File: IndexControlURLs_p.html
+#---------------------------
+"API"=="API"
+"Show Details for URL"=="Zobraziť podrobnosti pre URL"
+"Show Details for URL-Hash"=="Zobraziť podrobnosti pre URL-Hash"
+"Delete"=="Zmaz"
+"Optimize Solr"=="Optimalizovať Solr"
+"Shut Down and Re-Start Solr"=="Vypnúť a znova spustiť Solr"
+"Generate Statistics"=="Generovať štatistiku"
+"delete all"=="vymazať všetky"
+"Show Content"=="Zobraziť obsah"
+"Delete URL"=="Odstrániť URL"
+"Delete URL and remove all references from words"=="Odstrániť URL a odstrániť všetky odkazy zo slov"
+Click the API icon to see an example call to the search rss API.==Kliknutím na ikonu API zobrazíte príklad volania rss vyhľadávania API.
+URL Database Administration==URL Správa databázy
+URL Retrieval==URL načítanie
+Retrieve by URL:==Získať do URL:
+Retrieve by URL-Hash:==Získať pomocou URL-Hash:
+Cleanup==Upratovanie
+Index Deletion==Vymazanie indexu
+Delete local search index (embedded Solr and old Metadata)==Odstrániť index miestneho vyhľadávania (vložené Solr a staré metadáta)
+Delete remote solr index==Odstrániť vzdialený index solr
+Delete RWI Index (DHT transmission words)==Odstrániť index RWI (slová prenosu DHT)
+Delete Citation Index (linking between URLs)==Odstrániť citačný index (prepojenie medzi adresami URL)
+Delete First-Seen Date Table==Odstrániť tabuľku dátumov prvého videnia
+Delete HTTP & FTP Cache==Odstrániť vyrovnávaciu pamäť HTTP & FTP
+Stop Crawler and delete Crawl Queues==Zastavte prehľadávač a odstráňte zoznamy na prehľadávanie
+Delete robots.txt Cache==Odstrániť vyrovnávaciu pamäť robots.txt
+Optimize Solr==Optimalizovať Solr
+merge to max.==zlúčiť do max.
+segments==segmentov
+Reboot Solr Core==Reštartujte jadro Solr
+This feature is available when using exclusively a local embedded Solr.==Táto funkcia je k dispozícii pri použití výlučne lokálneho vloženého Solr.
+Statistics about top-domains in URL Database==Štatistiky o top doménach v databáze URL
+Show top==Zobraziť top
+domains from all URLs.==domény zo všetkých adries URL.
+Domain==doména
+URLs==URL
+this may produce unresolved references at other word indexes but they do not harm==to môže spôsobiť nevyriešené odkazy na iné indexy slov, ale nepoškodia to
+delete the reference to this url at every other word where the reference exists (very extensive, but prevents unresolved references)==vymažte odkaz na túto adresu URL na každom druhom slove, kde odkaz existuje (veľmi rozsiahle, ale zabraňuje nevyriešeným odkazom)
+#-----------------------------
+
+#File: IndexCreateLoaderQueue_p.html
+#---------------------------
+Loader Queue==Front nakladača
+The loader set is empty==Cakacia listina nahravaca je prazdna.
+Initiator==Iniciator
+Depth==Hlbka
+Status==Stav
+URL==URL adresa
+#-----------------------------
+
+#File: IndexCreateParserErrors_p.html
+#---------------------------
+"show more"=="ukázať viac"
+"clear list"=="prehľadný zoznam"
+Rejected URLs==Odmietnuté adresy URL
+Time==Čas
+URL==URL adresa
+Fail-Reason==Dôvod zlyhania
+#-----------------------------
+
+#File: IndexCreateQueues_p.html
+#---------------------------
+"API"=="API"
+"Delete"=="Zmaz"
+Click on this API button to see an XML with information about the crawler latency and other statistics.==Kliknutím na toto tlačidlo API zobrazíte XML s informáciami o latencii prehľadávača a ďalšími štatistikami.
+This crawler queue is empty==Tento zoznam indexového prehľadávača je prázdny
+Delete Entries:==Zmaz zaznami:
+Initiator==Iniciator
+Profile==Profil
+Depth==Hlbka
+Modified Date==Datum poslednej zmeny
+Anchor Name==Meno kotvy
+URL==URL adresa
+Count==počítať
+Delta/ms==Delta/ms
+Host==Hostiteľ
+#-----------------------------
+
+#File: IndexDeletion_p.html
+#---------------------------
+"Simulate Deletion"=="Simulovať mazanie"
+"no actual deletion, generates only a deletion count"=="žiadne skutočné vymazanie, generuje iba počet vymazaní"
+"Engage Deletion"=="Zapojte odstránenie"
+"simulate a deletion first to calculate the deletion count"=="najprv simulujte vymazanie, aby ste vypočítali počet vymazaní"
+"engaged"=="zasnúbený"
+Index Deletion==Vymazanie indexu
+Deletions are made concurrently which can cause that recently deleted documents are not yet reflected in the document count.==Mazania sa vykonávajú súčasne, čo môže spôsobiť, že nedávno vymazané dokumenty sa ešte neprejavia v počte dokumentov.
+Index deletion will not immediately reduce the storage size on disk because entries are only marked as deleted in a first step.==Odstránenie indexu nezníži okamžite veľkosť úložiska na disku, pretože položky sú označené ako odstránené iba v prvom kroku.
+Delete by URL Matching==Odstrániť podľa URL zhody
+Delete all documents within a sub-path of the given urls. That means all documents must start with one of the url stubs as given here.==Odstráňte všetky dokumenty v rámci podcesty daných adries URL. To znamená, že všetky dokumenty musia začínať jednou z tu uvedených adries URL.
+One URL stub, a list of URL stubs or a regular expression==Jeden URL útržok, zoznam URL útržkov alebo regulárny výraz
+Matching Method==Metóda zhody
+sub-path of given URLs==podcesta daných adries URL
+matching with regular expression==zhoda s regulárnym výrazom
+Delete by Age==Odstrániť podľa veku
+Delete all documents which are older than a given time period.==Odstráňte všetky dokumenty, ktoré sú staršie ako dané časové obdobie.
+Time Period==Časové obdobie
+All documents older than==Všetky dokumenty staršie ako
+years==rokov
+months==mesiacov
+days==dní
+hours==hodiny
+Age Identification==Identifikácia veku
+load date==dátum načítania
+last-modified==naposledy upravený
+Delete Collections==Odstrániť zbierky
+Delete all documents which are inside specific collections.==Odstráňte všetky dokumenty, ktoré sa nachádzajú v konkrétnych zbierkach.
+Not Assigned==Nepriradené
+Delete all documents which are not assigned to any collection==Vymažte všetky dokumenty, ktoré nie sú priradené k žiadnej kolekcii
+Assigned==Pridelené
+Delete all documents which are assigned to the following collection(s)==Vymazať všetky dokumenty, ktoré sú priradené k nasledujúcim kolekciám
+Delete by Solr Query==Odstrániť dopytom Solr
+This is the most generic option: select a set of documents using a solr query.==Toto je najvšeobecnejšia možnosť: vyberte sadu dokumentov pomocou dopytu Solr.
+Core==Core
+#-----------------------------
+
+#File: IndexExportImportSolr_p.html
+#---------------------------
+"Create Dump"=="Vytvoriť výpis"
+"Restore Dump"=="Obnoviť výpis"
+Solr Index Export/Import==Solr Export indexu/Import
+Dump and Restore of Solr Index==Výpis a obnovenie indexu Solr
+This feature is available only when a local embedded Solr is active.==Táto funkcia je k dispozícii iba vtedy, keď je aktívny lokálny vložený Solr.
+(This may take several minutes. Please be patient and wait until the page reloads.)==(Môže to trvať niekoľko minút. Buďte trpezliví a počkajte, kým sa stránka znova nenačíta.)
+Dump File (full path)==Dump File (úplná cesta)
+Could not create the Solr dump : no embedded Solr is available.==Nepodarilo sa vytvoriť výpis Solr: nie je k dispozícii žiadny vložený súbor Solr.
+An error occurred while trying to create the Solr dump.==Pri pokuse o vytvorenie výpisu Solr sa vyskytla chyba.
+Successfully restored Solr index from dump file!==Úspešne obnovený index Solr zo súboru výpisu!
+Could not restore the Solr dump : no embedded Solr is available.==Nepodarilo sa obnoviť výpis Solr: nie je k dispozícii žiadny vložený súbor Solr.
+An error occurred while trying to restore the Solr dump.==Pri pokuse o obnovenie výpisu Solr sa vyskytla chyba.
+#-----------------------------
+
+#File: IndexExport_p.html
+#---------------------------
+"Export"=="Exportovať"
+Index Export==Export indexu
+Loaded URL Export==Načítané URL Export
+Export Path==Exportná cesta
+URL Filter==Filter URL
+query==dotaz
+maximum age (seconds)==maximálny vek (sekundy)
+maximum number of records per chunk==maximálny počet záznamov na blok
+if exceeded: several chunks are stored; -1 = unlimited (makes only one chunk)==ak sa prekročí: uloží sa niekoľko kusov; -1 = neobmedzené (vytvorí iba jeden kus)
+Export Size==Veľkosť exportu
+full size, all fields:==plná veľkosť, všetky polia:
+minified; only fields sku, date, title, description, text_t==minifikované; iba polia sku, date, title, description, text_t
+Export Format==Formát exportu
+Full URL List:==Úplný zoznam URL:
+Plain Text List (URLs only)==Zoznam obyčajného textu (iba adresy URL)
+HTML (URLs with title)==HTML (adresy URL s názvom)
+Only Domain:==Iba doména:
+Plain Text List (domains only)==Zoznam obyčajného textu (iba domény)
+HTML (domains as URLs, no title)==HTML (domény ako adresy URL, bez názvu)
+Only Text:==Iba text:
+Fulltext of Search Index Text==Fulltext Search Index Text
+Import this file by moving it to DATA/PACKS/load==Importujte tento súbor presunutím do DATA/PACKS/load
+#-----------------------------
+
+#File: IndexFederated_p.html
+#---------------------------
+"Set"=="Set"
+Index Sources & Targets==Zdroje indexu & Ciele
+YaCy supports multiple index storage locations.==YaCy podporuje viacero umiestnení uloženia indexov.
+As an internal indexing database a deep-embedded multi-core Solr is used and it is possible to attach also a remote Solr.==Ako interná indexovacia databáza sa používa hlboko vložená viacjadrová Solr a je možné pripojiť aj vzdialenú Solr.
+Solr Search Index==Solr Hľadať index
+Lazy Value Initialization==Inicializácia lenivej hodnoty
+If checked, only non-zero values and non-empty strings are written to Solr fields.==Ak je začiarknuté, do polí Solr sa zapíšu iba nenulové hodnoty a neprázdne reťazce.
+Use deep-embedded local Solr==Použiť hlboko vložené miestne Solr
+This will write the YaCy-embedded Solr index which is stored within the YaCy DATA directory.==Tým sa zapíše YaCy-vložený Solr index, ktorý je uložený v adresári YaCy DATA.
+The Solr native search interface is accessible at==Rozhranie natívneho vyhľadávania Solr je dostupné na adrese
+/solr/select?q=*:*&start=0&rows=3&core=collection1==/solr/select?q=*:*&start=0&rows=3&core=kolekcia1
+for the default search index (core: collection1) and at==pre predvolený vyhľadávací index (core: collection1) a at
+If you switch off this index, a remote Solr must be activated.==Ak tento index vypnete, musí byť aktivovaný vzdialený Solr.
+Use remote Solr server(s)==Použiť vzdialené servery 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.==Toto externé Solr možno použiť namiesto interného Solr. Môže sa použiť aj dodatočne k internému Solr, potom sa zrkadlia oba indexy Solr.
+Allow self-signed certificates==Povoliť certifikáty s vlastným podpisom
+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 https://user:password@localhost:8984/solr.==Začiarknite túto možnosť, keď je vzdialený server Solr chránený heslom a vyžaduje sa cez HTTPS, ale poskytuje iba certifikát s vlastným podpisom (nie overený oficiálnou certifikačnou autoritou). Solr URL môže byť napríklad niečo ako https://user:password@localhost:8984/solr.
+Solr Hosts==Solr hostitelia
+Solr Host Administration Interface==Solr Rozhranie správy hostiteľa
+Index Size==Veľkosť indexu
+Solr URL(s)==Solr URL(y)
+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.==Tu môžete nastaviť jeden alebo viacero cieľov Solr, ku ktorým sa pristupuje ako k zlomku. Pre niekoľko cieľov ich uveďte pomocou ,, (čiarky) ako oddeľovača.
+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).==Sada vzdialených cieľov sa používa ako zlomky úplného indexu. Hostiteľská časť adresy URL sa používa ako kľúč pre funkciu hash, ktorá vyberá jeden z fragmentov (jeden z vašich vzdialených serverov).
+When a search request is made, all servers are accessed synchronously and the result is combined.==Po zadaní požiadavky na vyhľadávanie sa synchrónne pristupuje ku všetkým serverom a výsledok sa skombinuje.
+Sharding Method==Sharding Method
+write-enabled (if unchecked, the remote server(s) will only be used as search peers)==povolený zápis (ak nie je začiarknuté, vzdialené servery sa použijú iba ako partneri vyhľadávania)
+Web Structure Index==Index štruktúry webu
+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).==Index štruktúry webu sa používa na prehliadanie hostiteľa (na objavenie vnútornej štruktúry file/folder), hodnotenie (počítanie počtu referencií) a vyhľadávanie súborov (z načítaných stránok je asi štyridsaťkrát viac odkazov ako v dokumentoch hlavného indexu vyhľadávania).
+use citation reference index (lightweight and fast)==použiť citačný referenčný index (ľahký a rýchly)
+use webgraph search index (rich information in second Solr core)==použiť index vyhľadávania na webe (bohaté informácie v druhom jadre Solr)
+Peer-to-Peer Operation==Operácia typu peer-to-peer
+The 'RWI' (Reverse Word Index) is necessary for index transmission in distributed mode. For portal or intranet mode this must be switched off.=='RWI' (Reverse Word Index) je potrebný na prenos indexu v distribuovanom režime. V režime portálu alebo intranetu musí byť táto funkcia vypnutá.
+support peer-to-peer index transmission (DHT RWI index)==podpora prenosu indexu peer-to-peer (index DHT RWI)
+Block known error URLs in DHT==Blokovať adresy URL známych chýb v DHT
+Reject URLs/RWIs with known errors from peers. Disable to opt out.==Odmietnuť adresy URL/RWIs so známymi chybami od iných používateľov. Deaktiváciou sa odhlásite.
+Retry after (days)==Opakovať po (dni)
+for temporary errors; permanent errors stay blocked.==pre dočasné chyby; trvalé chyby zostanú zablokované.
+Permanent error statuses==Trvalé chybové stavy
+comma-separated (default: 404,410,-1; -1=DNS/network errors)==oddelené čiarkami (predvolená hodnota: 404 410,-1; -1 = chyby DNS/network)
+#-----------------------------
+
+#File: IndexImportJsonList_p.html
+#---------------------------
+"Import JsonList File"=="Importujte súbor JsonList"
+"Stop"=="Stop"
+JSON List Index Dump File Import==JSON Import výpisu zoznamu indexu
+No import thread is running, you can start a new thread here==Nie je spustené žiadne vlákno importu, tu môžete začať nové vlákno
+JsonList File Selection: select an jsonlist file (which may be gz compressed)==Výber súboru JsonList: vyberte súbor jsonlist (ktorý môže byť komprimovaný gz)
+File:==Súbor:
+or==alebo
+Url:==URL:
+Import Process==Proces importu
+Thread:==vlákno:
+JsonList File:==Súbor JsonList:
+Processed:==Spracované:
+Speed:==rýchlosť:
+Running Time:==Doba chodu:
+Remaining Time:==Zostávajúci čas:
+#-----------------------------
+
+#File: IndexImportMediawiki_p.html
+#---------------------------
+"Uniform Resource Locator"=="Uniform Resource Locator"
+"Dump file path on this YaCy server file system, or any remote URL"=="Uložte cestu k súboru na tento serverový súborový systém YaCy alebo na ľubovoľný vzdialený URL"
+"Import MediaWiki Dump"=="Importovať výpis MediaWiki"
+MediaWiki Dump Import==Import výpisov MediaWiki
+No import thread is running, you can start a new thread here==Nie je spustené žiadne vlákno importu, tu môžete začať nové vlákno
+Error : dump URL is malformed.==Chyba: výpis URL má nesprávny formát.
+MediaWiki Dump File Selection==Výber súboru výpisu MediaWiki
+Dumps can be stored in the local file system or on a remote server in XML format and may be compressed in gz or bz2.==Výpisy môžu byť uložené v lokálnom systéme súborov alebo na vzdialenom serveri vo formáte XML a môžu byť komprimované v gz alebo bz2.
+Dump file path or URL==Vypísať cestu k súboru alebo URL
+Import only when modified since last import==Importovať iba vtedy, keď boli upravené od posledného importu
+When checked, the dump file is imported only if its last modified date is unknown or is after the last import execution date on this same file==Keď je začiarknuté, súbor výpisu sa importuje iba vtedy, ak dátum jeho poslednej úpravy nie je známy alebo je po dátume posledného vykonania importu v tom istom súbore
+When the import is started, the following happens:==Po spustení importu sa stane toto:
+The dump is extracted on the fly and wiki entries are translated into Dublin Core data format. The output looks like this:==Výpis sa extrahuje za behu a záznamy wiki sa prekladajú do dátového formátu Dublin Core. Výstup vyzerá takto:
+Each 10000 wiki records are combined in one output file which is written to /DATA/PACKS/load into a temporary file.==Každých 10 000 wiki záznamov sa zlúči do jedného výstupného súboru, ktorý sa zapíše do /DATA/PACKS/load do dočasného súboru.
+When each of the generated output file is finished, it is renamed to a .xml file==Po dokončení každého vygenerovaného výstupného súboru sa premenuje na súbor .xml
+Each time a xml pack file appears in /DATA/PACKS/load, the YaCy indexer fetches the file and indexes the record entries.==Zakaždým, keď sa v /DATA/PACKS/load, objaví súbor xml pack, indexátor YaCy načíta súbor a indexuje položky záznamov.
+When a pack file is finished with indexing, it is moved to /DATA/PACKS/loaded==Po dokončení indexovania súboru balíka sa presunie do /DATA/PACKS/loaded
+You can recycle processed pack files by moving them from /DATA/PACKS/loaded to /DATA/PACKS/load==Spracované súbory balíkov môžete recyklovať tak, že ich presuniete z /DATA/PACKS/loaded do /DATA/PACKS/load
+Import Process==Proces importu
+Thread:==vlákno:
+started==začala
+running==beh
+Dump:==skládka:
+Processed:==Spracované:
+Speed:==rýchlosť:
+Running Time:==Doba chodu:
+Remaining Time:==Zostávajúci čas:
+#-----------------------------
+
+#File: IndexImportOAIPMHList_p.html
+#---------------------------
+"Load Selected Sources"=="Načítať vybrané zdroje"
+Source==Zdroj
+Import List==Importovať zoznam
+Thread==Niť
+Processed Chunks==Spracované kusy
+Imported Records==Importované Records
+Complete at # Records==Dokončite o # záznamov
+Speed (records/second)==Rýchlosť (záznamy/second)
+#-----------------------------
+
+#File: IndexImportOAIPMH_p.html
+#---------------------------
+"Import OAI-PMH source"=="Importovať zdroj OAI-PMH"
+"import this source"=="importovať tento zdroj"
+"import from a list"=="importovať zo zoznamu"
+OAI-PMH Import==Dovoz OAI-PMH
+Single request import==Import jednej žiadosti
+This will submit only a single request as given here to a OAI-PMH server and imports records into the index==Toto odošle iba jednu požiadavku, ako je tu uvedené, na server OAI-PMH a importuje záznamy do indexu
+Source:==Zdroj:
+Processed:==Spracované:
+ResumptionToken:==ResumptionToken:
+Import all Records from a server==Importujte všetky záznamy zo servera
+Import all records that follow according to resumption elements into index==Importujte všetky záznamy, ktoré nasledujú podľa prvkov obnovenia, do indexu
+or==alebo
+Import started!==Import bol spustený!
+#-----------------------------
+
+#File: IndexImportWarc_p.html
+#---------------------------
+"Import Warc File"=="Importovať súbor Warc"
+"Stop"=="Stop"
+Web Archive File Import==Import súboru webového archívu
+No import thread is running, you can start a new thread here==Nie je spustené žiadne vlákno importu, tu môžete začať nové vlákno
+Warc File Selection: select an warc file (which may be gz compressed)==Výber súboru Warc: vyberte súbor warc (ktorý môže byť komprimovaný gz)
+You can download warc archives for example here==Warc archívy si môžete stiahnuť napríklad tu
+File:==Súbor:
+or==alebo
+Url:==URL:
+Collection:==Zbierka:
+Import Process==Proces importu
+Thread:==vlákno:
+Warc File:==Súbor Warc:
+Processed:==Spracované:
+Speed:==rýchlosť:
+Running Time:==Doba chodu:
+Remaining Time:==Zostávajúci čas:
+#-----------------------------
+
+#File: IndexImportZim_p.html
+#---------------------------
+"Import ZIM File"=="Importujte súbor ZIM"
+"Stop"=="Stop"
+ZIM File Import==Import súboru ZIM
+No import thread is running, you can start a new thread here==Nie je spustené žiadne vlákno importu, tu môžete začať nové vlákno
+Zim File Selection: select a '.zim' file==Výber súboru Zim: vyberte súbor „.zim“.
+You can download ZIM files for example here==Súbory ZIM si môžete stiahnuť napríklad tu
+File:==Súbor:
+Collection:==Zbierka:
+Import Process==Proces importu
+Thread:==vlákno:
+ZIM File:==Súbor ZIM:
+Processed:==Spracované:
+Speed:==rýchlosť:
+Running Time:==Doba chodu:
+Remaining Time:==Zostávajúci čas:
+#-----------------------------
+
+#File: IndexPackDownloader_p.html
+#---------------------------
+YaCy Pack Downloader==YaCy Pack Downloader
+Available Packs==Dostupné balíčky
+Source==Zdroj
+Repo ID==Repo ID
+File==Súbor
+Process==Proces
+#-----------------------------
+
+#File: IndexPackGenerator_p.html
+#---------------------------
+"info"=="info"
+"Generate Data Pack"=="Generovať dátový balík"
+YaCy Pack Generator==YaCy Generátor balíkov
+Index Pack Generator==Generátor indexového balíka
+Set a Category (this goes into the filename)==Nastavte kategóriu (prejde do názvu súboru)
+mix - a mix of document types, for content from wide web crawls==mix – zmes typov dokumentov pre obsah z prehľadávania webu
+core - technical documentation, operating systems, computer hardware, open source and free software, manuals, protocol standards==jadro - technická dokumentácia, operačné systémy, počítačový hardvér, open source a slobodný softvér, manuály, protokolové štandardy
+scroll - non-technical documents: knowledge, encyclopedia, linguistic corpora, dictionaries, translation memories, texts, non-fiction books, historical books==zvitok - netechnické dokumenty: vedomosti, encyklopédie, lingvistické korpusy, slovníky, prekladové pamäte, texty, naučné knihy, historické knihy
+regula - non-technical standards: industry standards, laws, rules, compliance==regula - netechnické normy: priemyselné normy, zákony, pravidlá, dodržiavanie
+gem - research, papers, university publications, science==klenot - výskum, referáty, univerzitné publikácie, veda
+fiction - fictional documents: movies, stories, series, books (fiction, science-fiction)==fikcia - fiktívne dokumenty: filmy, príbehy, seriály, knihy (beletria, sci-fi)
+map - geological data, geolocation-data, earth/world information==mapa – geologické údaje, geolokačné údaje, zemské/world informácie
+echo – micro-content (tweets, toots, short headlines, SMS corpora), podcasts, radio archives, audio lectures, spoken-word datasets, logs, incidents, telemetry==echo – mikroobsah (tweety, tooty, krátke titulky, SMS korpusy), podcasty, rozhlasové archívy, zvukové prednášky, dátové súbory hovoreného slova, denníky, incidenty, telemetria
+spirit – related to non-textual data (possibly only metadata): art, music, game assets, creative-commons media (non-text culture loot)==duch – súvisí s netextovými údajmi (možno len metaúdajmi): umenie, hudba, herné aktíva, kreatívne bežné médiá (netextová kultúrna korisť)
+vault - sensitive data: secrets, leaks, non-public documents, security advisories==trezor - citlivé údaje: tajomstvá, úniky, neverejné dokumenty, bezpečnostné upozornenia
+Index Collection==Zbierka indexov
+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.==názov kolekcie sa používa ako súčasť názvu súboru na popis obsahu. Výnimka: ak je kolekcia „užívateľská“, potom môžete obsah pomenovať slimákom.
+Slug - describe the content (only if collection is "user")==Slimák – popíšte obsah (iba ak je kolekcia „používateľ“)
+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"==Toto sa stane súčasťou názvu súboru, medzery budú nahradené znakom "-"; nesmie byť prázdny; by mal končiť jazykovým popisom, napr. "-sk"
+URL Filter==Filter URL
+Search Query -==vyhľadávací dopyt -
+Export Format==Formát exportu
+This JSON is an elasticsearch index dump format and can be bulk-imported to elasticsearch. Here is an example for opensearch, using docker:==Tento JSON je formát výpisu indexu elasticsearch a možno ho hromadne importovať do elasticsearch. Tu je príklad pre opensearch pomocou docker:
+Start docker container of opensearch:==Spustite dokovací kontajner opensearch:
+Unblock index creation:==Odblokovať vytváranie indexu:
+Create the search index:==Vytvorte index vyhľadávania:
+Bulk-upload the index file:==Hromadné odovzdanie indexového súboru:
+Make a search, get 10 results, search in fields text_t, title, description with boosts:==Hľadajte, získajte 10 výsledkov, hľadajte v poliach text_t, title, description s vylepšeniami:
+JSON (Rich and full-text Elasticsearch data, one document per line in one flat JSON file)==JSON (bohaté a fulltextové údaje Elasticsearch, jeden dokument na riadok v jednom plochom súbore JSON)
+XML (Rich and full-text Solr data, one document per line in one large xml file,==XML (bohaté a fulltextové Solr údaje, jeden dokument na riadok v jednom veľkom súbore xml,
+can be processed with shell tools, can be imported with DATA/PACKS/load/)==možno spracovať pomocou nástrojov prostredia, možno importovať pomocou DATA/PACKS/load/)
+XML (RSS)==XML (RSS)
+Import this file by moving it to DATA/PACKS/load==Importujte tento súbor presunutím do DATA/PACKS/load
+Pack List==Zoznam balíkov
+Pack==Zbaliť
+Process==Proces
+Size (KB)==Veľkosť (kB)
+#-----------------------------
+
+#File: IndexPackManager_p.html
+#---------------------------
+YaCy Pack Manager==YaCy Správca balíkov
+Pack Folders==Zbaliť priečinky
+Packs: Hold List==Packs: Hold List
+Size (KB)==Veľkosť (kB)
+Process==Proces
+Packs: Load List==Packs: Load List
+Packs: Loaded List==Packs: Loaded List
+#-----------------------------
+
+#File: IndexReIndexMonitor_p.html
+#---------------------------
+"refresh page"=="obnoviť stránku"
+"start reindex job now"=="začnite teraz reindexovať"
+"stop reindexing"=="zastaviť preindexovanie"
+"Simulate"=="Simulovať"
+"Check only how many documents would be selected for recrawl"=="Skontrolujte len, koľko dokumentov by sa vybralo na opätovné indexové prehľadávanie"
+"Set defaults"=="Nastaviť predvolené hodnoty"
+"Reset to default values"=="Obnoviť predvolené hodnoty"
+"start recrawl job now"=="začnite teraz znova indexovo prehľadávať"
+"update"=="aktualizovať"
+"stop recrawl job"=="zastaviť úlohu opätovného prehľadávania"
+"Automatically refreshing"=="Automaticky sa obnovuje"
+"An error occurred while trying to refresh automatically"=="Pri pokuse o automatické obnovenie sa vyskytla chyba"
+"URLs added to the crawler queue for recrawl"=="Adresy URL pridané do zoznamu indexového prehľadávača na opätovné indexové prehľadávanie"
+"URLs rejected for some reason by the crawl stacker or the crawler queue. Please check the logs for more details."=="URLs rejected for some reason by the crawl stacker or the crawler queue. Ďalšie podrobnosti nájdete v protokoloch."
+Field Re-Indexing==Opätovné indexovanie poľa
+In case that an index schema of the embedded/local index has changed, all documents with missing field entries can be indexed again with a reindex job.==V prípade, že sa zmenila schéma indexu embedded/local indexu, všetky dokumenty s chýbajúcimi položkami polí možno znova indexovať pomocou úlohy reindexácie.
+Documents in current queue==Dokumenty v aktuálnom rade
+Documents processed==Dokumenty spracované
+current select query==aktuálny výberový dotaz
+Remaining field list==Zoznam zostávajúcich polí
+reindex documents containing these fields:==preindexovať dokumenty obsahujúce tieto polia:
+Field==Pole
+count==počítať
+Re-Crawl Index Documents==Opätovné prehľadávanie indexových dokumentov
+Searches the local index and selects documents to add to the crawler (recrawl the document).==Prehľadá lokálny index a vyberie dokumenty na pridanie do prehľadávača (opätovné prehľadanie dokumentu).
+This runs transparent as background job. Documents are added to the crawler only if no other crawls are active==Toto beží transparentne ako úloha na pozadí. Dokumenty sa pridajú do prehľadávača iba vtedy, ak nie sú aktívne žiadne iné prehľadávania
+and are added in small chunks.==a pridávajú sa po malých kúskoch.
+Re-crawl works only with an embedded local Solr index!==Opätovné indexové prehľadávanie funguje iba s vloženým lokálnym indexom Solr!
+Solr query==Solr dotaz
+document(s)==dokument(y)
+selected for recrawl.==vybrané na opätovné indexové prehľadávanie.
+An error occurred when trying to run the selection query.==Pri pokuse o spustenie výberového dotazu sa vyskytla chyba.
+The Solr index is not connected. Please restart your peer.==Index Solr nie je pripojený. Reštartujte svojho partnera.
+Include failed URLs==Zahrnúť neúspešné adresy URL
+Delete URLs==Odstráňte adresy URL
+to re-crawl documents selected with the given query.==na opätovné indexové prehľadávanie dokumentov vybratých s daným dopytom.
+Re-Crawl Query Details==Opätovné indexové prehľadávanie podrobností dopytu
+Documents to process==Dokumenty na spracovanie
+Current Query==Aktuálny dopyt
+Edit Solr Query==Upraviť dopyt Solr
+Include failed urls==Zahrnúť neúspešné adresy URL
+Delete urls==Odstráňte adresy URL
+Last==Posledný
+Re-Crawl job report==Prehľad úlohy opätovného prehľadávania
+The job terminated early due to an error when requesting the Solr index.==Úloha bola predčasne ukončená z dôvodu chyby pri vyžiadaní indexu Solr.
+Status==Stav
+Running==Beh
+Shutdown in progress==Prebieha vypínanie
+Terminated==Ukončené
+Query==Dopyt
+Start time==Čas začiatku
+End time==Čas ukončenia
+Recrawled URLs==Opätovne indexovo prehľadávané adresy URL
+Rejected URLs==Odmietnuté adresy URL
+Malformed URLs==Chybné adresy URL
+Refresh==Obnoviť
+#-----------------------------
+
+#File: IndexSchema_p.html
+#---------------------------
+"API"=="API"
+"active"=="aktívny"
+"disabled"=="zdravotne postihnutých"
+"Required for proper operation"=="Vyžaduje sa pre správnu prevádzku"
+"Set"=="Set"
+"reset selection to default"=="resetovať výber na predvolené"
+"reindex Solr"=="preindexovať Solr"
+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.==Schému Solr je možné získať aj ako XML. Kliknutím na ikonu API zobrazíte XML. Na konfiguráciu Solr stačí skopírovať tento XML do solr/conf/schema.xml
+Solr Schema Editor==Solr Editor schém
+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==Ak používate vlastnú schému Solr, môžete zadať iný názov poľa do stĺpca „Vlastný názov poľa Solr“ predvoleného názvu atribútu YaCy
+Select a core:==Vyberte jadro:
+Active==Aktívne
+Attribute==Atribút
+Custom Solr Field Name==Názov vlastného poľa Solr
+Comment==Komentár
+show active==zobraziť aktívne
+show all available==zobraziť všetky dostupné
+show disabled==zobraziť zakázané
+Reindex documents==Preindexovať dokumenty
+If you unselected some fields, old documents in the index still contain the unselected fields.==Ak ste zrušili výber niektorých polí, staré dokumenty v indexe budú stále obsahovať nevybrané polia.
+To physically remove them from the index you need to reindex the documents.==Ak ich chcete fyzicky odstrániť z indexu, musíte dokumenty preindexovať.
+Here you can reindex all documents with inactive fields.==Tu môžete preindexovať všetky dokumenty s neaktívnymi poľami.
+#-----------------------------
+
+#File: IndexShare_p.html
+#---------------------------
+"Set"=="Set"
+Index Sharing==Zdieľanie indexu
+Index:==Index:
+distribute ==distribuovať
+receive==prijímať
+receive grant default:==predvolene získať grant:
+for each remote peer==pre každého vzdialeného partnera
+links/minute ==odkazy/minute
+words/minute==slová/minute
+#-----------------------------
+
+#File: LLMSelection_p.html
+#---------------------------
+"info"=="info"
+LLM Selection==Výber LLM
+Here you can pick models from an LLM model service to select them as production model.==Tu si môžete vybrať modely zo služby LLM a použiť ich ako pracovný model.
+In the "Production Models Matrix" you can then assign each selected model a function inside YaCy==V „matici výrobných modelov“ potom môžete každému vybranému modelu priradiť funkciu v YaCy
+Service Selection==Výber služby
+service==služby
+Ollama==Ollama
+LMStudio==LMStudio
+OpenAI==OpenAI
+Open Router==Otvorte smerovač
+This makes a preset to the Hoststub value==Tým sa prednastaví hodnota Hoststub
+hoststub==hoststub
+you can probably leave this to the default value==pravdepodobne to môžete nechať na predvolenú hodnotu
+api_key==api_key
+(not required for Ollama or LMStudio)==(nevyžaduje sa pre Ollama alebo LMStudio)
+Services==Služby
+num_ctx is the context window (in tokens) of the inference service — a per-service==num_ctx je kontextové okno (v tokenoch) inferenčnej služby — pre každú službu
+value, shared by all models on that endpoint. It is the total budget for prompt plus==hodnotu zdieľanú všetkými modelmi na tomto koncovom bode. Je to celkový rozpočet pre prompt plus
+generated output; YaCy uses it to size prompts so they leave room to generate. The row for the==generovaný výstup; YaCy ho používa na úpravu veľkosti výziev, aby ponechali priestor na generovanie. Riadok pre
+service selected above appears here automatically with its stored (or default) window.==služba vybratá vyššie sa tu automaticky zobrazí s jej uloženým (alebo predvoleným) oknom.
+This value is advisory: set it to match the window your backend actually serves==Táto hodnota je advisory: nastavte ju tak, aby zodpovedala oknu, ktoré váš backend skutočne zobrazuje
+Context Length setting). YaCy does not enforce it on the backend.==Nastavenie dĺžky kontextu). YaCy ho nevynucuje na serveri.
+num_ctx==num_ctx
+Model Downloads==Model na stiahnutie
+Production Models Matrix==Matica výrobných modelov
+model==model
+max_tokens==max_tokens
+search-answers==hľadanie-odpovedí
+This model creates answers for search requests==Tento model vytvára odpovede na požiadavky vyhľadávania
+chat==chatovať
+This model is used in the chat interface and as default for the RAG proxy==Tento model sa používa v rozhraní rozhovoru a ako predvolený pre server proxy RAG
+translation==preklad
+This model can be used to make translations of the web UI==Tento model možno použiť na preklady webového používateľského rozhrania
+classification==klasifikácia
+This model is used to classify prompts to find out what they demand==Tento model sa používa na klasifikáciu výziev s cieľom zistiť, čo požadujú
+search-query==search-query
+This model produces search queries to YaCy search from prompts in RAG or chat==Tento model vytvára vyhľadávacie dopyty na YaCy vyhľadávanie z výziev v RAG alebo chatu
+qa-pairs==qa-páry
+This model can be used to produce query-answer pairs which enhance search from chat prompts==Tento model možno použiť na vytváranie párov dotaz-odpoveď, ktoré zlepšujú vyhľadávanie z výziev rozhovoru
+tldr-shortener==tldr-skracovač
+This model is used to make summaries from web content==Tento model sa používa na vytváranie súhrnov z webového obsahu
+log-report==log-report
+This model evaluates YaCy runtime logs and creates self-enhancement reports==Tento model vyhodnocuje YaCy denníky spustenia a vytvára prehľady vlastného vylepšenia
+thinking==myslenie
+we detect thinking only to be able to suppress thinking. thinking is not used in YaCy==myslenie zisťujeme len preto, aby sme mohli myslenie potlačiť. myslenie sa nepoužíva v YaCy
+tooling==náradia
+tooling is required for agentic abilities.==pre agentské schopnosti sú potrebné nástroje.
+vision==vízie
+this enables image recognition in the chat==to umožňuje rozpoznávanie obrázkov v chate
+format==formát
+this is required for classification==je to potrebné na klasifikáciu
+Actions==Akcie
+#-----------------------------
+
+#File: Load_MediawikiWiki.html
+#---------------------------
+"Get content of Wiki: crawl wiki pages"=="Získajte obsah Wiki: prehľadávajte stránky wiki"
+Integration in MediaWiki==Integrácia v MediaWiki
+It is possible to insert wiki pages into the YaCy index using a web crawl on that pages.==Stránky wiki je možné vložiť do indexu YaCy pomocou prehľadávania webu na týchto stránkach.
+This guide helps you to crawl your wiki and to insert a search window in your wiki pages.==Táto príručka vám pomôže prehľadávať vašu wiki a vložiť vyhľadávacie okno na vaše stránky wiki.
+Retrieval of Wiki Pages==Načítanie stránok Wiki
+The following form is a simplified crawl start that uses the proper values for a wiki crawl.==Nasledujúci formulár predstavuje zjednodušený začiatok prehľadávania, ktorý používa správne hodnoty pre prehľadávanie wiki.
+Just insert the front page URL of your wiki. After you started the crawl you may want to get back==Stačí vložiť prednú stránku URL vašej wiki. Po začatí prehľadávania sa možno budete chcieť vrátiť späť
+to this page to read the integration hints below.==na túto stránku a prečítajte si nižšie uvedené integračné rady.
+URL of the wiki main page This is a crawl start point==URL hlavnej stránky wiki Toto je počiatočný bod indexového prehľadávania
+Inserting a Search Window to MediaWiki==Vloženie okna vyhľadávania do MediaWiki
+To integrate a search window into a MediaWiki, you must insert some code into the wiki template.==Ak chcete do MediaWiki integrovať vyhľadávacie okno, musíte do šablóny wiki vložiť nejaký kód.
+There are several templates that can be used for MediaWiki, but in this guide we consider that==Existuje niekoľko šablón, ktoré možno použiť pre MediaWiki, ale v tejto príručke to zvažujeme
+you are using the default template, 'MonoBook.php':==používate predvolenú šablónu 'MonoBook.php':
+open skins/MonoBook.php==otvorené vzhľady/MonoBook.php
+find the line where the default search window is displayed, there are the following statements:==nájdite riadok, kde sa zobrazuje predvolené okno vyhľadávania, existujú nasledujúce vyhlásenia:
+Remove that code or set it in comments using '<!--' and '-->'==Odstráňte tento kód alebo ho nastavte v komentároch pomocou „<!--“ a „-->“
+Insert the following code:==Vložte nasledujúci kód:
+Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Skontrolujte všetky výskyty statických adries IP uvedených v útržku kódu a nahraďte ich vlastným IP alebo názvom hostiteľa
+You may want to change the default text elements in the code snippet==Možno budete chcieť zmeniť predvolené textové prvky v útržku kódu
+To see all options for the search widget, look at the more generic description of search widgets at==Ak chcete zobraziť všetky možnosti miniaplikácie vyhľadávania, pozrite si všeobecnejší popis miniaplikácií vyhľadávania na stránke
+#-----------------------------
+
+#File: Load_PHPBB3.html
+#---------------------------
+"Get content of phpBB3: crawl forum pages"=="Získajte obsah phpBB3: prehľadávajte stránky fóra"
+Integration in phpBB3==Integrácia do phpBB3
+It is possible to insert forum pages into the YaCy index using a database import of forum postings.==Stránky fóra je možné vložiť do indexu YaCy pomocou importu z databázy príspevkov z fóra.
+This guide helps you to insert a search window in your phpBB3 pages.==Táto príručka vám pomôže vložiť vyhľadávacie okno na vaše stránky phpBB3.
+Retrieval of phpBB3 Forum Pages using a database export==Načítanie stránok fóra phpBB3 pomocou exportu databázy
+Forum posting contain rich information about the topic, the time, the subject and the author.==Príspevky na fóre obsahujú bohaté informácie o téme, čase, predmete a autorovi.
+This information is in an bad annotated form in web pages delivered by the forum software.==Tieto informácie sú na webových stránkach poskytovaných softvérom fóra v nesprávnej forme s poznámkami.
+It is much better to retrieve the forum postings directly from the database. This will cause that YaCy is able to offer nice navigation features after searches.==Oveľa lepšie je načítať príspevky do fóra priamo z databázy. To spôsobí, že YaCy bude môcť po vyhľadávaniach ponúkať pekné navigačné funkcie.
+Retrieval of phpBB3 Forum Pages using a web crawl==Načítanie stránok fóra phpBB3 pomocou prehľadávania webu
+The following form is a simplified crawl start that uses the proper values for a phpbb3 forum crawl.==Nasledujúci formulár je zjednodušený začiatok prehľadávania, ktorý používa správne hodnoty pre prehľadávanie fóra phpbb3.
+Just insert the front page URL of your forum. After you started the crawl you may want to get back==Stačí vložiť titulnú stránku URL vášho fóra. Po začatí prehľadávania sa možno budete chcieť vrátiť späť
+to this page to read the integration hints below.==na túto stránku a prečítajte si nižšie uvedené integračné rady.
+URL of the phpBB3 forum main page This is a crawl start point==URL hlavnej stránky fóra phpBB3 Toto je počiatočný bod prehľadávania
+Inserting a Search Window to phpBB3==Vloženie okna vyhľadávania do phpBB3
+To integrate a search window into phpBB3, you must insert some code into a forum template.==Ak chcete do phpBB3 integrovať vyhľadávacie okno, musíte do šablóny fóra vložiť nejaký kód.
+There are several templates that can be used for phpBB3, but in this guide we consider that==Existuje niekoľko šablón, ktoré možno použiť pre phpBB3, ale v tejto príručke to zvažujeme
+you are using the default template, 'prosilver':==používate predvolenú šablónu „prosilver“:
+open styles/prosilver/template/overall_header.html==otvoriť styles/prosilver/template/overall_header.html
+Insert the following code right behind the div tag:==Hneď za značku div vložte nasledujúci kód:
+Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Skontrolujte všetky výskyty statických adries IP uvedených v útržku kódu a nahraďte ich vlastným IP alebo názvom hostiteľa
+You may want to change the default text elements in the code snippet==Možno budete chcieť zmeniť predvolené textové prvky v útržku kódu
+To see all options for the search widget, look at the more generic description of search widgets at==Ak chcete zobraziť všetky možnosti miniaplikácie vyhľadávania, pozrite si všeobecnejší popis miniaplikácií vyhľadávania na stránke
+#-----------------------------
+
+#File: Load_RSS_p.html
+#---------------------------
+"Show RSS Items"=="Zobraziť RSS položiek"
+"Add All Items to Index (full content of url)"=="Pridať všetky položky do indexu (celý obsah adresy URL)"
+"Remove Selected Feeds from Scheduler"=="Odstrániť vybraté informačné kanály z plánovača"
+"Remove All Feeds from Scheduler"=="Odstrániť všetky informačné kanály z plánovača"
+"Remove Selected Feeds from Feed List"=="Odstrániť vybrané kanály zo zoznamu kanálov"
+"Remove All Feeds from Feed List"=="Odstrániť všetky kanály zo zoznamu kanálov"
+"Add Selected Feeds to Scheduler"=="Pridať vybrané informačné kanály do plánovača"
+"Add Selected Items to Index (full content of url)"=="Pridať vybraté položky do indexu (celý obsah adresy URL)"
+Loading of RSS Feeds==Načítava sa RSS informačných kanálov
+RSS feeds can be loaded into the YaCy search index.==Informačné kanály RSS možno načítať do indexu vyhľadávania YaCy.
+This does not load the rss file as such into the index but all the messages inside the RSS feeds as individual documents.==Tým sa nenačíta súbor rss ako taký do indexu, ale všetky správy v informačných kanáloch RSS ako samostatné dokumenty.
+URL of the RSS feed==URL z informačného kanála RSS
+Preview==Ukážka
+Indexing==Indexovanie
+Available after successful loading of rss feed in preview==Dostupné po úspešnom načítaní rss feedu v náhľade
+once==raz
+load this feed once now==načítajte tento informačný kanál ešte raz
+scheduled==naplánované
+repeat the feed loading every==vkladanie krmiva opakujte vždy
+minutes==minút
+hours==hodiny
+days==dní
+automatically.==automaticky.
+collection==zber
+List of Scheduled RSS Feed Load Targets==Zoznam plánovaných cieľov zaťaženia informačného kanála RSS
+Title==Názov
+URL/Referrer==URL/Referrer
+Recording==Nahrávanie
+Last Load==Posledná záťaž
+Next Load==Ďalšie zaťaženie
+Last Count==Posledný počet
+All Count==All Count
+Avg. Update/Day==Priem. Aktualizovať/Day
+Available RSS Feed List==K dispozícii RSS zoznam informačných kanálov
+Author==Autor
+Description==Popis
+Language==Jazyk
+Date==Datum
+Time-to-live==Čas do života
+Docs==Docs
+State==štátu
+URL==URL adresa
+new==nové
+enqueued==v rade
+indexed==indexované
+Attached media==Priložené médiá
+#-----------------------------
+
+#File: LogReports_p.html
+#---------------------------
+"delete this report"=="vymazať tento prehľad"
+Log Reports==Log správy
+run report now==spustiť prehľad
+Generating report from the current-hour log lines — the LLM call can take a while …==Generovanie správy z riadkov denníka aktuálnej hodiny — hovor LLM môže chvíľu trvať …
+seconds elapsed==ubehli sekundy
+No log lines were found for the current hour.==Pre aktuálnu hodinu sa nenašli žiadne riadky denníka.
+No production model is configured for the log-report role. Assign one in the==Pre rolu log-report nie je nakonfigurovaný žiadny pracovný model. Priraďte jednu v
+No production model is configured for the log-report role. Log report generation stays inactive until a model is assigned in the==Pre rolu log-report nie je nakonfigurovaný žiadny pracovný model. Generovanie protokolových správ zostane neaktívne, kým nie je priradený model
+Feeds:==Informačné kanály:
+JSON==JSON
+RSS==RSS
+The report directory does not exist yet. Reports will appear here after the scheduler has generated the first completed hourly report.==Adresár prehľadov zatiaľ neexistuje. Prehľady sa tu objavia po tom, čo plánovač vygeneruje prvý dokončený hodinový prehľad.
+×==×
+Report generation in progress …==Prebieha generovanie prehľadu …
+the report below is completed live while the model is writing==nižšie uvedená správa je dokončená naživo počas písania modelu
+No generated log reports were found.==Nenašli sa žiadne vygenerované protokolové správy.
+#-----------------------------
+
+#File: MessageSend_p.html
+#---------------------------
+"Enter"=="Zadajte"
+"Preview"=="Ukážka"
+Send message==Posli spravu
+The peer does not respond. It was now removed from the peer-list.==Peer neodpoveda. Bol prave zmazany zo zoznamu peerov.
+Your Message==Vaša správa
+Subject:==Nazov:
+Text:==Text:
+The peer is alive but cannot respond. Sorry.==Vrstovník je nažive, ale nemôže reagovať. prepáč.
+Preview message==Ukážka správy
+The message has not been sent yet!==Správa ešte nebola odoslaná!
+Message:==Správa:
+Your message has been sent. The target peer responded:==Vasa sprava bola odoslana. Cielovy peer odpovedal:
+The target peer is alive but did not receive your message. Sorry.==Cielovy peer je zivy avsak nedostal Vasu spravu. Prepacte.
+Here is a copy of your message, so you can copy it to save it for further attempts:==Tu je kopia Vasej spravy, mozete si ju skopirovat a ulozit pre neskorsie pokusy:
+#-----------------------------
+
+#File: Messages_p.html
+#---------------------------
+"RSS"=="RSS"
+"Compose"=="Skladať"
+Messages==Správy
+Compose Message==Napísať správu
+Send message to peer==Odoslať správu partnerovi
+Date==Datum
+From==Od
+To==Komu
+Subject==Predmet
+Action==Akcia
+view==pohľad
+reply==odpovedaj
+delete==vymazať
+From:==Od:
+To:==Pre:
+Date:==Datum:
+Subject:==Subjekt:
+Message:==Správa:
+Action:==Akcia:
+inbox==doručenej pošty
+#-----------------------------
+
+#File: Network.html
+#---------------------------
+"API"=="API"
+"Search"=="Hľadať"
+"https supported"=="https podporované"
+"Type: Junior | Contact: passive"=="Typ: Junior | Kontakt: pasívny"
+"Junior passive"=="Junior pasívny"
+"Type: Junior | Contact: direct"=="Typ: Junior | Kontakt: priamy"
+"Junior direct"=="Junior direct"
+"Type: Junior | Contact: offline"=="Typ: Junior | Kontakt: offline"
+"Junior offline"=="Junior offline"
+"Type: Senior | Contact: passive"=="Typ: Senior | Kontakt: pasívny"
+"senior passive"=="senior pasívny"
+"Type: Senior | Contact: direct"=="Typ: Senior | Kontakt: priamy"
+"Senior direct"=="Senior direct"
+"Type: Senior | Contact: offline"=="Typ: Senior | Kontakt: offline"
+"Senior offline"=="Senior offline"
+"Type: Principal | Contact: passive | Seed download: possible"=="Typ: Hlavný | Kontakt: pasívny | Sťahovanie semien: možné"
+"Principal passive"=="Hlavná pasívna"
+"Type: Principal | Contact: direct | Seed download: possible"=="Typ: Hlavný | Kontakt: priamy | Sťahovanie semien: možné"
+"Principal active"=="Hlavný aktívny"
+"Type: Principal | Contact: offline | Seed download: ?"=="Typ: Hlavný | Kontakt: offline | Stiahnutie semienok: ?"
+"Principal offline"=="Riaditeľ offline"
+"Accept Crawl: no"=="Prijať indexové prehľadávanie: nie"
+"no crawl"=="bez prehľadávania"
+"Accept Crawl: yes"=="Prijať indexové prehľadávanie: áno"
+"crawl possible"=="prehľadávanie je možné"
+"no DHT receive"=="žiadny DHT príjem"
+"DHT Receive: yes"=="DHT Príjem: áno"
+"DHT receive enabled"=="Príjem DHT je povolený"
+"Profile updated"=="Profil bol aktualizovaný"
+"Wiki updated"=="Wiki bola aktualizovaná"
+"Blog updated"=="Blog bol aktualizovaný"
+"Crawl"=="Prehľadávať"
+"The YaCy Network"=="Sieť YaCy"
+"Type: Virgin"=="Typ: panenský"
+"Virgin"=="panenský"
+"Type: Junior"=="Typ: Junior"
+"Junior"=="Junior"
+"Type: Senior"=="Typ: Senior"
+"Senior"=="Senior"
+"Type: Principal"=="Typ: Hlavný"
+"Principal"=="riaditeľ"
+"Crawl enabled"=="Indexové prehľadávanie je povolené"
+"DHT Receive: no"=="DHT Príjem: nie"
+"DHT Receive enabled"=="DHT Príjem je povolený"
+"add Peer"=="pridať Peer"
+"contact current peer from this peer"=="kontaktovať aktuálneho partnera tohto partnera"
+YaCy Network==YaCy sieť
+Network Overview==Prehlad stavu siete
+Active Principal and Senior Peers==Aktívny Riaditeľ a Senior Vrstovníci
+Passive Senior Peers==Passive Senior Peers
+Junior (fragment) Peers==Junior (fragment) rovesníci
+Network History==História siete
+The information that is presented on this page can also be retrieved as XML.==Informácie uvedené na tejto stránke je možné získať aj ako XML.
+Click the API icon to see the XML.==Kliknutím na ikonu API zobrazíte XML.
+Manually contacting Peer== Manualne kontaktujuci peer
+Search for a peername (RegExp allowed)==Vyhľadajte peername (povolený RegExp)
+Hash==Hash
+Name==Meno
+Info==Info
+Release==Uvoľnite
+Age==Vek
+con/h ==con/h
+PPM==PPM
+QPH==QPH
+Last Seen==Naposledy videné
+UTC Offset==UTC Offset
+Uptime==Uptime
+Links==Odkazy
+RWIs==RWIs
+URLs for Remote Crawl==Adresy URL pre Vzdialené Indexové prehľadávanie
+Sent DHT Word Chunks==Odoslané časti slov DHT Word
+Sent URLs==Odoslané adresy URL URL
+Received DHT Word Chunks==Prijaté časti DHT Word
+Received URLs==Prijaté URL adresy
+Location==Miesto
+user agent ==používateľský agent
+send Message/ show Profile/ edit Wiki/ browse Blog==odoslať správu/ zobraziť profil/ upraviť Wiki/ prehliadať blog
+Network==sieť
+Online Peers==Online rovesníci
+Number of Documents==Počet dokumentov
+Indexing Speed: Pages Per Minute (PPM)==Rýchlosť indexovania: stránok za minútu (PPM)
+Query Frequency: Queries Per Hour (QPH)==Frekvencia dopytov: dopytov za hodinu (QPH)
+Last Hour==Posledná hodina
+Today==Dnes
+Last Week==Posledný týždeň
+Last Month==Posledný mesiac
+Now==Teraz
+Active Senior==Aktívny senior
+Passive Senior==Pasívny senior
+Junior (fragment)==Junior (fragment)
+This Peer==Tento Peer
+Your Peer:==Vas peer:
+Version==Verzia
+UTC==UTC
+URLs for Remote Crawl==Adresy URL pre Vzdialené indexové prehľadávanie
+Sent DHT Word Chunks==Odoslané bloky slov DHT
+Received DHT Word Chunks==Prijaté DHT bloky slov
+Known Seeds==Známe Seeds
+Connects per hour==Pripojí za hodinu
+Indexing PPM==Indexovanie PPM
+QPH (public local)==QPH (verejné miestne)
+QPH (remote)==QPH (vzdialené)
+dark green font==tmavozelené písmo
+senior/principal peers==Senior/Principal peeri
+light green font==svetlozelené písmo
+passive peers==pasívnych rovesníkov
+pink font==ružové písmo
+junior peers==Junior peeri
+red point==cerveny bod
+this peer==Vas peer
+grey waves==sivé vlny
+crawling activity==aktivita prehľadávania
+green radiation==zelené žiarenie
+strong query activity==silná dopytovacia aktivita
+red lines==červené čiary
+DHT-out==DHT-out
+green lines==zelené čiary
+DHT-in==DHT-in
+Peer Hash==Hash peera
+Peer IP==IP adresa peera
+Peer Port==Port peera
+Contacting current peer from another:==Kontaktovanie aktuálneho partnera z iného:
+ip:port==ip:port
+Count of Connected Senior Peers in the last two days, scale = 1h==Počet pripojených starších rovesníkov za posledné dva dni, mierka = 1 h
+Count of all Active Peers Per Day in the last week, scale = 1d==Počet všetkých aktívnych rovesníkov za deň za posledný týždeň, mierka = 1 d
+Count of all Active Peers Per Week in the last 30d, scale = 7d==Počet všetkých aktívnych rovesníkov za týždeň za posledných 30 dní, mierka = 7 dní
+Count of all Active Peers Per Month in the last 365d, scale = 30d==Počet všetkých aktívnych partnerov za mesiac za posledných 365 dní, mierka = 30 dní
+#-----------------------------
+
+#File: News.html
+#---------------------------
+"Incoming News"=="Prichádzajúce správy"
+"Processed News"=="Spracované správy"
+"Outgoing News"=="Odchádzajúce správy"
+"Published News"=="Publikované novinky"
+Overview==Prehľad
+Incoming News==Prichadzajuce spravy
+Processed News==Precitane spravy
+Outgoing News==Odchadzajuce spravy
+Published News==Zverejnene spravy
+This is the YaCyNews system (currently under testing).==Toto je YaCy system sprav (momentalne v stave testovania).
+The news service is controlled by several entry points:==Tento servis sprav je kontrolovany z nasledovnych vstupnych bodov:
+A crawl start with activated remote indexing will automatically create a news entry.==Spustenie indexového prehľadávania s aktivovaným vzdialeným indexovaním automaticky vytvorí nový záznam.
+Other peers may use this information to prevent double-crawls from the same start point.==Ostatni peeri mozu pouzit tuto informaciu aby nevytvorili taky isty proces preliezania (crawl) z rovnakym startovacim bodom.
+A table with recently started crawls is presented on the Index Create - page==Tabulka s prave odstartovanymi procesmi preliezania (crawls) je zobrazena na stranke "Vytvor index".
+A change in the personal profile will create a news entry. You can see recently made changes of==Zmena v profile sposobi vytvorenie zaznamu v spravach. Posledne vykonane zmeny
+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).
+Publishing of added or modified translation for the user interface. Other peers may include it in their local translation list.==Publikovanie pridaného alebo upraveného prekladu pre používateľské rozhranie. Ostatní partneri ho môžu zahrnúť do svojho zoznamu miestnych prekladov.
+More news services will follow.==Dalsie sluzby pre spravy budu nasledovat.
+Above you can see four menus:==V menu mozete vidiet tieto styri zaznami:
+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.
+You can process these news with a button on the page to remove their appearance from the IndexCreate and Network page==Tieto spravy mozete spracovat pomocou tlacitka na stranke. Po ich spracovani budu tieto spravy zo stranok "Vytvor index" a "Stav siete" odstranene.
+you can stop the broadcast if you want.==Toto dorucovanie mozete kedykolvek zastavit.
+Originator==Autor
+Created==Vytvorene
+Category==Kategoria
+Received==Obdrzania
+Distributed==Distribuovane
+Attributes==Atribut
+#-----------------------------
+
+#File: PerformanceConcurrency_p.html
+#---------------------------
+Performance of Concurrent Processes==Výkon súbežných procesov
+serverProcessor Objects==ServerProcessor Objects
+Thread==Niť
+Queue Size Current==Veľkosť frontu Current
+Queue Size Maximum==Veľkosť frontu Maximum
+Executors: Current Number of Threads==Vykonávatelia: Aktuálny počet vlákien
+Concurrency: Maximum Number of Threads==Súbežnosť: Maximálny počet vlákien
+Children==deti
+Average Block Time Reading==Priemerný Čas blokovania Čítanie
+Average Exec Time==Priemerný čas Exec
+Average Block Time Writing==Priemerný Čas blokovania Písanie
+Total Cycles==Celkom cyklov
+Full Description==Úplný popis
+#-----------------------------
+
+#File: PerformanceMemory_p.html
+#---------------------------
+"PerformanceGraph"=="PerformanceGraph"
+Performance Settings for Memory==Nastavenia vykonu pamate
+refresh graph==obnoviť graf
+simulate short memory status==simulovať stav krátkej pamäte
+use Standard Memory Strategy==použite štandardnú pamäťovú stratégiu
+Memory Usage==Vyuzitie pamate
+Type==Typ
+After Startup==Po starte
+After Initializations before GC==Po inicializácii pred GC
+After Initializations after GC==Po inicializácii po GC
+Now==Teraz
+before GC==pred GC
+after GC==po GC
+Description==Popis
+Max==Max
+maximum memory that the JVM will attempt to use==maximum pamate pre JVM
+Available==Dostupné
+total available memory including free for the JVM within maximum==celkovo dostupnej pamate vratane volnej pamate pre JVM v ramci maxima
+Total==Celkom
+total memory taken from the OS==celkove mnozstvo pamate priradenej od operacneho systemu
+Free==Zadarmo
+free memory in the JVM within total amount==volna pamat v JVM v ramci celkovej pamate
+Used==Použité
+used memory in the JVM within total amount==pouzita pamat v JVM v ramci celkovej pamate
+Table RAM Index==Tabuľkový index RAM
+Table==Tabuľka
+Size==Veľkosť
+Key==kľúč
+Value==Hodnota
+Chunk Size==Velkost chunk-u
+Used Memory==Použitá pamäť
+Object Index Caches==Cache indexu objektov
+Needed Memory==Potrebná pamäť
+Other Caching Structures==Ďalšie štruktúry ukladania do vyrovnávacej pamäte
+Hit==Hit
+Miss==slečna
+Insert==Vložiť
+Delete==Zmaz
+DNSCache/Hit==DNSCache/Hit
+(ARC)==(ARC)
+DNSCache/Miss==DNSCache/Miss
+DNSNoCache==DNSNoCache
+HashBlacklistedCache==HashBlacklistedCache
+Search Event Cache==Vyhľadajte vyrovnávaciu pamäť udalostí
+#-----------------------------
+
+#File: PerformanceQueues_p.html
+#---------------------------
+"Submit New Delay Values"=="Odoslať nové hodnoty oneskorenia"
+"Re-set to default"=="Obnovte predvolené nastavenie"
+"When the system load average is over the specified value, that type of remote search request is not used to fill search results."=="Keď priemerné zaťaženie systému presiahne zadanú hodnotu, tento typ požiadavky vzdialeného vyhľadávania sa nepoužije na vyplnenie výsledkov vyhľadávania."
+"Reverse Word Index"=="Obrátený index slov"
+"Submit New Values"=="Odoslať nové hodnoty"
+"Enter New Cache Size"=="Zadajte novú veľkosť vyrovnávacej pamäte"
+"Enter new Threadpool Configuration"=="Zadajte novú konfiguráciu Threadpool"
+"Total maximum number of simultaneously open connections in the pool"=="Celkový maximálny počet súčasne otvorených pripojení v bazéne"
+"Number of connections currently being used to execute requests."=="Počet pripojení, ktoré sa momentálne používajú na vykonávanie požiadaviek."
+"Number of reusable idle connections"=="Počet opätovne použiteľných nečinných pripojení"
+"Number of connection requests being blocked awaiting a free connection"=="Počet blokovaných žiadostí o pripojenie čakajúcich na voľné pripojenie"
+Performance Settings of Queues and Processes==Nastavenia vykonu pre cakacie listiny a procesy
+Scheduled tasks overview and waiting time settings:==Prehlad naplanovanych uloh a nastaveny casov cakania
+Thread==Niť
+Queue Size==Velkost cakacej listiny
+Total Block Time==Celkový čas blokovania
+Total Sleep Time==Celkový čas spánku
+Total Exec Time==Celkový čas Exec
+Total Cycles==Celkom cyklov
+Idle Cycles==Nečinné cykly
+Busy Cycles==Zaneprázdnený cykly
+Short Mem Cycles==Krátka pamäť cyklov
+High CPU Cycles==Vysoké CPU cykly
+Sleep Time per Cycle (millis)==Čas spánku za cyklus (millis)
+Exec Time per Busy-Cycle (millis)==Čas vykonania za zaneprázdnený cyklus (millis)
+Memory Use per Busy-Cycle (kbytes)==Využitie pamäte za zaneprázdnený cyklus (kbajty)
+Delay between idle loops==Oneskorenie medzi nečinnými slučkami
+Delay between busy loops==Oneskorenie medzi obsadenými slučkami
+Minimum of Required Memory==Minimálne Požadovaná pamäť
+Maximum of System-Load==Maximum System-Load
+Full Description==Úplný popis
+milliseconds==Millisekundy
+kbytes==kB
+load==zaťaženie
+Changes take effect immediately==Zmenu su okamzite ucinne
+Remote search requests:==Požiadavky na vzdialené vyhľadávanie:
+Type==Typ
+Maximum system load==Maximálne zaťaženie systému
+RWI==RWI
+Search requests performed on remote peers distributed Reverse Word Index==Vyhľadávacie požiadavky vykonávané na vzdialených rovesníkoch distribuovaných Reverse Word Index
+Solr==Solr
+Search requests performed on remote peers Solr indexes==Požiadavky na vyhľadávanie vykonané na indexoch vzdialených partnerov Solr
+Cache Settings:==Nastavenia vyrovnávacej pamäte:
+RAM Cache==Vyrovnávacia pamäť RAM
+Description==Popis
+Words in RAM cache: (Size in KBytes)==Slová vo vyrovnávacej pamäti RAM: (veľkosť v kB)
+This is the current size of the word caches.==Toto je momentalna velkost cache slov.
+The indexing cache speeds up the indexing process, the DHT cache holds indexes temporary for approval.==Indexovacia cache pamat urychli proces indexacie, DHT cache docasne udrzuje indexy na schvalenie
+The maximum of this caches can be set below.==Maxima tychto cache pamati mozete vidiet nizsie.
+Maximum URLs currently assigned to one cached word:==Maximálny počet adries URL aktuálne priradených jednému slovu vo vyrovnávacej pamäti:
+This is the maximum size of URLs assigned to a single word cache entry.==Toto je maximalna velkost URL adries ktore su priradene jedinemu slovu v cache slov.
+If this is a big number, it shows that the caching works efficiently.==Ak je to velke cislo, znamena to ze cachovanie pracuje efektivne.
+Maximum age of a word:==Maximálny vek slova:
+This is the maximum age of a word in an index in minutes.==Toto je maximálny vek slova v indexe v minútach.
+Minimum age of a word:==Minimálny vek slova:
+This is the minimum age of a word in an index in minutes.==Toto je minimálny vek slova v indexe v minútach.
+Maximum number of words in cache:==Maximálny počet slov vo vyrovnávacej pamäti:
+This is is the number of word indexes that shall be held in the==Toto je pocet indexov slov ktore by mali byt
+ram cache during indexing. When YaCy is shut down, this cache must be==v RAM cache pocas indexacie. Ak je YaCy vypnute, tato cache musi byt
+flushed to disc; this may last some minutes.==ulozena na disk. To moze trvat niekolko minut.
+Thread Pool Settings:==Nastavenia fondu vlákien:
+Thread Pool==Zásobník závitov
+maximum Active==max. aktivnych
+current Active==prave aktivnych
+Outgoing connections pools settings :==Nastavenia fondov odchádzajúcich pripojení:
+Connection Pool==Bazén pripojenia
+Total maximum==Celkové maximum
+Current statistics==Aktuálne štatistiky
+Active==Aktívne
+Idle==Nečinný
+Pending==Čaká na spracovanie
+General==generál
+Remote Solr servers==Vzdialené servery Solr
+#-----------------------------
+
+#File: PerformanceSearch_p.html
+#---------------------------
+"Search event picture"=="Vyhľadajte obrázok udalosti"
+Search Sequence Timing==Časovanie sekvencie vyhľadávania
+Timing results of latest search request:==Casove vysledky posledneho vyhladavacieho dotazu:
+Query==Dopyt
+Event==Udalosť
+Comment==Komentár
+Time==Čas
+Delta (ms)==Delta (ms)
+Duration (ms)==Trvanie (ms)
+Result-Count==Výsledok – počet
+The network picture below shows how the latest search query was solved by asking corresponding peers in the DHT:==Obrazok siete nizsie ukazuje bol vyrieseny posledny vyhladavaci dotaz u prislusnych peerov v DHT:
+red -> request list alive==červený -> zoznam žiadostí aktívny
+green -> request has terminated==zelená -> požiadavka bola ukončená
+grey -> the search target hash order position(s) (more targets if a dht partition is used)==šedá -> pozície poradia hash cieľa vyhľadávania (viac cieľov, ak sa používa oddiel dht)
+#-----------------------------
+
+#File: Performance_p.html
+#---------------------------
+"PerformanceGraph"=="PerformanceGraph"
+"Java Virtual Machine"=="Java Virtuálny počítač"
+"Set"=="Set"
+"Restart now"=="Reštartujte teraz"
+"Amount of space (in Mebibytes) that should be kept free as steady state"=="Množstvo miesta (v mebibajtoch), ktoré by malo zostať voľné v ustálenom stave"
+"Mebibyte"=="Mebibyte"
+"Amount of space (in Megabytes) that should at least be kept free as hard limit"=="Množstvo miesta (v megabajtoch), ktoré by malo zostať voľné aspoň ako pevný limit"
+"Distributed Hash Table"=="Distribuovaná tabuľka hash"
+"Free space disk autoregulation info"=="Informácie o automatickej regulácii voľného miesta na disku"
+"Maximum amount of space (in Mebibytes) that should be used as steady state"=="Maximálne množstvo priestoru (v mebibajtoch), ktoré by sa malo použiť ako ustálený stav"
+"Maximum amount of space (in Mebibytes) that should be used as hard limit"=="Maximálne množstvo miesta (v mebibajtoch), ktoré by sa malo použiť ako pevný limit"
+"Used space disk autoregulation info"=="Informácie o autoregulácii použitého priestorového disku"
+"Random Access Memory"=="Pamäť s náhodným prístupom"
+"Proper state info"=="Správne informácie o stave"
+"Exhausted state info"=="Info o vyčerpanom stave"
+"Reset state"=="Resetovať stav"
+"Manually reset to 'proper' state"=="Manuálne resetovanie do „správneho“ stavu"
+"Amount of memory (in Mebibytes) that should at least be free for proper operation"=="Množstvo pamäte (v mebibajtoch), ktoré by malo byť aspoň voľné pre správnu činnosť"
+"Save"=="Uloz profil"
+"Enter New Parameters"=="Zadajte nové parametre"
+Performance Settings==Nastavenia výkonu
+refresh graph==obnoviť graf
+Memory Settings==Nastavenia pamäte
+Memory reserved for JVM==Pamäť vyhradená pre JVM
+MByte==MByte
+Accepted change. This will take effect after restart of YaCy.==Prijatá zmena. Toto sa prejaví po reštarte z YaCy.
+Restart now==Reštartujte teraz
+Resource Observer==Pozorovateľ zdrojov
+Free space disk==Voľné miesto na disku
+Steady-state minimum==Ustálené minimum
+MiB. Disable crawls when free space is below.==MiB. Zakázať prehľadávanie, keď je voľného miesta menej.
+Absolute minimum==Absolútne minimum
+MiB. Disable DHT-in when free space is below.==MiB. Zakázať DHT-in, keď je voľného miesta menej.
+Autoregulate==Autoregulovať
+when absolute minimum limit has been reached.==keď sa dosiahne absolútny minimálny limit.
+The autoregulation task performs the following sequence of operations, stopping once free space disk is over the steady-state value :==Úloha autoregulácie vykonáva nasledujúcu postupnosť operácií, pričom sa zastaví, keď voľné miesto na disku presiahne hodnotu ustáleného stavu:
+delete old releases==odstrániť staré vydania
+delete logs==vymazať denníky
+delete robots.txt table==odstrániť tabuľku robots.txt
+delete news==vymazať novinky
+clear HTCACHE==vymazať HTCACHE
+clear citations==jasné citácie
+throw away large crawl queues==zahoďte veľké fronty na prehľadávanie
+cut away too large RWIs==odrezať príliš veľké RWIs
+Used space disk==Použitý priestorový disk
+Steady-state maximum==Maximum v ustálenom stave
+MiB. Disable crawls when used space is over.==MiB. Zakázať prehľadávanie, keď je použitého miesta viac.
+Absolute maximum==Absolútne maximum
+MiB. Disable DHT-in when used space is over.==MiB. Zakázať DHT-in, keď je použitého miesta viac.
+when absolute maximum limit has been reached.==keď sa dosiahne absolútny maximálny limit.
+The autoregulation task performs the following sequence of operations, stopping once used space disk is below the steady-state value:==Úloha autoregulácie vykonáva nasledujúcu postupnosť operácií, pričom zastavenie použitého priestorového disku je pod hodnotou ustáleného stavu:
+RAM==RAM
+Memory state :==Stav pamäte:
+proper==riadne
+Enough memory is available for proper operation.==Pre správnu činnosť je k dispozícii dostatok pamäte.
+exhausted==vyčerpaný
+Within the last eleven minutes, at least four operations have tried to request memory that would have reduced free space within the minimum required.==Za posledných jedenásť minút sa aspoň štyri operácie pokúsili požiadať o pamäť, ktorá by znížila voľné miesto v rámci požadovaného minima.
+Minimum required==Požadované minimum
+MiB free space. Disable DHT-in below.==MiB voľného miesta. Pod touto hodnotou zakázať DHT-in.
+Online Caution Settings:==Nastavenia upozornenia online:
+This is the time that the crawler idles when the proxy is accessed, or a local or remote search is done.==Toto je čas, keď je prehľadávač nečinný, keď sa pristupuje k proxy alebo sa vykonáva lokálne alebo vzdialené vyhľadávanie.
+The delay is extended by this time each time the proxy is accessed afterwards.==Oneskorenie sa predĺži o tento čas pri každom ďalšom prístupe k proxy.
+This shall improve performance of the affected process (proxy or search).==Tým sa zlepší výkon ovplyvneného procesu (proxy alebo vyhľadávanie).
+seconds since last proxy/local-search/remote-search access.)==sekúnd od posledného prístupu proxy/local-search/remote-search.)
+Online Caution Case==Online opatrný prípad
+indexer delay (milliseconds) after case occurrence==oneskorenie indexera (milisekundy) po výskyte prípadu
+Proxy:==Proxy:
+Local Search:==Miestne vyhľadávanie:
+Remote Search:==Vzdialené vyhľadávanie:
+Changes take effect immediately==Zmenu su okamzite ucinne
+#-----------------------------
+
+#File: ProxyIndexingMonitor_p.html
+#---------------------------
+"Set proxy profile"=="Uloz proxy profil"
+Indexing with Proxy==Indexovanie pomocou proxy
+YaCy can be used to 'scrape' content from pages that pass the integrated caching HTTP proxy.==YaCy možno použiť na „zoškrabovanie“ obsahu zo stránok, ktoré prechádzajú cez integrovaný proxy server HTTP pre ukladanie do vyrovnávacej pamäte.
+When scraping proxy pages then no personal or protected page is indexed;==Pri zoškrabovaní stránok proxy potom neindexuje žiadnu osobnú ani chránenú stránku;
+those pages are detected by properties in the HTTP header (like Cookie-Use, or HTTP Authorization)==taketo stranky su detekovane pomocou vlastnosti (properties) v HTTP hlavicke (headery) stranky (napr. cookies alebo HTTP autorizacia)
+or by POST-Parameters (either in URL or as HTTP protocol) and automatically excluded from indexing.==alebo pomocou parametrov POST (buď v URL alebo ako protokol HTTP) a automaticky vylúčené z indexovania.
+Proxy Auto Config:==Automatická konfigurácia proxy:
+this controls the proxy auto configuration script for browsers at http://localhost:8090/autoconfig.pac==toto riadi skript automatickej konfigurácie servera proxy pre prehliadače na http://localhost:8090/autoconfig.pac
+whether the proxy should only be used for .yacy-Domains==či sa má proxy používať len pre .yacy-Domains
+Proxy pre-fetch setting:==Nastavenia indexacie proxy:
+this is an automated html page loading procedure that takes actual proxy-requested==Toto je automaticka funkcia nahravania web stranok, ktora pouziva prave navstevovane
+URLs as crawling start points for crawling.==URL adresy ako startovaci bod indexacie.
+Prefetch Depth==Hlbka predvyberu
+A prefetch of 0 means no prefetch; a prefetch of 1 means to prefetch all==Hlbke 0 znamena ziaden predvyber. Hlbka 1 znamena predvyber vsetkych
+embedded URLs, but since embedded image links are loaded by the browser==URL adries ktore sa na konkretnej web stranke vyskytuju. Kedze vsak obrazk su nahravane web browserom
+this means that only embedded href-anchors are prefetched additionally.==znamená to, že dodatočne sa prednačítajú iba vložené href odkazy.
+Store to Cache==Uloz do cache
+It is almost always recommended to set this on. The only exception is that you have another caching proxy running as secondary proxy and YaCy is configured to used that proxy in proxy-proxy - mode.==Doporucujeme mat tuto volbu vzdy aktivovanu. Jedinou vynimkou je ak Vam bezi dalsi proxi ako cache a chcete aby YaCy bezalo v mode "od proxy k proxy".
+Do Local Text-Indexing==Vykonajte miestne indexovanie textu
+If this is on, all pages (except private content) that passes the proxy is indexed.==Ak je toto zapnuté, indexujú sa všetky stránky (okrem súkromného obsahu), ktoré prejdú serverom proxy.
+Do Local Media-Indexing==Vykonajte indexovanie miestnych médií
+This is the same as for Local Text-Indexing, but switches only the indexing of media content on.==Je to rovnaké ako pri lokálnom indexovaní textu, ale zapína sa iba indexovanie mediálneho obsahu.
+Do Remote Indexing==Vzdialene indexovanie
+If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==Ak je aktivovane, tak crawler bude kontaktovat ine peeri a pouzivat ich ako vzialenych indexatorov pre Vas crawl.
+If you need your crawling results locally, you should switch this off.==Deaktivujte tuto funkciu ak potrebujete lokalne ulozit vysledky Vaseho crawlingu.
+Only senior and principal peers can initiate or receive remote crawls.==Len Senior a Principal peeri mozu odstartovat alebo prijat vzdialeny crawl.
+Please note that this setting only take effect for a prefetch depth greater than 0.==Prosim uvazte ze tieto nastavenia su ucinne len ak je zvolena hlbka predvyberu vacsia ako 0.
+Proxy generally==Proxy vseobecne
+Path==Adresar
+The path where the pages are stored (max. length 300)==Adresar kde je ulozena cache (max. 300 znakov)
+Size==Veľkosť
+The size in MB of the cache.==Velkost cache v MB.
+The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.==Súbor DATA/PLASMADB/crawlProfiles0.db chýba alebo je poškodený.
+Please delete that file and restart.==Odstráňte tento súbor a reštartujte ho.
+Caching is now==Ukladanie do vyrovnávacej pamäte je teraz
+off==vypnuté
+on==na
+Local Text Indexing is now==Lokálne indexovanie textu je teraz
+Local Media Indexing is now==Indexovanie miestnych médií je teraz
+Remote Indexing is now==Vzdialené indexovanie je teraz
+Changes will take effect after restart only.==Zmeny budu ucinne az po restarte YaCy.
+You can see a snapshot of recently indexed pages==Mozete si pozriet 'aktualny snimok' (snapshot) prave zaindexovanych web stranok
+#-----------------------------
+
+#File: QuickCrawlLink_p.html
+#---------------------------
+Quickly adding Bookmarks:==Rychly Crawl - Zalozky:
+Simply drag and drop the link shown below to your Browsers Toolbar/Link-Bar.==Kliknite na tahajte (drag and drop) odkaz nizsie do toolbar/linkbaru Vaseho browsera.
+If you click on it while browsing, the currently viewed website will be inserted into the YaCy crawling queue for indexing.==Ak nan kliknete pocas surfovania, tak bude prave prehliadana stranka pridana na indexaciu do cakacej listiny YaCy crawleru.
+Crawl with YaCy==Crawl s YaCy
+Title:==Titul:
+Link:==Odkaz:
+Status:==Stav:
+URL successfully added to Crawler Queue==URL adresa bola uspesne pridana do cakacej listiny crawleru.
+Malformed URL==Chyba v URL adrese
+#-----------------------------
+
+#File: RAGConfig_p.html
+#---------------------------
+Wire RAG Retrieval==Wire RAG načítanie
+Tune how YaCy constructs prompts and search queries for Retrieval Augmented Generation.==Vylaďte, ako YaCy vytvára výzvy a vyhľadávacie dotazy pre rozšírené generovanie získavania.
+System Prompt==Systémová výzva
+This is sent as the system message for chats. Keep it concise and friendly.==Toto sa odosiela ako systémová správa pre chaty. Udržujte to stručné a priateľské.
+User Retrieval Prefix==Predpona získania používateľa
+Prepended before attached search snippets in RAG mode to tell the LLM how to use them.==Pripojené pred pripojené úryvky vyhľadávania v režime RAG, aby povedali LLM, ako ich používať.
+Query Generator Prefix==Predpona generátora dotazov
+Prompt given to the model that generates search queries from user requests.==Výzva poskytnutá modelu, ktorý generuje vyhľadávacie dopyty z požiadaviek používateľov.
+Search Document Max Length==Hľadaj dokument Max. dĺžka
+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.==Maximálna dĺžka znakov dokumentu virtuálneho vyhľadávania použitého ako príloha RAG a ako výsledok nástroja „vyhľadávanie“. Obsah presahujúci tento limit bude odrezaný. Predvolená hodnota: 30 000.
+Save RAG Settings==Uložiť nastavenia RAG
+#-----------------------------
+
+#File: RankingRWI_p.html
+#---------------------------
+"info"=="info"
+"Set as Default Ranking"=="Nastaviť ako predvolené hodnotenie"
+"Re-Set to Built-In Ranking"=="Re-set to Built-In Ranking"
+RWI Ranking Configuration==RWI Konfigurácia hodnotenia
+The document ranking influences the order of the search result entities.==Poradie dokumentov ovplyvňuje poradie entít výsledkov vyhľadávania.
+A ranking is computed using a number of attributes from the documents that match with the search word.==Hodnotenie sa vypočíta pomocou niekoľkých atribútov z dokumentov, ktoré sa zhodujú s hľadaným slovom.
+The attributes are first normalized over all search results and then the normalized attribute is multiplied with the ranking coefficient computed from this list.==Atribúty sa najskôr normalizujú vo všetkých výsledkoch vyhľadávania a potom sa normalizovaný atribút vynásobí koeficientom hodnotenia vypočítaným z tohto zoznamu.
+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.==Koeficient hodnotenia rastie exponenciálne s úrovňami hodnotenia uvedenými v nasledujúcej tabuľke. Ak zvýšite jednu hodnotu o jednu, sila parametra sa zdvojnásobí.
+Pre-Ranking==Predbežné hodnotenie
+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.==Existujú dve fázy hodnotenia: najprv sa všetky výsledky zoradia pomocou predbežného hodnotenia a z výsledného zoznamu sa dokumenty znova zoradia s následným poradím.
+The two stages are separated because they need statistical information from the result of the pre-ranking.==Tieto dve fázy sú oddelené, pretože potrebujú štatistické informácie z výsledku predbežného poradia.
+Post-Ranking==Po umiestnení v rebríčku
+#-----------------------------
+
+#File: RankingSolr_p.html
+#---------------------------
+"Set Boost Function"=="Nastavte funkciu Boost"
+"Re-Set to default"=="Re-set to default"
+"Set Boost Query"=="Nastavte Boost Query"
+"Set Filter Query"=="Nastaviť dotaz na filtrovanie"
+"Set Field Boosts"=="Nastaviť Field Boosts"
+Solr Ranking Configuration==Solr Konfigurácia hodnotenia
+These are ranking attributes for Solr. This ranking applies for internal and remote (P2P or shard) Solr access.==Toto sú atribúty hodnotenia pre Solr. Toto hodnotenie platí pre interný a vzdialený (P2P alebo zlomok) Solr prístup.
+Select a profile:==Vyberte profil:
+Boost Function==Funkcia Boost
+A Boost Function can combine numeric values from the result document to produce a number which is multiplied with the score value from the query result.==Funkcia Boost môže kombinovať číselné hodnoty z výsledného dokumentu a vytvoriť číslo, ktoré sa vynásobí hodnotou skóre z výsledku dotazu.
+Example: to order by date, use "recip(ms(NOW,last_modified),3.16e-11,1,1)", to order by crawldepth, use "div(100,add(crawldepth_i,1))".==Príklad: ak chcete zoradiť podľa dátumu, použite "recip(ms(NOW,posledná_zmena),3.16e-11,1,1)", ak chcete zoradiť podľa hĺbky prehľadávania, použite "div(100,add(crawldepth_i,1))".
+Boost Query==Boost Query
+The Boost Query is attached to every query. Use this to statically boost specific content in the index.==Boost Query je pripojený ku každému dotazu. Použite to na statické zvýšenie špecifického obsahu v indexe.
+Example: "fuzzy_signature_unique_b:true^100000.0f" means that documents, identified as 'double' are ranked very bad and appended to the end of all results (because the unique are ranked high).==Príklad: „fuzzy_signature_unique_b:true^100000.0f“ znamená, že dokumenty označené ako „dvojité“ sú hodnotené ako veľmi zlé a sú pripojené na koniec všetkých výsledkov (pretože jedinečné sú hodnotené vysoko).
+Filter Query==Filtrovať dopyt
+The Filter Query is attached to every query. Use this to statically add a selection criteria to reduce the set of results.==Filtračný dotaz je pripojený ku každému dotazu. Použite to na statické pridanie výberových kritérií na zníženie množiny výsledkov.
+Example: "http_unique_b:true AND www_unique_b:true" will filter out all results where urls appear also with/without http(s) and/or with/without 'www.' prefix.==Príklad: „http_unique_b:true AND www_unique_b:true“ odfiltruje všetky výsledky, kde sa adresy URL zobrazujú aj s /without http(s) a /or s/without 'www.' predpona.
+Solr Boosts==Solr Zvyšuje
+field not in local index (boost has no effect)==pole nie je v lokálnom indexe (zosilnenie nemá žiadny vplyv)
+#-----------------------------
+
+#File: RegexTest.html
+#---------------------------
+Regex Test==Regex test
+Test String==Testovací reťazec
+Regular Expression==Regulárny výraz
+Result==Výsledok
+no match==žiadna zhoda
+match==zápas
+#-----------------------------
+
+#File: RemoteCrawl_p.html
+#---------------------------
+"Save"=="Uloz profil"
+Remote Crawler==Vzdialený pásový prehľadávač
+The remote crawler is a process that requests urls from other peers.==Vzdialený prehľadávač je proces, ktorý vyžaduje adresy URL od iných partnerov.
+Peers offer remote-crawl urls if the flag 'Do Remote Indexing'==Partneri ponúkajú adresy URL na vzdialené indexové prehľadávanie, ak je nastavený príznak „Vykonať vzdialené indexovanie“
+is switched on when a crawl is started.==sa zapne pri spustení prehľadávania.
+Remote Crawler Configuration==Konfigurácia vzdialeného prehľadávača
+Your peer cannot accept remote crawls because you need senior or principal peer status for that!==Váš partner nemôže akceptovať vzdialené indexové prehľadávanie, pretože na to potrebujete postavenie staršieho alebo hlavného partnera!
+Accept Remote Crawl Requests==Prijmite požiadavky na vzdialené indexové prehľadávanie
+Perform web indexing upon request of another peer.==Vykonajte indexovanie webu na žiadosť iného partnera.
+Load with a maximum of==Zaťažte max
+pages per minute==strán za minútu
+Peers offering remote crawl URLs==Partneri ponúkajúci adresy URL vzdialeného indexového prehľadávania
+If the remote crawl option is switched on, then this peer will load URLs from the following remote peers:==Ak je zapnutá možnosť vzdialeného indexového prehľadávania, tento partner načíta adresy URL od nasledujúcich vzdialených partnerov:
+Name==Meno
+URLs for Remote Crawl==Adresy URL pre Remote Indexové prehľadávanie
+Release==Uvoľnite
+PPM==PPM
+QPH==QPH
+Last Seen==Naposledy videné
+UTC Offset==UTC Offset
+Uptime==Uptime
+Links==Odkazy
+RWIs==RWIs
+Age==Vek
+#-----------------------------
+
+#File: SearchAccessRate_p.html
+#---------------------------
+"Submit"=="Odoslať"
+"Set defaults"=="Nastaviť predvolené hodnoty"
+"Reset to defaults settings"=="Obnoviť predvolené nastavenia"
+limitations==obmedzenia
+Local Search access rate limitations==Obmedzenia rýchlosti prístupu miestneho vyhľadávania
+You can configure here limitations on access rate to this peer search interface by unauthenticated users and users without extended search right==Tu môžete nakonfigurovať obmedzenia rýchlosti prístupu k tomuto rozhraniu partnerského vyhľadávania pre neoverených používateľov a používateľov bez rozšíreného práva na vyhľadávanie
+YaCy search==YaCy vyhľadávanie
+Access rate limitations to this peer search interface.==Obmedzenia rýchlosti prístupu k tomuto rozhraniu partnerského vyhľadávania.
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the search is blocked.==Keď používateľ s obmedzenými právami (neoverený alebo bez práva na rozšírené vyhľadávanie) prekročí limit, vyhľadávanie sa zablokuje.
+Max searches in 3s==Maximálny počet vyhľadávaní za 3 sekundy
+Max searches in 1mn==Maximálny počet vyhľadávaní za 1 min
+Max searches in 10mn==Maximálny počet vyhľadávaní za 10 minút
+Peer-to-peer search==Peer-to-peer vyhľadávanie
+Access rate limitations to the peer-to-peer search mode.==Obmedzenia rýchlosti prístupu do režimu vyhľadávania peer-to-peer.
+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.==Keď používateľ s obmedzenými právami (neautentizovaný alebo bez práva na rozšírené vyhľadávanie) prekročí limit, rozsah vyhľadávania sa vráti len na tento lokálny partnerský index.
+Max searches in 10mn==Maximálny počet vyhľadávaní za 10 minút
+Peer-to-peer search with JavaScript results resorting==Vyhľadávanie typu peer-to-peer s JavaScript výsledkami
+Access rate limitations to the peer-to-peer search mode with browser-side JavaScript results resorting enabled==Obmedzenia rýchlosti prístupu k režimu vyhľadávania peer-to-peer s povoleným uchyľovaním výsledkov JavaScript na strane prehliadača
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, results resorting becomes only applicable on demand, server-side.==Keď používateľ s obmedzenými právami (neoverený alebo bez práva na rozšírené vyhľadávanie) prekročí limit, uchyľovanie výsledkov sa stáva použiteľným iba na požiadanie na strane servera.
+Remote snippet load==Vzdialené načítanie úryvku
+Limitations on snippet loading from remote websites.==Obmedzenia načítania úryvkov zo vzdialených webových stránok.
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the snippets fetch strategy falls back to 'CACHEONLY'==Keď používateľ s obmedzenými právami (neoverený alebo bez práva na rozšírené vyhľadávanie) prekročí limit, stratégia načítania úryvkov sa vráti späť na „CACHEONLY“
+Max searches in 3s==Maximálny počet vyhľadávaní za 3 sekundy
+Changes will take effect immediately.==Zmeny sa prejavia okamžite.
+#-----------------------------
+
+#File: ServerScannerList.html
+#---------------------------
+"Add Selected Servers to Crawler"=="Pridať vybrané servery do indexového prehľadávača"
+Network Scanner Monitor==Monitor sieťového skenera
+The following servers can be searched:==Vyhľadávať možno na nasledujúcich serveroch:
+Available server within the given IP range==Dostupný server v rámci daného rozsahu IP
+Protocol==Protokol
+IP==IP
+URL==URL adresa
+Access==Prístup
+Process==Proces
+inaccessible==neprístupné
+empty==prázdny
+granted==udelené
+denied==odmietnuté
+not in index==nie v indexe
+indexed==indexované
+#-----------------------------
+
+#File: SettingsAck_p.html
+#---------------------------
+Settings Receipt:==Prijatie nastaveni:
+No information has been submitted==Ziadne informacie neboli prenesene:
+Nothing changed.==Nic nebolo zmenene.
+Error with submitted information.==Pri prenose informacii doslo k chybe.
+The user name must be given.==Meno uzivatela musi byt zadane
+Your request cannot be processed. Nothing changed.==Vašu žiadosť nemožno spracovať. Nič sa nezmenilo.
+The password redundancy check failed. You have probably mistyped your password.==Chyba pri kontrole hesla. Pravdepodobne preklep.
+Shutting down. Application will terminate after working off all crawling tasks.==Vypnutie. Aplikácia sa ukončí po dokončení všetkých úloh indexového prehľadávania.
+Your administration account setting has been made.==Nastavenia k uctu administratora boli ulozene.
+Your proxy access setting has been changed.==Vaše nastavenie prístupu proxy bolo zmenené.
+Your proxy account check has been disabled.==Kontrola vášho proxy účtu bola zakázaná.
+The new proxy IP filter is set to==Novy proxy IP filter je nastaveny na
+The proxy port is:==Proxy port je:
+Port rebinding will be done in a few seconds.==Opätovné naviazanie portu sa vykoná za niekoľko sekúnd.
+Your proxy access setting has been changed.==Nastavenia pristupu k Vasemu proxy serveru boli zmenene.
+If you open any public web page through the proxy, you must log-in.==Ak otvoríte akúkoľvek verejnú webovú stránku cez proxy, musíte sa prihlásiť.
+Port rebinding will be done in a view seconds.==Opätovné naviazanie portu sa vykoná v priebehu niekoľkých sekúnd.
+Auto pop-up of the Status page is now disabled==Automatické kontextové okno stavovej stránky je teraz zakázané
+Auto pop-up of the Status page is now enabled==Automatické kontextové okno stavovej stránky je teraz povolené
+The Peer Name is:==Meno tohoto peera je:
+Your static Ip(or DynDns) is:==Vasa staticka IP adresa (alebo DynDns) je:
+Your public port is:==Váš verejný prístav je:
+Seed Settings changed.==Nastavenia semien sa zmenili.
+You are now a principal peer.==Teraz ste Principal peer.
+Seed Settings changed, but something is wrong.===Nastavenia seed-u sa zmenili avsak nieco je nespravne.
+Seed Uploading was deactivated automatically.==Nahravanie seed-u bolo automaticky deaktivovane.
+Please return to the settings page and modify the data.==Prosim vratte sa naspat do nastaveni a zmente udaje.
+The remote-proxy setting has been changed==Nastavenia vzdialeneho proxy servera boli zmenene.
+The new setting is effective immediately, you don't need to re-start.==Nove nastavenie je okamzite ucinne, nepotrebujete restart.
+The submitted peer name is already used by another peer. Please choose a different name. The Peer name has not been changed.==Odoslané meno partnera už používa iný partner. Vyberte iné meno. Meno partnera sa nezmenilo.
+Your Peer Language is:==Jazyk Vaseho peera je:
+The submitted peer name is not well-formed. Please choose a different name. The Peer name has not been changed.==Odoslané meno partnera nemá správny tvar. Vyberte iné meno. Meno partnera sa nezmenilo.
+Peer names must not contain characters other than (a-z, A-Z, 0-9, '-', '_') and must not be longer than 80 characters.==Mená partnerov nesmú obsahovať iné znaky ako (a-z, A-Z, 0-9, '-', '_') a nesmú byť dlhšie ako 80 znakov.
+Seed Upload method was changed successfully.==Nahravacia seed metoda bola uspesne zmenena.
+Seed Upload Method:==Nahravacia seed metoda:
+Seed File URL:==URL adresa seed suboru:
+Your proxy networking settings have been changed.==Vase nastavenia proxi siete boli zmemene.
+Transparent Proxy Support is:==Transparentna podpora proxi je:
+Always Fresh is:==Vždy čerstvé je:
+Send via header is:==Odoslať cez hlavičku je:
+Send X-Forwarded-For header is:==Odoslať hlavičku X-Forwarded-For je:
+Your message forwarding settings have been changed.==Nastavenia presmerovania Vasich sprav boli zmenene.
+Message Forwarding Support is:==Podpora presmerovania sprav je:
+Message Forwarding Command:==Prikaz presmerovania sprav:
+Recipient Address:==Adresa prijimatela:
+Invalid IP-Number filter:==Neplatný filter IP-čísel:
+Your crawler settings have been changed.==Nastavenia vášho prehľadávača boli zmenené.
+Generic Settings:==Všeobecné nastavenia:
+Crawler timeout:==Časový limit indexového prehľadávača:
+http Crawler Settings:==http Nastavenia indexového prehľadávača:
+Maximum HTTP Filesize:==Maximálna HTTP veľkosť súboru:
+ftp Crawler Settings:==Nastavenia prehľadávača ftp:
+Maximum FTP Filesize:==Maximálna FTP veľkosť súboru:
+smb Crawler Settings:==Nastavenia indexového prehľadávača smb:
+Maximum SMB Filesize:==Maximálna SMB veľkosť súboru:
+Maximum file Filesize:==Maximálna veľkosť súboru:
+Invalid crawler timeout value:==Neplatná hodnota časového limitu indexového prehľadávača:
+Invalid maximum file size for http crawler:==Neplatná maximálna veľkosť súboru pre prehľadávač http:
+Invalid maximum file size for ftp crawler:==Neplatná maximálna veľkosť súboru pre prehľadávač ftp:
+HTTPS port is now:==Port HTTPS je teraz:
+the change will take effect after restart.==zmena sa prejaví po reštarte.
+URL Proxy settings have been saved.==URL Nastavenia servera proxy boli uložené.
+Debug/Analysis settings have been saved.==Nastavenia ladenia/Analysis boli uložené.
+Referrer policy settings have been saved.==Nastavenia zásad sprostredkovateľa boli uložené.
+The ports are now configured as follows (active on next start).==Porty sú teraz nakonfigurované nasledovne (aktívne pri ďalšom spustení).
+HTTP port==HTTP port
+HTTPS port==HTTPS port
+Shutdown port==Vypínací port
+Compression settings have been saved.==Nastavenia kompresie boli uložené.
+HTTP client settings have been saved.==HTTP nastavenia klienta boli uložené.
+Your need to restart YaCy to activate the changes.==Ak chcete aktivovať zmeny, musíte reštartovať YaCy.
+#-----------------------------
+
+#File: Settings_Crawler.inc
+#---------------------------
+"Submit"=="Odoslať"
+Crawler Settings==Nastavenia prehľadávača
+Generic Crawler Settings:==Všeobecné nastavenia indexového prehľadávača:
+Timeout:==Časový limit:
+HTTP Crawler Settings:==HTTP Nastavenia indexového prehľadávača:
+Maximum Filesize:==Maximálna veľkosť súboru:
+Please note that if the crawler uses content compression, this limit is used to check the compressed content size.==Upozorňujeme, že ak prehľadávač používa kompresiu obsahu, tento limit sa používa na kontrolu veľkosti komprimovaného obsahu.
+FTP Crawler Settings:==Nastavenia indexového prehľadávača FTP:
+SMB Crawler Settings:==Nastavenia indexového prehľadávača SMB:
+Local File Crawler Settings:==Nastavenia miestneho prehľadávača súborov:
+Changes will take effect immediately.==Zmeny su okamzite ucinne.
+#-----------------------------
+
+#File: Settings_Debug.inc
+#---------------------------
+"Extensible Markup Language"=="Rozšíriteľný značkovací jazyk"
+"Distributed Hash Table"=="Distribuovaná tabuľka hash"
+"Reverse Word Index"=="Obrátený index slov"
+"Submit"=="Odoslať"
+Debug/Analysis Settings==Nastavenia ladenia/Analysis
+Be careful with these advanced settings, they can deeply affect the search process! You probably don't need to modify them for normal use.==Buďte opatrní s týmito pokročilými nastaveniami, môžu hlboko ovplyvniť proces vyhľadávania! Na bežné používanie ich zrejme netreba upravovať.
+Solr communication==Solr komunikáciu
+Enable remote Solr binary responses==Povoliť vzdialené binárne odpovede Solr
+When checked (default), responses from remote Solr index instances are transferred using an efficient binary data format.==Keď je začiarknuté (predvolené), odpovede zo vzdialených inštancií indexu Solr sa prenášajú pomocou efektívneho formátu binárnych údajov.
+When unchecked, responses are transferred as XML,==Keď nie je začiarknuté, odpovede sa prenesú ako XML,
+which can be captured and parsed by any external XML aware tool for debug/analysis.==ktoré je možné zachytiť a analyzovať akýmkoľvek externým XML nástrojom na ladenie/analysis.
+Search data sources==Vyhľadajte zdroje údajov
+By default all data sources are enabled to obtain search results,==V predvolenom nastavení sú všetky zdroje údajov povolené na získanie výsledkov vyhľadávania,
+but you can here disable one or more ones to check the behavior of the process.==ale tu môžete zakázať jeden alebo viac, aby ste skontrolovali správanie procesu.
+Local DHT/RWI==Miestne DHT/RWI
+Local Solr index==Miestny index Solr
+Remote DHT/RWI==Vzdialený DHT/RWI
+Remote Solr indexes==Vzdialené indexy Solr
+Search testing tweaks==Vylepšenia testovania vyhľadávania
+Override DHT peers selection by local only==Prepísať výber DHT podobných používateľov iba miestnymi
+When checked, the remote DHT peers selection is overridden and only the local peer is selected to provide remote DHT search results.==Keď je začiarknuté, výber vzdialených DHT rovesníkov je prepísaný a na poskytovanie vzdialených DHT výsledkov vyhľadávania je vybratý iba lokálny rovesník.
+Override Solr peers selection by local only==Prepísať výber Solr podobných používateľov iba miestnymi
+When checked, the remote Solr peers selection is overridden and only this peer is selected to provide remote Solr search results.==Keď je začiarknuté, výber vzdialených Solr rovesníkov je prepísaný a na poskytovanie vzdialených Solr výsledkov vyhľadávania sa vyberie iba tento rovesník.
+Ranking information==Informácie o rebríčku
+Show search results scores==Zobraziť výsledky vyhľadávania
+When checked, the raw ranking score value is displayed for each text search result in the HTML results page.==Keď je začiarknuté, na stránke s výsledkami HTML sa pre každý výsledok textového vyhľadávania zobrazí nespracovaná hodnota skóre hodnotenia.
+Text snippets statistics==Štatistika úryvkov textu
+Enable text snippets statistics==Povoliť štatistiku úryvkov textu
+Changes will take effect immediately.==Zmeny sa prejavia okamžite.
+#-----------------------------
+
+#File: Settings_HttpClient.inc
+#---------------------------
+"Transport Layer Security"=="Zabezpečenie transportnej vrstvy"
+"Server Name Indication"=="Indikácia názvu servera"
+"Submit"=="Odoslať"
+HTTP client settings==HTTP nastavenia klienta
+You can configure here some advanced settings of the clients used by YaCy to handle outgoing HTTP connections.==Tu môžete nakonfigurovať niektoré rozšírené nastavenia klientov, ktoré používa YaCy na spracovanie odchádzajúcich HTTP pripojení.
+About Server Name Indication (SNI):==O indikácii názvu servera (SNI):
+this extension to the TLS 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==toto rozšírenie protokolu TLS musí byť povolené na načítanie niektorých https URL (pre webové stránky nasadené s rôznymi certifikátmi a názvami hostiteľov na rovnakej zdieľanej IP adrese), inak načítanie zlyhá s chybami ako napr.
+Received fatal alert: handshake_failure==Prijaté fatálne upozornenie: handshake_failure
+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==Môže však byť potrebné ho zakázať, aby sa načítali niektoré https URL obsluhované starými a nesprávne nakonfigurovanými webovými servermi, inak načítanie zlyhá s výnimkou
+javax.net.ssl.SSLProtocolException: "handshake alert: unrecognized_name"==javax.net.ssl.SSLProtocolException: "upozornenie na handshake: nerozpoznaný_názov"
+Controlling SNI extension activation can also be done with the JVM option==Ovládanie aktivácie rozšírenia SNI možno vykonať aj pomocou možnosti JVM
+jsse.enableSNIExtension==jsse.enableSNIErozšírenie
+, 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).==, ale v takom prípade sa vyžaduje reštart servera, keď chcete upraviť nastavenie a nie je možné ho prispôsobiť pre klienta http (všeobecné alebo pre vzdialeného Solr).
+General HTTP client==Všeobecný klient HTTP
+Configuration settings for the main HTTP client, used notably to crawl websites and communicate with other YaCy peers.==Nastavenia konfigurácie pre hlavného klienta HTTP používaného najmä na indexové prehľadávanie webových lokalít a komunikáciu s ostatnými YaCy partnermi.
+Enable SNI extension to TLS==Povoliť rozšírenie SNI na TLS
+Remote Solr HTTP client==Vzdialený klient Solr HTTP
+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).==Nastavenia konfigurácie pre konkrétneho klienta HTTP určeného na komunikáciu so vzdialenými servermi Solr (umiestnenými na iných YaCy peeroch alebo prípadne vlastnených týmto, keď je nakonfigurovaný na používanie vzdialeného indexu Solr).
+Changes will take effect immediately.==Zmeny sa prejavia okamžite.
+#-----------------------------
+
+#File: Settings_MessageForwarding.inc
+#---------------------------
+"Submit"=="Odoslať"
+Message Forwarding==Presmerovanie sprav
+With this settings you can activate or deactivate forwarding of yacy-messages via email.==S tymito nastaveniami mozete zapnut alebo vypnut presmerovanie YaCy sprav cez email.
+Enable message forwarding==Povoliť preposielanie správ
+Enabling/Disabling message forwarding via email.==Zapni/Vypni presmerovanie sprav cez email.
+Forwarding Command==Príkaz na presmerovanie
+The command-line program that should be used to forward the message.==Program príkazového riadka, ktorý by sa mal použiť na preposlanie správy.
+e.g.:==napr.:
+Forwarding To==Preposielanie na
+The recipient email-address.==E-mailová adresa príjemcu.
+Changes will take effect immediately.==Zmeny su okamzite ucinne.
+#-----------------------------
+
+#File: Settings_Proxy.inc
+#---------------------------
+"Submit"=="Odoslať"
+Remote Proxy (optional)==Vzdialený server proxy (voliteľné)
+YaCy can use another proxy to connect to the internet. You can enter the address for the remote proxy here:==YaCy moze pouzit iny proxy server na pripojenie k internetu. Na tomto mieste mozete zadat adresu tohoto vzdialeneho proxy servera:
+Use remote proxy==Použite vzdialený proxy
+Enables the usage of the remote proxy by yacy==Aktivuje pouzitie vzdialeneho proxy servera cez YaCy
+Use remote proxy for HTTPS==Použiť vzdialený 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.
+Remote proxy host==Vzdialený hostiteľ proxy
+The ip address or domain name of the remote proxy==IP adresa alebo nazov domeny vzdialeneho proxy servera
+Remote proxy port==Vzdialený port proxy
+the port of the remote proxy==Port vzdialeneho proxy servera
+Remote proxy user==Vzdialený používateľ proxy
+Remote proxy password==Heslo vzdialeného 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_ProxyAccess.inc
+#---------------------------
+"Submit"=="Odoslať"
+"change"=="zmeniť"
+Proxy Settings==Nastavenia servera proxy
+Transparent Proxy==Transparentný proxy
+With this you can specify if YaCy can be used as transparent proxy.==Tu mozete urcit ci moze byt YaCy pouzite ako transparentne proxy.
+Hint: On linux you can configure your firewall to transparently redirect all http traffic through yacy using this iptables rule:==Tip: V linuxe môžete nakonfigurovať svoj firewall tak, aby transparentne presmeroval všetok prenos http cez yacy pomocou tohto pravidla iptables:
+Always Fresh==Vždy čerstvé
+If unchecked, the proxy will act using Cache Fresh / Cache Stale rules. If checked, the cache is always fresh which means==Ak nie je začiarknuté, server proxy bude konať podľa pravidiel Cache Fresh / Cache Stale. Ak je začiarknuté, vyrovnávacia pamäť je vždy čerstvá, čo znamená
+that a page is never loaded again if it was already stored in the cache. However, if the page does not exist in the cache, it will be loaded in any case.==že stránka sa už nikdy nenačíta, ak už bola uložená vo vyrovnávacej pamäti. Ak však stránka vo vyrovnávacej pamäti neexistuje, v každom prípade sa načíta.
+Send "Via" Header==Odoslať hlavičku „Cez“.
+http header according to RFC 2616 Sect 14.45.==Hlavička http podľa RFC 2616 Sect 14.45.
+Send "X-Forwarded-For" Header==Odoslať hlavičku „X-Forwarded-For“.
+Specifies if the proxy should send the X-Forwarded-For http header.==Určuje, či má proxy odoslať hlavičku http X-Forwarded-For.
+Proxy Access Settings==Nastavenia prístupu proxy
+These settings configure the access method to your own http proxy and server.==Tieto nastavenia ovplyvnuju pristup na Vas HTTP proxy a HTTP server.
+All traffic is routed through one single port, for both proxy and server.==Všetka prevádzka je smerovaná cez jeden jediný port pre proxy aj server.
+HTTPS Server Port:==HTTPS Port servera:
+Server Access Restrictions==Obmedzenia pristupu k serveru
+You can restrict the access to this proxy/server using a two-stage security barrier:==Pristup k tomuto proxy resp. HTTP serveru mozete obmedzit pouzitym 2-stupnovej bezpecnostnej bariery:
+define an access domain with a list of granted client IP-numbers or with wildcards==definujte prístupovú doménu pomocou zoznamu pridelených klientskych IP-čísel alebo pomocou zástupných znakov
+define an user account with an user:password - pair==definovať používateľský účet pomocou user:password - pair
+This is the account that restricts access to the proxy function.==Toto je účet, ktorý obmedzuje prístup k funkcii proxy.
+You probably don't want to share the proxy to the internet, so you should set the==Pravdepodobne nechcete zdieľať proxy na internet, takže by ste mali nastaviť
+IP-Number Access Domain to a pattern that corresponds to you local intranet.==IP-Číslo prístupovej domény k vzoru, ktorý zodpovedá vášmu lokálnemu intranetu.
+The default setting should be right in most cases. If you want, you can also set a proxy account==Predvolené nastavenie by malo byť vo väčšine prípadov správne. Ak chcete, môžete si nastaviť aj proxy účet
+so that every proxy user must authenticate first, but this is rather unusual.==takže každý používateľ proxy sa musí najprv overiť, ale je to dosť nezvyčajné.
+IP-Number filter==IP-Filter čísel
+Accounts==účty
+#-----------------------------
+
+#File: Settings_Referrer.inc
+#---------------------------
+"'Referer' section from the standard IETF specification"=="Sekcia „Referer“ zo štandardnej špecifikácie IETF"
+"Link types section at W3C HTML specification"=="Sekcia typov odkazov v špecifikácii W3C HTML"
+"Submit"=="Odoslať"
+Referrer Policy Settings==Nastavenia zásad referencie
+When loading pages and navigating through links, a web browser sends some information about the origin of the request,==Pri načítavaní stránok a prechádzaní odkazmi odosiela webový prehliadač určité informácie o pôvode požiadavky,
+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.==Navštívené webové stránky môžu tieto informácie spracovať podľa vlastného uváženia, takže sa to môže stať problémom ochrany osobných údajov, napríklad pri príchode zo stránky, ktorá obsahuje hľadané výrazy vo svojom URL.
+This page offers some configuration settings to instruct your browser how it should fill this referrer information.==Táto stránka ponúka niektoré konfiguračné nastavenia, ktoré inštruujú váš prehliadač, ako má vyplniť tieto informácie o sprostredkovaní.
+Beware that every browser behaves differently: some settings may be unsupported by your particular browser and therefore ignored.==Pozor, každý prehliadač sa správa inak: niektoré nastavenia nemusí váš konkrétny prehliadač podporovať, a preto ich ignorujete.
+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.==Ak sa skutočne zaujímate o súkromie, skontrolujte, čo skutočne odosiela váš prehliadač, pomocou sieťovej konzoly vstavaných nástrojov pre vývojárov alebo pomocou analyzátora sieťovej prevádzky podľa vášho výberu.
+Global policy==Globálna politika
+This referrer policy applies for every page on this peer. It is set by the "meta" HTML tag.==Táto zásada sprostredkovateľa sa vzťahuje na každú stránku tohto partnera. Nastavuje sa pomocou značky „meta“ HTML.
+Values are sorted by decreasing privacy level.==Hodnoty sú zoradené podľa klesajúcej úrovne súkromia.
+no-referrer==no-referrer
+Highest privacy setting: referrer information should never be sent, even when navigating on this peer internal links.==Najvyššie nastavenie ochrany osobných údajov: informácie o sprostredkovateľovi by sa nikdy nemali odosielať, a to ani pri navigácii na interné odkazy tohto partnera.
+Be careful with this: some websites might reject requests with no referrer.==Buďte opatrní: niektoré webové stránky môžu odmietnuť žiadosti bez sprostredkovateľa.
+same-origin==rovnakého pôvodu
+Peer internal links: referrer information should be stripped from any private data and contain only this peer host name.==Interné odkazy partnera: informácie o sprostredkovateľovi by mali byť odstránené zo všetkých súkromných údajov a mali by obsahovať iba tento názov hostiteľa partnera.
+External links: referrer information should never be sent.==Externé odkazy: informácie o sprostredkovateľovi by sa nikdy nemali odosielať.
+strict-origin==prísneho pôvodu
+Peer internal and external links: referrer information should be stripped from any private data and contain only this peer host name.==Interné a externé odkazy partnera: informácie o sprostredkovateľovi by mali byť odstránené zo všetkých súkromných údajov a mali by obsahovať iba tento názov hostiteľa partnera.
+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.==Obmedzenie: keď odkaz prejde na nižšiu verziu zo zabezpečeného pripojenia TLS (https) na tomto partnerovi na nezabezpečený cieľ (http), nemali by sa odosielať žiadne informácie o sprostredkovaní.
+origin==pôvodu
+strict-origin-when-cross-origin==strict-origin-when-cross-origin
+Peer internal links: referrer information should contain full URLs.==Interné odkazy partnera: informácie o sprostredkovateľovi by mali obsahovať úplné adresy URL.
+External links: referrer information should be stripped from any private data and contain only this peer host name.==Externé odkazy: informácie o sprostredkovateľovi by mali byť odstránené zo všetkých súkromných údajov a mali by obsahovať iba tento názov hostiteľa.
+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.==Obmedzenie: keď externý odkaz prejde na nižšiu verziu zo zabezpečeného pripojenia TLS (https) na tomto partnerovi na nezabezpečený cieľ (http), nemali by sa odosielať žiadne informácie o sprostredkovaní.
+origin-when-cross-origin==origin-when-cross-origin
+no-referrer-when-downgrade==no-referrer-when-downgrade
+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).==Informácie o sprostredkovateľovi by mali obsahovať úplné adresy URL, okrem prípadov, keď odkaz prejde na nižšiu verziu zo zabezpečeného pripojenia TLS (https) na tomto partnerovi na nezabezpečený cieľ (http).
+empty value==prázdna hodnota
+Default browser behavior: it should correspond to "no-referrer-when-downgrade".==Predvolené správanie prehliadača: malo by zodpovedať „no-referrer-when-downgrade“.
+unsafe-url==unsafe-url
+Unsafe setting: referrer information should always contain full URLs.==Nebezpečné nastavenie: informácie o sprostredkovateľovi by mali vždy obsahovať úplné adresy URL.
+Custom setting: probably manually edited, be sure this value is the desired one.==Vlastné nastavenie: pravdepodobne manuálne upravené, uistite sa, že táto hodnota je požadovaná.
+Search results links==Odkazy na výsledky vyhľadávania
+Add the "noreferrer" link type to search results links==Pridajte typ odkazu „noreferrer“ k odkazom na výsledky vyhľadávania
+When checked, this overrides the global referrer policy and adds the standard "noreferrer"==Keď je začiarknuté, toto prepíše globálnu politiku sprostredkovateľa a pridá štandardný „noreferrer“
+thus instructing the browser that it should not send any referrer information at all when visiting them.==čím dávate prehliadaču pokyn, že by pri ich návšteve nemal odosielať vôbec žiadne informácie o sprostredkovaní.
+It is a standard HTML5 attribute value,==Ide o štandardnú hodnotu atribútu HTML5,
+supported by many more browsers than the meta tag: if you want a higher level of privacy but use an old or incompatible browser,==podporuje oveľa viac prehliadačov ako metaznačka: ak chcete vyššiu úroveň súkromia, ale používate starý alebo nekompatibilný prehliadač,
+this can be a valuable option.==toto môže byť cenná možnosť.
+Changes will take effect immediately.==Zmeny sa prejavia okamžite.
+#-----------------------------
+
+#File: Settings_Seed.inc
+#---------------------------
+"Submit"=="Odoslať"
+"Retry Uploading"=="Opakovať nahrávanie"
+Seed Upload Settings==Nastavenia nahravania seedu
+With these settings you can configure if you have an account on a public accessible==Tymito nastaveniami mozete urcit ci mate konto na verejne dostupnom
+server where you can host a seed-list file.==serveri, kde mozete dat k dispozicii subor seed-zoznamu
+General Settings:==Vseobecne nastavenia:
+If you enable one of the available uploading methods, you will become a principal peer.==Ak aktivujete jednu z dostupnych nahravacich metod, 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 have been changes to the seed-list.==avsak len ak sa v seed zozname vyskytli zmeny.
+Upload Method==Spôsob nahrávania
+Here you can specify which upload method should be used. Select 'none' to deactivate uploading.==Tu môžete určiť, ktorý spôsob nahrávania sa má použiť. Ak chcete deaktivovať nahrávanie, vyberte možnosť „žiadne“.
+URL==URL adresa
+The URL that can be used to retrieve the uploaded seed file, like==URL adresa ktora moze byt pouzita na ziskanie nahravacieho seedu ako
+http://www.<my-host>.net/yacy/seed.txt'==http://www.<my-host>.net/yacy/seed.txt'
+#-----------------------------
+
+#File: Settings_Seed_UploadFile.inc
+#---------------------------
+"Submit"=="Odoslať"
+Store into filesystem:==Uložiť do súborového systému:
+You must configure this if you want to store the seed-list file onto the file system.==Musíte to nakonfigurovať, ak chcete uložiť súbor zoznamu štartovacích bodov do systému súborov.
+File Location:==Umiestnenie súboru:
+Here you can specify the path within the filesystem where the seed-list file should be stored.==Tu môžete zadať cestu v rámci súborového systému, kde má byť uložený súbor so seed-listom.
+current:==aktuálne:
+#-----------------------------
+
+#File: Settings_Seed_UploadFtp.inc
+#---------------------------
+"Submit"=="Odoslať"
+Uploading via FTP:==Nahrávanie cez FTP:
+This is the account for a FTP server where you can host a seed-list file.==Toto je účet pre server FTP, na ktorom môžete hostiť súbor so zoznamom počiatočných hodnôt.
+If you set this, you will become a principal peer.==Ak toto nastavíte, stanete sa hlavným rovesníkom.
+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.==ale iba v prípade, že došlo k zmenám v štartovacom zozname.
+Server==Server
+The host where you have a FTP account, like 'ftp.<my-host>.net'==Hostiteľ, na ktorom máte účet FTP, napríklad ftp.<my-host>.net
+Path==Adresar
+The remote path on the FTP server, like 'yacy/seed.txt'. Missing sub-directories are NOT created automatically.==Vzdialená cesta na serveri FTP, napríklad 'yacy/seed.txt'. Chýbajúce podadresáre, NIE SÚ vytvorené automaticky.
+Username==Používateľské meno
+Your log-in at the FTP server==Vaše prihlásenie na serveri FTP
+Password==heslo
+The password==Heslo
+#-----------------------------
+
+#File: Settings_Seed_UploadScp.inc
+#---------------------------
+"Submit"=="Odoslať"
+Uploading via SCP:==Nahrávanie cez SCP:
+This is the account for a server where you are able to login via ssh.==Toto je účet pre server, kde sa môžete prihlásiť cez ssh.
+Server==Server
+The host where you have an account, like 'my.host.net'==Hostiteľ, na ktorom máte účet, napríklad „my.host.net“
+Server Port==Server Port
+The sshd port of the host, like '22'==Sshd port hostiteľa, napríklad „22“
+Path==Adresar
+The remote path on the server, like '~/yacy/seed.txt'. Missing sub-directories are NOT created automatically.==Vzdialená cesta na serveri, napríklad '~/yacy/seed.txt'. Chýbajúce podadresáre, NIE SÚ vytvorené automaticky.
+Username==Používateľské meno
+Your log-in at the server==Vaše prihlásenie na server
+Password==heslo
+The password==Heslo
+#-----------------------------
+
+#File: Settings_ServerAccess.inc
+#---------------------------
+"Submit"=="Odoslať"
+Server Access Settings==Nastavenia pristupu k serveru
+IP-Number filter:==Filter IP adries:
+(requires restart)==(vyžaduje reštart)
+Here you can restrict access to the server. By default, the access is not limited,==Tu môžete obmedziť prístup k serveru. V predvolenom nastavení nie je prístup obmedzený,
+because this function is needed to spawn the p2p index-sharing function.==pretože táto funkcia je potrebná na vytvorenie funkcie zdieľania indexu p2p.
+If you block access to your server (setting anything else than '*'), then you will also be blocked==Ak zablokujete prístup k svojmu serveru (nastavíte čokoľvek iné ako '*'), budete zablokovaní aj vy
+from using other peers' indexes for search service.==z používania indexov iných partnerov pre vyhľadávaciu službu.
+However, blocking access may be correct in enterprise environments where you only want to index your==Blokovanie prístupu však môže byť správne v podnikových prostrediach, kde chcete indexovať iba svoje
+company's own web pages.==vlastné webové stránky spoločnosti.
+Filter have to be entered as IP, IP range or using CIDR notation separated by comma (e.g. 192.168.1.1,2001:db8==Filter je potrebné zadať ako IP, rozsah IP alebo pomocou zápisu CIDR oddeleného čiarkou (napr. 192.168.1.1,2001:db8
+ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)==ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)
+further details on format see Jetty==ďalšie podrobnosti o formáte pozri Jetty
+staticIP (optional):==staticIP (voliteľné):
+The staticIP can help that your peer can be reached by other peers in case that your==Statická adresa IP môže pomôcť tomu, že váš partner bude oslovený inými partnermi v prípade, že váš
+peer is behind a firewall or proxy. You can create a tunnel through the firewall/proxy==partner je za bránou firewall alebo proxy. Môžete vytvoriť tunel cez bránu firewall/proxy
+(look out for 'tunneling through https proxy with connect command') and create==(pozrite si „tunelovanie cez https proxy s príkazom connect“) a vytvorte
+an access point for incoming connections.==prístupový bod pre prichádzajúce spojenia.
+This access address can be set here (either as IP number or domain name).==Túto prístupovú adresu možno nastaviť tu (buď ako číslo IP alebo názov domény).
+If the address of outgoing connections is equal to the address of incoming connections,==Ak je adresa odchádzajúcich spojení rovnaká ako adresa prichádzajúcich spojení,
+you don't need to set anything here, please leave it blank.==tu nemusíte nič nastavovať, nechajte to prázdne.
+If the value you enter here does not match with this IP,==Ak sa tu zadaná hodnota nezhoduje s týmto IP,
+you will not be able to access the server pages anymore.==už nebudete mať prístup k stránkam servera.
+publicPort (optional):==publicPort (voliteľné):
+The publicPort can help that your peer can be reached by other peers in case that your==PublicPort môže pomôcť tomu, že váš partner môže byť dosiahnutý inými partnermi v prípade, že váš
+peer is behind a reverse proxy.==partner je za reverzným proxy serverom.
+If the port used to access YaCy is the same port the application is listening on,==Ak je port používaný na prístup k YaCy rovnaký port, na ktorom aplikácia počúva,
+fileHost:==fileHost:
+Set this to avoid error-messages like 'proxy use not allowed / granted' on accessing your Peer by its hostname.==Nastavte toto, aby ste sa vyhli chybovým hláseniam, ako napríklad „použitie proxy nie je povolené / povolené“ pri prístupe k vášmu Peerovi podľa názvu hostiteľa.
+Virtual host for httpdFileServlet access for example http://FILEHOST/ shall access the file servlet and==Virtuálny hostiteľ pre prístup httpdFileServlet, napríklad http://FILEHOST/, bude mať prístup k servletu súboru a
+return the defaultFile at rootPath either way, http://FILEHOST/ denotes the same as http://localhost:<port>/==vráťte predvolený súbor na koreňovú cestu v oboch smeroch, http://FILEHOST/ označuje to isté ako http://localhost:<port>/
+for the preconfigured value 'localpeer', the URL is: http://localpeer/.==pre vopred nakonfigurovanú hodnotu 'localpeer' je URL: http://localpeer/.
+Server Port Settings==Nastavenia portu servera
+Server port:==Port servera:
+This is the main port for all http communication (default is 8090). A change requires a restart.==Toto je hlavný port pre všetku komunikáciu http (predvolené je 8090). Zmena vyžaduje reštart.
+Server ssl port:==Ssl port servera:
+This is the port to connect via https (default is 8443). A change requires a restart.==Toto je port na pripojenie cez https (predvolená hodnota je 8443). Zmena vyžaduje reštart.
+Shutdown port:==Vypínací port:
+This is the local port on the loopback address (127.0.0.1 or :1) to listen for a shutdown signal to stop the YaCy server (-1 disables the shutdown port, recommended default is 8005). A change requires a restart.==Toto je lokálny port na adrese spätnej slučky (127.0.0.1 alebo :1), ktorý bude počúvať signál vypnutia na zastavenie servera YaCy (-1 zakáže port vypnutia, odporúčaná predvolená hodnota je 8005). Zmena vyžaduje reštart.
+Compression settings==Nastavenia kompresie
+Compress responses with gzip==Komprimujte odpovede pomocou gzip
+When checked (default), HTTP responses can be compressed using gzip.==Keď je začiarknuté (predvolené), odpovede HTTP možno komprimovať pomocou gzip.
+The requesting user-agent (a web browser, another YaCy peer or any other tool) uses the header 'Accept-Encoding' to tell whether it accepts gzip compression or not.==Požadujúci používateľský agent (webový prehliadač, iný YaCy peer alebo akýkoľvek iný nástroj) používa hlavičku „Accept-Encoding“ na zistenie, či akceptuje kompresiu gzip alebo nie.
+This adds some processing overhead, but can significantly reduce the amount of bytes transmitted over the network.==To zvyšuje réžiu spracovania, ale môže výrazne znížiť množstvo bajtov prenášaných cez sieť.
+Changes need a server restart.==Zmeny vyžadujú reštart servera.
+#-----------------------------
+
+#File: Settings_UrlProxyAccess.inc
+#---------------------------
+"Submit"=="Odoslať"
+URL Proxy Settings==URL Nastavenia servera proxy
+With this settings you can activate or deactivate URL proxy.==Pomocou týchto nastavení môžete aktivovať alebo deaktivovať server proxy URL.
+Service call: http://localhost:8090/proxy.html?url=parameter, where parameter is the url of an external web page.==Servisné volanie: http://localhost:8090/proxy.html?url=parameter, kde parameter je adresa URL externej webovej stránky.
+URL proxy:==URL proxy:
+Enabled==Povolené
+Globally enables or disables URL proxy via http://yourpeer:yourport/proxy.html?url=http://externalurl/==Globálne povoľuje alebo zakazuje URL proxy cez http://yourpeer:yourport/proxy.html?url=http://externalurl/
+Show search results via URL proxy:==Zobraziť výsledky vyhľadávania cez URL proxy:
+Enables or disables URL proxy for all search results. If enabled, all search results will be tunneled through URL proxy.==Povolí alebo zakáže proxy server URL pre všetky výsledky vyhľadávania. Ak je táto možnosť povolená, všetky výsledky vyhľadávania budú tunelované cez URL proxy.
+Alternatively you may add this javascript to your browser favorites/short-cuts, which will reload the current browser address==Prípadne môžete tento javascript pridať medzi obľúbené položky prehliadača/short-cuts,, čím sa znova načíta aktuálna adresa prehliadača
+via the YaCy proxy servlet.==cez proxy servlet YaCy.
+or right-click this link and add to favorites:==alebo kliknite pravým tlačidlom myši na tento odkaz a pridajte medzi obľúbené:
+Restrict URL proxy use:==Obmedziť používanie servera proxy URL:
+Define client filter. Default: 127.0.0.1,0:0:0:0:0:0:0:1.==Definujte filter klienta. Predvolená hodnota: 127.0.0.1,0:0:0:0:0:0:0:1.
+URL substitution:==URL nahradenie:
+Define URL substitution rules which allow navigating in proxy environment. Possible values: all, domainlist. Default: domainlist.==Definujte pravidlá nahrádzania URL, ktoré umožňujú navigáciu v prostredí proxy. Možné hodnoty: all, domainlist. Predvolené: zoznam domén.
+#-----------------------------
+
+#File: Settings_p.html
+#---------------------------
+Advanced Settings==Pokrocilé nastavenia
+If you want to restore all settings to the default values,==Ak chcete obnovit povodne nastavenia,
+but forgot your administration password, you must stop the proxy,==ale zabudli ste heslo správcu, musíte zastaviť server proxy,
+delete the file 'DATA/SETTINGS/yacy.conf' in the YaCy application root folder and start YaCy again.==zmazat subor 'DATA/SETTINGS/yacy.conf' v domovskom adresary YaCy a YaCy restartovat (prikaz 'startYaCy.*')
+Server Access Settings==Nastavenia pristupu k serveru
+Referrer Policy Settings==Nastavenia zásad referencie
+Crawler Settings==Nastavenia prehľadávača
+Seed Upload Settings==Nastavenia seed-uploadu
+Message Forwarding (optional)==Preposielanie sprav (nepovinne)
+Transparent Proxy Access Settings==Nastavenia transparentného prístupu k proxy
+URL/Web Proxy Access Settings==Nastavenia prístupu k serveru proxy URL/Web
+Remote Proxy (optional)==Vzdialený server proxy (voliteľné)
+Debug/Analysis Settings==Nastavenia ladenia/Analysis
+HTTP client Settings==HTTP nastavenia klienta
+#-----------------------------
+
+#File: Status.html
+#---------------------------
+"Fork me on GitHub"=="Fork me na GitHub"
+"YaCy Websearch"=="YaCy Vyhľadávanie na webe"
+"PerformanceGraph"=="PerformanceGraph"
+"banner"=="banner"
+"bad"=="zlý"
+"idea"=="nápad"
+"Update YaCy"=="Aktualizovať YaCy"
+"lock icon"=="ikona zámku"
+"good"=="dobre"
+Log-in as administrator to see full status==Ak chcete vidieť úplný stav, prihláste sa ako správca
+Welcome to YaCy!==Vitajte v YaCy!
+Your settings are _not_ protected!==Vase nastavenia _nie_su_ chranene heslom!
+and set an administration password.==a nastavte heslo správcu.
+You have not published your peer seed yet. This happens automatically, just wait.==Zatiaľ ste nezverejnili svoje semeno rovesníkov. Toto sa deje automaticky, stačí počkať.
+Your network configuration is in private mode. Your peer seed will not be published.==Vaša konfigurácia siete je v súkromnom režime. Váš partnerský zdroj nebude zverejnený.
+Access is unrestricted from localhost (this includes administration features).==Prístup je neobmedzený z localhost (to zahŕňa administračné funkcie).
+The peer must go online to get a peer address.==Partner musí byť online, aby získal adresu partnera.
+You cannot be reached from outside.==Nie je možné sa k vám dostať zvonku.
+A possible reason is that you are behind a firewall, NAT or Router.==Možným dôvodom je, že ste za bránou firewall, NAT alebo smerovačom.
+global index on your own search page.==globálny index na vašej vlastnej stránke vyhľadávania.
+We encourage you to open your firewall for the port you configured (usually: 8090),==Odporúčame vám otvoriť bránu firewall pre port, ktorý ste nakonfigurovali (zvyčajne: 8090),
+or to set up a 'virtual server' in your router settings (often called DMZ).==alebo nastaviť „virtuálny server“ v nastaveniach smerovača (často nazývaný DMZ).
+Please be fair, contribute your own index to the global index.==Buďte prosím spravodliví a prispejte svojim vlastným indexom do globálneho indexu.
+it as soon as possible and restart YaCy.==čo najskôr a reštartujte YaCy.
+Crawling is paused! If the crawling was paused automatically, please check your disk space.==Crawling is paused! Ak bolo prehľadávanie automaticky pozastavené, skontrolujte miesto na disku.
+You can download a more recent version of YaCy. Click here to install this update and restart YaCy:==Môžete si stiahnuť novšiu verziu YaCy. Kliknutím sem nainštalujte túto aktualizáciu a reštartujte YaCy:
+You are running a server in senior mode and you support the global internet index,==Prevádzkujete server v seniorskom režime a podporujete globálny internetový index,
+You have a principal peer because you publish your seed-list to a public accessible server==Máte hlavného partnera, pretože publikujete svoj počiatočný zoznam na verejne prístupnom serveri
+If you need professional support, please write to==Ak potrebujete odbornú podporu, napíšte na
+support@yacy.net==podpora@yacy.net
+#-----------------------------
+
+#File: Status_p.inc
+#---------------------------
+System Status==Stav systému
+System==systém
+Unknown==Neznámy
+Protection==Ochrana
+Default password is not changed==Predvolené heslo sa nezmení
+[Configure]==[Konfigurovať]
+password-protected==chránené heslom
+Address==Adresa
+peer address not assigned==partnerská adresa nie je pridelená
+Port Forwarding Host==Hostiteľ presmerovania portov
+broken==prerusene
+connected==spojene
+Proxy==Proxy
+Transparent==Transparentné
+on==na
+off==vypnuté
+URL==URL adresa
+Remote:==Diaľkové ovládanie:
+not used==nepouzite
+Yes==Ano
+No==Nie
+Auto-popup on start-up==Auto-Popup pri starte
+Tray-Icon==Ikona zásobníka
+Experimental==Experimentálne
+Memory Usage==Spotreba pamate
+RAM used:==Použitá RAM:
+RAM max:==RAM max:
+DISK used:==Použitý DISK:
+DISK free:==DISK zadarmo:
+Incoming Connections==Prichadzajuce spojenia
+Queues==Fronty
+Local Crawl==Lokalne crawlovat
+(paused)==(pozastavené)
+Remote triggered Crawl==prichadzajuce vzialene crawly
+Pre-Queueing==Predbežné poradie
+Seed server==Seed server
+Disabled.==Zakázané.
+#-----------------------------
+
+#File: Steering.html
+#---------------------------
+"Kaskelix"=="Kaskelix"
+"Restart"=="Reštartujte"
+"Shutdown"=="Vypnutie"
+No action submitted==Nebola odoslaná žiadna akcia
+Re-Start==Reštartujte
+Shutdown==Vypnutie
+Your system is not protected by a password==Vas system nie je chraneny heslom
+You don't have the correct access right to perform this task.==Nemate prava na spustenie tejto aplikacie.
+Please log in.==Prosim prihlaste sa.
+See you soon!==Do skorého videnia!
+Application will terminate after working off all scheduled tasks.==YaCy proxy bude ukonceny po vykonani vsetkych nasledujucich uloh.
+Please send us feed-back!==Pošlite nám spätnú väzbu!
+We don't track YaCy users, YaCy does not send 'home-pings', we do not even know how many people use YaCy as their private search engine.==Nesledujeme YaCy používateľov, YaCy neposiela 'home-ping', dokonca ani nevieme, koľko ľudí používa YaCy ako svoj súkromný vyhľadávací nástroj.
+Therefore we like to ask you: do you like YaCy? Will you use it again... if not, why? Is it possible that we change a bit to suit your needs?==Preto sa vás radi pýtame: páči sa vám YaCy? Použiješ to znova... ak nie, prečo? Je možné, že sa trochu zmeníme, aby sme vyhovovali vašim potrebám?
+Please send us feed-back about your experience with an==Pošlite nám spätnú väzbu o vašich skúsenostiach s a
+or a==alebo a
+Professional Support==Profesionálna podpora
+Just a moment, please!==Len chvíľu, prosím!
+Then YaCy will restart.==Potom sa YaCy restartuje.
+If you can't reach YaCy's interface after 5 minutes restart failed.==Ak sa nemôžete dostať k rozhraniu YaCy po 5 minútach, reštartovanie zlyhalo.
+YaCy will be restarted after installation.==YaCy sa po inštalácii reštartuje.
+The file you are trying to install is not located in the release directory.==Súbor, ktorý sa pokúšate nainštalovať, sa nenachádza v adresári vydania.
+You are in a development environment or the file you are trying to install is empty.==Nachádzate sa vo vývojovom prostredí alebo súbor, ktorý sa pokúšate nainštalovať, je prázdny.
+#-----------------------------
+
+#File: Supporter.html
+#---------------------------
+"YaCy Supporter"=="Podporovateľ YaCy"
+"bookmark"=="záložka"
+"Add to bookmarks"=="Pridať do záložiek"
+"positive vote"=="kladné hlasovanie"
+"Give positive vote"=="Dajte kladný hlas"
+"negative vote"=="negatívny hlas"
+"Give negative vote"=="Dajte negatívny hlas"
+Supporter==Podporovateľ
+Supporter are switched off for users without authorization==Supporter sú vypnuté pre používateľov bez povolenia
+#-----------------------------
+
+#File: Surftips.html
+#---------------------------
+"YaCy Surftips"=="YaCy tipy na surfovanie"
+"bookmark"=="záložka"
+"Add to bookmarks"=="Pridať do záložiek"
+"positive vote"=="kladné hlasovanie"
+"Give positive vote"=="Dajte kladný hlas"
+"negative vote"=="negatívny hlas"
+"Give negative vote"=="Dajte negatívny hlas"
+"authentication required"=="potrebná autentifikácia"
+Surftips==Tipy na surfovanie
+Surftips are switched off for users without authorization==Surftips sú vypnuté pre používateľov bez povolenia
+YaCy Supporters==YaCy Podporovatelia
+a list of home pages of yacy users==zoznam domovských stránok používateľov yacy
+Show surftips to everyone==Ukážte tipy na surfovanie všetkým
+Hide surftips for users without authorization==Skryť tipy na surfovanie pre používateľov bez povolenia
+#-----------------------------
+
+#File: Table_RobotsTxt_p.html
+#---------------------------
+"robots.txt Table"=="Tabuľka robots.txt"
+"API"=="API"
+The information that is presented on this page can also be retrieved as XML.==Informácie uvedené na tejto stránke je možné získať aj ako XML.
+Click the API icon to see the XML.==Kliknutím na ikonu API zobrazíte XML.
+robots.txt table==tabuľku robots.txt
+#-----------------------------
+
+#File: Tables_p.html
+#---------------------------
+"Tables"=="Tabuľky"
+"Search"=="Hľadať"
+"Edit Selected Row"=="Upraviť vybratý riadok"
+"Add a new Row"=="Pridať nový riadok"
+"Delete Selected Rows"=="Odstrániť vybraté riadky"
+"Delete Table"=="Odstrániť tabuľku"
+"Commit"=="Zaviazať sa"
+Table Administration==Správa tabuľky
+Table Selection==Výber tabuľky
+Select Table:==Vybrať tabuľku:
+show max.==zobraziť max.
+all==všetky
+entries,==záznamy,
+reverse:==obrátene:
+search rows for==hľadať v riadkoch
+PK==PK
+Row Editor==Editor riadkov
+Primary Key==Primárny kľúč
+#-----------------------------
+
+#File: Threaddump_p.html
+#---------------------------
+"Single Threaddump"=="Single Threaddump"
+"Multiple Dump Statistic"=="Štatistika viacerých výpisov"
+YaCy Debugging: Thread Dump==YaCy Ladenie: Výpis vlákien
+Threaddump==Threaddump
+#-----------------------------
+
+#File: ToolsConfig_p.html
+#---------------------------
+Tools==Nástroje
+Add superpowers to the YaCy Chat. Tools may be disabled by setting maxCallsPerTurn to 0.==Pridajte superschopnosti do chatu YaCy. Nástroje možno deaktivovať nastavením maxCallsPerTurn na 0.
+Tool settings were saved.==Nastavenia nástroja boli uložené.
+Basic Tools==Základné nástroje
+maxCallsPerTurn==maxCallsPerTurn
+disable==zakázať
+Visualization Tools==Vizualizačné nástroje
+Data Retrieval Tools==Nástroje na získavanie údajov
+Save Tools Configuration==Uložiť konfiguráciu nástrojov
+#-----------------------------
+
+#File: Trails.html
+#---------------------------
+CyTag Trails==CyTag Trails
+#-----------------------------
+
+#File: TransNews_p.html
+#---------------------------
+"Publish"=="Publikovať"
+"negative vote"=="negatívny hlas"
+"positive vote"=="kladné hlasovanie"
+You can share your local addition to translations and distribute it to other peers.==Svoj miestny doplnok môžete zdieľať s prekladmi a distribuovať ho ďalším kolegom.
+The remote peer can vote on your translation and add it to its own local translation.==Vzdialený partner môže hlasovať o vašom preklade a pridať ho do svojho vlastného lokálneho prekladu.
+File:==Súbor:
+Originator==Autor
+English:==angličtina:
+existing==existujúce
+Translation:==preklad:
+Vote on this translation. If you vote positive the translation is added to your local translation list.==Hlasujte za tento preklad. Ak zahlasujete kladne, preklad sa pridá do vášho miestneho zoznamu prekladov.
+#-----------------------------
+
+#File: Translator_p.html
+#---------------------------
+"Save translation"=="Uložiť preklad"
+Translation Editor==Editor prekladov
+Translate untranslated text of the user interface (current language). The modified translation file is stored in DATA/LOCALE directory.==Preložiť nepreložený text používateľského rozhrania (aktuálny jazyk). Upravený prekladový súbor je uložený v adresári DATA/LOCALE.
+UI Translation==Preklad používateľského rozhrania
+Source File==Zdrojový súbor
+view it==pozri si to
+filter untranslated==filter nepreložený
+Source Text==Zdrojový text
+#-----------------------------
+
+#File: User.html
+#---------------------------
+"login"=="prihlásenie"
+"logout"=="odhlásenie"
+"red bar"=="červený pruh"
+"green bar"=="zelený pruh"
+"Change"=="Zmeniť"
+User Page==Používateľská stránka
+You are not logged in.==Nie ste prihlásený.
+Username:==Používateľské meno:
+Password:==heslo:
+(Identified by==(Identifikované podľa
+IP==IP
+Username/Password==Používateľské meno/Password
+Cookie==Cookie
+old Password==staré heslo
+new Password==nové heslo
+new Password(repetition)==nové heslo (opakovanie)
+You are currently logged in as admin.==Momentálne ste prihlásený ako admin.
+(after logout you will be prompted for your password again. simply click "cancel")==(po odhlásení budete opäť vyzvaní na zadanie hesla. jednoducho kliknite na "zrušiť")
+Password was changed.==Heslo bolo zmenené.
+Old Password is wrong.==Staré heslo je nesprávne.
+New Password and its repetition do not match.==Nové heslo a jeho opakovanie sa nezhodujú.
+New Password is empty.==Nové heslo je prázdne.
+#-----------------------------
+
+#File: VFS.html
+#---------------------------
+"File system browser"=="Prehliadač súborového systému"
+"Root contents"=="Obsah koreňa"
+Virtual File System==Virtuálny súborový systém
+User storage in the browser cache with file-system-like navigation.==Používateľské úložisko vo vyrovnávacej pamäti prehliadača s navigáciou podobnou súborovému systému.
+New Folder==Nový priečinok
+Upload File==Nahrať súbor
+No files yet. Upload a file or create a folder.==Zatiaľ žiadne súbory. Nahrajte súbor alebo vytvorte priečinok.
+Preview==Ukážka
+Edit file==Upraviť súbor
+Discard==Zahodiť
+Save==Uložiť
+#-----------------------------
+
+#File: ViewFile.html
+#---------------------------
+"API"=="API"
+"Show Metadata"=="Zobraziť metadáta"
+"Browse Host"=="Prehľadávať hostiteľa"
+"Show Snippet"=="Zobraziť úryvok"
+"Show"=="Zobraziť"
+"action"=="akcie"
+See the page info about the url.==Pozrite si informácie na stránke o adrese URL.
+View URL Content==Zobraz obsah URL adresy
+Get URL Viewer==Získajte URL Viewer
+URL:==URL:
+Search in Document:==Hľadať v dokumente:
+URL Metadata==URL Metadáta
+Hash:==Hash:
+In Metadata:==V metadátach:
+no==nie
+yes==áno
+In Cache:==Vo vyrovnávacej pamäti:
+First Seen:==Prvýkrát videný:
+Word Count:==Počet slov:
+Description:==Popis:
+Size:==Veľkosť:
+MimeType:==MimeType:
+Collections:==zbierky:
+View as==Zobraziť ako
+Original from Web==Originál z webu
+Original from Cache==Originál z Cache
+Plain Text==Plain text
+Parsed Text==Parsovany text
+Parsed Sentences==Parsovane vety
+Parsed Tokens/Words==Analyzované tokeny/Words
+Link List==Zoznam odkazov
+Schema Fields==Polia schém
+Citation Report==Citačná správa
+Unable to find URL Entry in DB==Nebolo mozne najst URL zaznam v databaze.
+Invalid URL==Neplatna URL
+Unable to download resource content.==Nebolo mozne stiahnut obsah zdroja.
+Unable to parse resource content.==Nebolo mozne parsovat obsah zdroja.
+Unsupported protocol.==Nepodporovaný protokol.
+Snippet==Úryvok
+Headline==Nadpis
+Teaser Text==Text upútavky
+Original Content from Web==Pôvodný obsah z webu
+Parsed Content==Analyzovaný obsah
+dc:title==dc:title
+dc:creator==dc:tvorca
+dc:subject==dc:predmet
+dc:description==dc:popis
+dc:publisher==dc:publisher
+dc:format==dc:formát
+dc:identifier==dc:identifikátor
+dc:source==dc:zdroj
+geo:lat & geo:long==geo:lat & geo:long
+nr==č
+type==typu
+name==meno
+link==odkaz
+text==text
+rel==rel
+Parsed Tokens==Analyzované tokeny
+CitationReport==CitationReport
+#-----------------------------
+
+#File: ViewLog_p.html
+#---------------------------
+"refresh"=="aktualizuj"
+Server Log==Denník servera
+reversed order==v prevratenom poradi
+regex==regulárny výraz
+terms==podmienky
+Invalid regular expression filter.==Neplatný filter regulárneho výrazu.
+#-----------------------------
+
+#File: ViewProfile.html
+#---------------------------
+"vCard"=="vCard"
+"rdf:foaf"=="rdf:foaf"
+"Onlinestatus"=="Online stav"
+Local Peer Profile:==Miestny profil partnera:
+Remote Peer Profile:==Profil vzdialeneho peera:
+Wrong access of this page==Nespravny pristup na tuto stranku
+The requested peer is unknown or a potential peer.==Požadovaný partner je neznámy alebo potenciálny partner.
+The profile can't be fetched.==Profil sa nedá načítať.
+Name==Meno
+Nick Name==Nick Name
+Homepage==Domovska stranka
+eMail==eMail
+ICQ==ICQ
+Jabber==Jabber
+Yahoo!==Yahoo!
+MSN==MSN
+Skype==Skype
+Comment==Komentar
+vCard==vCard
+#-----------------------------
+
+#File: Vocabulary_p.html
+#---------------------------
+"API"=="API"
+"View"=="Zobraziť"
+"Uniform Resource Locator"=="Uniform Resource Locator"
+"Standard CSV field delimiter"=="Štandardný oddeľovač polí CSV"
+"Create"=="Vytvorte"
+"Submit"=="Odoslať"
+The information that is presented on this page can also be retrieved as XML==Informácie uvedené na tejto stránke je možné získať aj ako XML
+Click the API icon to see the RDF Ontology definition for this vocabulary.==Kliknutím na ikonu API zobrazíte definíciu ontológie RDF pre tento slovník.
+Vocabulary Administration==Správa slovnej zásoby
+Vocabularies can be used to produce a search navigation. A vocabulary must be created before content is indexed.==Na vytvorenie navigácie pri vyhľadávaní možno použiť slovníky. Pred indexovaním obsahu je potrebné vytvoriť slovnú zásobu.
+The vocabulary is used to annotate the indexed content with a reference to the object that is denoted by the term of the vocabulary.==Slovná zásoba sa používa na anotáciu indexovaného obsahu odkazom na objekt, ktorý je označený výrazom slovnej zásoby.
+The object can be denoted by a url stub that, combined with the term, becomes the url for the object.==Objekt môže byť označený stubom adresy URL, ktorý sa v kombinácii s výrazom stane adresou URL objektu.
+Vocabulary Selection==Výber slovnej zásoby
+Vocabulary Name==Názov slovnej zásoby
+Vocabulary Production==Tvorba slovnej zásoby
+Please provide a CSV file path or URL.==Zadajte cestu k súboru CSV alebo URL.
+Empty Vocabulary==Prázdna slovná zásoba
+Auto-Discover==Auto-Discover
+from file name==z názvu súboru
+from page title==z názvu stránky
+from page title (split)==z názvu stránky (rozdeliť)
+from page author==od autora stránky
+Objectspace==Priestor objektov
+It is possible to produce a vocabulary out of the existing search index. This is done using a given 'objectspace' which you can enter as a URL Stub.==Je možné vytvoriť slovnú zásobu z existujúceho indexu vyhľadávania. Toto sa vykonáva pomocou daného „priestoru objektov“, ktorý môžete zadať ako URL Stub.
+This stub is used to find all matching URLs. If the remaining path from the matching URLs then denotes a single file, the file name is used as vocabulary term.==Tento stub sa používa na nájdenie všetkých zodpovedajúcich adries URL. Ak zostávajúca cesta zo zodpovedajúcich adries URL označuje jeden súbor, názov súboru sa použije ako výraz v slovnej zásobe.
+This works best with wikis. Try to use a wiki url as objectspace path.==Toto funguje najlepšie s wiki. Skúste použiť adresu URL wiki ako cestu k priestoru objektov.
+Import from a csv file==Importovať zo súboru csv
+File Path or URL==Cesta k súboru alebo URL
+Start line==Štartovacia čiara
+(first has index 0)==(prvý má index 0)
+Column for Literals==Stĺpec pre literály
+Synonyms==Synonymá
+no Synonyms==žiadne synonymá
+Auto-Enrich with Synonyms from Stemming Library==Automatické obohatenie o synonymá z knižnice Stemming
+Read Column==Prečítajte si stĺpec
+Column for Object Link (optional)==Stĺpec pre odkaz na objekt (voliteľné)
+(first has index 0, if unused set -1)==(prvý má index 0, ak sa nepoužíva, nastavte -1)
+Charset of Import File==Znaková sada importovaného súboru
+Column separator==Oddeľovač stĺpcov
+Comma ','==Čiarka ','
+Semicolon ';'==Bodkočiarka ';'
+Vocabulary Editor==Editor slovnej zásoby
+File==Súbor
+[automatically generated, not stored, cannot be edited]==[automaticky generované, neuložené, nemožno upravovať]
+Size==Veľkosť
+Namespace==Menný priestor
+Predicate==Predikát
+Prefix==Predpona
+Is Facet?==Je Facet?
+(If checked, this vocabulary is used for search facets. Not feasible for large vocabularies!)==(Ak je začiarknuté, tento slovník sa používa na vyhľadávanie aspektov. Nie je možné použiť veľké slovníky!)
+Match terms from==Zhoda výrazov z
+Cleartext==Čistý text
+Linked data/Semantic web annotations==Prepojené údaje/Semantic webové anotácie
+Modify==Upraviť
+Delete==Zmaz
+Literal==Doslovný
+Object Link==Odkaz na objekt
+add==pridať
+clear table (remove all terms)==vymazať tabuľku (odstrániť všetky výrazy)
+delete vocabulary==vymazať slovnú zásobu
+#-----------------------------
+
+#File: WatchWebStructure_p.html
+#---------------------------
+"API"=="API"
+"minus"=="mínus"
+"plus"=="plus"
+"change"=="zmeniť"
+"WebStructurePicture"=="WebStructurePicture"
+The data that is visualized here can also be retrieved in a XML file, which lists the reference relation between the domains.==Údaje, ktoré sú tu vizualizované, je možné získať aj v súbore XML, ktorý uvádza referenčný vzťah medzi doménami.
+With a GET-property 'about' you get only reference relations about the host that you give in the argument field for 'about'.==S vlastnosťou GET 'about' získate iba referenčné vzťahy o hostiteľovi, ktoré zadáte v poli argumentov pre 'about'.
+With a GET-property 'latest' you get a list of references that had been computed during the current run-time of YaCy, and with each next call only an update to the next list of references.==S vlastnosťou GET „najnovšia“ získate zoznam referencií, ktoré boli vypočítané počas aktuálneho spustenia YaCy, a pri každom ďalšom volaní iba aktualizáciu na ďalší zoznam referencií.
+Click the API icon to see the XML file.==Kliknutím na ikonu API zobrazíte súbor XML.
+Web Structure==Webová štruktúra
+Host List==Zoznam hostiteľov
+host==hostiteľ
+depth==hĺbka
+nodes==uzly
+time==čas
+size==veľkosť
+Background==Pozadie
+Color==Farba
+Text==Text
+Line==Linka
+Pivot Dot==Pivot Dot
+Other Dot==Iná bodka
+Dot-end==Dot-end
+#-----------------------------
+
+#File: Wiki.html
+#---------------------------
+"all"=="všetky"
+"admin"=="admin"
+"Submit"=="Odoslať"
+"Preview"=="Ukážka"
+"Discard"=="Zahodiť"
+"Show"=="Zobraziť"
+"Compare"=="Porovnaj"
+(only granted to admin)==(udelené iba správcovi)
+Index -==Index -
+Grant Write Access to==Udeliť prístup na zápis pre
+Edit==Edituj
+Author:==Autor:
+Text:==Text:
+Preview==Ukážka
+No changes have been submitted so far!==Ziadne zmeny este neboli vytvorene!
+Index==Index
+Subject==Predmet
+Change Date==Zmeniť dátum
+Last Author==Posledný autor
+Start Page==Úvodná stránka
+Versions==Verzie
+Compare version from==Porovnať verziu z
+with version from==s verziou od
+Error==Chyba
+You can use==Môžete použiť
+Changes will be published as announcement on YaCyNews==Zmeny budu zverejnene pomocou oznamov na YaCyNews-och
+#-----------------------------
+
+#File: WikiHelp.html
+#---------------------------
+Wiki-Code==Wiki-kód
+This table contains a short description of the tags that can be used in the Wiki and several other servlets==Táto tabuľka obsahuje krátky popis značiek, ktoré možno použiť vo Wiki a niekoľkých ďalších servletoch
+of YaCy. For a more detailed description visit the==z YaCy. Pre podrobnejší popis navštívte
+Code==kód
+Description==Popis
+These tags create headlines. If a page has three or more headlines, a table of content will be created automatically. Headlines of level 1 will be ignored in the table of content.==Tieto značky vytvárajú nadpisy. Ak má stránka tri alebo viac nadpisov, automaticky sa vytvorí obsah. Nadpisy úrovne 1 budú v obsahu ignorované.
+''text'' '''text''' '''''text'''''==''text''' '''text''' '''''text'''''
+These tags create stressed texts. The first pair emphasizes the text (most browsers will display it in italics),==Tieto značky vytvárajú stresované texty. Prvý pár zdôrazňuje text (väčšina prehliadačov ho zobrazí kurzívou),
+the second one emphasizes it more strongly (i.e. bold) and the last tags create a combination of both.==druhý to zvýrazňuje výraznejšie (t.j. tučné) a posledné značky vytvárajú kombináciu oboch.
+<s>text</s>==<s>text</s>
+Text will be displayed==Zobrazí sa text
+struck through==prerazený
+<u>text</u>==<u>text</u>
+underlined==podčiarknuté
+text==text
+Lines will be indented. This tag is supposed to mark citations, but may as well be used for styling purposes.==Riadky budú odsadené. Táto značka má označovať citácie, ale môže sa použiť aj na účely úpravy štýlu.
+These tags create a numbered list.==Tieto značky vytvárajú očíslovaný zoznam.
+These tags create an unnumbered list.==Tieto značky vytvárajú nečíslovaný zoznam.
+;word 1:definition 1==;slovo 1:definícia 1
+;word 2:definition 2==;slovo 2:definícia 2
+;;word 3:definition 3==;;slovo 3:definícia 3
+;word 4:definition 4==;slovo 4:definícia 4
+These tags create a definition list.==Tieto značky vytvárajú zoznam definícií.
+This tag creates a horizontal line.==Táto značka vytvára vodorovnú čiaru.
+[[pagename]]==[[názov stránky]]
+[[pagename|description]]==[[názov stránky|popis]]
+This tag creates links to other pages of the wiki.==Táto značka vytvára odkazy na iné stránky wiki.
+[url]==[url]
+[url description]==[popis adresy URL]
+This tag creates links to external websites.==Táto značka vytvára odkazy na externé webové stránky.
+[[Image:url]]==[[Image:url]]
+[[Image:url|alt text]]==[[Image:url|alt text]]
+[[Image:url|align|alt text]]==[[Image:url|align|alt text]]
+This tag displays an image, it can be aligned left, right or center.==Táto značka zobrazuje obrázok, môže byť zarovnaný vľavo, vpravo alebo na stred.
+[[Youtube:id]]==[[Youtube:id]]
+[[Vimeo:id]]==[[Vimeo:id]]
+This tag displays a Youtube or Vimeo video with the id specified and fixed width 425 pixels and height 350 pixels.==Táto značka zobrazuje video YouTube alebo Vimeo so špecifikovaným ID a pevnou šírkou 425 pixelov a výškou 350 pixelov.
+i.e. use [[Youtube:QZsWG4-7Qfk]] to embed this video: https://www.youtube.com/watch?v=QZsWG4-7Qfk==tj použite [[Youtube:QZsWG4-7Qfk]] na vloženie tohto videa: https://www.youtube.com/watch?v=QZsWG4-7Qfk
+i.e. use [[Vimeo:32200946]] to embed this video: http://vimeo.com/32200946==tj použite [[Vimeo:32200946]] na vloženie tohto videa: http://vimeo.com/32200946
+||row 1, col 1||row 1, col 2==||riadok 1, stĺpec 1||riadok 1, stĺpec 2
+||row 2, col 1||row 2, col 2==||riadok 2, stĺpec 1||riadok 2, stĺpec 2
+These tags create a table, whereas the first marks the beginning of the table, the second starts==Tieto značky vytvárajú tabuľku, pričom prvý označuje začiatok tabuľky, druhý začína
+a new line, the third and fourth each create a new cell in the line. The last displayed tag==nový riadok, tretí a štvrtý vytvorí novú bunku v riadku. Posledná zobrazená značka
+closes the table.==zatvára stôl.
+<pre> text </pre>==<pre> text </pre>
+A text between these tags will keep all the spaces and linebreaks in it. Great for ASCII-art and program code.==Text medzi týmito značkami zachová všetky medzery a zalomenia riadkov. Skvelé pre ASCII-art a programový kód.
+text text text==text text text
+If a line starts with a space, it will be displayed in a non-proportional font.==Ak riadok začína medzerou, zobrazí sa neproporcionálnym písmom.
+#-----------------------------
+
+#File: YaCySearchPluginFF.html
+#---------------------------
+"YaCy-Logo"=="YaCy-Logo"
+YaCy Firefox Search-Plugin Installation:==YaCy Inštalácia doplnku Firefox Search-Plugin:
+Simply click on the link shown below to integrate the YaCy Firefox Search-Plugin into your browser.==Jednoducho kliknite na odkaz zobrazený nižšie a integrujte YaCy Firefox Search-Plugin do svojho prehliadača.
+In Mozilla Firefox, you can the Search-Plugin via the search box on the toolbar. In Mozilla (Seamonkey) you can access the Search-Plugin via the Sidebar or the Location Bar.==V prehliadači Mozilla Firefox môžete vyhľadávací doplnok spustiť cez vyhľadávacie pole na paneli s nástrojmi. V prehliadači Mozilla (Seamonkey) máte prístup k doplnku Search-Plugin cez bočný panel alebo panel s umiestnením.
+Install the YaCy search plugin.==Nainštalujte vyhľadávací doplnok YaCy.
+#-----------------------------
+
+#File: api/citation.html
+#---------------------------
+Similar documents from different hosts:==Podobné dokumenty od rôznych hostiteľov:
+List of==Zoznam
+Cited==Citované
+filter cited sentences==filtrovať citované vety
+filter off==odfiltrovať
+List of other web pages with citations==Zoznam ďalších webových stránok s citáciami
+#-----------------------------
+
+#File: api/push_p.html
+#---------------------------
+"Submit"=="Odoslať"
+File Upload==Nahranie súboru
+This form can be used to upload a file and assign it to an url.==Tento formulár možno použiť na nahranie súboru a jeho priradenie k adrese URL.
+Example usage is the direct attachment of a content management system to YaCy to push newly changed files directly to the YaCy indexer.==Príkladom použitia je priame pripojenie systému na správu obsahu k YaCy na presunutie novo zmenených súborov priamo do indexera YaCy.
+File Count==Počet súborov
+synchronous==synchrónne
+commit==zaviazať sa
+Files to process:==Súbory na spracovanie:
+File Number==Číslo súboru
+Data==Údaje
+URL==URL adresa
+Collection==Zbierka
+Last-Modified==Naposledy upravené
+Content-Type==Content-Type
+The following attributes are only used for media type content==Nasledujúce atribúty sa používajú iba pre obsah typu média
+Media-Title==Media-Title
+Media-Keywords ()==Mediálne kľúčové slová ()
+Result for the recently submitted file(s). You can also submit the same form using the servlet push_p.json to get push confirmations in json format.==Výsledok pre nedávno odoslané súbory. Rovnaký formulár môžete odoslať aj pomocou servletu push_p.json a získať tak potvrdenia push vo formáte json.
+count==počítať
+successall==úspešne
+false==falošné
+true==pravda
+countsuccess==počet úspechov
+countfail==Countfail
+Item==Položka
+Success==Úspech
+Message==Správa
+fail==zlyhať
+ok==ok
+If you want to push again files, use this form to pre-define a number of upload forms:==Ak chcete znova odoslať súbory, použite tento formulár na preddefinovanie niekoľkých formulárov na nahrávanie:
+#-----------------------------
+
+#File: api/share.html
+#---------------------------
+"Submit"=="Odoslať"
+File Share==Zdieľanie súborov
+This form can be used to share a (index) file==Tento formulár možno použiť na zdieľanie (indexového) súboru
+Files to process:==Súbory na spracovanie:
+Result for the recently submitted file(s). You can also submit the same form using the servlet share.json to get push confirmations in json format.==Výsledok pre nedávno odoslané súbory. Rovnaký formulár môžete odoslať aj pomocou servletu share.json a získať tak potvrdenia push vo formáte json.
+successall==úspešne
+false==falošné
+true==pravda
+countsuccess==počet úspechov
+countfail==Countfail
+Item==Položka
+URL==URL adresa
+Success==Úspech
+Message==Správa
+fail==zlyhať
+ok==ok
+If you want to push again files, use this form to pre-define a number of upload forms:==Ak chcete znova odoslať súbory, použite tento formulár na preddefinovanie niekoľkých formulárov na nahrávanie:
+#-----------------------------
+
+#File: api/table_p.html
+#---------------------------
+"Table"=="Tabuľka"
+"Edit Table"=="Upraviť tabuľku"
+PK==PK
+#-----------------------------
+
+#File: api/yacydoc.html
+#---------------------------
+"API"=="API"
+This search result can also be retrieved as XML.==Tento výsledok vyhľadávania je možné získať aj ako XML.
+Click the API icon to see an example call to the search rss API.==Kliknutím na ikonu API zobrazíte príklad volania rss vyhľadávania API.
+Title==Názov
+Author==Autor
+Description==Popis
+Subject==Predmet
+Publisher==Vydavateľ
+Contributor==Prispievateľ
+Date==Datum
+Type==Typ
+YaCy Identifier==YaCy identifikátor
+Identifier==Identifikátor
+Language==Jazyk
+Collections==zbierky
+Load Date==Dátum načítania
+Referrer Identifier==Identifikátor sprostredkovateľa
+Referrer URL==Sprostredkovateľ URL
+Document size==Veľkosť dokumentu
+Number of Words==Počet slov
+Inbound Links (anchors)==Prichádzajúce odkazy (kotvy)
+Outbound Links (anchors)==Odchádzajúce odkazy (kotvy)
+Incoming Links (citation)==Prichádzajúce odkazy (citácia)
+Location==Miesto
+#-----------------------------
+
+#File: compare_yacy.html
+#---------------------------
+"Compare"=="Porovnaj"
+Websearch Comparison==Porovnanie vyhľadávania na webe
+Left Search Engine==Ľavý vyhľadávač
+Right Search Engine==Správny vyhľadávač
+Search Result==Výsledok vyhľadávania
+loading....==načítavam....
+#-----------------------------
+
+#File: env/grafics/donate.html
+#---------------------------
+"Donate!"=="Darujte!"
+Please support our work on YaCy!==Podporte našu prácu na YaCy!
+Github Sponsors==Sponzori Github
+beneficial: 5 €==prospešné: 5 €
+generous: 25 €==štedré: 25 €
+gracious: 50 €==milostivý: 50 €
+#-----------------------------
+
+#File: env/templates/header.template
+#---------------------------
+"YaCy"=="YaCy"
+"Search..."=="Hľadať..."
+"Restart"=="Reštartujte"
+"Shutdown"=="Vypnutie"
+"Community"=="Spoločenstva"
+"Help"=="Pomoc"
+"Chat"=="Chat"
+"Search"=="Hľadať"
+Administration==Administrácia
+Toggle navigation==Prepnúť navigáciu
+Re-Start==Reštartujte
+Shutdown==Vypnutie
+Forum==fórum
+Help==Pomoc
+About This Page==O tejto stránke
+JavaScript information==JavaScript informácie
+external YaCy Tutorials==external YaCy Návody
+external Download YaCy==external Stiahnuť YaCy
+external Community (Web Forums)==external Komunita (Webové fóra)
+external Git Repository==external Git úložisko
+Sponsor==Sponzor
+YaCy is free software, so we need the help of many to support the development. You can help by joining a sponsoring plan:==YaCy je bezplatný softvér, takže na podporu vývoja potrebujeme pomoc mnohých. Vy môžete pomôcť tým, že sa pripojíte k plánu sponzorstva:
+externalbecome a Github Sponsor==externalstať sa sponzorom Github
+externalbecome a YaCy Patreon==externalstaňte sa patrónom YaCy
+Please help! We need financial help to move on with the development!==Prosím, pomôžte! Potrebujeme finančnú pomoc, aby sme mohli pokračovať vo vývoji!
+Chat==Chat
+Search==Hľadať
+First Steps==Prvé kroky
+Use Case & Account==Prípad použitia & účet
+Grab a whole site==Získajte celú stránku
+Monitoring==Monitorovanie
+System Status==Stav systému
+Peer-to-Peer Network==Peer-to-Peer sieť
+Index Browser==Indexový prehliadač
+Network Access==Prístup k sieti
+Crawler Monitor==Crawler Monitor
+Production==Výroba
+Crawler==Crawler
+AI Lab==AI Lab
+Automation==automatizácia
+YaCy Packs & Import/Export==YaCy Balíky & Import/Export
+Content Semantic==Obsah sémantický
+Target Analysis==Cieľová analýza
+Index Administration==Správa indexu
+System Administration==Správa systému
+Filter & Blacklists==Filtrovať & čierne listiny
+RAM/Disk Usage & Updates==RAM/Disk využitie & aktualizácie
+Search Portal Integration==Integrácia vyhľadávacieho portálu
+Portal Configuration==Konfigurácia portálu
+Portal Design==Dizajn portálu
+Ranking and Heuristics==Hodnotenie a heuristika
+#-----------------------------
+
+#File: env/templates/simpleSearchHeader.template
+#---------------------------
+"Log in to use extended search features"=="Ak chcete používať funkcie rozšíreného vyhľadávania, prihláste sa"
+"Search Interfaces"=="Vyhľadávacie rozhrania"
+"Help"=="Pomoc"
+"Administration"=="Administrácia"
+Toggle navigation==Prepnúť navigáciu
+Log in==Prihláste sa
+Search Interfaces==Vyhľadávacie rozhrania
+==
+Web Search==Vyhľadávanie na webe
+File Search==Vyhľadávanie súborov
+Compare Search==Porovnať vyhľadávanie
+Chat==Chat
+URL Viewer==URL Zobrazovač
+Example Calls to the Search API:==Príklady volaní na vyhľadávanie API:
+API YaCy JSON==API YaCy JSON
+API YaCy RSS/Opensearch==API YaCy RSS/Opensearch
+API Solr RSS/Opensearch==API Solr RSS/Opensearch
+API Solr Default Core / JSON==API Predvolené jadro Solr / JSON
+API Solr Default Core / XML==API Predvolené jadro Solr / XML
+API Solr Webgraph Core / XML==API Solr Webgraph Core / XML
+About This Page==O tejto stránke
+YaCy Tutorials==YaCy Návody
+JavaScript information==JavaScript informácie
+external Download YaCy==external Stiahnuť YaCy
+external Community (Web Forums)==external Komunita (Webové fóra)
+external Git Repository==external Git úložisko
+external Bugtracker==external Bugtracker
+Administration »==Správa »
+#-----------------------------
+
+#File: env/templates/simpleheader.template
+#---------------------------
+"Help"=="Pomoc"
+Toggle navigation==Prepnúť navigáciu
+Search Interfaces==Vyhľadávacie rozhrania
+Web Search==Vyhľadávanie na webe
+File Search==Vyhľadávanie súborov
+Compare Search==Porovnať vyhľadávanie
+Chat==Chat
+URL Viewer==URL Zobrazovač
+Example Calls to the Search API:==Príklady volaní na vyhľadávanie API:
+API YaCy JSON==API YaCy JSON
+API YaCy RSS/Opensearch==API YaCy RSS/Opensearch
+API Solr RSS/Opensearch==API Solr RSS/Opensearch
+API Solr Default Core / JSON==API Predvolené jadro Solr / JSON
+API Solr Default Core / XML==API Predvolené jadro Solr / XML
+API Solr Webgraph Core / XML==API Solr Webgraph Core / XML
+About This Page==O tejto stránke
+YaCy Tutorials==YaCy Návody
+JavaScript information==JavaScript informácie
+external Download YaCy==external Stiahnuť YaCy
+external Community (Web Forums)==external Komunita (Webové fóra)
+external Git Repository==external Git úložisko
+external Bugtracker==external Bugtracker
+Administration »==Správa »
+#-----------------------------
+
+#File: env/templates/submenuAI.template
+#---------------------------
+AI Lab==AI Lab
+LLM Selection==Výber LLM
+RAG Config==RAG Konfigurácia
+Tools Config==Nástroje Konfigur
+Log Reports==Log správy
+AI Shield==AI ochrana
+Chat==Chat
+#-----------------------------
+
+#File: env/templates/submenuAccessTracker.template
+#---------------------------
+Access Tracker==Sledovanie prístupu
+Server Access==Serverový prístup
+Access Grid==Prístupová mriežka
+Incoming Requests Overview==Prehľad prichádzajúcich žiadostí
+Incoming Requests Details==Podrobnosti o prichádzajúcich žiadostiach
+All Connections==Všetky pripojenia
+Local Search==Miestne vyhľadávanie
+Log==Log
+Host Tracker==Sledovanie hostiteľa
+Access Rate Limitations==Obmedzenia rýchlosti prístupu
+Remote Search==Vzdialené vyhľadávanie
+Cookie Menu==Cookie Menu
+Incoming Cookies==Prichadzajuce cookies
+Outgoing Cookies==Odchadzajuce cookies
+#-----------------------------
+
+#File: env/templates/submenuBlacklist.template
+#---------------------------
+Filter & Blacklists==Filtrovať & čierne listiny
+Blacklist Administration==Administrácia čiernej listiny
+Blacklist Cleaner==Čistič čiernej listiny
+Blacklist Test==Test čiernej listiny
+Import/Export==Import/Export
+#-----------------------------
+
+#File: env/templates/submenuComputation.template
+#---------------------------
+Application Status==Stav aplikácie
+System==systém
+Status==Stav
+Processes==procesy
+Server Log==Denník servera
+Log Reports==Log správy
+Thread Dump==Zásobník nití
+Concurrent Indexing==Súbežné indexovanie
+Memory Usage==Vyuzitie pamate
+Search Sequence==Vyhľadávacia sekvencia
+Messages==Správy
+Overview==Prehľad
+Incoming News==Prichadzajuce spravy
+Processed News==Precitane spravy
+Outgoing News==Odchadzajuce spravy
+Published News==Zverejnene spravy
+Community Data==údaje komunity
+Surftips==Tipy na surfovanie
+Local Peer Wiki==Miestna rovesnícka Wiki
+Bookmarks==Záložky
+#-----------------------------
+
+#File: env/templates/submenuConfig.template
+#---------------------------
+System Administration==Správa systému
+Advanced Settings==Pokrocilé nastavenia
+Performance Settings of Busy Queues==Nastavenia výkonu zaneprázdnených frontov
+Viewer and administration for database tables==Prehliadač a správa databázových tabuliek
+Advanced Properties==Rozšírené vlastnosti
+UI Translations==Preklady používateľského rozhrania
+#-----------------------------
+
+#File: env/templates/submenuCrawlMonitor.template
+#---------------------------
+Web Crawler==Web Crawler
+Processing Monitor==Monitor spracovania
+Crawler==Crawler
+Loader==Nakladač
+Rejected URLs==Odmietnuté adresy URL
+Queues==Fronty
+Local==Miestne
+Global==globálne
+Remote==Diaľkové ovládanie
+No-Load==Bez zaťaženia
+Crawler Steering==Pásové riadenie
+Scheduler and Profile Editor==Plánovač a editor profilov
+robots.txt Monitor==Monitor robots.txt
+Crawl Results==Prehľadávať výsledky
+Overview==Prehľad
+(1) Receipts==(1) Potvrdenia
+(2) Queries==(2) Otázky
+(3) DHT Transfer==(3) DHT Prevod
+(4) Proxy Use==(4) Použitie proxy
+(5) Local Crawling==(5) Miestne prehľadávanie
+(6) Global Crawling==(6) Globálne prehľadávanie
+(7) Pack Import==(7) Dovoz balenia
+#-----------------------------
+
+#File: env/templates/submenuCrawler.template
+#---------------------------
+Load Web Pages==Načítať webové stránky
+Site Crawling==Prehľadávanie stránok
+Parser Configuration==Konfigurácia analyzátora
+#-----------------------------
+
+#File: env/templates/submenuDesign.template
+#---------------------------
+Design==Dizajn
+Appearance==Vzhľad
+Language==Jazyk
+Search Page Layout==Rozloženie stránky vyhľadávania
+#-----------------------------
+
+#File: env/templates/submenuIndexControl.template
+#---------------------------
+Index Administration==Správa indexu
+URL Database Administration==URL Správa databázy
+Index Deletion==Vymazanie indexu
+Index Sources & Targets==Zdroje indexu & Ciele
+Solr Schema Editor==Solr Editor schém
+Field Re-Indexing==Opätovné indexovanie poľa
+Reverse Word Index==Obrátený index slov
+Content Analysis==Analýza obsahu
+#-----------------------------
+
+#File: env/templates/submenuIndexCreate.template
+#---------------------------
+Advanced Crawler==Pokročilý indexový prehľadávač
+Crawler/Spider==Crawler/Spider
+Crawl Start (Expert)==Začiatok indexového prehľadávania (expert)
+Crawling of MediaWikis==Prehľadávanie MediaWikis
+Crawling of phpBB3 Forums==Prehľadávanie phpBB3 fór
+Network Harvesting==Network Harvesting
+Network Scanner==Sieťový skener
+Remote Crawling==Diaľkové prehľadávanie
+Scraping Proxy==Proxy na škrabanie
+Autocrawl==Autocrawl
+#-----------------------------
+
+#File: env/templates/submenuIndexImport.template
+#---------------------------
+Content Export / Import==Export/Import obsahu
+YaCy Packs==YaCy balíky
+Pack Generator==Generátor balíkov
+Pack Downloader==Pack Downloader
+Pack Manager==Správca balíkov
+Export==Exportovať
+Index Export==Export indexu
+Solr Dump Export/Import==Solr Export výpisu/Import
+Import==Importovať
+RSS==RSS
+OAI-PMH==OAI-PMH
+WARC==WARC
+ZIM==ZIM
+JsonList==JsonList
+Database Reader==Databázová čítačka
+phpBB3 Database==Databáza phpBB3
+MediaWiki Dump==MediaWiki Dump
+#-----------------------------
+
+#File: env/templates/submenuMaintenance.template
+#---------------------------
+RAM/Disk Usage & Updates==RAM/Disk využitie & aktualizácie
+Performance==Výkon
+Web Cache==Webová vyrovnávacia pamäť
+Download System Update==Stiahnite si aktualizáciu systému
+#-----------------------------
+
+#File: env/templates/submenuPortalConfiguration.template
+#---------------------------
+Portal Configuration==Konfigurácia portálu
+Generic Search Portal==Portál všeobecného vyhľadávania
+Search Box Anywhere==Vyhľadávacie pole kdekoľvek
+User Profile==Používateľský profil
+Local robots.txt==Miestny súbor robots.txt
+#-----------------------------
+
+#File: env/templates/submenuPublication.template
+#---------------------------
+Publication==Publikácia
+Wiki==Wiki
+Blog==Blog
+#-----------------------------
+
+#File: env/templates/submenuRanking.template
+#---------------------------
+Ranking and Heuristics==Hodnotenie a heuristika
+Solr Ranking Config==Solr Konfigurácia hodnotenia
+RWI Ranking Config==RWI Konfigurácia hodnotenia
+Heuristics==Heuristika
+#-----------------------------
+
+#File: env/templates/submenuSemantic.template
+#---------------------------
+Content Semantic==Obsah sémantický
+Automated Annotation==Automatická anotácia
+Auto-Annotation Vocabulary Editor==Editor slovníka automatických anotácií
+Knowledge Loader==Knowledge Loader
+#-----------------------------
+
+#File: env/templates/submenuTargetAnalysis.template
+#---------------------------
+Target Analysis==Cieľová analýza
+Mass Crawl Check==Hromadná kontrola indexového prehľadávania
+Regex Test==Regex test
+#-----------------------------
+
+#File: env/templates/submenuUseCaseAccount.template
+#---------------------------
+Use Case & Accounts==Prípad použitia účtov &
+Basic Configuration==Základné nastavenia
+Accounts==účty
+Network Configuration==Konfigurácia siete
+#-----------------------------
+
+#File: env/templates/submenuWebStructure.template
+#---------------------------
+Web Visualization==Webová vizualizácia
+Index Browser==Indexový prehliadač
+Web Structure==Webová štruktúra
+Image Collage==Koláž obrázkov
+#-----------------------------
+
+#File: goto_p.html
+#---------------------------
+forwarding==preposielanie
+forward to remote peer==preposlať vzdialenému peerovi
+#-----------------------------
+
+#File: index.html
+#---------------------------
+"Extend media search results (images, videos or applications specific) to pages including such medias (provides generally more results, but eventually less relevant)."=="Rozšírte výsledky vyhľadávania médií (obrázky, videá alebo špecifické aplikácie) na stránky obsahujúce takéto médiá (poskytuje vo všeobecnosti viac výsledkov, ale nakoniec menej relevantných)."
+"Strictly limit media search results (images, videos or applications specific) to indexed documents matching exactly the desired content domain."=="Prísne obmedzte výsledky vyhľadávania médií (obrázky, videá alebo špecifické aplikácie) na indexované dokumenty, ktoré sa presne zhodujú s požadovanou doménou obsahu."
+"Reference alpha-2 language codes list"=="Zoznam referenčných alfa-2 jazykových kódov"
+Search==Hľadať
+Text==Text
+Images==Obrázky
+Audio==Zvuk
+Video==Video
+Applications==Aplikácie
+more options...==Rozšírené vyhladávanie...
+Results per page==Výsledky na stránku
+Resource==Zdroj
+the peer-to-peer network==sieť peer-to-peer
+only the local index==iba lokálny index
+Prefer mask==Uprednostňujte masku
+restrict on==obmedzenie na
+show all==zobrazit vsetko
+Constraints:==Obmedzenia:
+only index pages==iba indexové stránky
+Media search==Vyhľadávanie médií
+Extended==Rozšírené
+Strict==Prísne
+Query Operators==Operátori dopytov
+restrictions==obmedzenia
+inurl:<phrase>==inurl:<phrase>
+only urls with the <phrase> in the url==iba adresy URL s <frázou> v adrese URL
+inlink:<phrase>==inlink:<fráza>
+only urls with the <phrase> within outbound links of the document==iba adresy URL s <frázou> v odkazoch smerujúcich na dokument
+filetype:<ext>==typ súboru:<ext>
+only urls with extension <ext>==iba adresy URL s príponou <ext>
+site:<host>==lokalita:<hostiteľ>
+only urls from host <host>==iba adresy URL z hostiteľa <host>
+author:<author>==autor:<author>
+only pages with as-author-annotated <author>==iba stránky s anotáciou ako autor <autorom>
+tld:<tld>==tld:<tld>
+only pages from top-level-domains <tld>==iba stránky z domén najvyššej úrovne <tld>
+on:<date>==dňa:<dátum>
+only pages with <date> in content==iba stránky s <dátumom> v obsahu
+from:<date1> to:<date2>==od:<dátum1> do:<dátum2>
+only pages with a date between <date1> and <date2> in content==iba stránky s dátumom medzi <date1> a <date2> v obsahu
+keyword:<phrase>==kľúčové slovo:<fráza>
+only pages with keyword anotation containing <phrase>==iba stránky s anotáciou kľúčových slov obsahujúcich <frázu>
+/http==/http
+only resources from http or https servers==iba zdroje zo serverov http alebo https
+/ftp==/ftp
+/smb==/smb
+/file==/file
+spatial restrictions==priestorové obmedzenia
+/location==/location
+only documents having location metadata (geographical coordinates)==iba dokumenty s metaúdajmi o polohe (geografické súradnice)
+/radius/<latitude>/<longitude>/<distance>==/radius/<latitude>/<longitude>/<distance>
+only documents within a square zone embracing a circle of given radius (in decimal degrees) around the specified latitude and longitude (in decimal degrees)==iba dokumenty v štvorcovej zóne, ktorá zahŕňa kruh daného polomeru (v desatinných stupňoch) okolo určenej zemepisnej šírky a dĺžky (v desatinných stupňoch)
+ranking modifier==modifikátor hodnotenia
+/date==/date
+sort by date (latest first)==zoradiť podľa dátumu (najnovšie ako prvé)
+/near==/near
+multiple words shall appear near==v blízkosti sa objaví viacero slov
+"" (doublequotes)=="" (dvojité úvodzovky)
+/language/<lang>==/language/<lang>
+heuristics==heuristiky
+/heuristic==/heuristic
+add search results from external opensearch systems==pridať výsledky vyhľadávania z externých systémov opensearch
+Search Navigation==Navigácia vyhľadávania
+keyboard shortcuts==klávesové skratky
+next result page==ďalšia stránka s výsledkami
+previous result page==predchádzajúca stránka s výsledkami
+automatic result retrieval==automatické načítanie výsledkov
+browser integration==integrácia prehliadača
+after searching, click-open on the default search engine in the upper right search field of your browser and select 'Add "YaCy Search.."'==po vyhľadaní kliknite-otvorte v predvolenom vyhľadávacom nástroji v pravom hornom poli prehľadávača a vyberte možnosť „Pridať „YaCy Hľadať...“
+search as rss feed==hľadať ako rss feed
+json search results==json výsledky vyhľadávania
+for ajax developers: get the search rss feed and replace the '.rss' extension in the search result url with '.json'==pre vývojárov ajax: získajte vyhľadávací RSS kanál a nahraďte príponu '.rss' v URL výsledku vyhľadávania príponou '.json'
+#-----------------------------
+
+#File: jslicense.html
+#---------------------------
+YaCy JavaScript license information==YaCy JavaScript informácie o licencii
+YaCy JavaScript files license information==Informácie o licencii súborov YaCy JavaScript
+Script==Skript
+License==Licencia
+Source==Zdroj
+#-----------------------------
+
+#File: portalsearch/yacy-portalsearch.html
+#---------------------------
+YaCy Bookmarks==YaCy Záložky
+YaCy Portalsearch:==YaCy Portalsearch:
+#-----------------------------
+
+#File: processing/domaingraph/applet/index.html
+#---------------------------
+"Download Java Plug-in"=="Stiahnite si doplnok Java"
+"Processing.org"=="Processing.org"
+domaingraph : Built with Processing==domaingraph : Postavený so spracovaním
+This browser does not have a Java Plug-in.==Tento prehliadač nemá doplnok Java.
+Get the latest Java Plug-in here.==Získajte najnovší doplnok Java tu.
+Built with Processing==Postavené so spracovaním
+#-----------------------------
+
+#File: proxymsg/authfail.inc
+#---------------------------
+"login"=="prihlásenie"
+Your Username/Password is wrong.==Vaše používateľské meno/Password je nesprávne.
+Username==Používateľské meno
+Password==heslo
+#-----------------------------
+
+#File: proxymsg/error.html
+#---------------------------
+YaCy: Error Message==YaCy: Chybové hlásenie
+YaCy==YaCy
+request:==žiadosť:
+unspecified error==nešpecifikovaná chyba
+not-yet-assigned error==zatiaľ nepriradená chyba
+You don't have an active internet connection. Please go online.==Nemáte aktívne internetové pripojenie. Choďte online.
+Could not load resource. The file is not available.==Nepodarilo sa načítať zdroj. Súbor nie je dostupný.
+#-----------------------------
+
+#File: proxymsg/proxylimits.inc
+#---------------------------
+Your Account is disabled for surfing.==Váš účet je zakázaný pre surfovanie.
+#-----------------------------
+
+#File: proxymsg/unknownHost.inc
+#---------------------------
+Did you mean:==Mali ste na mysli:
+#-----------------------------
+
+#File: proxymsg/urlproxyheader.html
+#---------------------------
+"add bookmark"=="pridať záložku"
+YaCy stop proxy==YaCy zastaviť server proxy
+(Warning: secure target viewed over normal http)==(Upozornenie: bezpečný cieľ zobrazený cez normálne http)
+#-----------------------------
+
+#File: rct_p.html
+#---------------------------
+"retrieve"=="získať"
+remote crawl fetch test==test načítania vzdialeného indexového prehľadávania
+Retrieve remote crawl url list==Načítať zoznam adries URL vzdialeného indexového prehľadávania
+Target Peer:==Cieľový partner:
+select==vyberte
+#-----------------------------
+
+#File: rssTerminal.html
+#---------------------------
+rss terminal==rss terminál
+#-----------------------------
+
+#File: sharedBlacklist_p.html
+#---------------------------
+"select all"=="vybrať všetky"
+"deselect all"=="zrušiť výber všetkých"
+"add"=="pridať"
+Add Items to Blacklist==Pridať položky na čiernu listinu
+Unable to store the items into the blacklist file:==Položky nie je možné uložiť do súboru čiernej listiny:
+File Error! Unable to fetch data from file.==Chyba súboru! Nie je možné načítať údaje zo súboru.
+YaCy-Peer "==YaCy-Peer "
+" not found.==" sa nenašlo.
+URL "==URL "
+" not found or empty list.==" sa nenašlo alebo je prázdny zoznam.
+Wrong Invocation! Please invoke with sharedBlacklist.html?name=PeerName==Nesprávne privolanie! Zavolajte pomocou sharedBlacklist.html?name=PeerName
+Parse Error! An error occured while parsing XML data. Please check if the XML is valid.==Chyba analýzy! Pri analýze údajov XML sa vyskytla chyba. Skontrolujte, či je XML platné.
+Blacklist source:==Zdroj čiernej listiny:
+Blacklist target:==Cieľ na čiernej listine:
+Blacklist item==Položka čiernej listiny
+#-----------------------------
+
+#File: terminal_p.html
+#---------------------------
+"YaCy"=="YaCy"
+"Download Java Plug-in"=="Stiahnite si doplnok Java"
+"PerformanceGraph"=="PerformanceGraph"
+"WebStructurePicture"=="WebStructurePicture"
+"The yacy Network"=="Jadrná sieť"
+YaCy System Terminal Monitor==YaCy Monitor systémového terminálu
+<Search Form>==<Vyhľadávací formulár>
+<Crawl Start>==<Začiatok indexového prehľadávania>
+<Status Page>==<Stránka stavu>
+<Shutdown>==<Vypnutie>
+Event Terminal==Terminál udalostí
+Image Terminal==Obrazový terminál
+Domain Monitor==Monitor domény
+This browser does not have a Java Plug-in.==Tento prehliadač nemá doplnok Java.
+Get the latest Java Plug-in here.==Získajte najnovší doplnok Java tu.
+Resource Monitor==Monitor zdrojov
+Network Monitor==Monitor siete
+#-----------------------------
+
+#File: yacychat.html
+#---------------------------
+"Attach search results by default"=="Predvolene pripojiť výsledky vyhľadávania"
+"Search"=="Hľadať"
+"Attach a file"=="Pripojte súbor"
+"Send"=="Odoslať"
+"Clear chat"=="Vymazať chat"
+"Download chat"=="Stiahnite si chat"
+"Upload chat"=="Nahrať čet"
+"Show system prompt"=="Zobraziť výzvu systému"
+YaCy Chat==YaCy Rozhovor
+This Chat is private. YaCy does not keep any history — only your browser remembers the current conversation.==Tento rozhovor je súkromný. YaCy neuchováva žiadnu históriu – iba váš prehliadač si pamätá aktuálnu konverzáciu.
+Default Dialog Augmentation:==Predvolené rozšírenie dialógového okna:
+no search, allow attachments==žiadne vyhľadávanie, povoliť prílohy
+use local search==použiť lokálne vyhľadávanie
+use global search==použiť globálne vyhľadávanie
+User==Používateľ
+Attach Search Results==Pripojte výsledky vyhľadávania
+Attach PNG/JPG or text (.txt/.md/.tex)==Pripojte PNG/JPG alebo text (.txt/.md/.tex)
+Clear Chat==Vymazať rozhovor
+Download Chat==Stiahnite si Chat
+Upload Chat==Nahrať rozhovor
+Show System==Zobraziť systém
+#-----------------------------
+
+#File: yacyinteractive.html
+#---------------------------
+"Search..."=="Hľadať..."
+"Search"=="Hľadať"
+YaCy Interactive Search==YaCy Interaktívne vyhľadávanie
+Click the API icon to see an example call to the search rss API.==Kliknutím na ikonu API zobrazíte príklad volania rss vyhľadávania API.
+loading from local index...==načítavanie z lokálneho indexu...
+onkeyup="xmlhttpPost(); return false;"==onkeyup="xmlhttpPost(); return false;"
+#-----------------------------
+
+#File: yacysearch.html
+#---------------------------
+"Refresh sorting. Depending on their rank, some results fetched in background may then appear on this page."=="Obnoviť triedenie. V závislosti od ich hodnotenia sa na tejto stránke môžu zobraziť niektoré výsledky načítané na pozadí."
+"YaCy server is fetching results from available data sources."=="Server YaCy načítava výsledky z dostupných zdrojov údajov."
+"Show anyway links to images that could not be rendered"=="Napriek tomu zobraziť odkazy na obrázky, ktoré nebolo možné vykresliť"
+"Hide links to images that could not be rendered"=="Skryť odkazy na obrázky, ktoré nebolo možné vykresliť"
+"Play all"=="Hrať všetky"
+"Stop all"=="Zastavte všetko"
+Click the RSS icon to see this search result as RSS message stream.==Kliknutím na ikonu RSS zobrazíte tento výsledok vyhľadávania ako prúd správ RSS.
+Use the RSS search result format to add static searches to your RSS reader, if you use one.==Pomocou formátu výsledkov vyhľadávania RSS pridajte statické vyhľadávania do čítačky RSS, ak ju používate.
+search==hľadať
+No Results.==Ziadne vysledky
+No Results. (length of search words must be at least 1 character)==Žiadne výsledky. (dĺžka hľadaných slov musí byť aspoň 1 znak)
+You are not allowed to search the web with this peer.==S týmto partnerom nemáte povolené hľadať na webe.
+You have reached the maximum allowed number of accesses to this search page within ten minutes.==Dosiahli ste maximálny povolený počet prístupov na túto stránku vyhľadávania v priebehu desiatich minút.
+Please try again later or log in as administrator or as a user with extended search right.==Skúste to znova neskôr alebo sa prihláste ako správca alebo ako používateľ s právom rozšíreného vyhľadávania.
+You have reached the maximum allowed number of accesses to this search page within one minute.==Dosiahli ste maximálny povolený počet prístupov na túto stránku vyhľadávania v priebehu jednej minúty.
+You have reached the maximum allowed number of accesses to this search page within three seconds.==Do troch sekúnd ste dosiahli maximálny povolený počet prístupov na túto stránku vyhľadávania.
+Did you mean:==Mali ste na mysli:
+Location -- click on map to enlarge==Umiestnenie -- kliknutím na mapu zväčšíte
+Failed to render 0 thumbnail(s).==Nepodarilo sa vykresliť 0 miniatúr.
+Show==Zobraz
+Hide==Skryť
+Media==Médiá
+URL==URL adresa
+Player==Hráč
+#-----------------------------
+
+#File: yacysearch_location.html
+#---------------------------
+"API"=="API"
+"search"=="hľadať"
+The information that is presented on this page can also be retrieved as XML==Informácie uvedené na tejto stránke je možné získať aj ako XML
+Click the API icon to see the XML.==Kliknutím na ikonu API zobrazíte XML.
+search==hľadať
+#-----------------------------
+
+#File: yacysearchitem.html
+#---------------------------
+"bookmark"=="záložka"
+"recommend"=="odporučiť"
+"delete"=="vymazať"
+"blacklist host"=="hostiteľ čiernej listiny"
+"Show all"=="Zobraziť všetky"
+"Last known modification date"=="Posledný známy dátum úpravy"
+"Browse index"=="Prehľadávať index"
+"Raw ranking score value"=="Surová hodnota skóre hodnotenia"
+Tags:==Značky:
+Metadata==Metadáta
+Parser==Analyzátor
+Citations==Citácie
+Pictures==Obrázky
+Cache==Cache
+View via proxy==Zobraziť cez proxy
+Not supported==Nie je podporované
+#-----------------------------
+
+#File: yacysearchpagination.html
+#---------------------------
+"Previous page"=="Predchádzajúca strana"
+"Next page"=="Ďalšia strana"
+«==«
+»==»
+#-----------------------------
+
+#File: yacysearchtrailer.html
+#---------------------------
+"global"=="globálne"
+"local"=="miestne"
+"Use the default ranking profile (customizable), ordering results by score."=="Použite predvolený profil hodnotenia (prispôsobiteľný) a zoraďte výsledky podľa skóre."
+"Use the 'Date' ranking profile, ordering results by default on each document last modification date."=="Použite profil hodnotenia „Dátum“, pričom predvolene zoraďte výsledky podľa dátumu poslednej úpravy každého dokumentu."
+"text"=="text"
+"image"=="obrázok"
+"audio"=="audio"
+"video"=="video"
+"app"=="aplikácie"
+"false"=="falošný"
+"Extend media search results to pages including such medias (provides generally more results, but eventually less relevant)"=="Rozšíriť výsledky vyhľadávania médií na stránky obsahujúce takéto médiá (poskytuje vo všeobecnosti viac výsledkov, ale nakoniec menej relevantných)"
+"true"=="pravda"
+"Strictly limit media search results to indexed documents matching exactly the desired content domain."=="Prísne obmedzte výsledky vyhľadávania médií na indexované dokumenty, ktoré sa presne zhodujú s požadovanou doménou obsahu."
+"earthsearchlogo"=="logo earthsearch"
+"Sorted by descending counts"=="Zoradené zostupne"
+"Sorted by ascending counts"=="Zoradené podľa vzostupných počtov"
+"Sorted by descending labels"=="Zoradené podľa zostupných štítkov"
+"Sorted by ascending labels"=="Zoradené podľa vzostupných štítkov"
+"click to expand facet"=="kliknutím rozbalíte fazetu"
+Peer-to-Peer==Peer-to-Peer
+Stealth Mode==Stealth režim
+Privacy==Ochrana osobných údajov
+Stealth Mode==Stealth Mode
+Context Ranking==Kontextové hodnotenie
+Sort by Date==Zoradiť podľa dátumu
+Documents==dokumenty
+Images==Obrázky
+Audio==Zvuk
+Video==Video
+Apps==Aplikácie
+Extended==Rozšírené
+Strict==Prísne
+Location==Miesto
+#-----------------------------
diff --git a/locales/tr.lng b/locales/tr.lng
index db9f621e2..60022b0f5 100644
--- a/locales/tr.lng
+++ b/locales/tr.lng
@@ -13,239 +13,364 @@
# $Date:: $
# $Tag:: $
# $Author:: $
-#
+#
# This file is maintained by Oliver Wunder
# This file is written by (chronological order) Roland Ramthun , Oliver Wunder , Jan Sandbrink,
# Thomas Süß
# If you find any mistakes or untranslated strings in this file please don't hesitate to email them to the maintainer.
-#File: ConfigLanguage_p.html
-#---------------------------
-# Only part 1.
-# Contributors are in chronological order, not how much they did absolutely.
-# Thank you for your help!
-default(english)==Deutsch
-==Roland Ramthun, Oliver Wunder, Jan Sandbrink, Thomas Süß
-==<webmaster@daburna.de>
+#File: AILab.html
+#---------------------------
+"Inference engine setup"=="Çıkarım motoru kurulumu"
+"Model assignment preview"=="Model atama önizlemesi"
+"Index creation"=="Dizin oluşturma"
+"RAG configuration"=="RAG yapılandırması"
+"Tools configuration"=="Araç konfigürasyonu"
+"Log report monitor"=="Günlük raporu monitörü"
+"Shield definition"=="Kalkan tanımı"
+AI Lab Build System==Yapay Zeka Laboratuvarı Oluşturma Sistemi
+Craft your AI toolkit==Yapay zeka araç setinizi oluşturun
+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.==YaCy'nin AI yardımcısını etkinleştirmek için aşağıdaki görevleri tamamlayın: bir çıkarım motoru bağlayın, çalışma modellerini yükleyin, bunları dizininizle ilişkilendirin, ardından RAG ve korumaları yapılandırın.
+0 / 6 unlocked==0 / 6 kilidi açıldı
+Mandatory==Zorunlu
+Needs setup==Kurulum gerekiyor
+Bind an inference engine==Bir çıkarım motorunu bağlama
+Pick your host (Ollama, LM Studio, OpenAI-compatible) and give YaCy a place to send prompts.==Barındırıcınızı seçin (Ollama, LM Studio, OpenAI uyumlu) ve YaCy'e istem göndereceği bir yer verin.
+Open engine setup==Motor kurulumunu aç
+Set hoststub, API keys, and defaults to unlock downloads.==İndirmelerin kilidini açmak için hoststub, API anahtarlarını ve varsayılanları ayarlayın.
+Populate the Production Models Matrix==Üretim Modelleri Matrisini Doldurun
+Assign models for chat, search, translation, and more. This is your loadout bench.==Sohbet, arama, çeviri ve daha fazlası için modeller atayın. Burası yükleme tezgahınız.
+Go to Production Models Matrix==Üretim Modelleri Matrisine Git
+Deploy at least one model, then assign capabilities (chat, search-query, tooling, vision).==En az bir modeli dağıtın, ardından yetenekler atayın (sohbet, search-query, araç oluşturma, vizyon).
+Optional==İsteğe bağlı
+Grow a search index==Arama dizinini büyütme
+Create a local index for grounding: crawl a site or import a pack to give your AI facts to cite.==Temellendirme için yerel bir dizin oluşturun: bir siteyi tarayın veya alıntı yapmak üzere AI gerçeklerinizi vermek için bir paketi içe aktarın.
+Start a crawl==Taramayı başlat
+Import an index pack==Dizin paketini içe aktarma
+Indexed documents:==İndekslenmiş belgeler:
+required to unlock (need at least 1000 documents).==Kilidini açmak için gerekli (en az 1000 belgeye ihtiyaç var).
+Wire RAG retrieval==Telgraf RAG alımı
+Map which production models answer search-query and Q/A pairs so the RAG proxy can mix search with chat.==Hangi üretim modellerinin search-query ve Q/A çiftlerine yanıt verdiğini eşleyin, böylece RAG proxy'si aramayı sohbetle karıştırabilir.
+Wire RAG prompts==RAG istemlerini iletin
+Test in Chat==Sohbette Test Et
+Set the search-query and qapairs columns to connect retrieval to your chat flow.==Alma işlemini sohbet akışınıza bağlamak için search-query ve qapairs sütunlarını ayarlayın.
+Enable/Disable Tools==/Disable Araçlarını Etkinleştir
+Superpowers for the YaCy Chat==YaCy Sohbet için süper güçler
+Open tools configuration==Araç yapılandırmasını aç
+Tune descriptions and set maxCallsPerTurn per tool (0 disables a tool).==Açıklamaları ayarlayın ve araç başına maxCallsPerTurn ayarlayın (0, aracı devre dışı bırakır).
+Monitor log reports==Günlük raporlarını izleyin
+Assign a log-report model, then review generated hourly and daily self-enhancement reports.==Bir günlük raporu modeli atayın, ardından oluşturulan saatlik ve günlük kişisel geliştirme raporlarını inceleyin.
+Open log reports==Günlük raporlarını aç
+Assign log-report model==Günlük raporu modelini atayın
+Report generation stays inactive until a production model is assigned to the log-report role.==log-report rolüne bir çalışma modeli atanana kadar rapor oluşturma etkin kalmaz.
+Define a shield==Korumayı yapılandırın
+Add guardrails: access rates, grant or deny non-localhost access. Activate the front page link for chat to complete this quest.==Korkuluk ekleyin: erişim oranları, yerel ana bilgisayar dışı erişime izin verin veya reddedin. Bu görevi tamamlamak için sohbet için ön sayfa bağlantısını etkinleştirin.
+Open shield settings==Kalkan ayarlarını aç
+Store your shield directives (system prompts, stop words) as properties, then exercise them in chat.==Kalkan direktiflerinizi (sistem istemleri, durdurma sözcükleri) özellikler olarak saklayın ve ardından bunları sohbette kullanın.
+#-----------------------------
+
+#File: AIShield_p.html
+#---------------------------
+Wire RAG Retrieval Shield==Tel RAG Geri Alma Kalkanı
+Control who can access the chat interface and rate-limit non-localhost clients to protect your peer and LLM backends from overload.==Eşinizi ve LLM arka uçlarını aşırı yükten korumak için sohbet arayüzüne kimlerin erişebileceğini ve yerel ana bilgisayar olmayan istemcilere hız sınırlaması uygulayabileceğini kontrol edin.
+Overall Load Protection==Genel Yük Koruması
+Recent access volume across all clients (localhost included). You can enforce global limits here to protect the host.==Tüm istemcilerdeki son erişim hacmi (yerel ana bilgisayar dahil). Ana bilgisayarı korumak için burada genel sınırları uygulayabilirsiniz.
+Requests / minute==İstek / dakika
+Requests / hour==Talep / saat
+Requests / day==Talep / gün
+Limit for all requests, including localhost==Localhost dahil tüm istekler için sınır
+Per minute:==Dakika başına:
+Per hour:==Saat başına:
+Per day:==Günlük:
+Guest Access Control & Rate Limits==Misafir Erişim Kontrolü ve Hız Limitleri
+By default only localhost may reach the chat UI. Enable non-localhost access and throttle requests to reduce abuse.==Varsayılan olarak yalnızca localhost sohbet arayüzüne erişebilir. Kötüye kullanımı azaltmak için yerel ana bilgisayar dışı erişimi etkinleştirin ve istekleri kısıtlayın.
+Allow non-localhost clients to access the chat interface==Localhost olmayan istemcilerin sohbet arayüzüne erişmesine izin ver
+Requests from non-localhost will be throttled using these caps:==Localhost olmayanlardan gelen istekler şu sınırlar kullanılarak azaltılacaktır:
+Front Page Link==Ön Sayfa Bağlantısı
+Expose a shortcut to the chat UI on the search front page if you want users to discover it.==Kullanıcıların keşfetmesini istiyorsanız arama ön sayfasında sohbet kullanıcı arayüzüne bir kısayol gösterin.
+Show a link to yacychat.html on the search front page==Arama ön sayfasında yacychat.html bağlantısını göster
+Save Shield Settings==Kalkan Ayarlarını Kaydet
#-----------------------------
#File: AccessGrid_p.html
#---------------------------
-YaCy Network Access==YaCy Ağ Erişimi
+"YaCy Access Grid"=="YaCy Erişim Şebekesi"
Server Access Grid==Sunucu Erişim Ağı
This images shows incoming connections to your YaCy peer and outgoing connections from your peer to other peers and web servers==Bu resimler, YaCy eşinizden gelen giriş bağlantılarını ve eşinizden diğer eşlere ve web sunucularına giden çıkış bağlantılarını gösterir.
#-----------------------------
#File: AccessTracker_p.html
#---------------------------
-Access Tracker==Erişim Takipçisi
Server Access Overview==Sunucu Erişim Genel Bakış
-This is a list of #[num]# requests to the local http server within the last hour.==Bu, son bir saat içinde yerel HTTP sunucusuna yapılan #[num]# isteğin bir listesidir.
-This is a list of requests (max. 1000) to the local http server within the last hour.==Bu, son bir saat içinde yerel HTTP sunucusuna yapılan (maks. 1000) isteklerin bir listesidir.
-Showing #[num]# requests.==#[num]# istek gösteriliyor.
-#>Host<==>Host<
->Path<==>Yol<
-Date<==Tarih<
+Host==Ev sahibi
Access Count During==Erişim Sayısı
last Second==geçen saniye
last Minute==geçen dakika
last 10 Minutes==son 10 dakika
last Hour==geçen saat
The following hosts are registered as source for brute-force requests to protected pages==Aşağıdaki ana bilgisayarlar, korumalı sayfalara yönelik kaba kuvvet isteklerinin kaynağı olarak kaydedilmiştir
-#>Host==>Host
Access Times==Erişim Zamanları
Server Access Details==Sunucu Erişim Detayları
+This is a list of requests (max. 1000) to the local http server within the last hour.==Bu, son bir saat içinde yerel HTTP sunucusuna yapılan (maks. 1000) isteklerin bir listesidir.
+Date==Tarih
+Path==Yol
Local Search Log==Yerel Arama Kaydı
-Local Search Host Tracker==Yerel Arama Ana Bilgisayar Takipçisi
-Remote Search Log==Uzak Arama Kaydı
-#Toplam:==Toplam:
-Başarılı:==Başarılı:
-Remote Search Host Tracker==Uzak Arama Ana Bilgisayar Takipçisi
This is a list of searches that had been requested from this' peer search interface==Bu, bu eş arama arabiriminden istenen aramaların bir listesidir
-Showing #[num]# entries from a total of #[total]# requests.==Toplam #[total]# istekten #[num]# giriş gösteriliyor.
Requesting Host==İstek Eden Ana Bilgisayar
Offset==Ofset
Expected Results==Beklenen Sonuçlar
Returned Results==Dönen Sonuçlar
+Known Results==Bilinen Sonuçlar
Used Time (ms)==Kullanılan Zaman (
-ms)
URL fetch (ms)==URL çekme (ms)
Snippet comp (ms)==Parça derleme (ms)
Query==Sorgu
-#>User Agent<==>Kullanıcı Aracı<
-Search Word Hashes==Arama Kelime Hash'leri
-Count==Sayı
+User Agent==Kullanıcı Aracısı
+Top Search Words (last 7 Days)==En Çok Aranan Kelimeler (son 7 Gün)
+Local Search Host Tracker==Yerel Arama Ana Bilgisayar Takipçisi
+Count==Saymak
Queries Per Last Hour==Son Saatteki Sorgular
Access Dates==Erişim Tarihleri
+Remote Search Log==Uzak Arama Kaydı
This is a list of searches that had been requested from remote peer search interface==Bu, uzaktaki eş arama arayüzünden istenen aramaların bir listesidir
-#-----------------------------```
-
-#File: Settings_UrlProxyAccess.inc
-#---------------------------
-URL Proxy Settings<==URL Proxy Ayarları<
-With this settings you can activate or deactivate URL proxy.==Bu ayarlarla URL proxy'yi etkinleştirebilir veya devre dışı bırakabilirsiniz.
-Service call: ==Servis çağrısı:
-, where parameter is the url of an external web page.==, parametre dış web sayfasının URL'sidir.
-#URL proxy:==URL Proxy:
->Enabled<==>Etkin<
-Globally enables or disables URL proxy via ==URL proxy'yi global olarak etkinleştirir veya devre dışı bırakır:
-Show search results via URL proxy:==URL proxy üzerinden arama sonuçlarını göster:
-Enables or disables URL proxy for all search results. If enabled, all search results will be tunneled through URL proxy.==Tüm arama sonuçları için URL proxy'yi etkinleştirir veya devre dışı bırakır. Etkinse, tüm arama sonuçları URL proxy üzerinden yönlendirilecektir.
-Restrict URL proxy use:==URL proxy kullanımını kısıtla:
-Define client filter. Default: ==Müşteri filtresini tanımlayın. Varsayılan:
-URL substitution:==URL yerine koyma:
-Define URL substitution rules which allow navigating in proxy environment. Possible values: all, domainlist. Default: domainlist.==Proxy ortamında gezinmeyi sağlayan URL yerine koyma kurallarını tanımlayın. Olası değerler: all, domainlist. Varsayılan: domainlist.
-"Submit"=="Gönder"
-#>Enabled<==>Etkin<
+Peer Name==Akran Adı
+Search Word Hashes==Arama Kelime Hash'leri
+Remote Search Host Tracker==Uzak Arama Ana Bilgisayar Takipçisi
#-----------------------------
#File: Autocrawl_p.html
#---------------------------
"Save"=="Kaydet"
+Autocrawler==Otomatik tarayıcı
+Autocrawler automatically selects and adds tasks to the local crawl queue. This will work best when there are already quite a few domains in the index.==Autocrawler, görevleri otomatik olarak seçer ve yerel tarama kuyruğuna ekler. Bu, dizinde zaten çok sayıda alan bulunduğunda en iyi sonucu verir.
+Autocralwer Configuration==Otomatik Tarayıcı Yapılandırması
+You need to restart for some settings to be applied==Bazı ayarların uygulanabilmesi için yeniden başlatmanız gerekir
+Enable Autocrawler:==Otomatik Tarayıcıyı Etkinleştir:
+Deep crawl every Nth document:==Her N'inci belgeyi derinlemesine tarayın:
+Warning: if this is bigger than "Rows to fetch" only shallow crawls will run.==Uyarı: Bu, "Getirilecek satırlar"dan büyükse yalnızca yüzeysel taramalar çalışır.
+Rows to fetch at once:==Tek seferde getirilecek satırlar:
+Recrawl only older than # days:==Yalnızca # günden eski olanı yeniden tarayın:
+Get hosts by query:==Ana bilgisayarları sorguya göre alın:
+Can be any valid Solr query.==Geçerli herhangi bir Solr sorgusu olabilir.
+Shallow crawl depth (0 to 2):==Sığ tarama derinliği (0 ila 2):
+Deep crawl depth (1 to 5):==Derin tarama derinliği (1 ila 5):
+Index text:==Dizin metni:
+Index media:==Dizin ortamı:
#-----------------------------
-#File: Blacklist_p.html
+#File: Automation_p.html
#---------------------------
-Blacklist Administration==Kara Liste Yönetimi
-#Used Blacklist engine:==Kullanılan Kara Liste Motoru:
-This function provides an URL filter to the proxy; any blacklisted URL is blocked==Bu işlev, proxy için bir URL filtresi sağlar; herhangi bir kara listedeki URL engellenir
-from being loaded. You can define several blacklists and activate them separately.==Yüklenmesini engeller. Birden çok kara liste tanımlayabilir ve bunları ayrı ayrı etkinleştirebilirsiniz.
-You may also provide your blacklist to other peers by sharing them; in return you may==Ayrıca, kara listenizi diğer eşlere paylaşarak sağlayabilirsiniz; karşılığında
-collect blacklist entries from other peers.==Diğer eşlerden kara liste girişleri toplayabilirsiniz.
-Active list:==Aktif liste:
-No blacklist selected==Hiçbir kara liste seçilmedi
-Select list to edit:==Düzenlemek için liste seçin:
-not shared::shared==paylaşılmadı::paylaşıldı
-"select"=="Seç"
-Create new list:==Yeni liste oluştur:
-"create"=="Oluştur"
-Settings for this list==Bu liste için ayarlar
-"Save"=="Kaydet"
-Share/don't share this list==Bu listeyi paylaş/paylaşma
-Delete this list==Bu listeyi sil
-Edit list==Listeyi düzenle
-These are the domain name/path patterns in==Bunlar, içindeki alan adı/yol desenleridir
-Blacklist Pattern==Kara Liste Deseni
-Edit selected pattern(s)==Seçilen deseni/desenleri düzenle
-Delete selected pattern(s)==Seçilen deseni/desenleri sil
-Move selected pattern(s) to==Seçilen deseni/desenleri taşı
-#You can select them here for deletion==Silme için buradan seçebilirsiniz
-Add new pattern:==Yeni desen ekle:
-Add URL pattern==URL deseni ekle
-The right '*', after the '/', can be replaced by a==Sağdaki '*', '/' karakterinden sonra, şununla değiştirilebilir:
->regular expression<==>düzenli ifade<
-domain.net/fullpath<==domain.de/fullpath<
->domain.net/*<==>domain.de/*<
-*.domain.net/*<==*.domain.de/*<
-*.sub.domain.net/*<==*.sub.domain.de/*<
-#sub.domain.*/*<==sub.domain.*/*<
-#domain.*/*<==domain.*/*<
-(slow)==(yavaş)
-#was removed from blacklist==kara listeden kaldırıldı
-#was added to the blacklist==kara listeye eklendi
-Activate this list for==Bu liste için etkinleştir
-Show entries:==Girişleri göster:
-Entries per page:==Sayfa başına giriş sayısı:
-"set"=="Ayarla"
-Edit existing pattern(s):==Mevcut desenleri düzenle:
-"Save URL pattern(s)"=="URL desen(ler)i kaydet"
-#-----------------------------```
+"API"=="API"
+"no previous page"=="önceki sayfa yok"
+"previous page"=="Önceki Sayfa"
+"no next page"=="sonraki sayfa yok"
+"next page"=="Sonraki Sayfa"
+"Apply edited next execution dates"=="Düzenlenen sonraki yürütme tarihlerini uygula"
+"clone"=="Eylemi Kopyala"
+"yyyy/MM/dd HH:mm:ss"=="yyyy/MM/dd SS:dd:ss"
+"Execute Selected Actions"=="Seçilen Eylemleri Gerçekleştir"
+"Delete Selected Actions"=="Seçilen Eylemleri Sil"
+"Delete all Actions which had been created before "=="Önce Oluşturulan Tüm Eylemleri Sil "
+Process Automation==Proses Otomasyonu
+This table shows actions that had been issued on the YaCy interface.==Bu tablo, YaCy arayüzünde gerçekleştirilen eylemleri gösterir.
+These recorded actions can be used to repeat specific actions and to send them==Bu kaydedilmiş eylemler, belirli eylemleri tekrarlamak ve bunları göndermek için kullanılabilir
+to a scheduler for a periodic execution.==periyodik yürütme için bir zamanlayıcıya.
+The information that is presented on this page can also be retrieved as XML.==Bu sayfada sunulan bilgiler aynı zamanda XML formatında alınabilir.
+Click the API icon to see the XML.==XML'yi görmek için API simgesine tıklayın.
+Recorded Actions==Kaydedilen Eylemler
+Type==Tip
+Comment==Yorum
+Call Count==Çağrı Sayısı
+Recording Date==Kayıt Tarihi
+Last Exec Date==Son Çalışma Tarihi
+Next Exec Date==Sonraki Çalışma Tarihi
+Apply==Uygula
+Event Trigger==Olay Tetikleyici
+Scheduler==Zamanlayıcı
+URL==URL
+no event==etkinlik yok
+activate event==olayı etkinleştir
+off==kapalı
+run once==bir kez koş
+run regular==düzenli koş
+after start-up==çalıştırmadan sonra
+at 00:00h==saat 00:00'de
+at 01:00h==saat 01:00'de
+at 02:00h==saat 02:00'de
+at 03:00h==saat 03:00'de
+at 04:00h==saat 04:00'de
+at 05:00h==saat 05:00'de
+at 06:00h==saat 06:00'de
+at 07:00h==saat 07:00'de
+at 08:00h==saat 08:00'de
+at 09:00h==saat 09:00'de
+at 10:00h==saat 10:00'de
+at 11:00h==saat 11:00'de
+at 12:00h==saat 12:00'de
+at 13:00h==saat 13:00'de
+at 14:00h==saat 14:00'de
+at 15:00h==saat 15:00'de
+at 16:00h==saat 16:00'de
+at 17:00h==saat 17:00'de
+at 18:00h==saat 18:00'de
+at 19:00h==saat 19:00'de
+at 20:00h==saat 20:00'de
+at 21:00h==saat 21:00'de
+at 22:00h==saat 22:00'de
+at 23:00h==saat 23:00'de
+no repetition==tekrar yok
+activate scheduler==zamanlayıcıyı etkinleştir
+minutes==dakika
+hours==saat
+days==günler
+1 day==1 gün
+2 days==2 gün
+3 days==3 gün
+4 days==4 gün
+5 days==5 gün
+6 days==6 gün
+1 week==1 hafta
+2 weeks==2 hafta
+3 weeks==3 hafta
+1 month==1 ay
+2 months==2 ay
+3 months==3 ay
+6 months==6 ay
+9 months==9 ay
+1 year==1 yıl
+2 years==2 yıl
+Result of API execution==API yürütmenin sonucu
+Status==Durum
+#-----------------------------
#File: BlacklistCleaner_p.html
#---------------------------
+"Check"=="Kontrol Et"
+"Change Selected"=="Seçilenleri Değiştir"
+"Delete Selected"=="Seçilenleri Sil"
Blacklist Cleaner==Kara Liste Temizleyici
Here you can remove or edit illegal or double blacklist-entries.==Burada yasaklı veya çift kara liste girişlerini kaldırabilir veya düzeltebilirsiniz.
Check list==Listeyi kontrol et
-"Check"=="Kontrol Et"
Allow regular expressions in host part of blacklist entries.==Kara liste girişlerinin host kısmında düzenli ifadeleri kullanın.
The blacklist-cleaner only works for the following blacklist-engines up to now:==Kara liste temizleyici şu anda yalnızca şu kara liste motorları için çalışır:
-Illegal Entries in #[blList]# for==#[blList]# içindeki yasadışı girişler
-Deleted #[delCount]# entries==#[delCount]# giriş silindi
-Altered #[alterCount]# entries!==#[alterCount]# giriş değiştirildi
Two wildcards in host-part==Host kısmında iki joker karakter
-Either subdomain or wildcard==Ya alt alan adı ya da joker karakter
+Either subdomain==Her iki alt alan adı
+or==veya
+wildcard==joker karakter
Path is invalid Regex==Yol geçerli bir Regex değil
Wildcard not on begin or end==Joker karakter başta veya sonda değil
Host contains illegal chars==Host yasadışı karakterler içeriyor
Double==Çift
-"Change Selected"=="Seçilenleri Değiştir"
-"Delete Selected"=="Seçilenleri Sil"
+Host is invalid Regex==Ana makine geçersiz Regex
No Blacklist selected==Hiçbir Kara Liste seçilmedi
#-----------------------------
#File: BlacklistImpExp_p.html
#---------------------------
-#Blacklist Import==Kara Liste İçe Aktar
+"Load new blacklist items"=="Yeni kara liste öğelerini yükle"
+"Export list as XML"=="Listeyi XML Olarak Dışa Aktar"
+"Export list as text"=="Listeyi Metin Olarak Dışa Aktar"
+Blacklist Import==Kara Liste İçe Aktarma
Used Blacklist engine:==Kullanılan Kara Liste Motoru:
Import blacklist items from...==Kara liste öğelerini şuradan içe aktar...
other YaCy peers:==diğer YaCy eşleri:
-"Load new blacklist items"=="Yeni kara liste öğelerini yükle"
-#URL:==URL:
-plain text file:<==Düz metin dosyası:<
-XML file:==XML dosyası:
+URL:==URL:
+plain text file:==düz metin dosyası:
Upload a regular text file which contains one blacklist entry per line.==Her biri bir satırda bir kara liste girişi içeren bir düz metin dosyası yükleyin.
+XML file:==XML dosyası:
Upload an XML file which contains one or more blacklists.==Bir veya daha fazla kara liste içeren bir XML dosyası yükleyin.
Export blacklist items to...==Kara liste öğelerini şuraya dışa aktar...
Here you can export a blacklist as an XML file. This file will contain additional==Burada bir kara listeyi XML dosyası olarak dışa aktarabilirsiniz. Bu dosya ek bilgiler içerecektir.
information about which cases a blacklist is activated for.==Bir kara listenin hangi durumlar için etkinleştirildiği hakkında bilgiler içerir.
-"Export list as XML"=="Listeyi XML Olarak Dışa Aktar"
+all==Tümü
Here you can export a blacklist as a regular text file with one blacklist entry per line.==Burada bir kara listeyi her biri bir satırda bir kara liste girişi içeren düz metin dosyası olarak dışa aktarabilirsiniz.
-This file will not contain any additional information==Bu dosya herhangi bir ek bilgi içermeyecektir
-"Export list as text"=="Listeyi Metin Olarak Dışa Aktar"
+This file will not contain any additional information.==Bu dosya herhangi bir ek bilgi içermeyecektir.
#-----------------------------
#File: BlacklistTest_p.html
#---------------------------
+"Test"=="Test Et"
Blacklist Test==Kara Liste Testi
Used Blacklist engine:==Kullanılan Kara Liste Motoru:
Test list:==Test listesi:
-"Test"=="Test Et"
-The tested URL was==Test edilen URL şuydu
It is blocked for the following cases:==Aşağıdaki durumlar için engellenmiştir:
-#Crawling==Crawling
-#DHT==DHT
-#News==Haberler
-#Proxy==Proxy
+is not blocked==engellenmemiş
+Crawling==Tarama
+DHT==DHT
+News==Haberler
+Proxy==vekil
Search==Arama
Surftips==Surf İpuçları
+The tested URL was not valid.==Test edilen URL geçerli değildi.
+#-----------------------------
+
+#File: Blacklist_p.html
+#---------------------------
+"create"=="Oluştur"
+"Add URL pattern"=="URL desenini ekle"
+"set"=="Ayarla"
+"Save URL pattern(s)"=="URL desen(ler)i kaydet"
+"Share/don't share this list"=="Paylaş/don't bu listeyi paylaş"
+"Delete this list"=="Bu listeyi sil"
+"Save"=="Kaydet"
+Blacklist Administration==Kara Liste Yönetimi
+This function provides an URL filter to the proxy; any blacklisted URL is blocked==Bu işlev, proxy için bir URL filtresi sağlar; herhangi bir kara listedeki URL engellenir
+from being loaded. You can define several blacklists and activate them separately.==Yüklenmesini engeller. Birden çok kara liste tanımlayabilir ve bunları ayrı ayrı etkinleştirebilirsiniz.
+You may also provide your blacklist to other peers by sharing them; in return you may==Ayrıca, kara listenizi diğer eşlere paylaşarak sağlayabilirsiniz; karşılığında
+collect blacklist entries from other peers.==Diğer eşlerden kara liste girişleri toplayabilirsiniz.
+Active list:==Aktif liste:
+No blacklist selected==Hiçbir kara liste seçilmedi
+Select list to edit:==Düzenlemek için liste seçin:
+not shared==paylaşılmadı
+shared==paylaşıldı
+Create new list:==Yeni liste oluştur:
+A legal name is made up from a letter, digit, minus, plus or underscore as the first character==Yasal ad, ilk karakter olarak bir harf, rakam, eksi, artı veya alt çizgiden oluşur
+followed by letters, digits, minus, plus, underscores or dots.==ardından harfler, rakamlar, eksi, artı, alt çizgiler veya noktalar gelir.
+An error occurred while moving entries to the target list.==Girişler hedef listeye taşınırken bir hata oluştu.
+Add new pattern:==Yeni desen ekle:
+domain.net/fullpath==alan adı.net/fullpath
+domain.net/*==alan.net/*
+sub.domain.*/*==alt.alan.*/*
+domain.*/*==ihtisas.*/*
+Blacklist Pattern==Kara Liste Deseni
+Edit selected pattern(s)==Seçilen deseni/desenleri düzenle
+Delete selected pattern(s)==Seçilen deseni/desenleri sil
+Move selected pattern(s) to==Seçilen deseni/desenleri taşı
+Show entries:==Girişleri göster:
+Entries per page:==Sayfa başına giriş sayısı:
+Edit existing pattern(s):==Mevcut desenleri düzenle:
+An error occurred while editing the following entries. Please check syntax.==Aşağıdaki girişler düzenlenirken bir hata oluştu. Lütfen söz dizimini kontrol edin.
+Activate this list for ...==Bu listeyi şunun için etkinleştirin:
#-----------------------------
#File: Blog.html
#---------------------------
-by==tarafından
-Comments==Yorumlar
->edit==>düzenle
->delete==>sil
-Edit<==Düzenle<
-previous entries==önceki girişler
-next entries==sonraki girişler
-new entry==Yeni giriş
-import XML-File==XML Dosyasını İçe Aktar
-export as XML==XML olarak dışa aktar
+"RSS"=="RSS"
+"Submit"=="Gönder"
+"Preview"=="Önizleme"
+"Discard"=="Reddet"
+"Yes, delete it."=="Evet, silin."
+"No, leave it."=="Hayır, bırak gitsin."
+"Import"=="İçe aktarmak"
+<< previous entries==<< önceki girişler
+next entries >>==sonraki girişler >>
Blog-Home==Blog Ana Sayfası
+Edit==Düzenle
Author:==Yazar:
Subject:==Başlık:
-#Text:==Metin:
-You can use==Burada kullanabilirsiniz
-Yacy-Wiki Code==YaCy-Wiki Kodu
-here.==burada.
+Text:==Metin:
Comments:==Yorumlar:
deactivated==devre dışı
->activated==>etkin
+activated==etkinleştirildi
moderated==modere edilmiş
-"Submit"=="Gönder"
-"Preview"=="Önizleme"
-"Discard"=="Reddet"
->Preview==>Önizleme
+Preview==Önizleme
No changes have been submitted so far!==Şimdiye kadar hiçbir değişiklik gönderilmedi!
Access denied==Erişim reddedildi
To edit or create blog-entries you need to be logged in as Admin or User who has Blog rights.==Blog girişlerini düzenlemek veya oluşturmak için Admin veya Blog haklarına sahip bir kullanıcı olarak giriş yapmalısınız.
-Are you sure==Emin misiniz
-that you want to delete==ki bunu silmek istediğinizden emin misiniz:
+Are you sure...==Emin misin...
Confirm deletion==Silme işlemini onayla
-Yes, delete it.==Evet, sil.
-No, leave it.==Hayır, bırak.
+XML-Import==XML-İçe Aktarma
Import was successful!==İçe aktarma başarılı!
Import failed, maybe the supplied file was no valid blog-backup?==İçe aktarma başarısız, belki sağlanan dosya geçerli bir blog yedekleme dosyası değil?
Please select the XML-file you want to import:==Lütfen içe aktarmak istediğiniz XML dosyasını seçin:
@@ -253,77 +378,79 @@ Please select the XML-file you want to import:==Lütfen içe aktarmak istediğin
#File: BlogComments.html
#---------------------------
-by==tarafından
-Comments==Yorumlar
-Login==Giriş
-Blog-Home==Blog Ana Sayfası
-delete==sil
-allow==izin ver
-Author:==Yazar:
-Subject:==Başlık:
-#Text:==Metin:
-You can use==Burada kullanabilirsiniz
-Yacy-Wiki Code==YaCy-Wiki Kodu
-here.==burada.
"Submit"=="Gönder"
"Preview"=="Önizleme"
"Discard"=="Reddet"
+Blog-Home==Blog Ana Sayfası
+Comments:==Yorumlar:
+<< previous entries==<< önceki girişler
+next entries >>==sonraki girişler >>
+Comments are not allowed for this posting!==Bu gönderiye yorum yapılmasına izin verilmiyor!
+Comment on this Blog==Bu Bloga yorum yapın
+Author:==Yazar:
+Subject:==Başlık:
+Text:==Metin:
#-----------------------------
#File: Bookmarks.html
#---------------------------
-YaCy '#[clientname]#': Bookmarks==YaCy '#[clientname]#': Yer İmleri
-
-The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.==Yer imleri listesi aynı zamanda bir RSS beslemesi olarak alınabilir. Bu, belirli bir etiket seçildiğinde de yapılabilir.
-Click the API icon to load the RSS from the current selection.==Mevcut seçimden RSS'yi yüklemek için API simgesine tıklayın.
-To see a list of all APIs, please visit the API wiki page.==Tüm API'ların listesini görmek için lütfen API wiki sayfasını ziyaret edin.
-
Bookmarks==
Yer İmleri
-Bookmarks (==Yer İmleri (
-#Login==Giriş
+"RSS"=="RSS"
+"create"=="Oluştur"
+"Save"=="Kaydet"
+"import"=="İçe Aktar"
+"API"=="API"
+"start it"=="başlat"
+"stop it"=="durdur şunu"
+"private bookmark"=="Özel yer imi"
+"public bookmark"=="Herkese açık yer imi"
+Bookmarks==Yer imleri
+Login==Giriş yapmak
List Bookmarks==Yer İmleri Listesi
Add Bookmark==Yer İmi Ekle
Import Bookmarks==Yer İmlerini İçe Aktar
-Import XML Bookmarks==XML Yer İmlerini İçe Aktar
-Import HTML Bookmarks==HTML Yer İmlerini İçe Aktar
-"import"=="İçe Aktar"
-Default Tags:==Varsayılan Etiketler:
-imported==ithal
-#Edit Bookmark==Yer İmini Düzenle
-#URL:==URL:
+Bookmarks (XBEL)==Yer imleri (XBEL)
+Bookmarks (XML)==Yer İmleri (XML)
+Bookmarks (RSS)==Yer İmleri (RSS)
+Edit Bookmark==Yer İşaretini Düzenle
+URL:==URL:
Title:==Başlık:
Description:==Açıklama:
+Query:==Sorgu:
Folder (/folder/subfolder):==Klasör (/klasör/altklasör):
Tags (comma separated):==Etiketler (virgülle ayrılmış):
->Public:==>Herkese Açık:
+Public:==Halk:
yes==evet
no==hayır
Bookmark is a newsfeed==Yer İmi bir haber akışıdır
-"create"=="Oluştur"
-"edit"=="Düzenle"
+Import XML Bookmarks==XML Yer İmlerini İçe Aktar
File:==Dosya:
-import as Public==Herkese açık olarak içe aktar
-"private bookmark"=="Özel yer imi"
-"public bookmark"=="Herkese açık yer imi"
-Tagged with==Etiketlenmiş:
-'Confirm deletion'=='Silme işlemini onayla'
-Edit==Düzenle
-Delete==Sil
+import as Public:==Genel olarak içe aktar:
+Import HTML Bookmarks==HTML Yer İmlerini İçe Aktar
+Default Tags:==Varsayılan Etiketler:
+The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.==Yer imleri listesi aynı zamanda bir RSS beslemesi olarak alınabilir. Bu, belirli bir etiket seçildiğinde de yapılabilir.
+Click the API icon to load the RSS from the current selection.==Mevcut seçimden RSS'yi yüklemek için API simgesine tıklayın.
Folders==Klasörler
Bookmark Folder==Yer İmi Klasörü
-#Tags==Etiketler
+Tags==Etiketler
+Auto Search==Otomatik Arama
+start autosearch of new bookmarks==Yeni yer imlerinin otomatik aramasını başlat
+autosearch queue:==otomatik arama kuyruğu:
+received results:==alınan sonuçlar:
+current query:==geçerli sorgu:
+This starts a search of new or modified bookmarks since startup==Bu, başlangıçtan bu yana yeni veya değiştirilmiş yer imlerini aramayı başlatır
+in folder "search" with "query=<original_search_term>"== "search" klasöründe "query=<original_search_term>" ile
+Every peer online will be ask for results.==Çevrimiçi olan her akrandan sonuçlar istenecektir.
Bookmark List==Yer İmleri Listesi
+Tagged with |==ile etiketlendi |
+Edit==Düzenle
+Delete==Sil
+Info==Bilgi
+search==aramak
previous page==önceki sayfa
next page==sonraki sayfa
-All==Hepsi
Show==Göster
Bookmarks per page.==Sayfa başına yer imleri.
-#unsorted==sıralanmamış
-start autosearch of new bookmarks==Yeni yer imlerinin otomatik aramasını başlat
-This starts a search of new or modified bookmarks since startup==Bu, başlangıçtan bu yana yeni veya değiştirilmiş yer imlerini aramayı başlatır
-in folder "search" with "query=<original_search_term>"== "search" klasöründe "query=<original_search_term>" ile
-Every peer online will be asked for results.==Çevrimiçi olan her eş, sonuçlar için sorulacaktır.
-#-----------------------
-------
+#-----------------------------
#File: Collage.html
#---------------------------
@@ -332,162 +459,186 @@ Private Queue==Özel Sıra
Public Queue==Genel Sıra
#-----------------------------
-
-#File: compare_yacy.html
+#File: ConfigAccountList_p.html
#---------------------------
-Websearch Comparison==Web Arama Karşılaştırması
-Left Search Engine==Sol Arama Motoru
-Right Search Engine==Sağ Arama Motoru
-"Compare"=="Karşılaştır"
-Search Result==Arama Sonucu
+User List==Kullanıcı Listesi
+User Accounts==Kullanıcı Hesapları
+User==Kullanıcı
+First name==Ad
+Last name==Soyad
+Address==Adres
+Last Access==Son Erişim
+Rights==Haklar
+Time==Zaman
+Traffic==Trafik
#-----------------------------
#File: ConfigAccounts_p.html
#---------------------------
-User Accounts==Kullanıcı Hesapları
+"Define Administrator"=="Yönetici Belirle"
+"Set Access Rules"=="Erişim Kurallarını Ayarlayın"
+"Edit User"=="Kullanıcıyı Düzenle"
+"Delete User"=="Kullanıcıyı Sil"
+"Save User"=="Kullanıcıyı Kaydet"
User Administration==Kullanıcı Yönetimi
-User created:==Kullanıcı oluşturuldu:
-User changed:==Kullanıcı değiştirildi:
Generic error.==Genel hata.
Passwords do not match.==Parolalar uyuşmuyor.
Username too short. Username must be >= 4 Characters.==Kullanıcı adı çok kısa. Kullanıcı adı 4 veya daha fazla karakter olmalı.
-No password is set for the administration account.==Yönetici hesabı için şifre belirlenmedi.
-Please define a password for the admin account.==Lütfen yönetici hesabı için bir şifre belirleyin.
+Username already used (not allowed).==Kullanıcı adı zaten kullanılıyor (izin verilmiyor).
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==WARNING Bu YaCy örneği "admin" hesabı ve varsayılan şifre "yacy" ile yönetilebilir.
+Change the password as soon as possible!==Şifreyi mümkün olan en kısa sürede değiştirin!
Admin Account==Yönetici Hesabı
Access from localhost without account==Hesapsız localhost erişimi
Access to your peer from your own computer (localhost access) is granted with administrator rights. No need to configure an administration account.==Kendi bilgisayarınızdan eşinize erişim (localhost erişimi), yönetici hakları ile verilmiştir. Bir yönetici hesabı yapılandırmaya gerek yok.
+This setting is convenient but less secure than using a qualified admin account.==Bu ayar kullanışlıdır ancak nitelikli bir yönetici hesabı kullanmaktan daha az güvenlidir.
+Please use with care, notably when you browse untrusted and potentially malicious websites while running your YaCy peer on the same computer.==Lütfen, özellikle güvenilmeyen ve potansiyel olarak kötü amaçlı web sitelerine göz atarken ve aynı bilgisayarda YaCy eşinizi çalıştırırken dikkatli kullanın.
Access only with qualified account==Sadece yetkili hesap ile erişim
-This is required if you want remote access to your peer, but it also hardens access controls on administration operations of your peer.==Bu, eşinize uzaktan erişim istiyorsanız gereklidir, ancak aynı zamanda eşinizin yönetim işlemlerinde erişim kontrollerini sıkılaştırır.
+This is required if you want a remote access to your peer, but it also hardens access controls on administration operations of your peer.==Eşinize uzaktan erişim istiyorsanız bu gereklidir, ancak aynı zamanda eşinizin yönetim işlemlerine ilişkin erişim kontrollerini de güçlendirir.
Peer User:==Eş Kullanıcısı:
New Peer Password:==Yeni Eş Parolası:
Repeat Peer Password:==Eş Parolasını Tekrarla:
-"Define Administrator"=="Yönetici Belirle"
+Access Rules==Erişim Kuralları
+Protection of all pages: if set to on, access to all pages need authorization; if off, only pages with "_p" extension are protected.==Tüm sayfaların korunması: Açık olarak ayarlanırsa tüm sayfalara erişim için yetkilendirme gerekir; kapalıysa yalnızca "_p" uzantılı sayfalar korunur.
+User Accounts==Kullanıcı Hesapları
Select user==Kullanıcı seç
New user==Yeni kullanıcı
-Edit User==Kullanıcıyı düzenle
-Delete User==Kullanıcıyı sil
-Edit current user:==Geçerli kullanıcıyı düzenle:
-Username==Kullanıcı adı
-Password==Parola
+Username==Kullanıcı Adı
+Password==Şifre
Repeat password==Parolayı tekrarla
First name==Ad
Last name==Soyad
Address==Adres
-Rights==Haklar
+Rights:==Haklar:
Timelimit==Zaman sınırı
Time used==Kullanılan zaman
-Save User==Kullanıcıyı kaydet
-
#-----------------------------
+
#File: ConfigAppearance_p.html
#---------------------------
+"Use"=="Kullan"
+"Delete"=="Sil"
+"Set Colors"=="Renkleri Ayarla"
+"Install"=="Yükle"
Appearance and Integration==Görünüm ve Entegrasyon
You can change the appearance of the YaCy interface with skins.==YaCy arayüzünün görünümünü temalarla değiştirebilirsiniz.
The selected skin and language also affects the appearance of the search page.==Seçilen tema ve dil, ayrıca arama sayfasının görünümünü etkiler.
-If you create a search portal with YaCy then you can==Eğer YaCy ile bir arama portalı oluşturuyorsanız o zaman
-change the appearance of the search page here.==arama sayfasının görünümünü burada değiştirebilir ve arama sayfasındaki varsayılan simgeleri ve bağlantıları kendi simgelerinizle değiştirebilirsiniz.
-#and the default icons and links on the search page can be replaced with your own.==ve arama sayfasındaki varsayılan simgeler ve bağlantılar kendi simgelerinizle değiştirilebilir.
+change the appearance of the search page here.==arama sayfasının görünümünü burada değiştirin.
Skin Selection==Tema Seçimi
-Select one of the default skins, download new skins, or create your own skin.==Varsayılan temalardan birini seçin, yeni temalar indirin veya kendi temanızı oluşturun.
+Select one of the default skins. After selection it might be required to reload the web page while holding the shift key to refresh cached style files.==Varsayılan kaplamalardan birini seçin. Seçimden sonra, önbelleğe alınmış stil dosyalarını yenilemek için üst karakter tuşunu basılı tutarken web sayfasını yeniden yüklemek gerekebilir.
Current skin==Geçerli tema
Available Skins==Kullanılabilir Temalar
-"Use"=="Kullan"
-"Delete"=="Sil"
->Skin Color Definition<==>Tema Renk Tanımı<
+Skin Color Definition==Ten Rengi Tanımı
The generic skin 'generic_pd' can be configured here with custom colors:==Genel tema 'generic_pd' burada özel renklerle yapılandırılabilir:
->Background<==>Arkaplan<
-#>Text<==>Metin<
->Legend<==>Açıklama<
->Table Header<==>Tablo Başlığı<
->Table Item<==>Tablo Öğesi 1<
->Table Item 2<==>Tablo Öğesi 2<
->Table Bottom<==>Tablo Altı<
->Border Line<==>Sınır Çizgisi<
->Sign 'bad'<==>İşaret 'kötü'<
->Sign 'good'<==>İşaret 'iyi'<
->Sign 'other'<==>İşaret 'diğer'<
->Search Headline<==>Arama Başlığı<
->Search URL==>Arama URL
-"Set Colors"=="Renkleri Ayarla"
-#>Skin Download<==>Tema İndir<
-Skins can be installed from download locations==Temalar indirme konumlarından yüklenebilir
+Background==Arka plan
+Text==Metin
+Legend==Efsane
+Table Header==Tablo Başlık
+Table Item==Tablo Öğe
+Table Item 2==Tablo Item 2
+Table Bottom==Tablo Alt
+Border Line==Kenarlık Çizgi
+Sign 'bad'== 'kötü' imzasını atın
+Sign 'good'== 'iyi' imzasını atın
+Sign 'other'== 'diğer' seçeneğini imzalayın
+Search Headline==Arama Başlık
+Search URL==Ara URL
+Search URL + hover==Ara URL + hover
+Skin Download==Görünüm İndir
+Skins can be installed from download locations:==Kaplamalar indirme konumlarından kurulabilir:
Install new skin from URL==URL'den yeni tema yükle
Use this skin==Bu temayı kullan
-"Install"=="Yükle"
Make sure that you only download data from trustworthy sources. The new Skin file==Yalnızca güvenilir kaynaklardan veri indirdiğinizden emin olun.
might overwrite existing data if a file of the same name exists already.==Aynı isimde bir dosya zaten varsa yeni Tema dosyası varolan verileri üzerine yazabilir!
->Unable to get URL:==>URL alınamıyor:
Error saving the skin.==Tema kaydedilirken hata oluştu.
#-----------------------------
#File: ConfigBasic.html
#---------------------------
-Access Configuration==Erişim Yapılandırması
+"ok"=="Tamam"
+"Use the browser preferred language if available"=="Varsa tarayıcının tercih ettiği dili kullanın"
+"Click to generate translated pages"=="Çevrilmiş sayfalar oluşturmak için tıklayın"
+"Active : translated pages are available"=="Aktif: çevrilmiş sayfalar mevcut"
+"Usecase Freeworld"=="Kullanım Örneği Freeworld"
+"Usecase Portal"=="Kullanım Örneği Portalı"
+"Usecase Intranet"=="Kullanım Örneği İntranet"
+"warning"=="uyarı"
+"Set Configuration"=="Yapılandırmayı Ayarla"
Basic Configuration==Temel Yapılandırma
+Your port has changed. Please wait 10 seconds.==Bağlantı noktanız değişti. Lütfen 10 saniye bekleyin.
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==WARNING Bu YaCy örneği "admin" hesabı ve varsayılan şifre "yacy" ile yönetilebilir.
Your YaCy Peer needs some basic information to operate properly==YaCy Eşinizin düzgün çalışabilmesi için bazı temel bilgilere ihtiyacı vardır
-Select a language for the interface==Arayüz için bir dil seçin
+Select a language for the interface:==Arayüz için bir dil seçin:
+Browser==Tarayıcı
English==İngilizce
+Deutsch==Almanca
Français==Fransızca
-汉语/漢語==Çince
-Русский==Rusça
-Українська==Ukraynaca
-हिन्दी==Hintçe
-日本語==Japonca
+Greek==Yunan
+Italiano==İtalyan
+Español==İspanyolca
Use Case: what do you want to do with YaCy:==Kullanım Senaryosu: YaCy ile ne yapmak istiyorsunuz:
+Can not leave from Intranet Indexing : one or more remote Solr instances are attached and may contain private documents indexed.==İntranet Dizine Ekleme'den çıkılamıyor: bir veya daha fazla uzak Solr örneği eklenmiştir ve dizine eklenmiş özel belgeler içerebilir.
+One or more remote Solr instances are attached and may contain indexed public documents irrelevant to your local domain.==Bir veya daha fazla uzak Solr örneği eklenmiştir ve yerel alanınızla ilgisi olmayan, dizine alınmış genel dokümanlar içerebilir.
+One or more remote Solr instances are attached.==Bir veya daha fazla uzak Solr örneği eklendi.
Community-based web search==Topluluk tabanlı web araması
-Join and support the global network 'freeworld', search the web with an uncensored user-owned search network==Küresel ağ 'freeworld' e katılın ve destekleyin, sansürsüz kullanıcı tarafından sahiplenilen bir arama ağı ile web'i arayın
Search portal for your own web pages==Kendi web sayfalarınız için arama portalı
-Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.==YaCy kurulumunuz diğer eşlerden bağımsız davranır ve kendi web taramanızı başlatarak kendi web indeksinizi tanımlarsınız. Bu, kendi web sayfalarınızı aramak veya konu odaklı bir arama portalı tanımlamak için kullanılabilir.
-Files may also be shared with the YaCy server, assign a path here:==Dosyalar ayrıca YaCy sunucusu ile paylaşılabilir, burada bir yol belirtin:
-This path can be accessed at ==Bu yol şu adresten erişilebilir
-Use that path as crawl start point.==Bu yolu tarama başlangıç noktası olarak kullanın.
Intranet Indexing==İç Ağ İndeksleme
-Create a search portal for your intranet or web pages or your (shared) file system.==İç ağınız veya web sayfalarınız veya (paylaşılan) dosya sisteminiz için bir arama portalı oluşturun.
-URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form==URL'ler http/https/ftp ve yerel bir alan adı veya IP ile kullanılabilir veya şu formdaki bir URL ile
-or smb:==veya smb:
+Join and support the global network 'freeworld', search the web with an uncensored user-owned search network==Küresel ağ 'freeworld' e katılın ve destekleyin, sansürsüz kullanıcı tarafından sahiplenilen bir arama ağı ile web'i arayın
+Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.==YaCy kurulumunuz diğer eşlerden bağımsız davranır ve kendi web taramanızı başlatarak kendi web indeksinizi tanımlarsınız. Bu, kendi web sayfalarınızı aramak veya konu odaklı bir arama portalı tanımlamak için kullanılabilir.
+Create a search portal for your intranet or web pages or your (shared) file system. URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form file:///<path> or smb://<server>/<path>==İntranetiniz veya web sayfalarınız veya (paylaşılan) dosya sisteminiz için bir arama portalı oluşturun. URL'ler http/https/ftp ve yerel alan adı veya IP ile ya da şu form dosyasının URL'si ile kullanılabilir:///<path> veya smb://<server>/<path>
Your peer name has not been customized; please set your own peer name==Peer adınız özelleştirilmemiş; lütfen kendi peer adınızı belirleyin
You may change your peer name==Peer adınızı değiştirebilirsiniz
Peer Name:==Peer Adı:
-Your peer cannot be reached from outside==Peer'ınıza dışarıdan erişilemez
-which is not fatal, but would be good for the YaCy network==Bu ölümcül değil, ancak YaCy ağı için iyi olur
-please open your firewall for this port and/or set a virtual server option in your router to allow connections on this port==Lütfen bu bağlantı noktası için güvenlik duvarınızı açın ve/veya bu bağlantı noktasında bağlantılara izin vermek için yönlendiricinizde bir sanal sunucu seçeneği ayarlayın
Your peer can be reached by other peers==Peer'ınıza diğer eşler tarafından ulaşılabilir
Peer Port:==Peer Bağlantı Noktası:
-with SSL== SSL ile
-https enabled==https etkin
-on port==port üzerinde
-
-#Configure your router for YaCy using UPnP:==UPnP kullanarak YaCy için yönlendiricinizi yapılandırın:
+with SSL (https enabled==SSL ile (https etkin
+Configure your router for YaCy using UPnP:==UPnP'yi kullanarak yönlendiricinizi YaCy için yapılandırın:
Configuration was not successful. This may take a moment.==Yapılandırma başarısız oldu. Bu biraz zaman alabilir.
-Set Configuration==Yapılandırmayı Ayarla
+Your Browser will reload the YaCy UI with the new port in 5 seconds...==Tarayıcınız YaCy kullanıcı arayüzünü 5 saniye içinde yeni bağlantı noktasıyla yeniden yükleyecektir...
What you should do next:==Şimdi ne yapmalısınız:
-Your basic configuration is complete! You can now (for example)==Temel yapılandırmanız tamamlandı! Şimdi (örneğin)
-just <==Sadece <
-start an uncensored search==Sansürsüz bir arama başlatın
-start your own crawl and contribute to the global index, or create your own private web index==kendi taramanızı başlatın ve küresel indekse katkıda bulunun veya kendi özel web indeksinizi oluşturun
-set a personal peer profile (optional settings)==kişisel bir peer profil belirleyin (isteğe bağlı ayarlar)
-monitor at the network page what the other peers are doing==diğer eşlerin ne yaptığını ağ sayfasında izleyin
+Your basic configuration is complete! You can now (for example):==Temel yapılandırmanız tamamlandı! Artık şunları yapabilirsiniz (örneğin):
Your Peer name is a default name; please set an individual peer name.==Peer adınız varsayılan bir isimdir; lütfen bireysel bir eş adı belirleyin.
-You did not set a user name and/or a password.==Kullanıcı adı ve/veya şifre belirlemediniz.
-Some pages are protected by passwords.==Bazı sayfalar şifre ile korunmaktadır.
-You should set a password at the Accounts Menu to secure your YaCy peer.::==YaCy eşinizi güvence altına almak için Hesap Menüsü'nde bir şifre belirlemelisiniz.::
-You did not open a port in your firewall or your router does not forward the server port to your peer.==Firewall'da bir bağlantı noktası açmadınız veya yönlendiriciniz sunucu portunu eşinize yönlendirmiyor.
-This is needed if you want to fully participate in the YaCy network.==Bu, YaCy ağına tamamen katılmak istiyorsanız gereklidir.
-You can also use your peer without opening it, but this is not recommended.==Peer'ınızı açmadan da kullanabilirsiniz, ancak bu önerilmez.
+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 recommended.==Güvenlik duvarınızda bir bağlantı noktası açmadınız veya yönlendiriciniz sunucu bağlantı noktasını eşdüzeyinize iletmiyor. YaCy ağına tam olarak katılmak istiyorsanız bu gereklidir. Eşinizi açmadan da kullanabilirsiniz ancak bu önerilmez.
+#-----------------------------
+
+#File: ConfigHTCache_p.html
+#---------------------------
+"A cache hit occurs when the requested data can be found in a cache."=="İstenen veriler bir önbellekte bulunabildiğinde önbellek isabeti meydana gelir."
+"Concurrent access timeout info"=="Eşzamanlı erişim zaman aşımı bilgisi"
+"Set"=="Ayarla"
+"Delete"=="Sil"
+Hypertext Cache Configuration==Hypertext Cache Yapılandırması
+The HTCache stores content retrieved by the HTTP and FTP protocol. Documents from smb:// and file:// locations are not cached.==HTCache, HTTP ve FTP protokollerinden alınan içerikleri depolar. smb:// ve file:// konumlarındaki belgeler önbelleğe alınmaz.
+The cache is a rotating cache: if it is full, then the oldest entries are deleted and new one can fill the space.==Önbellek döner bir önbellektir: Doluysa, en eski girişler silinir ve yeni girişler alanı doldurabilir.
+HTCache Configuration==HTCache Yapılandırması
+Cache hits==Önbellek isabetleri
+The path where the cache is stored==Önbelleğin depolandığı yol
+The current size of the cache==Önbelleğin mevcut boyutu
+The maximum size of the cache==Önbelleğin maksimum boyutu
+MB==MB
+Compression level==Sıkıştırma seviyesi
+Concurrent access timeout==Eşzamanlı erişim zaman aşımı
+The maximum time to wait for acquiring a synchronization lock on concurrent get/store cache operations.==Eşzamanlı get/store önbellek işlemlerinde senkronizasyon kilidi almak için beklenecek maksimum süre.
+Beyond this limit, the crawler or proxy falls back to regular remote resource loading.==Bu sınırın ötesinde tarayıcı veya proxy, düzenli uzaktan kaynak yüklemeye geri döner.
+milliseconds==milisaniye
+Cleanup==Temizlik
+Cache Deletion==Önbellek Silme
+Delete HTTP & FTP Cache==HTTP & FTP Önbelleği Sil
+Delete robots.txt Cache==robots.txt Önbelleği Sil
#-----------------------------
#File: ConfigHeuristics_p.html
#---------------------------
+"heuristic:<name> (redundant)"=="buluşsal yöntem:<name> (gereksiz)"
+"heuristic:<name> (new link)"=="buluşsal yöntem:<name> (yeni bağlantı)"
+"add"=="Ekle"
+"Save"=="Kaydet"
+"reset to default list"=="Varsayılan listeye sıfırla"
+"discover from index"=="dizinden keşfet"
+"switch Solr fields on"=="Solr alanlarını aç"
Heuristics Configuration==Heuristik Yapılandırması
-A heuristic is an 'experience-based technique that helps in problem solving, learning and discovery' (wikipedia).==Bir heuristik, 'problem çözme, öğrenme ve keşifte yardımcı olan deneyime dayalı bir tekniktir' (wikipedia).
-The search heuristics that can be switched on here are techniques that help the discovery of possible search results based on link guessing, in-search crawling and requests to other search engines.==Burada açılabilen arama heuristikleri, link tahmini, arama içi tarama ve diğer arama motorlarına yapılan talepler temelinde olası arama sonuçlarını bulmaya yardımcı olan tekniklerdir.
-When a search heuristic is used, the resulting links are not used directly as search results but the loaded pages are indexed and stored like other content.==Bir arama heuristiği kullanıldığında, elde edilen bağlantılar doğrudan arama sonuçları olarak kullanılmaz, ancak yüklenen sayfalar diğer içerikler gibi indekslenir ve depolanır.
-This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==Bu, siyah listelerin kullanılabileceği ve aranan kelimenin gerçekten heuristik tarafından bulunan sayfada göründüğünden emin olur.
-The success of heuristics is marked with an image==Heuristik başarısı bir resimle işaretlenir
-heuristic:<name>==heuristik:<ad>
-#(redundant)==(gereksiz)
-(new link)==(yeni bağlantı)
-below the favicon left from the search result entry:==arama sonuç girişinin solundaki favicon'un altında:
+When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content. This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==Bir arama buluşsal yöntemi kullanıldığında, ortaya çıkan bağlantılar doğrudan arama sonucu olarak kullanılmaz, ancak yüklenen sayfalar diğer içerikler gibi dizine eklenir ve depolanır. Bu, kara listelerin kullanılabilmesini ve aranan kelimenin buluşsal yöntemle keşfedilen sayfada gerçekten görünmesini sağlar.
+The success of heuristics are marked with an image (==Buluşsal yöntemin başarısı bir görüntüyle işaretlenmiştir (
+) below the favicon left from the search result entry:==) arama sonucu girişinden kalan sık kullanılan simgesinin altında:
The search result was discovered by a heuristic, but the link was already known by YaCy==Arama sonucu bir heuristik tarafından bulundu, ancak bağlantı zaten YaCy tarafından biliniyordu.
The search result was discovered by a heuristic, not previously known by YaCy==Arama sonucu bir heuristik tarafından bulundu, ancak YaCy tarafından önceden bilinmiyordu.
'site'-operator: instant shallow crawl=='site'-operatörü: Anında yüzeysel tarama
@@ -495,678 +646,698 @@ When a search is made using a 'site'-operator (like: 'download site:yacy.net') t
That means: right after the search request the portal page of the host is loaded and every page that is linked on this page that points to a page on the same host.==Bu, arama isteğinden hemen sonra, ana bilgisayarın portal sayfasının yüklendiği ve bu sayfaya bağlı olan ve aynı ana bilgisayarın bir sayfasına işaret eden her sayfanın olduğu anlamına gelir.
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).==Bu 'anlık tarama'nın robots.txt'yi ve iki ardışık sayfa için minimum erişim süresini takip etmesi gerektiğinden bu heuristik oldukça yavaş olabilir, ancak ikinci bir arama kullanılarak tüm istenen arama sonuçlarını bulabilir (birkaç saniyelik küçük bir araştırmadan sonra).
search-result: shallow crawl on all displayed search results==arama sonucu: tüm görünen arama sonuçlarında yüzeysel tarama
+add as global crawl job==global tarama işi olarak ekle
When a search is made then all displayed result links are crawled with a depth-1 crawl.==Bir arama yapıldığında tüm görünen sonuç bağlantıları derinlik-1 tarama ile taranır.
This means: right after the search request every page is loaded and every page that is linked on this page.==Bu, arama isteğinden hemen sonra her sayfanın yüklendiği ve bu sayfaya bağlı olan her sayfanın anlamına gelir.
-If you check 'add as global crawl job' the pages to be crawled are added to the global crawl queue (remote peers can pick up pages to be crawled).==Eğer 'global tarama işi olarak ekle' seçeneğini işaretlerseniz taranacak sayfalar küresel tarama kuyruğuna eklenir (uzak eşler, taranacak sayfaları alabilir).
+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).=='Genel tarama işi olarak ekle' seçeneğini işaretlerseniz, taranacak sayfalar genel tarama kuyruğuna eklenir (uzak eşler, taranacak sayfaları alabilir).
Default is to add the links to the local crawl queue (your peer crawls the linked pages).==Varsayılan olarak, bağlantıları yerel tarama kuyruğuna eklemektir (eşiniz bağlantılı sayfaları tarar).
-add as global crawl job==global tarama işi olarak ekle
-
-#opensearch load external search result list from active systems below==Aktif sistemlerden aşağıdaki harici arama sonuç listesini yükle
+opensearch load external search result list from active systems below==opensearch aşağıdaki aktif sistemlerden harici arama sonucu listesini yükle
When using this heuristic, then every new search request line is used for a call to listed opensearch systems.==Bu heuristik kullanıldığında, her yeni arama isteği satırı, listelenen opensearch sistemlerine bir çağrı için kullanılır.
20 results are taken from remote system and loaded simultaneously, parsed and indexed immediately.==20 sonuç, uzaktaki sistemden alınır ve aynı anda yüklenir, ayrıştırılır ve hemen dizine eklenir.
-To find out more about OpenSearch see==OpenSearch hakkında daha fazla bilgi için
Available/Active Opensearch System==Mevcut/Aktif OpenSearch Sistemi
->Active<==>Aktif<
->Title<==>Başlık<
->Comment<==>Yorum<
-Url (format opensearch==URL (format OpenSearch
-Url template syntax==URL şablon sözdizimi
->delete<==>Sil<
->new<==>Yeni<
-"add"=="Ekle"
-"Save"=="Kaydet"
-"reset to default list"=="Varsayılan listeye sıfırla"
-"discover from index" class=="İndexten keşfet" sınıfı
-start background task, depending on index size this may run a long time==Arka plan görevini başlat, dizin boyutuna bağlı olarak bu uzun sürebilir
+Active==Aktif
+Title==Başlık
+Comment==Yorum
+Url==URL
+delete==silmek
+new==yeni
With the button "discover from index" you can search within the metadata of your local index (Web Structure Index) to find systems which support the Opensearch specification.=="İndexten keşfet" düğmesiyle, yerel indeksinizin (Web Yapı İndeksi) metaverileri içinde arama yapabilir ve Opensearch özelliklerini destekleyen sistemleri bulabilirsiniz.
The task is started in the background. It may take some minutes before new entries appear (after refreshing the page).==Görev arka planda başlatılır. Yeni girişler görünmeden önce birkaç dakika sürebilir (sayfayı yeniledikten sonra).
-Alternatively you may==Alternatif olarak yapabilirsiniz
->copy & paste an example config file<==>bir örnek yapılandırma dosyasını kopyala & yapıştır<
-located in defaults/heuristicopensearch.conf to the DATA/SETTINGS directory.=='ı defaults/heuristicopensearch.conf klasöründen DATA/SETTINGS klasörüne kopyala.
-For the discover function the web graph option of the web structure index and the fields target_rel_s, target_protocol_s, target_urlstub_s have to be switched on in the webgraph Solr schema.==Keşfetme işlevi için, web yapı indeksi'nin web grafiği seçeneği ve target_rel_s, target_protocol_s, target_urlstub_s alanları, webgraph Solr şeması'nda açık olmalıdır.
-"switch Solr fields on"=="Solr alanlarını aç"
-('modify Solr Schema')==('Solr Şemasını Düzenle')
#-----------------------------
-#File: ConfigHTCache_p.html
+#File: ConfigLanguage_p.html
#---------------------------
-Hypertext Cache Configuration==Hypertext Cache Yapılandırması
-The HTCache stores content retrieved by the HTTP and FTP protocol. Documents from smb:// and file:// locations are not cached.==HTCache, HTTP ve FTP protokollerinden alınan içerikleri depolar. smb:// ve file:// konumlarındaki belgeler önbelleğe alınmaz.
-The cache is a rotating cache: if it is full, then the oldest entries are deleted and new one can fill the space.==Önbellek döner bir önbellektir: Doluysa, en eski girişler silinir ve yeni girişler alanı doldurabilir.
-HTCache Configuration==HTCache Yapılandırması
-The path where the cache is stored==Önbelleğin depolandığı yol
-The current size of the cache==Önbelleğin mevcut boyutu
->#[actualCacheSize]# MB for #[actualCacheDocCount]# files, #[docSizeAverage]# KB / file in average==>#[actualCacheSize]# MB için #[actualCacheDocCount]# dosya, ortalama #[docSizeAverage]# KB / dosya
-The maximum size of the cache==Önbelleğin maksimum boyutu
-"Set"=="Ayarla"
-Cleanup==Temizlik
-Cache Deletion==Önbellek Silme
-Delete HTTP & FTP Cache==HTTP & FTP Önbelleği Sil
-Delete robots.txt Cache==robots.txt Önbelleği Sil
-Delete cached snippet-fetching failures during search==Arama sırasında önbelleğe alınmış snippet-getirme hatalarını sil
+"Use"=="Kullan"
"Delete"=="Sil"
-#-----------------------------
-
-#File: ConfigLanguage_p.html
-#---------------------------
+"Install"=="Yükle"
Language selection==Dil seçimi
You can change the language of the YaCy-webinterface with translation files.==YaCy web arayüzünün dilini çeviri dosyalarıyla değiştirebilirsiniz.
-Current language==Geçerli dil
-Author(s) (chronological)==Yazar(lar) (zamana göre)
-Send additions to maintainer==Eklemeleri bakıma yollayın
-Available Languages==Mevcut Diller
+Current language==Mevcut dil
+default(english)==varsayılan (ingilizce)
+Author(s) (chronological)==Yazar(lar) (kronolojik)
+Send additions to maintainer==Bakımcıya eklemeler gönder
+Available Languages==Mevcut Diller
Download Language File==Dil Dosyasını İndir
Supported formats are the internal language file (extension .lng) or XLIFF (extension .xlf) format.==Desteklenen formatlar, iç dil dosyası (uzantı .lng) veya XLIFF (uzantı .xlf) formatıdır.
Install new language from URL==URL'den yeni dil dosyası yükleyin
Use this language==Bu dili kullan
-"Use"=="Kullan"
-"Delete"=="Sil"
-"Install"=="Yükle"
-Unable to get URL:==URL alınamıyor:
-Error saving the language file.==Dil dosyasını kaydetme hatası.
Make sure that you only download data from trustworthy sources. The new language file==Yalnızca güvenilir kaynaklardan veri indirdiğinizden emin olun. Yeni dil dosyası
might overwrite existing data if a file of the same name exists already.==var olan veriyi üzerine yazabilir (aynı isimde bir dosya varsa dikkatli olun)!
-Simple Editor==Basit Düzenleyici
-to add untranslated text==çevrilmemiş metin eklemek için
+Error saving the language file.==Dil dosyasını kaydetme hatası.
#-----------------------------
#File: ConfigNetwork_p.html
#---------------------------
-==
+"Change Network"=="Ağı Değiştir"
+"Save"=="Kaydet"
+"Transport Layer Security"=="Aktarım Katmanı Güvenliği"
+"Secure Sockets Layer"=="Güvenli Yuva Katmanı"
Network Configuration==Ağ Yapılandırması
+Accepted Changes.==Değişiklikler Kabul Edildi.
+Inapplicable Setting Combination:==Uygulanamaz Ayar Kombinasyonu:
No changes were made!==Herhangi bir değişiklik yapılmadı!
-Accepted Changes==Değişiklikler kabul edildi
-Inapplicable Setting Combination==Uygunsuz Ayar Kombinasyonu
-#P2P operation can run without remote indexing, but runs better with remote indexing switched on. Please switch 'Accept Remote Crawl Requests' on==P2P işlemi uzaktan dizinleme olmadan çalışabilir, ancak uzaktan dizinleme açıkken daha iyi çalışır. Lütfen 'Uzaktan Tarama İsteklerini Kabul Et' seçeneğini açın
-For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration==P2P işlemi için en azından DHT dağıtımı veya DHT alımı (veya her ikisi) ayarlanmalıdır. Böylece bir Robinson yapılandırması tanımlamış oldunuz
+For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration.==P2P işlemi için en az DHT dağıtım veya DHT alma (veya her ikisi) ayarlanmalıdır. Böylece bir Robinson konfigürasyonu tanımladınız.
Global Search in P2P configuration is only allowed, if index receive is switched on. You have a P2P configuration, but are not allowed to search other peers.==P2P yapılandırmasında küresel arama, indeks alımı açıkken yalnızca izin verilir. P2P yapılandırmanız var, ancak diğer eşlere arama yapma izniniz yok.
-For Robinson Mode, index distribution and receive are switched off==Robinson Modu için indeks dağıtımı ve alımı kapatılmıştır
-#This Robinson Mode switches remote indexing on, but limits targets to peers within the same cluster. Remote indexing requests from peers within the same cluster are accepted==Bu Robinson Modu uzaktan dizinlemeyi açar, ancak hedefleri aynı kümedeki eşlerle sınırlar. Aynı kümeden gelen uzaktan dizinleme istekleri kabul edilir
-#This Robinson Mode does not allow any remote indexing (neither requests remote indexing, nor accepts it)==Bu Robinson Modu hiçbir uzaktan dizinlemeye izin vermez (ne uzaktan dizinleme isteği ne de kabul eder)
+For Robinson Mode, index distribution and receive is switched off.==Robinson Modu için indeks dağıtımı ve alımı kapatılmıştır.
Network and Domain Specification==Ağ ve Alan Belirleme
-# With this configuration it is not allowed to authentify automatically from localhost!==Bu yapılandırmayla localhost'tan otomatik kimlik doğrulamaya izin verilmez!
-# Please open the Account Configuration and set a new password.==Lütfen Hesap Yapılandırması'nı açın ve yeni bir şifre belirleyin.
YaCy can operate a computing grid of YaCy peers or as a stand-alone node.==YaCy, bir YaCy eşleri hesaplama ızgarası olarak veya bağımsız bir düğüm olarak çalışabilir.
To control that all participants within a web indexing domain have access to the same domain,==Web dizinleme alanı içindeki tüm katılımcıların aynı alanı erişebilmesini kontrol etmek için,
this network definition must be equal to all members of the same YaCy network.==bu ağ tanımı, aynı YaCy ağı üyelerinin tamamına eşit olmalıdır.
Network Definition==Ağ Tanımı
+Enter custom URL...==Özel URL girin...
+Remote Network Definition URL==Uzak Ağ Tanımı URL
Network Nick==Ağ Adı
Long Description==Uzun Açıklama
Indexing Domain==İndeksleme Alanı
-#DHT==DHT
-"Change Network"=="Ağı Değiştir"
-
+DHT==DHT
Distributed Computing Network for Domain==Etki Alanı İçin Dağıtılmış Hesaplama Ağı
Enable Peer-to-Peer Mode to participate in the global YaCy network,==Küresel YaCy ağına katılmak için Peer-to-Peer Modunu etkinleştirin,
or if you want your own separate search cluster with or without connection to the global network.==veya kendi ayrı arama kümenizi, küresel ağa bağlantı olmadan veya bağlantı ile oluşturmak istiyorsanız.
Enable 'Robinson Mode' for a completely independent search engine instance,==Tamamen bağımsız bir arama motoru örneği için 'Robinson Modu'nu etkinleştirin,
without any data exchange between your peer and other peers.==eşiniz ve diğer eşler arasında hiçbir veri alışverişi olmadan.
-
Peer-to-Peer Mode==Peer-to-Peer Modu
->Index Distribution==>İndeks Dağıtımı
-This enables automated, DHT-ruled Index Transmission to other peers==Bu, diğer eşlere otomatik, DHT kurallı İndeks İletimini etkinleştirir
->enabled==>etkin
+Index Distribution==Endeks Dağılımı
+This enables automated, DHT-ruled Index Transmission to other peers.==Bu, diğer eşlere otomatik, DHT kurallı Dizin Aktarımına olanak tanır.
+enabled==etkinleştirilmiş
disabled during crawling==tarama sırasında devre dışı bırakıldı
disabled during indexing==indeksleme sırasında devre dışı bırakıldı
->Index Receive==>İndeks Alma
-Accept remote Index Transmissions==Uzaktan İndeks İletimlerini Kabul Et
-This works only if you have a senior peer. The DHT-rules do not work without this function==Bu, yalnızca kıdemli bir eşiniz varsa çalışır. DHT kuralları bu işlev olmadan çalışmaz
->reject==>reddet
+Index Receive==Dizin Alma
+Accept remote Index Transmissions.==Uzak Dizin İletimlerini kabul edin.
+This works only if you have a senior peer. The DHT-rules do not work without this function.==Bu yalnızca kıdemli bir akranınız varsa işe yarar. DHT-kuralları bu işlev olmadan çalışmaz.
+reject==reddetmek
accept transmitted URLs that match your blacklist==Kara listenizle eşleşen iletilen URL'leri kabul et
-#>Accept Remote Crawl Requests==>Uzaktan Tarama İsteklerini Kabul Et
-#Perform web indexing upon request of another peer==Başka bir eşin isteği üzerine web indeksleme yap
-#This works only if you are a senior peer==Bu, yalnızca kıdemli bir eşseniz çalışır
-#Load with a maximum of==En fazla yükle
-#pages per minute==dakikada sayfa
->Robinson Mode==>Robinson Modu
-If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers==Eğer eşiniz 'Robinson Modu'nda çalışıyorsa, YaCy'yi kendi arama portalınız için bir arama motoru olarak çalıştırırsınız ve diğer eşlere veri alışverişi yapmazsınız
-There is no index receive and no index distribution between your peer and any other peer==Eşiniz ile diğer eşler arasında ne indeks alışverişi ne de indeks dağıtımı bulunmaktadır
-In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster==Robinson kümeleşmesi durumunda, bu kümedeki eşlerden uzaktan tarama isteklerini kabul etme olasılığı bulunabilir
->Private Peer==>Özel Eş
-Your search engine will not contact any other peer, and will reject every request==Arama motorunuz başka hiçbir eşle iletişime geçmeyecek ve her isteği reddedecektir
-#>Private Cluster==>Özel Küme
-#Your peer is part of a private cluster without public visibility
-#Index data is not distributed, but remote crawl requests are distributed and accepted from your cluster
-#Search requests are spread over all peers of the cluster, and answered from all peers of the cluster
-#List of ip:port - addresses of the cluster: (comma-separated)
->Public Cluster==>Genel Küme
-Your peer is part of a public cluster within the YaCy network==Eşiniz, YaCy ağı içindeki genel bir kümenin bir parçasıdır
+allow==izin vermek
+deny remote search==uzaktan aramayı reddet
+Robinson Mode==Robinson Modu
+If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers.==Eşiniz 'Robinson Modu'nda çalışıyorsa, diğer eşlerle veri alışverişi yapmadan kendi arama portalınız için bir arama motoru olarak YaCy çalıştırırsınız.
+There is no index receive and no index distribution between your peer and any other peer.==Eşiniz ile diğer herhangi bir eş arasında dizin alımı ve dizin dağıtımı yoktur.
+In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster.==Robinson kümeleme durumunda, o kümenin eşlerinden gelen uzaktan tarama istekleri kabul edilebilir.
+Private Peer==Özel Akran
+Your search engine will not contact any other peer, and will reject every request.==Arama motorunuz başka hiçbir eşle iletişim kurmayacak ve her isteği reddedecektir.
+Public Peer==Herkese Açık Akran
+You are visible to other peers and contact them to distribute your presence.==Diğer meslektaşlarınız tarafından görünür olursunuz ve varlığınızı yaymak için onlarla iletişim kurarsınız.
+Your peer does not accept any outside index data, but responds on all remote search requests.==Eşiniz herhangi bir dış dizin verisini kabul etmez ancak tüm uzaktan arama isteklerine yanıt verir.
+Public Cluster==Genel Küme
+Your peer is part of a public cluster within the YaCy network.==Eşiniz YaCy ağı içindeki genel bir kümenin parçasıdır.
Index data is not distributed, but remote crawl requests are distributed and accepted==İndeks verileri dağıtılmaz, ancak uzaktan tarama istekleri dağıtılır ve kabul edilir
-Search requests are spread over all peers of the cluster, and answered from all peers of the cluster==Arama istekleri, kümenin tüm eşleri üzerinde yayılır ve kümenin tüm eşlerinden cevap alır
+Search requests are spread over all peers of the cluster, and answered from all peers of the cluster.==Arama istekleri kümenin tüm eşlerine yayılır ve kümenin tüm eşlerinden yanıtlanır.
List of .yacy or .yacyh - domains of the cluster: (comma-separated)==Kümenin .yacy veya .yacyh - etki alanlarının listesi: (virgülle ayrılmış)
->Public Peer==>Genel Eş
-You are visible to other peers and contact them to distribute your presence==Diğer eşlere görünürsünüz ve varlığınızı dağıtmak için onlarla iletişim kurarsınız
-Your peer does not accept any outside index data, but responds on all remote search requests==Eşiniz dışarıdan hiçbir indeks verisini kabul etmez, ancak tüm uzaktan arama isteklerine yanıt verir
-#>Peer Tags==>Eş Etiketleri
-When you allow access from the YaCy network, your data is recognized using keywords==YaCy ağından erişime izin verdiğinizde, verileriniz anahtar kelimeler kullanılarak tanınır
-Please describe your search portal with some keywords (comma-separated)==Lütfen arama portalınızı bazı anahtar kelimelerle açıklayın (virgülle ayrılmış)
+Peer Tags==Akran Etiketleri
+When you allow access from the YaCy network, your data is recognized using keywords.==YaCy ağından erişime izin verdiğinizde verileriniz anahtar kelimeler kullanılarak tanınır.
+Please describe your search portal with some keywords (comma-separated).==Lütfen arama portalınızı bazı anahtar kelimelerle (virgülle ayrılmış) tanımlayın.
If you leave the field empty, no peer asks your peer. If you fill in a '*', your peer is always asked.==Alanı boş bırakırsanız hiçbir eş, eşinize sormaz. '*' doldurursanız eşiniz her zaman sorulur.
-"Save"=="Kaydet"
-
+Outgoing communications encryption==Giden iletişim şifrelemesi
+Protocol operations encryption==Protokol işlemleri şifrelemesi
+Prefer HTTPS for outgoing connexions to remote peers.==Uzak eşlere giden bağlantılar için HTTPS tercih edin.
+When TLS/SSL is enabled on remote peers, it should be used to encrypt outgoing communications with them (for operations such as network presence, index transfer, remote crawl...).==Uzak eşlerde TLS/SSL etkinleştirildiğinde, onlarla giden iletişimleri şifrelemek için kullanılmalıdır (ağ varlığı, dizin aktarımı, uzaktan tarama gibi işlemler için...).
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Katı TLS'nin aksine, sertifikaların güvenilir sertifika yetkililerine (CA) göre doğrulanmadığını, dolayısıyla YaCy eşlerinin kendinden imzalı sertifikalar kullanmasına izin verdiğini lütfen unutmayın.
#-----------------------------
-#Dosya: ConfigParser_p.html
+#File: ConfigParser_p.html
#---------------------------
-Parser Configuration==Parser Yapılandırması
-Content Parser Settings==İçerik Parser Ayarları
-With this settings you can activate or deactivate parsing of additional content-types based on their MIME-types.==Bu ayarlarla, MIME tiplerine dayalı olarak ek içerik türlerinin ayrıştırılmasını etkinleştirebilir veya devre dışı bırakabilirsiniz.
-For a detailed description of the various MIME-types take a look at==Çeşitli MIME tiplerinin detaylı açıklaması için şu adrese göz atabilirsiniz:
-http://www.iana.org/assignments/media-types/==http://www.iana.org/assignments/media-types/.
-If you want to test a specific parser you can do so using the==Belirli bir ayrıştırıcıyı test etmek istiyorsanız, bunu şu kullanarak yapabilirsiniz:
->File Viewer<==>Dosya Görüntüleyici<
-> enable/disable<==> etkinleştir/devre dışı bırak<
->Extension<==>Uzantı<
->Mime-Type<==>MIME Türü<
-"Submit"=="Kaydet"
+"Submit"=="Gönder"
+Parser Configuration==Ayrıştırıcı Yapılandırması
+Content Parser Settings==İçerik Ayrıştırıcı Ayarları
+With this settings you can activate or deactivate parsing of additional content-types based on their MIME-types.==Bu ayarlarla, ek içerik türlerinin MIME türlerine göre ayrıştırılmasını etkinleştirebilir veya devre dışı bırakabilirsiniz.
+For a detailed description of the various MIME-types take a look at==Çeşitli MIME türlerinin ayrıntılı bir açıklaması için şu adrese bakın:
+Extension==Eklenti
+Mime-Type==Mime-Tipi
#-----------------------------
-#Dosya: ConfigPortal_p.html
+#File: ConfigPortal_p.html
#---------------------------
+"Remote results resorting can be triggered once the 'Refresh sorting' button (near the 'Search' button) becomes available."=="Uzaktan sonuçlara başvurma, 'Sıralamayı yenile' düğmesi ("Ara" düğmesinin yanında) kullanılabilir hale geldiğinde tetiklenebilir."
+"This usually improves ranking accuracy, but doesn't work well for users who have Javascript disabled, are using screen readers, or are on slow computers."=="Bu genellikle sıralama doğruluğunu artırır ancak Javascript'i devre dışı bırakan, ekran okuyucu kullanan veya yavaş bilgisayar kullanan kullanıcılar için pek işe yaramaz."
+"idea"=="fikir"
+"Detailed statistics"=="Ayrıntılı istatistikler"
+"Change Search Page"=="Arama Sayfasını Değiştir"
+"Set to Default Values"=="Varsayılan Değerlere Ayarla"
Integration of a Search Portal==Arama Portalının Entegrasyonu
-If you like to integrate YaCy as portal for your web pages, you may want to change icons and messages on the search page.==Web sayfalarınız için bir portal olarak YaCy'yi entegre etmek istiyorsanız, arama sayfasındaki simgeleri ve iletileri değiştirmek isteyebilirsiniz.
-The search page may be customized.==Arama sayfasını özelleştirebilirsiniz.
-You can change the 'corporate identity'-images, the greeting line=='Kurumsal kimlik' resimlerini, selamlama satırını değiştirebilirsiniz
-and a link to a home page that is reached when the 'corporate identity'-images are clicked.==ve 'kurumsal kimlik' resimlerine tıklandığında ulaşılan bir ana sayfa bağlantısı.
-To change also colours and styles use the Appearance Servlet for different skins and languages.==Ayrıca renkleri ve stilleri değiştirmek için farklı stiller ve diller için Görünüm Servleti'ni kullanın.
-Greeting Line<==Selamlama Satırı<
-URL of Home Page<==Ana Sayfanın URL'si<
-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 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
+If you like to integrate YaCy as portal for your web pages, you may want to change icons and messages on the search page.==YaCy adresini web sayfalarınız için portal olarak entegre etmek isterseniz, arama sayfasındaki simgeleri ve mesajları değiştirmek isteyebilirsiniz.
+The search page may be customized. You can change the 'corporate identity'-images, the greeting line==Arama sayfası özelleştirilebilir. 'Kurumsal kimlik' görsellerini, selamlama satırını değiştirebilirsiniz
+and a link to a home page that is reached when the 'corporate identity'-images are clicked.==ve 'kurumsal kimlik' görsellerine tıklandığında ulaşılan ana sayfaya bağlantı.
+Greeting Line==Tebrik Hattı
+URL of Home Page==Ana Sayfanın URL
+URL of a Small Corporate Image==Küçük Bir Kurumsal İmajın URL
+URL of a Large Corporate Image==Büyük Bir Kurumsal İmajın URL
+Alternative text for Corporate Images==Kurumsal Görseller için alternatif metin
+Enable Search for Everyone?==Herkes için Arama Etkinleştirilsin mi?
+Search is available for everyone==Arama herkes tarafından kullanılabilir
+Only the administrator is allowed to search==Yalnızca yöneticinin arama yapmasına izin verilir
+Show Navigation Bar on Search Page?==Arama Sayfasında Gezinme Çubuğu gösterilsin mi?
+Show Navigation Top-Menu==Gezinme Üst Menüsünü Göster
+no link to YaCy Menu (admin must navigate to /Status.html manually)==YaCy Menüsüne bağlantı yok (yöneticinin manuel olarak /Status.html adresine gitmesi gerekir)
+Show Advanced Search Options on Search Page?==Arama Sayfasında Gelişmiş Arama Seçenekleri gösterilsin mi?
+Show Advanced Search Options on index.html==index.html üzerinde Gelişmiş Arama Seçeneklerini Göster
+do not show Advanced Search==Gelişmiş Aramayı gösterme
+Media Search==Medya Arama
+Extended==Uzatılmış
+Strict==Sıkı
+Control whether media search results are as default strictly limited to indexed documents matching exactly the desired content domain (images, videos or applications specific),==Medya arama sonuçlarının varsayılan olarak kesinlikle istenen içerik alanıyla (resimler, videolar veya uygulamalara özel) eşleşen dizine alınmış belgelerle sınırlı olup olmadığını kontrol edin,
+or extended to pages including such medias (provide generally more results, but eventually less relevant).==veya bu tür medyaları içeren sayfalara genişletildi (genellikle daha fazla sonuç sağlar, ancak sonuçta daha az alakalı).
+Remote results resorting==Uzaktan sonuçlara başvurma
+On demand, server-side==İsteğe bağlı olarak sunucu tarafı
+Automated, with JavaScript in the browser.==Tarayıcıda JavaScript ile otomatik.
+Automated results resorting with JavaScript makes the browser load the full result set of each search request.==JavaScript ile otomatik sonuçlara başvurulması, tarayıcının her arama isteğinin tam sonuç kümesini yüklemesini sağlar.
+This may lead to high system loads on the server.==Bu, sunucuda yüksek sistem yüklerine yol açabilir.
+Remote search encryption==Uzaktan arama şifrelemesi
+Prefer https for search queries on remote peers.==Uzak eşlerdeki arama sorguları için https'yi tercih edin.
+When SSL/TLS is enabled on remote peers, https should be used to encrypt data exchanged with them when performing peer-to-peer searches.==Uzak eşlerde SSL/TLS etkinleştirildiğinde, eşler arası aramalar yapılırken onlarla alınıp verilen verileri şifrelemek için https kullanılmalıdır.
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Katı TLS'nin aksine, sertifikaların güvenilir sertifika yetkililerine (CA) göre doğrulanmadığını, dolayısıyla YaCy eşlerinin kendinden imzalı sertifikalar kullanmasına izin verdiğini lütfen unutmayın.
+Snippet Fetch Strategy & Link Verification==Parçacık Getirme Stratejisi & Bağlantı Doğrulaması
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)
-NOCACHE: no use of web cache, load all snippets online==NOCACHE: Web önbelleği kullanılmaz, tüm snippet'ler çevrimiçi yüklenir
-IFFRESH: use the cache if the cache exists and is fresh otherwise load online==IFFRESH: Önbelleği kullanın eğer önbellek varsa ve taze ise, aksi takdirde çevrimiçi yükleyin
-IFEXIST: use the cache if the cache exist or load online==IFEXIST: Önbelleği kullanın eğer önbellek varsa veya çevrimiçi yükleyin
-If verification fails, delete index reference==Doğrulama başarısız olursa, dizin başvurusunu sil
-CACHEONLY: never go online, use all content from cache. If no cache entry exist, consider content nevertheless as available and show result without snippet==CACHEONLY: Asla çevrimiçi gitmeyin, tüm içeriği önbellekten kullanın. Önbellek girişi yoksa, içeriği yine de mevcut olarak düşünün ve snippet olmadan sonucu gösterin
-FALSE: no link verification and not snippet generation: all search results are valid without verification==FALSE: Bağlantı doğrulaması yok ve snippet oluşturma: tüm arama sonuçları doğrulama olmadan geçerlidir
-Greedy Learning Mode==Aç Gözlü Öğrenme Modu
-load documents linked in search results, will be deactivated automatically when index size==Arama sonuçlarında bağlantılı belgeleri yükleyin, dizin boyutu otomatik olarak devre dışı bırakılacaktır
-Show Navigation Bar on Search Page?==Arama Sayfasında Navigasyon Çubuğunu Göster?
-Show Navigation Top-Menu ==Top-Menu Navigasyonunu Göster
-no link to YaCy Menu (admin must navigate to /Status.html manually)==YaCy Menüsüne bağlantı yok (yönetici /Status.html sayfasına manuel olarak gitmelidir)
-Show Advanced Search Options on Search Page?==Arama Sayfasında Gelişmiş Arama Seçeneklerini Göster?
-Show Advanced Search Options on index.html ==index.html sayfasında Gelişmiş Arama Seçeneklerini Göster
-do not show Advanced Search==Gelişmiş Arama'yı gösterme
-Default Pop-Up Page<==Varsayılan Pop-up<
->Status Page==>Durum Sayfası
->Search Front Page==>Arama Ana Sayfa
->Search Page (small header)==>Arama Sayfası (küçük başlık)
->Interactive Search Page==>İnteraktif Arama Sayfası
+Counts by origin :==Kökene göre sayımlar:
+NOCACHE: no use of web cache, load all snippets online==NOCACHE: web önbelleği kullanılmaz, tüm parçacıkları çevrimiçi olarak yükler
+IFFRESH: use the cache if the cache exists and is fresh otherwise load online==IFFRESH: önbellek mevcutsa ve yeniyse önbelleği kullanın, aksi halde çevrimiçi yükleyin
+IFEXIST: use the cache if the cache exist or load online==IFEXIST: önbellek mevcutsa önbelleği kullanın veya çevrimiçi yükleyin
+If verification fails, delete index reference==Doğrulama başarısız olursa dizin referansını silin
+CACHEONLY: never go online, use all content from cache. If no cache entry exist, consider content nevertheless as available and show result without snippet==ONLY: asla çevrimiçi olmayın, önbellekteki tüm içeriği kullanın. Önbellek girişi yoksa içeriği yine de mevcut olarak kabul edin ve sonucu snippet olmadan gösterin
+FALSE: no link verification and not snippet generation: all search results are valid without verification==YANLIŞ: bağlantı doğrulaması yok ve snippet oluşturulamıyor: tüm arama sonuçları doğrulama olmadan geçerlidir
+Greedy Learning Mode==Açgözlü Öğrenme Modu
+Index remote results==Uzak sonuçları indeksleyin
+add remote search results to the local index ( default=on, it is recommended to enable this option ! )==uzak arama sonuçlarını yerel dizine ekle ( varsayılan=açık, bu seçeneğin etkinleştirilmesi önerilir ! )
+Limit size of indexed remote results==Dizine eklenen uzak sonuçların boyutunu sınırlayın
+maximum allowed size in kbytes for each remote search result to be added to the local index (for example, a 1000kbytes limit might be useful if you are running YaCy with a low memory setup)==Yerel dizine eklenecek her uzak arama sonucu için kbayt cinsinden izin verilen maksimum boyut (örneğin, YaCy'yi düşük bellek kurulumuyla çalıştırıyorsanız 1000 kbaytlık bir sınır yararlı olabilir)
+Default Pop-Up Page==Varsayılan Açılır Sayfa
+Status Page==Durum Sayfası
+Search Front Page==Ön Sayfada Ara
+Search Page (small header)==Arama Sayfası (küçük başlık)
+Interactive Search Page==İnteraktif Arama Sayfası
Default maximum number of results per page==Sayfa başına varsayılan maksimum sonuç sayısı
-Default index.html Page (by forwarder)==Varsayılan index.html Sayfası (yönlendirmeli)
-Target for Click on Search Results==Arama Sonuçlarına Tıklama Hedefi
-
+Default index.html Page (by forwarder)==Varsayılan index.html Sayfası (ileticiye göre)
+Target for Click on Search Results==Arama Sonuçlarına Tıklanma Hedefi
"_blank" (new window)=="_blank" (yeni pencere)
"_self" (same window)=="_self" (aynı pencere)
-"_parent" (the parent frame of a frameset)=="_parent" (çerçeve setinin ana çerçevesi)
-"_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ı)
+"_parent" (the parent frame of a frameset)=="_parent" (çerçeve kümesinin ana çerçevesi)
+"_top" (top of all frames)=="_top" (tüm çerçevelerin en üstünde)
+"searchresult" (a default custom page name for search results)=="arama sonucu" (arama sonuçları için varsayılan özel sayfa adı)
+Special Target as Exception for an URL-Pattern==URL-Deseninin İstisnası Olarak Özel Hedef
+Pattern:==Model:
+Exclude Hosts==Toplantı Sahiplerini 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 ancak site:<host> operatörü kullanılarak eklenebilecek ana bilgisayarların listesi:
+'About' Column (shown in a column alongside with the search result page)=='Hakkında' Sütunu (arama sonucu sayfasının yanında yanında bir sütunda gösterilir)
+(Headline)==(Başlık)
+(Content)==(İçerik)
+The search page can be integrated in your own web pages with an iframe. Simply use the following code:==Arama sayfası bir iframe ile kendi web sayfalarınıza entegre edilebilir. Aşağıdaki kodu kullanmanız yeterlidir:
+This would look like:==Bu şöyle görünecektir:
+For a search page with a small header, use this code:==Küçük başlığa sahip bir arama sayfası için şu kodu kullanın:
+A third option is the interactive search. Use this code:==Üçüncü seçenek ise etkileşimli aramadır. Bu kodu kullanın:
+#-----------------------------
-#Dosya: ConfigProfile_p.html
+#File: ConfigProfile_p.html
#---------------------------
+"Save"=="Kaydet"
Your Personal Profile==Kişisel Profiliniz
-You can create a personal profile here, which can be seen by other YaCy-members==Burada kişisel bir profil oluşturabilirsiniz, diğer YaCy üyeleri tarafından görülebilir
-or in the public using a FOAF RDF file.==veya halka açık bir FOAF RDF dosyası kullanarak.
-#Name==Ad
-#Nick Name==Takma Ad
-Homepage (appears on every Supporter Page as long as your peer is online)==Ana Sayfa (Eşiniz çevrimiçi olduğu sürece her Destekçi Sayfasında görünür)
-#eMail==ePosta
-#ICQ==ICQ
-#Jabber==Jabber
-#Yahoo!==Yahoo!
-#MSN==MSN
-#Skype==Skype
+You can create a personal profile here, which can be seen by other YaCy-members==Burada diğer YaCy üyelerinin görebileceği kişisel bir profil oluşturabilirsiniz.
+Name==Ad
+Nick Name==Takma Ad
+eMail==e-posta
+ICQ==ICQ
+Jabber==gevezelik
+Yahoo!==Yahoo!
+MSN==MSN
+Skype==Skype
Comment==Yorum
-"Save"=="Kaydet"
-You can use <==Şunu kullanabilirsiniz <
-> here.==> burada.
#-----------------------------
-#Dosya: ConfigProperties_p.html
+#File: ConfigProperties_p.html
#---------------------------
-Advanced Config==Gelişmiş Yapılandırma
-Here are all configuration options from YaCy.==İşte YaCy'den tüm yapılandırma seçenekleri.
-You can change anything, but some options need a restart, and some options can crash YaCy, if wrong values are used.==Herhangi bir şeyi değiştirebilirsiniz, ancak bazı seçenekler yeniden başlatma gerektirir ve yanlış değerler kullanılırsa bazı seçenekler YaCy'yi çökertebilir.
-For explanation please look into defaults/yacy.init==Açıklama için lütfen defaults/yacy.init dosyasına bakın
"Save"=="Kaydet"
-"Clear"=="Temizle"
+"Clear"=="Temizlemek"
+Advanced Config==Gelişmiş Yapılandırma
+Here are all configuration options from YaCy.==YaCy adresinden tüm yapılandırma seçeneklerini burada bulabilirsiniz.
+You can change anything, but some options need a restart, and some options can crash YaCy, if wrong values are used.==Herhangi bir şeyi değiştirebilirsiniz, ancak bazı seçeneklerin yeniden başlatılması gerekir ve yanlış değerler kullanılırsa bazı seçenekler YaCy kilitlenebilir.
+For explanation please look into defaults/yacy.init==Açıklama için lütfen varsayılanlara bakın/yacy.init
#-----------------------------
-#Dosya: ConfigRobotsTxt_p.html
+#File: ConfigRobotsTxt_p.html
#---------------------------
-Exclude Web-Spiders==Web-Spiderları Hariç Tut
-Here you can set up a robots.txt for all webcrawlers that try to access the webinterface of your peer.==Burada, peer'ınızın web arayüzüne erişmeye çalışan tüm web tarayıcıları için bir robots.txt yapabilirsiniz.
-is a volunteer agreement most search-engines (including YaCy) follow.==çoğu arama motorunun (YaCy dahil) takip ettiği gönüllü bir anlaşmadır.
-It disallows crawlers to access webpages or even entire domains.==Bu, tarayıcıların web sayfalarına veya hatta tüm alanlara erişmelerini engeller.
-Deny access to==Erişimi engelle
-Entire Peer==Tüm Peer
+"Save restrictions"=="Kısıtlamaları kaydet"
+Exclude Web-Spiders==Web Örümceklerini Hariç Tut
+Here you can set up a robots.txt for all webcrawlers that try to access the webinterface of your peer.==Burada, eşinizin web arayüzüne erişmeye çalışan tüm web tarayıcıları için bir robots.txt dosyası oluşturabilirsiniz.
+robots.txt==robots.txt
+is a voluntary agreement most search-engines (including YaCy) follow.==çoğu arama motorunun (YaCy dahil) takip ettiği gönüllü bir anlaşmadır.
+It disallows crawlers to access webpages or even entire domains.==Tarayıcıların web sayfalarına ve hatta tüm alan adlarına erişmesine izin vermez.
+Unable to access the local file:==Yerel dosyaya erişilemiyor:
+Deletion of==Silinmesi
+htroot/robots.txt==htroot/robots.txt
+failed==arızalı
+Deny access to==Erişimi reddet
+Entire Peer==Tüm Akran
Status page==Durum sayfası
Network pages==Ağ sayfaları
-Surftips==Surftips
+Surftips==Surf İpuçları
News pages==Haber sayfaları
Blog==Blog
-Wiki==Wiki
-Public bookmarks==Halka açık yer işaretleri
+Wiki==Viki
+Public bookmarks==Genel yer imleri
Home Page==Ana Sayfa
File Share==Dosya Paylaşımı
-"Save restrictions"=="Kısıtlamaları kaydet"
+Impressum==Künye
#-----------------------------
-#Dosya: ConfigSearchBox.html
+#File: ConfigSearchBox.html
#---------------------------
+"Search"=="Ara"
Integration of a Search Box==Arama Kutusunun Entegrasyonu
-We give information how to integrate a search box on any web page that==Herhangi bir web sayfasına bir arama kutusunu nasıl entegre edeceğimiz hakkında bilgi veriyoruz,
+We give information how to integrate a search box on any web page that==Herhangi bir web sayfasına bir arama kutusunun nasıl entegre edileceği hakkında bilgi veriyoruz.
calls the normal YaCy search window.==normal YaCy arama penceresini çağırır.
-Simply use the following code:==Sadece şu kodu kullanın:
- MySearch== Aramam
-"Search"=="Ara"
-This would look like:==Bu şöyle görünecek:
-This does not use a style sheet file to make the integration into another web page with a different style sheet easier.==Bu, başka bir web sayfasına farklı bir stil sayfasıyla entegrasyonu kolaylaştırmak için bir stil sayfası dosyası kullanmaz.
-You would need to change the following items:==Aşağıdaki öğeleri değiştirmeniz gerekecektir:
-Replace the given colors #eeeeee (box background) and #cccccc (box border)==Verilen renkleri #eeeeee (kutu arka planı) ve #cccccc (kutu sınırı) ile değiştirin
+Simply use the following code:==Aşağıdaki kodu kullanmanız yeterlidir:
+This would look like:==Bu şöyle görünecektir:
+MySearch==Aramam
+This does not use a style sheet file to make the integration into another web page with a different style sheet easier.==Bu, farklı bir stil sayfasına sahip başka bir web sayfasına entegrasyonu kolaylaştırmak için bir stil sayfası dosyası kullanmaz.
+You would need to change the following items:==Aşağıdaki öğeleri değiştirmeniz gerekir:
+Replace the given colors #eeeeee (box background) and #cccccc (box border)==Verilen #eeeeee (kutu arka planı) ve #cccccc (kutu kenarlığı) renklerini değiştirin
Replace the word "MySearch" with your own message=="Aramam" kelimesini kendi mesajınızla değiştirin
#-----------------------------
-
-#Dosya: ConfigSearchPage_p.html
-#---------------------------
-==
-Search Page<==Arama Sayfası<
->Search Result Page Layout Configuration<==>Arama Sonuçları Sayfası Düzen Yapılandırma<
-Below is a generic template of the search result page. Mark the check boxes for features you would like to be displayed.==Aşağıda arama sonuçları sayfasının genel bir şablonu bulunmaktadır. Gösterilmesini istediğiniz özellikleri işaretleyin.
-To change colors and styles use the ==Renkleri ve stilleri değiştirmek için kullanın
->Appearance<==>Görünüm<
- menu for different skins.==farklı temalar için menü.
-Other portal settings can be adjusted in Generic Search Portal menu.==Diğer portal ayarları, Genel Arama Portalı menüsünde ayarlanabilir.
->Page Template<==>Sayfa Şablonu<
-#>Administration<==>Yönetim<
->Web Search<==>Web Arama<
->File Search<==>Dosya Arama<
->Help / YaCy Wiki<==>Yardım / YaCy Wiki<
-"Search"=="Ara"
-#>Text<==>Metin<
->Images<==>Resimler<
-#>Audio<==>Ses<
-#>Video<==>Video<
->Applications<==>Uygulamalar<
->more options<==>daha fazla seçenek<
-#>Tag<==>Etiket<
->Topics<==>Konular<
-#>Cloud<==>Bulut<
->Protocol<==>Protokol<
->Filetype<==>Dosya Türü<
->Provider<==>Sağlayıcı<
->Wiki Name Space<==>Wiki Ad Alanı Gezgini<
->Language<==>Dil<
->Author<==>Yazarlar<
->Vocabulary<==>Kelime Dağarcığı<
->Title of Result<==>Sonuç Başlığı<
-Description and text snippet of the search result==Arama sonuçlarının açıklaması ve metin alıntısı
-http://url-of-the-search-result.net==http://arama-sonuç-url.net
-42 kbyte<==42 KB<
->Metadata<==>Meta veri<
-#>Parser<==>Ayrıştırıcı<
-#>Citation<==>Alıntı<
->Pictures<==>Resimler<
-#>Cache<==>Önbellek<
+#File: ConfigSearchPage_p.html
+#---------------------------
+"Top navigation bar"=="Üst gezinme çubuğu"
+"Enable login link/status"=="Giriş bağlantısını etkinleştir/status"
+"Log in to use extended search features"=="Genişletilmiş arama özelliklerini kullanmak için oturum açın"
+"You are authenticated as userName"=="KullanıcıAdı olarak kimliğiniz doğrulandı"
+"Help"=="Yardım"
+"Protocols"=="Protokoller"
+"Tag cloud"=="Etiket bulutu"
+"earthsearchlogo"=="dünya arama logosu"
+"Delete navigator"=="Gezgini sil"
+"Sorted by descending counts"=="Azalan sayımlara göre sıralanmış"
+"Sorted by ascending counts"=="Artan sayılara göre sıralanmış"
+"Sorted by descending labels"=="Azalan etiketlere göre sıralanmış"
+"Sorted by ascending labels"=="Artan etiketlere göre sıralanmış"
+"search..."=="aramak..."
+"Maximum days number in the histogram. Beware that a large value may trigger high CPU loads both on the server and on the browser with large result sets."=="Histogramdaki maksimum gün sayısı. Büyük bir değerin hem sunucuda hem de tarayıcıda büyük sonuç kümeleriyle yüksek CPU yüklerini tetikleyebileceğini unutmayın."
+"info"=="bilgi"
+"Website favicon"=="Web sitesi simgesi"
+"Last known modification date"=="Bilinen son değişiklik tarihi"
+"Browse index"=="Dizine göz at"
+"Raw ranking score value"=="Ham sıralama puanı değeri"
+"Date"=="Tarih"
+"Size"=="Boyut"
+"Add navigator"=="Gezgin ekle"
"Save Settings"=="Ayarları Kaydet"
"Set Default Values"=="Varsayılan Değerleri Ayarla"
+Search Result Page Layout Configuration==Arama Sonucu Sayfası Düzeni Yapılandırması
+Below is a generic template of the search result page. Mark the check boxes for features you would like to be displayed.==Aşağıda arama sonucu sayfasının genel bir şablonu bulunmaktadır. Görüntülenmesini istediğiniz özelliklerin onay kutularını işaretleyin.
+Page Template==Sayfa Şablonu
+Toggle navigation==Gezinmeyi değiştir
+Log in==Giriş yapmak
+userName==kullanıcıAdı
+Search Interfaces==Arama Arayüzleri
+Administration »==Yönetim »
+http==http
+https==https
+ftp==ftp
+smb==osb
+file==dosya
+Tag==Etiket
+Topics==Konular
+Cloud==Bulut
+Location==Konum
+show search results on map==arama sonuçlarını haritada göster
+Sort by==Göre sırala
+Descending counts==Azalan sayılar
+Ascending counts==Artan sayılar
+Descending labels==Azalan etiketler
+Ascending labels==Artan etiketler
+Vocabulary==Kelime bilgisi
+search==aramak
+Text==Metin
+Images==Resimler
+Audio==Ses
+Video==Videolar
+Applications==Uygulamalar
+more options==daha fazla seçenek
+Date Navigation==Tarih Gezintisi
+Maximum range (in days)==Maksimum aralık (gün olarak)
+Show websites favicon==Web sitelerinin favicon'unu göster
+Not showing websites favicon can help you save some CPU time and network bandwidth.==Web sitelerinin favicon'unu göstermemek, CPU zamanından ve ağ bant genişliğinden tasarruf etmenize yardımcı olabilir.
+Title of Result==Sonuç Başlığı
+Description and text snippet of the search result==Arama sonucunun açıklaması ve metin pasajı
+http://url-of-the-search-result.net==http://url-of-the-search-result.net
+Tags==Etiketler
+keyword==anahtar kelime
+subject==ders
+keyword2==anahtar kelime2
+keyword3==anahtar kelime3
+Max. tags initially displayed==Maks. başlangıçta görüntülenen etiketler
+(remaining can then be expanded)==(kalan daha sonra genişletilebilir)
+42 kbyte==42 kbayt
+Metadata==Meta veriler
+Parser==Ayrıştırıcı
+Citation==Alıntı
+Pictures==Resimler
+Cache==Önbellek
+View via Proxy==Proxy aracılığıyla görüntüle
+Ranking: 1.12195955E9==Sıralama: 1.12195955E9
+For this option URL proxy must be enabled.==Bu seçenek için URL proxy'nin etkinleştirilmesi gerekir.
+menu: System Administration > Advanced Settings==menü: Sistem Yönetimi > Gelişmiş Ayarlar
+Menu: System Administration > Advanced Settings > Debug/Analysis Settings==Menü: Sistem Yönetimi > Gelişmiş Ayarlar > Hata Ayıklama/Analysis Ayarları
+Add Navigators==Gezgin Ekle
+append==eklemek
+max. items==maks. öğeler
#-----------------------------
-
-#Dosya: ConfigUpdate_p.html
+#File: ConfigUpdate_p.html
#---------------------------
+"Download Release"=="Sürümü İndir"
+"Check for new Release"=="Yeni Sürümü kontrol edin"
+"Install Release"=="Sürümü Yükle"
+"Delete Release"=="Sürümü Sil"
+"Check + Download + Install Release Now"=="Kontrol Et + İndir + Şimdi Sürümü Yükle"
+"Submit"=="Gönder"
+System Update==Sistem Güncellemesi
+Release will be installed. Please wait.==Sürüm kurulacak. Lütfen bekleyin.
+This servlet can only be used on operating systems that are currently supported for deploy functions.==Bu sunucu uygulaması yalnızca şu anda dağıtım işlevleri için desteklenen işletim sistemlerinde kullanılabilir.
+If you see this message this means that your operation system is not supported.==Bu mesajı görüyorsanız bu, işletim sisteminizin desteklenmediği anlamına gelir.
Manual System Update==Manuel Sistem Güncellemesi
-Current installed Release==Mevcut Yüklü Sürüm
-Available Releases==Mevcut Sürümler
->changelog<==>Değişiklik Günlüğü<
-> and <==> ve <
-> RSS feed<==> RSS Beslemesi<
+Current installed Release==Mevcut yüklü Sürüm
(unsigned)==(imzasız)
(signed)==(imzalı)
-"Download Release"=="Sürümü İndir"
-"Check for new Release"=="Yeni Sürümü Kontrol Et"
Downloaded Releases==İndirilen Sürümler
-No downloaded releases available for deployment.==Dağıtım için indirilen sürüm bulunmuyor.
-no automated installation on development environments==Geliştirme ortamlarında otomatik kurulum yok
-"Install Release"=="Sürümü Yükle"
-"Delete Release"=="Sürümü Sil"
+No downloaded releases available for deployment.==Dağıtım için indirilmiş sürüm yok.
+(no signature)==(imza yok)
+no automated installation on development environments==no geliştirme ortamlarında otomatik kurulum
Automatic Update==Otomatik Güncelleme
-check for new releases, download if available and restart with downloaded release==Yeni sürümleri kontrol et, varsa indir ve indirilen sürümle yeniden başlat
-"Check + Download + Install Release Now"=="Şimdi Kontrol Et + İndir + Sürümü Şimdi Kur"
-Download of release #[downloadedRelease]# finished. Restart Initiated.==Sürüm #[downloadedRelease]# indirme tamamlandı. Yeniden başlatma başlatıldı.
-No more recent release found.==Daha yeni bir sürüm bulunamadı.
-Release will be installed. Please wait.==Sürüm yükleniyor. Lütfen bekleyin.
-You installed YaCy with a package manager.==YaCy'yi bir paket yöneticisi ile kurmuşsunuz.
-To update YaCy, use the package manager:==YaCy'yi güncellemek için paket yöneticisini kullanın:
-Omitting update because this is a development environment.==Bu bir geliştirme ortamı olduğu için güncelleme atlanıyor.
-Omitting update because download of release #[downloadedRelease]# failed.==Sürüm #[downloadedRelease]# indirme başarısız olduğu için güncelleme atlanıyor.
+check for new releases, download if available and restart with downloaded release==yeni sürümleri kontrol edin, varsa indirin ve indirilen sürümle yeniden başlatın
+No more recent release found.==Başka yeni sürüm bulunamadı.
+Omitting update because this is a development environment.==Bu bir geliştirme ortamı olduğundan güncelleme atlanıyor.
+Omitting update because an error occurred while trying to deploy the release.==Sürümü dağıtmaya çalışırken bir hata oluştuğundan güncelleme atlanıyor.
Automated System Update==Otomatik Sistem Güncellemesi
-manual update==Manuel güncelleme
-no automatic look-up, updates can be made manually using this interface (see options above)==Otomatik güncelleme yok, güncellemeler yukarıdaki seçenekleri kullanarak manuel olarak yapılabilir.
-automatic update==Otomatik güncelleme
-updates are made within fixed cycles:==Güncellemeler belirli döngüler içinde yapılır:
-Time between lookup==Arama arasındaki süre
+manual update==manuel güncelleme
+no automatic look-up, updates can be made manually using this interface (see options above)==otomatik arama yok, güncellemeler bu arayüz kullanılarak manuel olarak yapılabilir (yukarıdaki seçeneklere bakın)
+automatic update==otomatik güncelleme
+updates are made within fixed cycles:==güncellemeler sabit döngüler dahilinde yapılır:
+Time between lookup==Aramalar arasındaki süre
hours==saat
-Release blacklist==Sürüm siyah listesi
-regex on release number strings==sürüm numarası dizgelerinde regex
-Release type==Sürüm tipi
-only main releases==sadece ana sürümler
-any release including developer releases==geliştirici sürümleri dahil her sürüm
+Release blacklist==Kara listeyi yayınla
+(regex on release number strings)==(sürüm numarası dizelerinde normal ifade)
+Release type==Sürüm türü
+only main releases==yalnızca ana sürümler
+any release including developer releases==geliştirici sürümleri de dahil olmak üzere herhangi bir sürüm
Signed autoupdate:==İmzalı otomatik güncelleme:
only accept signed files==yalnızca imzalı dosyaları kabul et
-"Submit"=="Gönder"
Accepted Changes.==Değişiklikler Kabul Edildi.
System Update Statistics==Sistem Güncelleme İstatistikleri
-Last System Lookup==Son Sistem Kontrolü
-never==asla
-Last Release Download==Son İndirilen Sürüm
-Last Deploy==Son Güncelleme
-#-----------------------------```
+Last System Lookup==Son Sistem Araması
+never==Asla
+Last Release Download==Son Sürümü İndir
+Last Deploy==Son Dağıtım
+You installed YaCy with a package manager. To update YaCy, use the package manager:==YaCy ürününü bir paket yöneticisiyle yüklediniz. YaCy'yi güncellemek için paket yöneticisini kullanın:
+manual update: apt-get update && apt-get install yacy==manuel güncelleme: apt-get güncelleme && apt-get install yacy
+automatic update: add the following line to /etc/crontab 0 6 * * * root apt-get update && apt-get -y --force-yes install yacy==otomatik güncelleme: /etc/crontab 0'a aşağıdaki satırı ekleyin 6 * * * root apt-get update && apt-get -y --force-yes install yacy
+#-----------------------------
+#File: ConfigUser_p.html
+#---------------------------
+"Save User"=="Kullanıcıyı Kaydet"
+"Delete User"=="Kullanıcıyı Sil"
+"ConfigAccountList_p.html"=="ConfigAccountList_p.html"
+User Account Editor==Kullanıcı Hesabı Düzenleyicisi
+Generic error.==Genel hata.
+Passwords do not match.==Parolalar uyuşmuyor.
+Username too short. Username must be >= 4 Characters.==Kullanıcı adı çok kısa. Kullanıcı adı 4 veya daha fazla karakter olmalı.
+Username already used (not allowed).==Kullanıcı adı zaten kullanılıyor (izin verilmiyor).
+Username==Kullanıcı Adı
+Password==Şifre
+Repeat password==Parolayı tekrarla
+First name==Ad
+Last name==Soyad
+Address==Adres
+Rights:==Haklar:
+Timelimit==Zaman sınırı
+Time used==Kullanılan zaman
+back to user list==kullanıcı listesine geri dön
+#-----------------------------
-#Dosya: Connections_p.html
+#File: Connections_p.html
#---------------------------
-Connection Tracking==Bağlantı İzleme
+Server Connection Tracking==Sunucu Bağlantı Takibi
Incoming Connections==Gelen Bağlantılar
-Showing #[numActiveRunning]# active connections from a max. of #[numMax]# allowed incoming connections.==En fazla #[numMax]# izin verilen gelen bağlantılardan #[numActiveRunning]# aktif bağlantı gösteriliyor.
-Protocol==Protokol
+Protocol==Protokol
Duration==Süre
-Source IP[:Port]==Kaynak IP[:Port]
-Dest. IP[:Port]==Hedef IP[:Port]
-Command==Komut
-Used==Kullanılan
-Close==Kapat
-Waiting for new request nr.==Yeni istek numarasını bekliyor.
+Source IP[:Port]==Kaynak IP[:Bağlantı Noktası]
+Command==Emretmek
+ID==İD
Outgoing Connections==Giden Bağlantılar
-Showing #[clientActive]# pooled outgoing connections used as:==Gösterilen #[clientActive]# gruplandırılmış çıkış bağlantıları olarak kullanılıyor:
-Duration==Süre
-#ID==ID
+Up-Bytes==Yukarı Bayt
+Dest. IP[:Port]==Hedef. IP[:Bağlantı Noktası]
#-----------------------------
-
-#Dosya: CookieMonitorIncoming_p.html
+#File: ContentAnalysis_p.html
#---------------------------
-Incoming Cookies Monitor==Gelen Çerez İzleyici
-Cookie Monitor: Incoming Cookies==Çerez İzleyici: Gelen Çerezler
-This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:==Bu, bir web sunucusunun YaCy Proxy istemcilerine gönderdiği çerezlerin bir listesidir:
-Showing #[num]# entries from a total of #[total]# Cookies.==Toplam #[total]# çerezden #[num]# giriş gösteriliyor.
-Sending Host==Gönderen Ana Bilgisayar
-Date==Tarih
-Receiving Client==Alıcı İstemci
-#Cookie==#Çerez
-"Enable Cookie Monitoring"=="Çerez İzleme'yi Etkinleştir"
-"Disable Cookie Monitoring"=="Çerez İzleme'yi Devre Dışı Bırak"
+"Set"=="Ayarla"
+"Re-Set to default"=="Varsayılana Sıfırla"
+Content Analysis==İçerik Analizi
+These are document analysis attributes.==Bunlar belge analizi özellikleridir.
+Double Content Detection==Çift İçerik Algılama
+Double-Content detection is done using a ranking on a 'unique'-Field, named 'fuzzy_signature_unique_b'.==Çift İçerik tespiti, 'fuzzy_signature_unique_b' adı verilen 'benzersiz' bir Alandaki sıralama kullanılarak yapılır.
+minTokenLen==minTokenLen
+This is the minimum length of a word which shall be considered as element of the signature. Should be either 2 or 3.==İmza unsuru olarak kabul edilecek bir kelimenin minimum uzunluğudur. 2 ya da 3 olmalı.
+quantRate==miktarOranı
+The quantRate is a measurement for the number of words that take part in a signature computation. The higher the number, the less==QuantRate, imza hesaplamasında yer alan sözcük sayısına ilişkin bir ölçümdür. Sayı ne kadar yüksek olursa o kadar az olur
+words are used for the signature.==İmza için kelimeler kullanılır.
+For minTokenLen = 2 the quantRate value should not be below 0.24; for minTokenLen = 3 the quantRate value must be not below 0.5.==minTokenLen = 2 için quantRate değeri 0,24'ün altında olmamalıdır; minTokenLen = 3 için quantRate değeri 0,5'in altında olmamalıdır.
#-----------------------------
-#Dosya: CookieMonitorOutgoing_p.html
+#File: ContentIntegrationPHPBB3_p.html
#---------------------------
-Outgoing Cookies Monitor==Giden Çerez İzleyici
-Cookie Monitor: Outgoing Cookies==Çerez İzleyici: Giden Çerezler
-This is a list of cookies that browsers using the YaCy proxy sent to webservers:==Bu, YaCy proxy'sini kullanan tarayıcıların web sunucularına gönderdiği çerezlerin bir listesidir:
-Showing #[num]# entries from a total of #[total]# Cookies.==Toplam #[total]# çerezden #[num]# giriş gösteriliyor.
-Receiving Host==Alıcı Ana Bilgisayar
-Date==Tarih
-Sending Client==Gönderen İstemci
-#Cookie==#Çerez
-"Enable Cookie Monitoring"=="Çerez İzleme'yi Etkinleştir"
-"Disable Cookie Monitoring"=="Çerez İzleme'yi Devre Dışı Bırak"
+"Check database connection"=="Veritabanı bağlantısını kontrol edin"
+"Export Content to Packs"=="İçeriği Paketlere Aktar"
+"Import Dump"=="İçe Aktarma Dökümü"
+Content Integration: Retrieval from phpBB3 Databases==İçerik Entegrasyonu: phpBB3 Veritabanlarından Alınma
+It is possible to extract texts directly from mySQL and postgreSQL databases.==Metinleri doğrudan mySQL ve postgreSQL veritabanlarından çıkarmak mümkündür.
+Each extraction is specific to the data that is hosted in the database.==Her çıkarma, veritabanında barındırılan verilere özgüdür.
+This interface gives you access to the phpBB3 forums software content.==Bu arayüz, phpBB3 forum yazılımının içeriğine erişim sağlar.
+If you read from an imported database, here are some hints to get around problems when importing dumps in phpMyAdmin:==İçe aktarılan bir veritabanından okuyorsanız, phpMyAdmin'de dökümleri içe aktarırken karşılaşılabilecek sorunları aşmak için bazı ipuçları:
+before importing large database dumps, set the following Line in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB):==Büyük veritabanı dökümlerini içe aktarmadan önce, phpmyadmin/config.inc.php dosyasında aşağıdaki Satırı ayarlayın ve döküm dosyanızı /tmp içine yerleştirin (Aksi takdirde 2 MB'tan büyük dosyaları yüklemek mümkün değildir):
+deselect the partial import flag==Kısmi içe aktarma bayrağını kaldırın
+When an export is started, pack files are generated into DATA/PACKS/load which are automatically fetched by an indexer thread.==Bir dışa aktarma başlatıldığında, yedek dosyalar DATA/PACKS/load dizinine oluşturulur ve otomatik olarak bir dizin thread tarafından alınır.
+All indexed pack files are then moved to DATA/PACKS/loaded and can be re-cycled when an index is deleted.==Tüm dizinlenmiş yedek dosyalar daha sonra DATA/PACKS/loaded'a taşınır ve bir dizin silindiğinde yeniden döngüye alınabilir.
+The URL stub, like http://forum.yacy-websuche.de this must be the path right in front of '/viewtopic.php?'==URL saplaması, gibi http://forum.yacy-websuche.de bu, '/viewtopic.php?''nin hemen önündeki yol olmalı
+Type of database (use either 'mysql' or 'pgsql')==Veritabanı yazın ('mysql' veya 'pgsql' kullanın)
+Host of the database==Veritabanının Ana Bilgisayar
+Port of database service (usually 3306 for mySQL)==Veritabanı hizmetinin Bağlantı Noktası (mySQL için genellikle 3306)
+Name of the database on the host==Ana makinedeki veritabanının adı
+Table prefix string for table names==Tablo adları için Tablo öneki dizesi
+User that can access the database==Veritabanına erişebilen User
+Password for the account of that user given above==Yukarıda belirtilen kullanıcının hesabına ait Şifre
+Posts per file in exported packs==Dosya başına gönderiler dışa aktarılan paketlerdeki gönderiler
+Import a database dump,==Veritabanı dökümünü içe aktar,
+Posts in database==Veritabanındaki Gönderiler
+first entry==ilk giriş
+last entry==son giriş
+Import successful!==İçe aktarma başarılı!
#-----------------------------
-#Dosya: CrawlCheck_p.html
+#File: CookieMonitorIncoming_p.html
#---------------------------
-Crawl Check==Tarama Kontrolü
-This pages gives you an analysis about the possible success for a web crawl on given addresses.==Bu sayfa, belirtilen adreslerdeki bir web taramasının olası başarısı hakkında size bir analiz sunar.
-List of possible crawl start URLs==Olası tarama başlangıç URL'leri listesi
-"Check given urls"=="Verilen URL'leri Kontrol Et"
->Analysis<==>Analiz<
-#>URL<==>URL<
->Access<==>Erişim<
-#>Robots<==>Robots<
->Crawl-Delay<==>Tarama Gecikmesi<
->Sitemap<==>Site Haritası (Sitemap)<
+"Enable Cookie Monitoring"=="Çerez İzlemeyi Etkinleştir"
+"Disable Cookie Monitoring"=="Çerez İzlemeyi Devre Dışı Bırak"
+Cookie Monitor: Incoming Cookies==Çerez Monitörü: Gelen Çerezler
+This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:==Bu, bir web sunucusunun YaCy Proxy istemcilerine gönderdiği Çerezlerin listesidir:
+Sending Host==Ana Bilgisayar Gönderiliyor
+Date==Tarih
+Receiving Client==Müşteri Alma
+Cookie==Çerez
#-----------------------------
-#Dosya: Crawler_p.html
+#File: CookieMonitorOutgoing_p.html
#---------------------------
-#Crawler==Crawler
-Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db==Profil yönetimi hatası. Lütfen YaCy'i durdurun, DATA/PLASMADB/crawlProfiles0.db dosyasını silin
-and restart.==ve yeniden başlatın.
-Error:==Hata:
-Application not yet initialized. Sorry. Please wait some seconds and repeat==Uygulama henüz başlatılmadı. Üzgünüz. Lütfen birkaç saniye bekleyin ve tekrarlayın
-ERROR: Crawl filter==HATA: Tarama filtresi
-does not match with==eşleşmiyor
-crawl root==tarama kökü
-Please try again with different==Lütfen farklı bir deneme yapın
-filter. ::==filtre. ::
-Crawling of==Tarama
-failed. Reason:==başarısız oldu. Sebep:
-Error with URL input==URL girişiyle ilgili hata
-Error with file input==Dosya girişiyle ilgili hata
-started.==başlatıldı.
-Please wait some seconds,==Lütfen birkaç saniye bekleyin,
-it may take some seconds until the first result appears there.==ilk sonuç görünene kadar birkaç saniye sürebilir.
-
-Size==>Boyut
-Progress<==>İlerleme<
-#Max==Maks
-"set"=="Ayarla"
-#Indexing==İndeksleme
-Loader==Yükleyici
-Index Size<==>İndeks Boyutu<
-Seg- ments==Seg- mentler
-Documents<==>Belgeler<
-solr search api<==>solr arama api<
-Webgraph Edges<==>Webgraph Kenarları<
-Citations (reverse link index)==Alıntılar (ters bağlantı indeksi)
-RWIs (P2P Chunks)==RWI'lar (P2P Parçaları)
-Local Crawler==Yerel Crawler
-Limit Crawler==Sınırlı Crawler
-Remote Crawler==Uzak Crawler
-No-Load Crawler==Yükleme Yok Crawler
-Speed / PPM (Pages Per Minute)==Hız / DDK (Dakikadaki Sayfalar)
-Database==Veritabanı
-Entries==Girişler
-Indicator==Gösterge
-Level==Seviye
-Postprocessing Progress==Son işlem İlerlemesi
-Traffic (Crawler)==Trafik (Crawler)
-Load<==Yük<
+"Enable Cookie Monitoring"=="Çerez İzlemeyi Etkinleştir"
+"Disable Cookie Monitoring"=="Çerez İzlemeyi Devre Dışı Bırak"
+Cookie Monitor: Outgoing Cookies==Çerez Monitörü: Giden Çerezler
+This is a list of cookies that browsers using the YaCy proxy sent to webservers:==Bu, YaCy proxy'sini kullanan tarayıcıların web sunucularına gönderdiği çerezlerin listesidir:
+Receiving Host==Alıcı Sunucu
+Date==Tarih
+Sending Client==İstemci Gönderiliyor
+Cookie==Çerez
#-----------------------------
-#Dosya: CrawlProfileEditor_p.html
+#File: CrawlCheck_p.html
#---------------------------
-Crawl Profile Editor==Tarama Profili Düzenleyici
-
-Crawler Steering<==>Crawler Yönlendirme<
-Crawl Scheduler<==>Tarama Planlayıcı<
-Scheduled Crawls can be modified in this table<==>Planlanmış Taramalar bu tabloda değiştirilebilir<
-Crawl profiles hold information about a crawl process that is currently ongoing.==Tarama profilleri, şu anda devam eden bir tarama süreci hakkında bilgi içerir.
+"Check given urls"=="Verilen URL'leri kontrol edin"
+Crawl Check==Tarama Kontrolü
+This pages gives you an analysis about the possible success for a web crawl on given addresses.==Bu sayfalar size belirli adreslerde bir web taramasının olası başarısı hakkında bir analiz sunar.
+List of possible crawl start URLs==Olası tarama başlangıç URL'lerinin listesi
+Analysis==Analiz
+URL==URL
+Access==Erişim
+Robots==Robotlar
+Crawl-Delay==Tarama Gecikmesi
+Sitemap==Site haritası
+#-----------------------------
-#The profiles for remote crawls, indexing via proxy and snippet fetches==Uzaktan tarama, proxy aracılığıyla indeksleme ve snippet alımları için profiller
-Crawl Profile List==Tarama Profil Listesi
-Crawl Thread==Tarama İşi
-#Status==Durum
-#Start URL==Başlangıç URL'si
+#File: CrawlMonitorRemoteStart.html
+#---------------------------
+Recently started remote crawls in progress==Yakın zamanda başlatılan uzaktan taramalar devam ediyor
+Remote crawl start points, crawl is ongoing==Uzaktan tarama başlangıç noktaları, tarama devam ediyor
+Start Time==Başlangıç Zamanı
+Peer Name==Akran Adı
+Start URL==URL'yi başlat
+Intention/Description==Niyet/Description
+Depth==Derinlik
+Accept '?' URLs==Kabul etmek '?' URL'ler
+no==hayır
+yes==evet
+Remote crawl start points, finished:==Uzaktan tarama başlangıç noktaları tamamlandı:
+#-----------------------------
-Depth
==>Derinlik
-Must Match==Eşleşmeli
-Must Not Match==Eşleşmemeli
-MaxAge==Maks. Yaş
-#Auto Filter Depth==Otomatik Filtre Derinliği
-#Auto Filter Content==Otomatik İçerik Filtresi
-Max Page Per Domain==Alan Başına Maksimum Sayfa
-Accept==Kabul Et
-Fill Proxy Cache==Proxy Önbelleği Doldur
-Local Text Indexing==Yerel Metin İndeksleme
-Local Media Indexing==Yerel Medya İndeksleme
-Remote Indexing==Uzak İndeksleme
-#Status / Action==Durum / Eylem
-#terminated::active==sonlandırıldı::aktif
-no::yes==hayır::evet
-Running==Çalışıyor
+#File: CrawlProfileEditor_p.html
+#---------------------------
"Terminate"=="Sonlandır"
-Finished==Tamamlandı
"Delete"=="Sil"
-"Delete finished crawls"=="Tamamlanan taramaları sil"
-Select the profile to edit==Düzenlemek için profili seçin
+"Delete finished crawls"=="Biten taramaları sil"
"Edit profile"=="Profili düzenle"
-An error occurred during editing the crawl profile:==Tarama profili düzenlenirken bir hata oluştu:
-Edit Profile==Profili Düzenle
"Submit changes"=="Değişiklikleri gönder"
+Crawler Steering==Paletli Direksiyon
+Crawl Scheduler==Tarama Zamanlayıcısı
+Scheduled Crawls can be modified in this table==Zamanlanmış Taramalar bu tabloda değiştirilebilir
+Crawl Profile Editor==Tarama Profili Düzenleyicisi
+Crawl profiles hold information about a crawl process that is currently ongoing.==Tarama profilleri, halihazırda devam eden bir tarama işlemiyle ilgili bilgileri tutar.
+Crawl Profile List==Profil Listesini Tara
+Crawl Thread==Konuyu Tara
+Collections==Koleksiyonlar
+Status==Durum
+Depth==Derinlik
+Must Match==Eşleşmeli
+Must Not Match==Eşleşmemeli
+Recrawl if older than==Şu tarihten daha eskiyse yeniden tarayın:
+Domain Counter Content==Alan Adı Sayacı İçeriği
+Max Page Per Domain==Etki Alanı Başına Maksimum Sayfa
+Accept '?' URLs==Kabul etmek '?' URL'ler
+Fill Proxy Cache==Proxy Önbelleğini Doldur
+Local Text Indexing==Yerel Metin Dizine Ekleme
+Local Media Indexing==Yerel Medya Dizine Ekleme
+Remote Indexing==Uzaktan İndeksleme
+Running==Koşma
+Finished==Bitti
+no==hayır
+yes==evet
+Select the profile to edit==Düzenlenecek profili seçin
+false==YANLIŞ
+true==doğru
#-----------------------------
-#Dosya: CrawlResults.html
-#---------------------------
-Crawl Results<==Tarama Sonuçları<
-
-Crawl Results Overview<==>Tarama Sonuçları Genel Bakış<
-These are monitoring pages for the different indexing queues.==Bunlar, farklı indeksleme sıralarını izleme sayfalarıdır.
-YaCy knows 5 different ways to acquire web indexes. The details of these processes (1-5) are described within the submenu's listed==YaCy, web indekslerini elde etmek için 5 farklı yol bilir. Bu süreçlerin detayları (1-5), listelenen alt menülerde açıklanmıştır.
-above which also will show you a table with indexing results so far. The information in these tables is considered as private,==Yukarıdaki, ayrıca şu ana kadar indeksleme sonuçlarını gösteren bir tablo da size gösterecek.
-so you need to log-in with your administration password.==Bu tablolardaki bilgiler özel kabul edildiği için yönetim şifrenizle giriş yapmanız gerekiyor.
-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==Durum (6), yerel alım üreticisinin bir izleyicisidir, (1) durumunun zıttı. Ayrıca bir indeksleme sonuç izleyici içerir, ancak özel kabul edilmez,
-since it shows crawl requests from other peers.==çünkü başka eşlerden gelen tarama isteklerini gösterir.
-Case (7) occurs if pack files are imported==Durum (7) ortaya çıkar eğer pack dosyaları içe aktarılıyorsa.
-The image above illustrates the data flow initiated by web index acquisition.==Yukarıdaki resim, web indeksi edinimi tarafından başlatılan veri akışını göstermektedir.
-Some processes occur double to document the complex index migration structure.==Bazı süreçler karmaşık indeks göç yapısını belgelemek için çift gerçekleşir.
-(1) Results of Remote Crawl Receipts==(1) Uzaktan Tarama Alındı Sonuçları
-This is the list of web pages that this peer initiated to crawl,==Bu, bu eşin tarama başlattığı web sayfalarının listesi,
-but had been crawled by other peers.==ancak diğer eşler tarafından taranmıştır.
-This is the 'mirror'-case of process (6).==Bu, işlem (6)'nın 'ayna' durumudur.
-Use Case: You get entries here, if you start a local crawl on the 'Advanced Crawler' page and check the==Kullanım Durumu: Burada girişler alırsınız, eğer 'Gelişmiş Tarama' sayfasında yerel bir tarama başlatırsanız ve
-'Do Remote Indexing'-flag, and if you checked the 'Accept Remote Crawl Requests'-flag on the 'Remote Crawling' page.=='Uzaktan İndeksleme' bayrağını işaretlerseniz ve 'Uzaktan Tarama' sayfasında 'Uzaktan Tarama İsteklerini Kabul Et' bayrağını işaretlediyseniz.
-Every page that a remote peer indexes upon this peer's request is reported back and can be monitored here.==Bu eşin isteği üzerine uzaktaki bir eşin indekslediği her sayfa geri bildirilir ve buradan izlenebilir.
+#File: CrawlResults.html
+#---------------------------
+"An illustration how yacy works"=="Yacy'nin nasıl çalıştığını gösteren bir örnek"
+"delete all"=="Hepsini Sil"
+"del & blacklist"=="del ve kara liste"
+"clear list"=="Listeyi Temizle"
+"delete"=="silmek"
+Crawl Results Overview==Tarama Sonuçlarına Genel Bakış
+These are monitoring pages for the different indexing queues.==Bunlar farklı indeksleme kuyrukları için izleme sayfalarıdır.
+YaCy knows 5 different ways to acquire web indexes. The details of these processes (1-5) are described within the submenu's listed==YaCy web dizinlerini edinmenin 5 farklı yolunu biliyor. Bu işlemlerin ayrıntıları (1-5) listelenen alt menülerde açıklanmıştır.
+above which also will show you a table with indexing results so far. The information in these tables is considered as private,==yukarıda size şu ana kadarki indeksleme sonuçlarını içeren bir tablo da gösterilecektir. Bu tablolardaki bilgiler özel olarak kabul edilir,
+so you need to log-in with your administration password.==bu nedenle yönetim şifrenizle oturum açmanız gerekir.
+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==Durum (6), yerel makbuz oluşturucunun bir monitörüdür, (1)'in tersidir. Ayrıca bir indeksleme sonucu izleyicisi içerir ancak özel olarak kabul edilmez
+since it shows crawl requests from other peers.==diğer eşlerden gelen tarama isteklerini gösterdiğinden.
+Case (7) occurs if pack files are imported==Paket dosyaları içe aktarılırsa durum (7) oluşur
+The image above illustrates the data flow initiated by web index acquisition.==Yukarıdaki görüntü, web dizini edinimi tarafından başlatılan veri akışını göstermektedir.
+Some processes occur double to document the complex index migration structure.==Bazı işlemler, karmaşık dizin geçiş yapısını belgelemek için iki kez gerçekleşir.
+(1) Results of Remote Crawl Receipts==(1) Uzaktan Tarama Alındı Sonuçları
+This is the list of web pages that this peer initiated to crawl,==Bu, bu eşin taramak için başlattığı web sayfalarının listesidir.
+but had been crawled by other peers.==ancak diğer akranları tarafından taranmıştı.
+This is the 'mirror'-case of process (6).==Bu sürecin 'ayna' durumudur (6).
+Every page that a remote peer indexes upon this peer's request is reported back and can be monitored here.==Uzak bir eşin bu eşin isteği üzerine dizine eklediği her sayfa geri raporlanır ve buradan izlenebilir.
+No remote crawl results can currently been added to the local index as the remote crawler is disabled on this peer.==Bu eşte uzak tarayıcı devre dışı bırakıldığından şu anda yerel dizine uzaktan tarama sonucu eklenemiyor.
(2) Results for Result of Search Queries==(2) Arama Sorgularının Sonuçları
-This index transfer was initiated by your peer by doing a search query.==Bu indeks transferi, bir arama sorgusu yaparak eşiniz tarafından başlatıldı.
-The index was crawled and contributed by other peers.==İndeks, diğer eşler tarafından tarandı ve katkı sağladı.
-Use Case: This list fills up if you do a search query on the 'Search Page'==Kullanım Durumu: Bu liste, 'Arama Sayfası'nda bir arama sorgusu yaparsanız dolacaktır.
-(3) Results for Index Transfer==(3) İndeks Transferi Sonuçları
-The URL fetch was initiated and executed by other peers.==URL alma, diğer eşler tarafından başlatıldı ve yürütüldü.
-These links here have been transmitted to you because your peer is the most appropriate for storage according to==Bu bağlantılar, buraya, çünkü eşiniz, depolama açısından en uygun olanıdır.
-the logic of the Global Distributed Hash Table.==Küresel Dağıtılmış Hash Tablosu'nun mantığına göre.
-Use Case: This list may fill if you check the 'Index Receive'-flag on the 'Index Control' page==Kullanım Durumu: Bu liste, 'İndeks Al'-bayrağını 'İndeks Kontrol' sayfasında işaretlerseniz dolabilir.(4) Results for Proxy Indexing == (4) Proxy İndeksleme Sonuçları
-These web pages had been indexed as a result of your proxy usage. == Bu web sayfaları, proxy kullanımınızın bir sonucu olarak indekslenmiştir.
-No personal or protected page is indexed == Kişisel veya korumalı hiçbir sayfa indekslenmez
-Such pages are detected by Cookie-Use or POST-Parameters (either in URL or as HTTP protocol) == Bu tür sayfalar, Çerez-Kullanımı veya POST-Parametreleri (URL'de veya HTTP protokolü olarak) tarafından tespit edilir
-and automatically excluded from indexing. == ve otomatik olarak indekslemeden hariç tutulur.
-Use Case: You must use YaCy as a proxy to fill up this table. == Kullanım Durumu: Bu tabloyu doldurmak için YaCy'yi bir proxy olarak kullanmalısınız.
-Set the proxy settings of your browser to the same port as given == Tarayıcınızın proxy ayarlarını, 'Ayarlar' sayfasındaki 'Proxy ve Yönetim Portu' alanındaki ile aynı porta ayarlayın.
-on the 'Settings'-page in the 'Proxy and Administration Port' field. == 'Ayarlar' sayfasındaki 'Proxy ve Yönetim Portu' alanında.
-(5) Results for Local Crawling == (5) Yerel Tarama Sonuçları
-These web pages had been crawled by your own crawl task. == Bu web sayfaları, kendi tarama göreviniz tarafından taranmıştır.
-Use Case: start a crawl by setting a crawl start point on the 'Index Create' page. == Kullanım Durumu: 'Index Oluştur' sayfasında bir tarama başlangıç noktası belirleyerek bir tarama başlatın.
-(6) Results for Global Crawling == (6) Küresel Tarama Sonuçları
-These pages had been indexed by your peer, but the crawl was initiated by a remote peer. == Bu sayfalar, peer'ınız tarafından indekslenmiş, ancak tarama uzaktaki bir peer tarafından başlatılmıştır.
-This is the 'mirror'-case of process (1). == Bu, işlem (1)'in 'ayna' durumudur.
-Use Case: This list may fill if you check the 'Accept Remote Crawl Requests'-flag on the 'Remote Crawling' page == Kullanım Durumu: Bu liste, 'Uzaktan Tarama' sayfasındaki 'Uzaktan Tarama İsteklerini Kabul Et' bayrağını işaretlerseniz dolabilir.
-The stack is empty. == Yığın boş.
-Statistics about #[domains]# domains in this stack: == Bu yığındaki #[domains]# alanlarıyla ilgili istatistikler:
-(7) Results from pack import == (7) Packs İçe Aktarma Sonuçları
-These records had been imported from pack files in DATA/PACKS/load == Bu kayıtlar, DATA/PACKS/load klasöründeki pack dosyalarından içe aktarılmıştır.
-Use Case: place files with dublin core metadata content into DATA/PACKS/load or use an index import method == Kullanım Durumu: Dublin Core meta veri içeriğine sahip dosyaları DATA/PACKS/load klasörüne yerleştirin veya bir indeks içe aktarma yöntemi kullanın
-(i.e. MediaWiki import, OAI-PMH retrieval) == (örneğin, MediaWiki İçe Aktarma, OAI-PMH İndirme)
-#Domain == Alan
-#URLs == URL'ler
-"delete all" == "Tümünü Sil"
-Showing all #[all]# entries in this stack. == Bu yığındaki tüm #[all]# girişleri gösteriyor.
-Showing the latest #[count]# lines from a stack of #[all]# entries. == Tüm #[all]# girişlerden #[count]# satırı gösteriyor.
-"clear list" == "Listeyi Temizle"
-#Initiator == Başlatan
-
-Executor==>Yürütücü
-Modified==>Değiştirilmiş
-Words==>Kelimeler
-Title==>Başlık
-#URL == URL
-"delete" == "Sil"
+This index transfer was initiated by your peer by doing a search query.==Bu dizin aktarımı meslektaşınız tarafından bir arama sorgusu yapılarak başlatıldı.
+The index was crawled and contributed by other peers.==Dizin tarandı ve diğer meslektaşlar tarafından katkıda bulunuldu.
+Use Case: This list fills up if you do a search query on the 'Search Page'==Kullanım Örneği: 'Arama Sayfası'nda bir arama sorgusu yaparsanız bu liste dolar
+(3) Results for Index Transfer==(3) Endeks Aktarımına İlişkin Sonuçlar
+The url fetch was initiated and executed by other peers.==URL getirme işlemi diğer eşler tarafından başlatıldı ve yürütüldü.
+These links here have been transmitted to you because your peer is the most appropriate for storage according to==Buradaki bu bağlantılar size iletilmiştir çünkü akranınız depolamaya göre en uygun olanıdır.
+the logic of the Global Distributed Hash Table.==Global Dağıtılmış Hash Tablosunun mantığı.
+Use Case: This list may fill if you check the 'Index Receive'-flag on the 'Index Control' page==Kullanım Örneği: 'Dizin Kontrolü' sayfasındaki 'Dizin Alma' işaretini kontrol ederseniz bu liste doldurulabilir
+(4) Results for Proxy Indexing==(4) Proxy Dizine Ekleme Sonuçları
+These web pages had been indexed as result of your proxy usage.==Bu web sayfaları proxy kullanımınız sonucunda indekslenmiştir.
+No personal or protected page is indexed;==Hiçbir kişisel veya korumalı sayfa dizine eklenmemiştir;
+such pages are detected by Cookie-Use or POST-Parameters (either in URL or as HTTP protocol)==bu tür sayfalar Çerez Kullanımı veya POST Parametreleri tarafından tespit edilir (URL veya HTTP protokolü olarak)
+and automatically excluded from indexing.==ve otomatik olarak indekslemenin dışında bırakılır.
+Use Case: You must use YaCy as proxy to fill up this table.==Kullanım Örneği: Bu tabloyu doldurmak için proxy olarak YaCy kullanmalısınız.
+Set the proxy settings of your browser to the same port as given==Tarayıcınızın proxy ayarlarını verilenle aynı bağlantı noktasına ayarlayın
+on the 'Settings'-page in the 'Proxy and Administration Port' field.=='Proxy ve Yönetim Bağlantı Noktası' alanındaki 'Ayarlar' sayfasında.
+(5) Results for Local Crawling==(5) Yerel Tarama Sonuçları
+These web pages had been crawled by your own crawl task.==Bu web sayfaları kendi tarama göreviniz tarafından taranmıştı.
+Use Case: start a crawl by setting a crawl start point on the 'Index Create' page.==Kullanım Örneği: 'Dizin Oluşturma' sayfasında bir tarama başlangıç noktası ayarlayarak bir tarama başlatın.
+(6) Results for Global Crawling==(6) Küresel Tarama Sonuçları
+These pages had been indexed by your peer, but the crawl was initiated by a remote peer.==Bu sayfalar akranınız tarafından dizine eklenmiştir ancak tarama uzaktaki bir eş tarafından başlatılmıştır.
+This is the 'mirror'-case of process (1).==Bu, sürecin 'ayna' durumudur (1).
+The remote crawler is currently disabled==Uzak tarayıcı şu anda devre dışı
+(7) Results from pack import==(7) Paket ithalatından elde edilen sonuçlar
+These records had been imported from pack files in DATA/PACKS/load==Bu kayıtlar DATA/PACKS/load içindeki paket dosyalarından içe aktarılmıştı.
+The stack is empty.==Yığın boş.
+Domain==İhtisas
+URLs==URL'ler
+Blacklist to use==Kullanılacak kara liste
+Collection==Koleksiyon
+Initiator==Başlatıcı
+Executor==İcracı
+Modified==Değiştirildi
+Words==Kelimeler
+Title==Başlık
+Country==Ülke
+IP of Host==Ana Bilgisayardan IP
+URL==URL
+no title==başlık yok
#-----------------------------
+
#File: CrawlStartExpert.html
#---------------------------
-==
+"API"=="API"
+"info"=="bilgi"
+"empty"=="boş"
+"Show all links"=="Tüm bağlantıları göster"
+"Media Type checking info"=="Medya Türü kontrol bilgileri"
+"Media Type filter info"=="Medya Türü filtre bilgisi"
+"Solr query filter info"=="Solr sorgu filtresi bilgisi"
+"Clean up search events cache info"=="Arama etkinlikleri önbellek bilgilerini temizle"
+"Start New Crawl Job"=="Yeni Tarama İşi Başlat"
+Click on this API button to see a documentation of the POST request parameter for crawl starts.==Tarama başlatmaları için POST istek parametresinin belgelerini görmek üzere bu API düğmesini tıklayın.
Expert Crawl Start==Uzman Tarama Başlat
Start Crawling Job:==Tarama İşini Başlat:
You can define URLs as start points for Web page crawling and start crawling here.==Web sayfası taraması için başlangıç noktalarını tanımlayabilir ve buradan taramaya başlayabilirsiniz.
"Crawling" means that YaCy will download the given website, extract all links in it and then download the content behind these links.=="Tarama", YaCy'nin belirtilen web sitesini indireceği, içindeki tüm bağlantıları çıkaracağı ve ardından bu bağlantıların arkasındaki içeriği indireceği anlamına gelir.
This is repeated as long as specified under "Crawling Depth".==Bu, "Tarama Derinliği" altında belirtilen sürece kadar tekrarlanır.
-A crawl can also be started using wget and the==Bir tarama, wget ve
->post arguments<==>post argümanları<
-> for this web page.==>bu web sayfası için.
-
-#>Crawl Job<==>Tarama İşi<
-A Crawl Job consists of one or more start points, crawl limitations, and document freshness rules.==Bir Tarama İşi, bir veya daha fazla başlangıç noktası, tarama sınırlamaları ve belge tazeliği kurallarından oluşur.
-
->Start Point<==>Başlangıç Noktası<
+Crawl Job==Tarama İşi
+A Crawl Job consist of one or more start point, crawl limitations and document freshness rules.==Tarama İşi bir veya daha fazla başlangıç noktası, tarama sınırlamaları ve belge güncelliği kurallarından oluşur.
+Start Point==Başlangıç Noktası
One Start URL or a list of URLs: (must start with http:// https:// ftp:// smb:// file://)==Bir Başlangıç URL'si veya URL'lerin bir listesi: (http:// https:// ftp:// smb:// file:// ile başlamalı)
Define the start-url(s) here. You can submit more than one URL, each line one URL please.==Başlangıç-URL'lerini burada tanımlayın. Birden fazla URL gönderebilirsiniz, her satırda bir URL lütfen.
-Each of these URLs is the root for a crawl start, existing start URLs are always re-loaded.==Bu URL'lerin her biri bir tarama başlangıcı için kök, mevcut başlangıç URL'leri her zaman yeniden yüklenir.
+Each of these URLs are the root for a crawl start, existing start URLs are always re-loaded.==Bu URL'lerin her biri bir tarama başlangıcının köküdür; mevcut başlangıç URL'leri her zaman yeniden yüklenir.
Other already visited URLs are sorted out as "double", if they are not allowed using the re-crawl option.==Zaten ziyaret edilmiş diğer URL'ler, re-crawl seçeneği kullanılmadıysa "çift" olarak sıralanır.
-
-
->From Link-List of URL<==>URL Bağlantı Listesinden<
+From Link-List of URL==URL Bağlantı Listesinden
From Sitemap==Site Haritasından
From File (enter a path within your local file system)==Dosyadan (yerel dosya sisteminizde bir yol girin)
-
-A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==Bir web taraması, internet üzerinde bulunan tüm bağlantılarda dahili veritabanına karşı çift kontrol yapar. Aynı URL tekrar bulunursa,
-then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,==o zaman URL'ye 'çift yok' seçeneğini kontrol ettiğinizde URL çift olarak kabul edilir. Bir URL belirli bir yaşa ulaştığında tekrar yüklenebilir,
-#to use that check the 're-load' option. When you want that this web crawl is repeated automatically, then check the 'scheduled' option.==Bu kontrolü kullanmak için 'yeniden yükle' seçeneğini işaretleyin. Bu web taramasının otomatik olarak tekrarlanmasını istiyorsanız, o zaman 'zamanlanmış' seçeneğini işaretleyin.
-#In this case the crawl is repeated after the given time and no url from the previous crawl is omitted as double.==Bu durumda, tarama belirtilen sürenin ardından tekrarlanır ve önceki taramadan hiçbir URL çift olarak atlanmaz.
-#Must-Match Filter==Eşleşme Filtresi
-Use filter==Filtre kullan
-Restrict to start domain==Başlangıç alanına sınırla
-Restrict to sub-path==Alt yol ile sınırla
-#The filter is an emacs-like regular expression that must match with the URLs which are used to be crawled;==Filtre, crawl edilecek URL'lerle eşleşmesi gereken bir emacs benzeri düzenli bir ifadedir;
-#that must match with the URLs which are used to be crawled; default is 'catch all'.==crawl edilmek üzere kullanılan URL'lerle eşleşmesi gereken; varsayılan olarak 'hepsini yakala'.
-#Example: to allow only urls that contain the word 'science', set the filter to '.*science.*'.==Örnek: sadece 'bilim' kelimesini içeren URL'lere izin vermek için filtreyi '.*bilim.*' olarak ayarlayın.
-You can also use an automatic domain-restriction to fully crawl a single domain.==Tek bir alanı tamamen taramak için otomatik bir alan sınırlaması da kullanabilirsiniz.
-#Must-Not-Match Filter==Eşleşmeme Filtresi
-#This filter must not match to allow that the page is accepted for crawling.==Bu filtre, sayfanın tarama için kabul edilmesine izin vermek için eşleşmemelidir.
-#The empty string is a never-match filter which should do well for most cases.==Boş bir dize, çoğu durum için iyi iş görmesi gereken bir eşleşmez filtre.
-#Re-crawl known URLs:==Bilinen URL'leri tekrar tara:
-
-#It depends on the age of the last crawl if this is done or not: if the last crawl is older than the given==Bunu yapılıp yapılmayacağı son taramanın yaşına bağlıdır: eğer son tarama belirtilenden daha eskiyse
-#Auto-Dom-Filter:==Otomatik Alan Filtresi:
-#This option will automatically create a domain-filter that limits the crawl on domains the crawler==Bu seçenek, taramayı sınırlayan bir alan filtresi oluşturacaktır.
-#will find on the given depth. You can use this option i.e. to crawl a page with bookmarks while==bu seçeneği kullanabilirsiniz, örneğin, yer imleri olan bir sayfayı taramak için
-#restricting the crawl on only those domains that appear on the bookmark-page. The adequate depth==taramayı yer imi sayfasında görünen yalnızca alanlarla sınırlayın. Uygun derinlik
-#for this example would be 1.==bu örnek için 1 olacaktır.
-#The default value 0 gives no restrictions.==Varsayılan değer 0 kısıtlama getirmez.
-#Maximum Pages per Domain:==Alan Başına Maksimum Sayfa:
-#Page-Count==Sayfa Sayısı
-You can limit the maximum number of pages that are fetched and indexed from a single domain with this option.==Bu seçenekle, tek bir alanın alınan ve dizine eklenen maksimum sayfa sayısını sınırlayabilirsiniz.
-You can combine this limitation with the 'Auto-Dom-Filter', so that the limit is applied to all the domains within==Bu kısıtlamayı 'Auto-Dom-Filter' ile birleştirebilirsiniz, böylece sınırlama
-the given depth. Domains outside the given depth are then sorted-out anyway.==verilen derinlik. Verilen derinlik dışındaki alanlar zaten elenir.
-#dynamic URLs==dinamik URL'ler
-
-
-Document Cache<==Belge Önbelleği<
-Store to Web Cache==Web Önbelleğine Kaydet
-This option is used by default for proxy prefetch but is not needed for explicit crawling.==Bu seçenek varsayılan olarak proxy ön yükleme için kullanılır, ancak açıkça tarama için gerekli değildir.
-A question mark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled.==Bir soru işareti genellikle dinamik bir sayfa için bir ipucudur. Genellikle dinamik içeriğe işaret eden URL'ler taramamalıdır.
-However, there are sometimes web pages with static content that==Ancak, bazen statik içerikli web sayfaları vardır, ki
-are accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.==URL'lerin içerdiği soru işaretleriyle erişilen. Emin değilseniz, tarama döngülerini önlemek için bunu kontrol etmeyin.
-Following frames is NOT done by Gxxg1e, but we do by default to have a richer content. 'nofollow' in robots metadata can be overridden; this does not affect obeying of the robots.txt which is never ignored.==Çerçeveleri takip etmek Gxxg1e tarafından YAPILMAZ, ancak daha zengin bir içeriğe sahip olmak için varsayılan olarak yaparız. 'nofollow' robots meta verilerinde geçersiz kılınabilir; bu, hiçbir zaman göz ardı edilmeyen robots.txt'nin uygulanmasını etkilemez.
-Accept URLs with query-part ('?'):==Sorgu kısmı ('?') içeren URL'leri kabul et:
-Obey html-robots-noindex:==html-robots-noindex kurallarına uyun:
-
-Policy for usage of Web Cache==Web Önbelleği Kullanımı İçin Politika
-The caching policy states when to use the cache during crawling:==Önbellekleme politikası, tarama sırasında önbelleği ne zaman kullanacağını belirtir:
-no cache==önbellek yok
-if fresh==taze ise önbellek hit
-if exist==varsa önbellek hit
-cache only==yalnızca önbellek
-never use the cache, all content from fresh internet source;==önbelleği hiç kullanma, tüm içerik taze internet kaynağından gelir;
-use the cache if the cache exists and is fresh using the proxy-fresh rules;==önbellek varsa ve önbellek proxy-fresh kurallarını kullanarak taze ise önbelleği kullan;
-use the cache if the cache exists. Do not check freshness. Otherwise use the online source;==önbellek varsa kullan. Tazeliği kontrol etme. Aksi takdirde çevrimiçi kaynağı kullan;
-never go online, use all content from the cache. If no cache exists, treat content as unavailable==asla çevrimiçi gitme, tüm içeriği önbellekten kullan. Eğer önbellek yoksa, içeriği kullanılamaz olarak işle
-#>Crawler Filter<==>Tarama Filtresi<
+Index Attributes==Dizin Nitelikleri
+Add Crawl result to collection (important for Index Pack generation)==Tarama sonucunu koleksiyona ekle (Dizin Paketi oluşturmak için önemlidir)
+A crawl result can be tagged with names which are candidates for a collection request.==Bir tarama sonucu, bir koleksiyon isteği için aday olan isimlerle etiketlenebilir.
+Do not use underline '_' in collection name, use '-' instead. When useful, add a language code to the collection name, e.g. 'top-100-en'.==Koleksiyon adında alt çizgi '_' kullanmayın, bunun yerine '-' kullanın. Yararlı olduğunda koleksiyon adına bir dil kodu ekleyin; 'ilk-100-en'.
+Time Zone Offset==Saat Dilimi Farkı
+The time zone is required when the parser detects a date in the crawled web page. Content can be searched with the on: - modifier which==Ayrıştırıcı, taranan web sayfasında bir tarih tespit ettiğinde saat dilimi gereklidir. İçerik, on: - değiştiricisi ile aranabilir.
+requires also a time zone when a query is made. To normalize all given dates, the date is stored in UTC time zone. To get the right offset==bir sorgu yapıldığında ayrıca bir saat dilimi gerektirir. Verilen tüm tarihleri normalleştirmek için tarih UTC saat diliminde saklanır. Doğru ofseti elde etmek için
+from dates without time zones to UTC, this offset must be given here. The offset is given in minutes;==Saat dilimi olmayan tarihlerden UTC'ye kadar bu farkın burada verilmesi gerekir. Ofset dakika cinsinden verilir;
+Time zone offsets for locations east of UTC must be negative; offsets for zones west of UTC must be positve.==UTC'nin doğusundaki konumlar için saat dilimi farkları negatif olmalıdır; UTC'nin batısındaki bölgeler için uzaklıklar pozitif olmalıdır.
+Crawler Filter==Tarayıcı Filtresi
These are limitations on the crawl stacker. The filters will be applied before a web page is loaded.==Bunlar, tarama yığınağındaki sınırlamalardır. Filtreler bir web sayfası yüklenmeden önce uygulanır.
-Crawling Depth<==Tarama Derinliği<
+Indexing==İndeksleme
+This enables indexing of the webpages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the==Bu, tarayıcının indireceği web sayfalarını indeksleme olanağını sağlar. Bu, varsayılan olarak açık olmalıdır, yalnızca
+Document Cache without indexing.==döküman önbelleğini indekslemeden doldurmak istiyorsanız.
+index text==metni indeksle
+index media==medyayı indeksle
+Do Remote Indexing==Uzak İndeksleme Yap
+If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==İşaretlenirse, tarayıcı diğer eşlere başvuracak ve bunları taramanız için uzak indeksleyiciler olarak kullanacaktır.
+If you need your crawling results locally, you should switch this off.==Crawling sonuçlarınızı yerel olarak ihtiyacınız varsa, bunu kapatmalısınız.
+Only senior and principal peers can initiate or receive remote crawls.==Yalnızca üst ve baş eşler uzak taramaları başlatabilir veya alabilir.
+A YaCyNews message will be created to inform all peers about a global crawl,==Tüm eşleri küresel bir tarama hakkında bilgilendirmek için bir YaCyNews mesajı oluşturulacak,
+so they can omit starting a crawl with the same start point.==bu nedenle aynı başlangıç noktasında bir tarama başlatmayı atlayabilirler.
+Remote crawl results won't be added to the local index as the remote crawler is disabled on this peer.==Uzak tarayıcı bu eşte devre dışı bırakıldığından uzaktan tarama sonuçları yerel dizine eklenmeyecek.
+Describe your intention to start this global crawl (optional)==Bu küresel taramayı başlatma niyetinizi açıklayın (isteğe bağlı)
+This message will appear in the 'Other Peer Crawl Start' table of other peers.==Bu mesaj, diğer eşlerin 'Diğer Eş Tarama Başlat' tablosunda görünecektir.
+Crawling Depth==Tarama Derinliği
This defines how often the Crawler will follow links (of links..) embedded in websites.==Bu, Tarayıcının web sitelerine gömülü bağlantıları (bağlantılarınızı..) ne sıklıkta takip edeceğini belirler.
0 means that only the page you enter under "Starting Point" will be added==0, yalnızca "Başlangıç Noktası" altına girdiğiniz sayfanın eklenmesi demektir
to the index. 2-4 is good for normal indexing. Values over 8 are not useful, since a depth-8 crawl will==indekse. 2-4, normal indeksleme için iyidir. 8'in üzerindeki değerler kullanışlı değildir, çünkü 8 derinlikte bir tarama
@@ -1174,459 +1345,445 @@ index approximately 25.600.000.000 pages, maybe this is the whole WWW.==yaklaş
also all linked non-parsable documents==ayrıca tüm bağlantılı ayrıştırılamayan belgeler
Unlimited crawl depth for URLs matching with==Eşleşen URL'ler için sınırsız tarama derinliği
Maximum Pages per Domain==Domain Başına Maksimum Sayfa
->Use<==>Kullan<
->Page-Count<==>Sayfa Sayısı<
+You can limit the maximum number of pages that are fetched and indexed from a single domain with this option.==Bu seçenekle, tek bir alanın alınan ve dizine eklenen maksimum sayfa sayısını sınırlayabilirsiniz.
+You can combine this limitation with the 'Auto-Dom-Filter', so that the limit is applied to all the domains within==Bu kısıtlamayı 'Auto-Dom-Filter' ile birleştirebilirsiniz, böylece sınırlama
+the given depth. Domains outside the given depth are then sorted-out anyway.==verilen derinlik. Verilen derinlik dışındaki alanlar zaten elenir.
+Use==Kullanmak
+Page-Count==Sayfa Sayısı
misc. Constraints==çeşitli Sınırlamalar
->Load Filter on URLs<==>URL'lerde Yükleme Filtresi<
->Load Filter on IPs<==>IP'lerde Yükleme Filtresi<
+A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled.==Soru işareti genellikle dinamik bir sayfa için bir ipucudur. Dinamik içeriğe işaret eden URL'ler genellikle taranmamalıdır.
+However, there are sometimes web pages with static content that==Ancak, bazen statik içerikli web sayfaları vardır, ki
+is accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.==soru işareti içeren URL'lerle erişilir. Emin değilseniz tarama döngülerinden kaçınmak için bunu işaretlemeyin.
+Following frames is NOT done by Gxxg1e, but we do by default to have a richer content. 'nofollow' in robots metadata can be overridden; this does not affect obeying of the robots.txt which is never ignored.==Çerçeveleri takip etmek Gxxg1e tarafından YAPILMAZ, ancak daha zengin bir içeriğe sahip olmak için varsayılan olarak yaparız. 'nofollow' robots meta verilerinde geçersiz kılınabilir; bu, hiçbir zaman göz ardı edilmeyen robots.txt'nin uygulanmasını etkilemez.
+Accept URLs with query-part ('?'):==Sorgu kısmı ('?') içeren URL'leri kabul et:
+Obey html-robots-noindex:==html-robots-noindex kurallarına uyun:
+Obey html-robots-nofollow:==Html-robots-nofollow'a uyun:
+Media Type detection==Medya Türü algılama
+Not loading URLs with unsupported file extension is faster but less accurate.==Desteklenmeyen dosya uzantısına sahip URL'lerin yüklenmemesi daha hızlıdır ancak doğruluğu daha düşüktür.
+Indeed, for some web resources the actual Media Type is not consistent with the URL file extension. Here are some examples:==Aslında, bazı web kaynakları için gerçek Medya Türü, URL dosya uzantısıyla tutarlı değildir. İşte bazı örnekler:
+Do not load URLs with an unsupported file extension==Desteklenmeyen dosya uzantısına sahip URL'leri yüklemeyin
+Always cross check file extension against Content-Type header==Dosya uzantısını her zaman Content-Type başlığına göre çapraz kontrol edin
+Load Filter on URLs==URL'lere Filtre Yükle
+Example: to allow only urls that contain the word 'science', set the must-match filter to '.*science.*'.==Örnek: Yalnızca 'bilim' kelimesini içeren URL'lere izin vermek için eşleşmesi gereken filtreyi '.*bilim.*' olarak ayarlayın.
+You can also use an automatic domain-restriction to fully crawl a single domain.==Tek bir alanı tamamen taramak için otomatik bir alan sınırlaması da kullanabilirsiniz.
+must-match==eşleşmesi gereken
+Restrict to start domain(s)==Başlangıç alan(lar)ını kısıtla
+Restrict to sub-path(s)==Alt yol(lar)la kısıtla
+Use filter==Filtre kullan
+(must not be empty)==(boş olmamalı)
+must-not-match==eşleşmemesi gereken
+Load Filter on URL origin of links==Bağlantıların URL kaynağına Filtre Yükle
+Example: to allow loading only links from pages on example.org domain, set the must-match filter to '.*example.org.*'.==Örnek: Yalnızca example.org alanındaki sayfalardan bağlantıların yüklenmesine izin vermek için eşleşmesi gereken filtreyi '.*example.org.*' olarak ayarlayın.
+Load Filter on IPs==IP'lere Filtre Yükle
Must-Match List for Country Codes==Ülke Kodları İçin Eşleşmeli Liste
Crawls can be restricted to specific countries. This uses the country code that can be computed from==Taramalar belirli ülkelere sınırlanabilir. Bu, ülkelerden hesaplanabilen ülke kodunu kullanır
-the IP of the server that hosts the page. The filter is not a regular expression but a list of country codes, separated by comma.==sayfaya ev sahipliği yapan sunucunun IP'sinden. Filtre bir düzenli ifade değil, virgülle ayrılmış bir ülke kodları listesidir.
+the IP of the server that hosts the page. The filter is not a regular expressions but a list of country codes, separated by comma.==sayfayı barındıran sunucunun IP değeri. Filtre normal ifadeler değil, virgülle ayrılmış ülke kodlarının bir listesidir.
no country code restriction==ülke kodu kısıtlaması yok
-
Document Filter==Belge Filtresi
These are limitations on index feeder. The filters will be applied after a web page was loaded.==Bunlar, dizin besleyicisi üzerindeki sınırlamalardır. Filtreler bir web sayfası yüklenip sonra uygulanır.
->Filter on URLs<==>URL'lerde Filtre<
-The filter is a==Filtre bir
->regular expression<==>düzenli ifade<
-that must not match with the URLs to allow that the content of the URL is indexed.==URL'lerle eşleşmemeli, böylece URL'nin içeriği dizine alınabilir.
-> must-match<==>eşleşmeli<
-> must-not-match<==>eşleşmemeli<
-(must not be empty)==(boş olmamalı)
-
+Filter on URLs==URL'lere göre filtreleme
+that must not match with the URLs to allow that the content of the url is indexed.==URL içeriğinin dizine eklenmesine izin vermek için URL'lerle eşleşmemelidir.
+No Indexing when Canonical present and Canonical != URL==Canonical mevcut ve Canonical olduğunda Dizin Oluşturma Yok != URL
+Filter on Content of Document (all visible text, including camel-case-tokenized url and title)==Belgenin İçeriğine Göre Filtreleme (deve durumuyla belirtilmiş URL ve başlık dahil tüm görünür metinler)
+Filter on Document Media Type (aka MIME type)==Belge Medya Türüne göre filtreleyin (MIME türü olarak da bilinir)
+that must match with the document Media Type (also known as MIME Type) to allow the URL to be indexed.== belgesinin, URL dizine eklenmesine izin vermek için Ortam Türü (MIME Türü olarak da bilinir) ile eşleşmesi gerekir.
+Each parsed document is checked against the given Solr query before being added to the index.==Ayrıştırılan her belge, dizine eklenmeden önce verilen Solr sorgusuna göre kontrol edilir.
+The embedded local Solr index must be connected to use this kind of filter.==Bu tür bir filtreyi kullanmak için katıştırılmış yerel Solr dizininin bağlanması gerekir.
+Content Filter==İçerik Filtresi
+These are limitations on parts of a document. The filter will be applied after a web page was loaded.==Bunlar bir belgenin bazı bölümlerine ilişkin sınırlamalardır. Filtre, bir web sayfası yüklendikten sonra uygulanacaktır.
+You can choose to:==Şunları seçebilirsiniz:
+Evaluate by default==Varsayılan olarak değerlendir
+Use all words in document by default until a CSS class as listed below appears; then ignore all==Aşağıda listelendiği gibi bir CSS sınıfı görünene kadar belgedeki tüm kelimeleri varsayılan olarak kullanın; sonra hepsini görmezden gel
+Ignore by default==Varsayılan olarak yoksay
+Ignore all words in document by default until a CSS class as listed below appears, then evaluate all==Aşağıda listelendiği gibi bir CSS sınıfı görünene kadar belgedeki tüm kelimeleri varsayılan olarak yok sayın, ardından tümünü değerlendirin
+Filter div or nav class names==Div veya nav sınıfı adlarını filtreleyin
+comma-separated list of <div> or <nav> element class names which should be filtered out/in according to switch above.==Yukarıdaki anahtara göre filtrelenmesi gereken <div> veya <nav> öğe sınıfı adlarının virgülle ayrılmış listesi/in.
Clean-Up before Crawl Start==Tarama Başlamadan Önce Temizleme
->No Deletion<==>Silme Yok<
->Re-load<==>Yeniden Yükle<
-For each host in the start URL list, delete all documents (in the given subpath) from that host.==Başlangıç URL listesindeki her ana bilgisayar için, bu ana bilgisayardan tüm belgeleri (verilen alt yolda) silin.
+Clean up search events cache==Arama etkinlikleri önbelleğini temizleyin
+Check this option to be sure to get fresh search results including newly crawled documents. Beware that it will also interrupt any refreshing/resorting of search results currently requested from browser-side.==Yeni taranan belgeler de dahil olmak üzere yeni arama sonuçları alacağınızdan emin olmak için bu seçeneği işaretleyin. Bunun aynı zamanda tarayıcı tarafından talep edilen arama sonuçlarının/resorting yenilenmesini de kesintiye uğratacağını unutmayın.
+No Deletion==Silme Yok
+After a crawl was done in the past, document may become stale and eventually they are also deleted on the target host.==Geçmişte bir tarama yapıldıktan sonra belge eskiyebilir ve sonunda hedef ana bilgisayarda da silinir.
+To remove old files from the search index it is not sufficient to just consider them for re-load but it may be necessary==Eski dosyaları arama dizininden kaldırmak için, bunları yalnızca yeniden yükleme amacıyla dikkate almak yeterli değildir ancak gerekli olabilir.
+to delete them because they simply do not exist any more. Use this in combination with re-crawl while this time should be longer.==artık mevcut olmadıkları için onları silmek. Bu sürenin daha uzun olması gerektiğinden, bunu yeniden taramayla birlikte kullanın.
Do not delete any document before the crawl is started.==Tarama başlamadan önce hiçbir belgeyi silme.
+Delete sub-path==Alt yolu sil
+For each host in the start url list, delete all documents (in the given subpath) from that host.==Başlangıç URL'si listesindeki her ana bilgisayar için, o ana bilgisayardaki tüm belgeleri (belirtilen alt yoldaki) silin.
+Delete only old==Yalnızca eskileri sil
Treat documents that are loaded==Yüklenen belgeleri işle
-> ago as stale and delete them before the crawl is started.==>önceki, bayatlamış olarak ve tarama başlamadan önce onları silin.
-After a crawl was done in the past, documents may become stale and eventually they are also deleted on the target host.==Geçmişte bir tarama yapıldıktan sonra, belgeler bayatlayabilir ve sonunda hedef ana bilgisayarda da silinebilir.
-To remove old files from the search index, it is not sufficient to just consider them for re-load but it may be necessary==Arama dizininden eski dosyaları kaldırmak için bunları sadece yeniden yükleme için düşünmek yeterli değildir ancak gerekli olabilir
-to delete them because they simply do not exist anymore. Use this in combination with re-crawl while this time should be longer.==çünkü artık basitçe var olmuyorlar. Bu, yeniden tarama ile birlikte kullanılabilirken bu süre daha uzun olmalıdır.
-
+ago as stale and delete them before the crawl is started.==önce bayat olarak kaydedin ve tarama başlamadan önce bunları silin.
Double-Check Rules==Dubletten Kontrol Kuralları
No Doubles==Hiç Dublet Yok
-A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==Web taraması, internet üzerinde bulunan tüm bağlantıları iç veritabanına karşı çift kontrol yapar. Eğer aynı URL tekrar bulunursa,
-then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,==o zaman URL, 'dublolar yok' seçeneğini kontrol ettiğinizde çift olarak kabul edilir. Bir URL belirli bir yaşa ulaştığında tekrar yüklenmiş olabilir,
+A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==Bir web taraması, internet üzerinde bulunan tüm bağlantılarda dahili veritabanına karşı çift kontrol yapar. Aynı URL tekrar bulunursa,
+then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,==o zaman URL'ye 'çift yok' seçeneğini kontrol ettiğinizde URL çift olarak kabul edilir. Bir URL belirli bir yaşa ulaştığında tekrar yüklenebilir,
to use that check the 're-load' option.==bu kontrolü kullanmak için 'yeniden yükle' seçeneğini işaretleyin.
->Re-load<==>Yeniden Yükle<
-Treat documents that are loaded==Yüklenen belgeleri işle
-> ago as stale and load them again. If they are younger, they are ignored.==> önceki olarak eski ve bunları tekrar yükle. Eğer daha gençlerse, görmezden gelinir.
Never load any page that is already known. Only the start-url may be loaded again.==Zaten bilinen herhangi bir sayfayı asla yükleme. Sadece başlangıç-url'si tekrar yüklenebilir.
-
+Re-load==Yeniden yükle
+ago as stale and load them again. If they are younger, they are ignored.==önce bayatlayıp tekrar yükleyin. Yaşları küçükse görmezden gelinirler.
+Document Cache==Belge Önbelleği
+Store to Web Cache==Web Önbelleğine Kaydet
+This option is used by default for proxy prefetch, but is not needed for explicit crawling.==Bu seçenek varsayılan olarak proxy'nin önceden getirilmesi için kullanılır, ancak açık tarama için gerekli değildir.
+Policy for usage of Web Cache==Web Önbelleği Kullanımı İçin Politika
+The caching policy states when to use the cache during crawling:==Önbellekleme politikası, tarama sırasında önbelleği ne zaman kullanacağını belirtir:
+no cache: never use the cache, all content from fresh internet source;==no cache: hiçbir zaman önbelleği kullanmayın, tüm içerik yeni internet kaynağındandır;
+if fresh: use the cache if the cache exists and is fresh using the proxy-fresh rules;==if fresh: önbellek mevcutsa ve tazeyse proxy-fresh kurallarını kullanarak önbelleği kullanın;
+if exist: use the cache if the cache exist. Do no check freshness. Otherwise use online source;==if exist: önbellek varsa önbelleği kullanın. Tazeliğini kontrol etmeyin. Aksi takdirde çevrimiçi kaynağı kullanın;
+cache only: never go online, use all content from cache. If no cache exist, treat content as unavailable==cache only: asla çevrimiçi olmayın, önbellekteki tüm içeriği kullanın. Önbellek yoksa içeriği kullanılamaz olarak değerlendirin
+no cache==önbellek yok
+if fresh==taze ise önbellek hit
+if exist==varsa önbellek hit
+cache only==yalnızca önbellek
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,
+Because YaCy can be used as replacement for commercial search appliances==Çünkü YaCy ticari arama cihazlarının yerine kullanılabilir
(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ı.
-
-Do Local Indexing==Yerel İndeksleme Yap
-index text==metni indeksle
-index media==medyayı indeksle
-This enables indexing of the webpages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the==Bu, tarayıcının indireceği web sayfalarını indeksleme olanağını sağlar. Bu, varsayılan olarak açık olmalıdır, yalnızca
-Document Cache without indexing.==döküman önbelleğini indekslemeden doldurmak istiyorsanız.
-Do Remote Indexing==Uzak İndeksleme Yap
-Describe your intention to start this global crawl (optional)==Bu küresel taramayı başlatma niyetinizi açıklayın (isteğe bağlı)
-This message will appear in the 'Other Peer Crawl Start' table of other peers.==Bu mesaj, diğer eşlerin 'Diğer Eş Tarama Başlat' tablosunda görünecektir.
-If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==İşaretlenirse, tarayıcı diğer eşlere başvuracak ve bunları taramanız için uzak indeksleyiciler olarak kullanacaktır.
-If you need your crawling results locally, you should switch this off.==Crawling sonuçlarınızı yerel olarak ihtiyacınız varsa, bunu kapatmalısınız.
-Only senior and principal peers can initiate or receive remote crawls.==Yalnızca üst ve baş eşler uzak taramaları başlatabilir veya alabilir.
-A YaCyNews message will be created to inform all peers about a global crawl==Tüm eşlere küresel bir tarama hakkında bilgi vermek için bir YaCyNews mesajı oluşturulacaktır
-so they can omit starting a crawl with the same start point.==bu nedenle aynı başlangıç noktasında bir tarama başlatmayı atlayabilirler.
-#Exclude static Stop-Words==Statik Duraklama-Kelimeleri Hariç Tut
-#This can be useful to circumvent that extremely common words are added to the database, i.e. "the", "he", "she", "it"... To exclude all words given in the file yacy.stopwords from indexing,==Bu, aşırı yaygın kelimelerin veritabanına eklenmesini engellemek için yararlı olabilir, yani "the", "he", "she", "it"... İndekslemeden hariç tutmak için yacy.stopwords dosyasında verilen tüm kelimeleri hariç tutmak için,
-Add Crawl result to collection(s)==Tarama sonucunu koleksiyon(lar)a ekle
-A crawl result can be tagged with names which are candidates for a collection request.==Bir tarama sonucu, bir koleksiyon isteği için aday olan isimlerle etiketlenebilir.
-These tags can be selected with the==Bu etiketler, şunlarla seçilebilir
-GSA interface==GSA Arayüzü
-using the 'site' operator.=='site' operatörünü kullanarak.
-To use this option, the 'collection_sxt'-field must be switched on in the==Bu seçeneği kullanmak için 'collection_sxt'-alanının açık olması gerekir
-#Solr Schema==Solr Şeması
-"Start New Crawl Job"=="Yeni Tarama İşi Başlat"
+Enrich Vocabulary==Kelime dağarcığını zenginleştirin
+Scraping Fields==Kazıma Alanları
+You can use class names to enrich the terms of a vocabulary based on the text content that appears on web pages. Please write the names of classes into the matrix.==Web sayfalarında görünen metin içeriğine dayalı olarak bir kelime dağarcığının terimlerini zenginleştirmek için sınıf adlarını kullanabilirsiniz. Lütfen sınıfların adlarını matrise yazınız.
+Vocabulary==Kelime bilgisi
+Class==Sınıf
#-----------------------------
#File: CrawlStartScanner_p.html
#---------------------------
+"Scan"=="Tara"
Network Scanner==Ağ Tarayıcısı
YaCy can scan a network segment for available http, ftp and smb server.==YaCy, bir ağ segmentini kullanılabilir HTTP, FTP ve SMB sunucuları için tarayabilir.
-You must first select an IP range and then, after this range is scanned,==Önce bir IP aralığı seçmelisiniz ve sonra, bu aralık tarandıktan sonra,
+You must first select a IP range and then, after this range is scanned,==Önce bir IP aralığı seçmelisiniz, ardından bu aralık tarandıktan sonra,
it is possible to select servers that had been found for a full-site crawl.==tam site taraması için bulunan sunucuları seçmek mümkündür.
-No servers had been detected in the given IP range==Belirtilen IP aralığında sunucu tespit edilmedi
-Please enter a different IP range for another scan.==Başka bir tarama için lütfen farklı bir IP aralığı girin.
-Please wait...==Lütfen bekleyin...
->Scan the network<==>Ağı Tara<
+Scan the network==Ağı tarayın
Scan Range==Tarama Aralığı
Scan sub-range with given host==Belirtilen ana bilgisayarla alt aralığı tarayın
-Full Intranet Scan:==Tam İntranet Tarama:
Do not use intranet scan results, you are not in an intranet environment!==İntranet tarama sonuçlarını kullanma, intranet ortamında değilsiniz!
All known hosts in the search index (/31 subnet recommended!)==Arama dizinindeki tüm bilinen ana bilgisayarlar (/31 alt ağı önerilir!)
-only the given host(s)==Yalnızca belirtilen ana bilgisayar(lar)
-addresses)==Adresler)
-Subnet<==Alt Ağ<
-Time-Out<==Zaman Aşımı<
-#>Scan Cache<==>Tarama Önbelleği<
+Subnet==Alt ağ
+/31 (only the given host(s))==/31 (yalnızca belirtilen ana bilgisayar(lar))
+/24 (254 addresses)==/24 (254 adres)
+/20 (4064 addresses)==/20 (4064 adres)
+/16 (65024 addresses)==/16 (65024 adres)
+Time-Out==Zaman aşımı
+ms==Bayan
+Scan Cache==Önbelleği Tara
accumulate scan results with access type "granted" into scan cache (do not delete old scan result)==Erişim türü "verilmiş" olan tarama sonuçlarını tarama önbelleğine biriktirin (eski tarama sonuçlarını silmeyin)
->Service Type<==>Hizmet Türü<
-#>ftp==>FTP
-#>smb==>SMB
-#>http==>HTTP
-#>https==>HTTPS
->Scheduler<==>Tarama Planlayıcısı<
+Service Type==Hizmet Türü
+ftp==ftp
+smb==osb
+http==http
+https==https
+Scheduler==Zamanlayıcı
run only a scan==Yalnızca bir tarama yapın
scan and add all sites with granted access automatically. This disables the scan cache accumulation.==Tarama yapın ve erişimi onaylanmış tüm siteleri otomatik olarak ekleyin. Bu, tarama önbelleği birikimini devre dışı bırakır.
-Look every==Her birine bakın
->minutes<==>dakika<
->hours<==>saat<
->days<==>gün<
+ Look every== Her birine bakın
+minutes==dakika
+hours==saat
+days==günler
again and add new sites automatically to indexer.==tekrar ve yeni siteleri otomatik olarak dizine ekleyin.
Sites that do not appear during a scheduled scan period will be excluded from search results.==Zamanlanmış bir tarama periyodu içinde görünmeyen siteler, arama sonuçlarından hariç tutulacaktır.
-"Scan"=="Tara"
#-----------------------------
#File: CrawlStartSite.html
#---------------------------
->Site Crawling<==>Site Tarama<
+"empty"=="boş"
+"Show all links"=="Tüm bağlantıları göster"
+"Start New Crawl"=="Yeni Taramayı Başlat"
+Site Crawling==Site Taraması
Site Crawler:==Site Taramacısı:
Download all web pages from a given domain or base URL.==Belirtilen bir alan veya temel URL'den tüm web sayfalarını indirin.
->Site Crawl Start<==>Site Tarama Başlangıcı<
->Site<==>Site<
-Start URL (must start with==Başlangıç URL (şununla başlamalıdır
+Site Crawl Start==Site Tarama Başlangıcı
+Site==Alan
+Start URL (must start with http:// https:// ftp:// smb:// file://)==Başlangıç URL'si (ile başlamalıdır http:// https:// ftp:// smb:// dosya://)
Link-List of URL==URL'nin Bağlantı Listesi
-#>Scheduler<==>Zamanlayıcı<
-#run this crawl once==bu taramayı yalnızca bir kez çalıştır
-#scheduled, look every==zamanlanmış, her birine bakın
-#>minutes<==>dakika<
-#>hours<==>saat<
-#>days<==>gün<
-#yeni belgeler için otomatik olarak.==otomatik olarak yeni belgelere.
->Path<==>Dizin<
-load all files in the domain==Alan içindeki tüm dosyaları yükle
-load only files in a sub-path of the given URL==Yalnızca belirtilen URL'nin alt dizinindeki dosyaları yükleyin
->Limitation<==>Sınırlama<
-not more than <==şu kadardan fazla değil <
->documents<==>belgeler<
-#>Dynamic URLs<==>Dinamik URL'ler<
-#allow < ==izin ver <
-#urls with a '?' in the path==yolda '?' olan URL'ler
-Collection<==Koleksiyon<
-#>Start<==>Başlat<
-"Start New Crawl"=="Yeni Taramayı Başlat"
-Hints<==İpuçları<
->Crawl Speed Limitation<==>Tarama Hızı Sınırlaması<
-No more than two pages are loaded from the same host in one second (not more than 120 documents per minute) to limit the load on the target server.==Aynı ana bilgisayardan bir saniyede iki sayfadan fazlası yüklenmez (hedef sunucu üzerindeki yükü sınırlamak için dakikada en fazla 120 belge değil).
->Target Balancer<==>Hedef Dengeleyici<
+Sitemap URL==Site Haritası URL
+Path==Yol
+load all files in domain==etki alanındaki tüm dosyaları yükle
+load only files in a sub-path of given url==yalnızca verilen URL'nin alt yolundaki dosyaları yükle
+Limitation==Sınırlama
+not more than==fazla değil
+documents==belgeler
+Collection==Koleksiyon
+Start==Başlangıç
+Hints==İpuçları
+Crawl Speed Limitation==Tarama Hızı Sınırlaması
+No more that four pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.==Hedef sunucudaki yükü sınırlamak için aynı ana bilgisayardan bir saniyede dörtten fazla sayfa yüklenmez (dakikada 120 belgeden fazla değil).
+Target Balancer==Hedef Dengeleyici
A second crawl for a different host increases the throughput to a maximum of 240 documents per minute since the crawler balances the load over all hosts.==Farklı bir ana bilgisayar için ikinci bir tarama, tarayıcının yükü tüm ana bilgisayarlar üzerinde dengelediği için dakikada en fazla 240 belgeye kadar bir çıkışa neden olur.
->High-Speed Crawling<==>Yüksek Hızlı Tarama<
+High Speed Crawling==Yüksek Hızlı Tarama
A 'shallow crawl' which is not limited to a single host (or site)==Bir 'yüzeysel tarama', tek bir ana bilgisayarla (veya siteyle) sınırlı olmayan
can extend the pages per minute (ppm) rate to unlimited documents per minute when the number of target hosts is high.==hedef ana bilgisayar sayısı yüksek olduğunda dakikadaki sayfaları sınırsız belgeye kadar genişletebilir.
-This can be done using the Expert Crawl Start servlet.==Bu, Uzman Tarama Başlatma aracılığıyla yapılabilir.
->Scheduler Steering<==>Zamanlayıcı Yönlendirmesi<
-The scheduler on crawls can be changed or removed using API Steering.==Zamanlamalı taramalardaki zamanlayıcı, API Yönlendirmesi kullanılarak değiştirilebilir veya kaldırılabilir.
+Scheduler Steering==Zamanlayıcı Yönlendirme
+#-----------------------------
+
+#File: Crawler_p.html
+#---------------------------
+"API"=="API"
+"Pages Per Minute"=="Dakikadaki Sayfa Sayısı"
+"Latency Factor"=="Gecikme Faktörü"
+"Max same Host in queue"=="Kuyrukta maksimum aynı Ana Bilgisayar"
+"set"=="Ayarla"
+"Set PPM to the default minimum value"=="PPM'yi varsayılan minimum değere ayarlayın"
+"Set PPM to the default maximum value"=="PPM'yi varsayılan maksimum değere ayarlayın"
+"Terminate"=="Sonlandır"
+"show link structure"=="bağlantı yapısını göster"
+"hide graphic"=="grafiği gizle"
+Click on this API button to see an XML with information about the crawler status==Tarayıcı durumu hakkında bilgi içeren bir XML görmek için bu API düğmesini tıklayın
+Crawler==Paletli
+(Please enable JavaScript to automatically update this page!)==(Bu sayfayı otomatik olarak güncellemek için lütfen JavaScript etkinleştirin!)
+Queues==Kuyruklar
+Queue==Sıra
+Size==Boyut
+Local Crawler==Yerel Tarayıcı
+Limit Crawler==Tarayıcıyı Sınırla
+Remote Crawler==Uzaktan Tarayıcı
+No-Load Crawler==Yüksüz Paletli
+Terminate All==Tümünü Sonlandır
+Index Size==Dizin Boyutu
+Database==Veritabanı
+Entries==Girişler
+Seg- ments==Seg- ments
+Citations (reverse link index)==Alıntılar (ters bağlantı dizini)
+RWIs (P2P Chunks)==RWIs (P2P Parçalar)
+Progress==İlerlemek
+Indicator==Gösterge
+Level==Seviye
+Speed / PPM (Pages Per Minute)==Hız / PPM (Dakikadaki Sayfa Sayısı)
+PPM==PPM
+LF==LF
+MH==MH
+Crawler PPM==Paletli PPM
+Postprocessing Progress==İşlem Sonrası İlerleme Durumu
+pending:==askıda olması:
+Traffic (Crawler)==Trafik (Tarayıcı)
+MB==MB
+Load==Yük
+Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db==Profil yönetiminde hata. Lütfen YaCy işlemini durdurun, DATA/PLASMADB/crawlProfiles0.db dosyasını silin
+and restart.==ve yeniden başlatın.
+Application not yet initialized. Sorry. Please wait some seconds and repeat==Uygulama henüz başlatılmadı. Üzgünüm. Lütfen birkaç saniye bekleyin ve tekrarlayın
+the request.==istek.
+filter.==filtre.
+it may take some seconds until the first result appears there.==ilk sonucun orada görünmesi birkaç saniye sürebilir.
+No embedded local Solr index is connected. This is required to use a Solr query filter.==Katıştırılmış yerel Solr dizini bağlı değil. Bu, Solr sorgu filtresinin kullanılması için gereklidir.
+The Solr filter query syntax is not valid :==Solr filtre sorgusu sözdizimi geçerli değil:
+Could not parse the Solr filter query :==Solr filtre sorgusu ayrıştırılamadı:
+You asked for remote indexing, but remote crawl results won't be added to the local index as the remote crawler is currently disabled on this peer.==Uzaktan dizine eklemeyi istediniz ancak uzak tarayıcı şu anda bu eşte devre dışı olduğundan uzaktan tarama sonuçları yerel dizine eklenmeyecek.
+Name==Ad
+Count==Saymak
+Status==Durum
+Running==Koşma
+Crawled Pages==Taranan Sayfalar
#-----------------------------
-#File: Help.html
+#File: DictionaryLoader_p.html
+#---------------------------
+"Load"=="Yükle"
+"Deactivate"=="Devre Dışı Bırak"
+"Remove"=="Kaldır"
+"Activate"=="Etkinleştir"
+Knowledge Loader==Bilgi Yükleyici<
+YaCy can use external libraries to enable or enhance some functions. These libraries are not==YaCy, bazı işlevleri etkinleştirmek veya geliştirmek için harici kütüphaneleri kullanabilir. Bu kütüphaneler,
+included in the main release of YaCy because they would increase the application file too much.==Bu kütüphaneler, uygulama dosyasını çok fazla artıracağından YaCy'nin ana sürümüne dahil edilmemiştir.
+You can download additional files here.==Buradan ek dosyaları indirebilirsiniz.
+Geolocalization==Jeolokalizasyon
+Geolocalization will enable YaCy to present locations from OpenStreetMap according to given search words.==Coğrafi konum, YaCy'nin belirli arama kelimelerine göre OpenStreetMap'ten konumları sunmasını sağlar.
+GeoNames==Coğrafi Adlar
+With this file it is possible to find cities all over the world.==Bu dosya ile dünyanın her yerindeki şehirleri bulmak mümkün.
+Content==İçerik
+cities with a population > 1000 all over the world==Dünya genelinde 1000'den fazla nüfusa sahip şehirler
+Download from==Şuradan indirin:
+Storage location==Depolama yeri
+Status==Durum
+not loaded==yüklenmedi
+loaded==yüklü
+deactivated==devre dışı
+Action==Eylem
+Result==Sonuç
+loaded and activated dictionary file==yüklenen ve etkinleştirilen sözlük dosyası
+deactivated and removed dictionary file==sözlük dosyası devre dışı bırakıldı ve kaldırıldı
+deactivated dictionary file==devre dışı bırakılmış sözlük dosyası
+activated dictionary file==etkinleştirilmiş sözlük dosyası
+cities with a population > 5000 all over the world==Dünya genelinde 5000'den fazla nüfusa sahip şehirler
+cities with a population > 100000 all over the world (the set is is reduced to cities > 100000)==Dünya genelinde 100000'den fazla nüfusa sahip şehirler (küme, şehirler > 100000'e indirilmiştir)
+OpenGeoDB==OpenGeoDB
+With this file it is possible to find locations in Germany using the location (city) name, a zip code, a car sign or a telephone pre-dial number.==Bu dosya ile konum (şehir) adı, posta kodu, araba işareti veya telefon ön arama numarası kullanılarak Almanya'daki konumları bulmak mümkündür.
+Downloaded from==İndirilen yer
+loaded - can be upgraded using the Load button for the new URL==yüklendi - yeni URL için Yükle düğmesi kullanılarak yükseltilebilir
+loaded and upgraded dictionary file==yüklenen ve güncellenen sözlük dosyası
+Suggestions==Öneriler
+Suggestion dictionaries will help YaCy to provide better suggestions during the input of search words==Öneri sözlükleri, YaCy'nin arama kelimelerini girmek sırasında daha iyi öneriler sunmasına yardımcı olacaktır.
+DeReWo - Korpusbasierte Grund-/Wortformenlisten (German) of 'Institut für Deutsche Sprache'==DeReWo - Korpusbasierte Grund-/Wortformenlisten (Almanca), 'Institut für Deutsche Sprache'
+This file provides 100000 most common german words for suggestions==Bu dosya, öneriler için en yaygın 100000 Almanca kelimeyi sağlar
+Synonyms==Eş anlamlılar
+Synonyms are used to find not only the searched word but also their synonyms. This is done by adding all synonyms of words in documents to the document and searching the synonyms as well.==Eş anlamlılar yalnızca aranan sözcüğü değil aynı zamanda eş anlamlılarını da bulmak için kullanılır. Bu, belgelerdeki kelimelerin tüm eş anlamlılarının belgeye eklenmesi ve eş anlamlılarının da aranması yoluyla yapılır.
+OpenThesaurus - German Thesaurus from http://www.openthesaurus.de==OpenThesaurus - http://www.openthesaurus.de'dan Almanca Eş Anlamlılar Sözlüğü
+The data from this source was converted to the YaCy synonym file format and part of the YaCy distribution.==Bu kaynaktan alınan veriler YaCy eşanlamlı dosya biçimine ve YaCy dağıtımının bir parçasına dönüştürüldü.
+Deactivated==Devre dışı bırakıldı
+Activated==Etkinleştirildi
+Moby Lexicon - English Thesaurus from https://www.gutenberg.org/ebooks/3202==Moby Lexicon - https://www.gutenberg.org/ebooks/3202'dan İngilizce Eş Anlamlılar Sözlüğü
+Russian Thesaurus==Rusça Eş Anlamlılar Sözlüğü
+The data was converted to the YaCy synonym file format and part of the YaCy distribution.==Veriler YaCy eşanlamlı dosya biçimine ve YaCy dağıtımının bir parçasına dönüştürüldü.
+#-----------------------------
+
+#File: Help.html
#---------------------------
-#YaCy: Help==YaCy: Yardım
YaCy: Tutorial==YaCy: Anlatım
-You are using the administration interface of your own search engine==Kendi arama motorunuzun yönetim arayüzünü kullanıyorsunuz
-You can create your own search index with YaCy==YaCy ile kendi arama dizininizi oluşturabilirsiniz
-To learn how to do that, watch one of the demonstration videos below==Bunu nasıl yapacağınızı öğrenmek için lütfen aşağıdaki demonstrasyon videolarından birini izleyin
+Tutorial==öğretici
+You are using the administration interface of your own search engine. You can create your own search index with YaCy.==Kendi arama motorunuzun yönetim arayüzünü kullanıyorsunuz. YaCy ile kendi arama dizininizi oluşturabilirsiniz.
+To learn how to do that, watch one of the demonstration videos below:==Bunu nasıl yapacağınızı öğrenmek için aşağıdaki tanıtım videolarından birini izleyin:
twitter this video==Bu videoyu Twitter'da paylaş
-Download from Vimeo==Vimeo'dan İndir
More Tutorials==Daha Fazla Anlatım
-Please see the tutorials on==Lütfen şu adresdeki anlatımlara bakın
#-----------------------------
#File: IndexBrowser_p.html
#---------------------------
-#Index Browser==İndeks Tarayıcı
-Browse the index of #[ucount]# documents.==#[ucount]# belgenin indeksine göz atın.
-Enter a host or an URL for a file list or view a list of==Dosya listesi için bir ana bilgisayar veya bir URL girin veya bir liste görüntüleyin
->all hosts<==>tüm ana bilgisayarlar<
->only hosts with urls pending in the crawler<==>sadece Crawler'da bekleyen URL'lere sahip ana bilgisayarlar<
-> or <==> veya <
->only with load errors<==>yalnızca yük hatalarına sahip olanlar<
-#Host/URL:==Ana Bilgisayar/URL:
-"Browse Host"=="Ana Bilgisayarı Gözat"
"Delete Subpath"=="Alt Dizin Sil"
-Confirm Deletion==Silme İşlemini Onayla
->Host List<==>Ana Bilgisayar Listesi<
+"Re-load load-failure docs (404s etc)"=="Yükleme hatası belgelerini (404'ler vb.) yeniden yükleyin"
+"Directory"=="Rehber"
+"Delete Load Errors"=="Yükleme Hatalarını Sil"
+Index Browser==Dizin Tarayıcısı
+Host/URL==Ana makine/URL
+Browse Host==Ana Bilgisayara Göz Atın
+Host List==Ana Bilgisayar Listesi
+URLs==URL'ler
Count Colors:==Renk Sayısı:
Documents without Errors==Hatasız Belgeler
Pending in Crawler==Crawler'da Bekleyen
-Crawler Excludes<==Crawler Hariç Tutulanlar<
-Load Errors<==Yükleme Hataları<
-#Load Errors (exclusion/failure)==Yükleme Hataları (hariç tutma/başarısızlık)
-#Browser for #[path]#==#[path]# İçin Tarayıcı
-documents stored for host: #[hostsize]#==Ana bilgisayar için depolanan belgeler: #[hostsize]#
-documents stored for subpath: #[subpathloadsize]#==Alt dizin için depolanan belgeler: #[subpathloadsize]#
-unloaded documents detected in subpath: #[subpathdetectedsize]#==Alt dizinde algılanan yüklenmemiş belgeler: #[subpathdetectedsize]#
->Path<==>Dizin<
->stored<==>depo edilen<
->linked<==>bağlantılı<
->pending<==>bekleyen<
->excluded<==>hariç tutulan<
->failed<==>başarısız<
-Show Metadata==Meta Verileri Göster
+Crawler Excludes==Tarayıcı Hariç Tutulanlar
+Load Errors==Yükleme Hataları
+Host Analysis==Ana Bilgisayar Analizi
+Add to blacklist==Kara listeye ekle
+Path==Yol
+stored==saklandı
+linked==bağlantılı
+pending==askıda olması
+excluded==hariç tutuldu
+failed==arızalı
+Metadata==Meta veriler
link, detected from context==Bağlantı, bağlamdan algılandı
load & index==Yükle ve İndeksle
->indexed<==>İndekslenmiş<
->loading<==>yükleniyor<
-Outbound Links, outgoing from #[host]# - Host List==Çıkış bağlantıları, #[host]# tarafından gönderilen - Ana Bilgisayar Listesi
-Inbound Links, incoming to #[host]# - Host List==Giriş bağlantıları, #[host]# tarafından alınan - Ana Bilgisayar Listesi
-#browse #[host]#==#[host]# göz at
-##[count]# URLs==#[count]# URL'ler
-#Administration Options==Yönetim Seçenekleri
-==
+indexed==indekslenmiş
+loading==yükleniyor
Administration Options==Yönetici Seçenekleri
Delete all==Hepsini sil
->Load Errors<==>Yükleme Hataları<
from index==indeksten
-"Delete Load Errors"=="Yükleme Hatalarını Sil"
-#-----------------------------
-
-
-#File: index.html
-#---------------------------
-==
-YaCy '#[clientname]#': Search Page==YaCy '#[clientname]#': Arama Sayfası
-#kiosk mode==Kiosk Modu
-"Search"=="Ara"
-#Text==Metin
-Images==Resimler
-#Audio==Ses
-Video==Videolar
-Applications==Uygulamalar
-more options...==daha fazla seçenek...
-#advanced parameters==gelişmiş parametreler
-#Max. number of results==Maks. sonuç sayısı
-Results per page==Sayfa başına sonuçlar
-Resource==Kaynak
-global==global
-#>local==>yerel
-#Global search is disabled because==Global arama devre dışı bırakıldı çünkü
-#DHT Distribution is==DHT Dağıtımı şu şekildedir
-#Index Receive is==Index Alımı şu şekildedir
-#DHT Distribution and Index Receive are==DHT Dağıtımı ve Index Alımı şu şekildedir
-#disabled.#(==devre dışı.#(
-#URL mask==URL maskeleme
-restrict on==kısıtla
-show all==hepsini göster
-#überarbeiten!!!
-Prefer mask==Tercih maskeleme
-Constraints==Kısıtlamalar
-only index pages==Sadece dizin sayfaları
-#"authentication required"=="Kimlik doğrulama gerekiyor"
-#Disable search function for users without authorization==Yetkisi olmayan kullanıcılar için arama işlevini devre dışı bırak
-#Enable web search to everyone==Herkes için web aramasını etkinleştir
-the peer-to-peer network==Peer-to-Peer ağı
-only the local index==Sadece yerel dizin
-Query Operators==Sorgu Operatörleri
-restrictions==Kısıtlamalar
-only urls with the <phrase> in the url==URL'de <phrase> bulunanları göster
-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-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
-they are rare==Bunlar nadir
-crawl them yourself==Kendiniz tarama yapın
-only resources from smb servers==Sadece SMB sunuculardan kaynakları göster
-Intranet Indexing must be selected==Intranet İndeksleme seçilmelidir
-only files from a local file system==Sadece yerel bir dosya sisteminden dosyaları göster
-ranking modifier==Sıralama değiştirici
-sort by date==Tarihe göre sırala
-latest first==En yenisi önce
-multiple words shall appear near==Birden fazla kelime yakın görünmelidir
-doublequotes==Çift tırnaklar
-prefer given language==Verilen dil tercih edilsin
-an ISO 639-1 2-letter code==Bir ISO 639-1 2 harfli kodu
-heuristics==Heuristikler
-add search results from external opensearch systems==Harici Opensearch sistemlerinden arama sonuçlarını ekle
-Search Navigation==Arama Gezinme
-keyboard shortcuts==Klavye kısayolları
-next result page==Sonraki sonuç sayfası
-previous result page==Önceki sonuç sayfası
-automatic result retrieval==Otomatik sonuç getirme
-browser integration==Tarayıcı entegrasyonu
-after searching, click-open on the default search engine in the upper right search field of your browser and select 'Add "YaCy Search.."'==Arama yaptıktan sonra tarayıcınızın sağ üst arama alanındaki varsayılan arama motoruna tıklayarak 'Add "YaCy Search.."' seçeneğini seçin
-search as rss feed==Arama sonuçlarını RSS beslemesi olarak görüntüle
-click on the red icon in the upper right after a search. this works good in combination with the==Arama yaptıktan sonra sağ üst köşede bulunan kırmızı simgeye tıklayın. bu, ile birlikte iyi çalışır
-See an==Bkz
->example==>örnek
-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: IndexControlRWIs_p.html
#---------------------------
-Reverse Word Index Administration==Ters Kelime Dizin Yönetimi
-The local index currently contains #[wcount]# reverse word indexes==Yerel dizin şu anda #[wcount]# ters kelime dizini içeriyor
-RWI Retrieval (= search for a single word)==RWI Çekme (= Tek bir kelime için arama)
-#Select Segment:==Segment Seç:
-Retrieve by Word:<==Kelimeye Göre Çek:<
"Show URL Entries for Word"=="Kelime için URL Girişlerini Göster"
-Retrieve by Word-Hash==Kelime-Hash'e Göre Çekme
"Show URL Entries for Word-Hash"=="Kelime-Hash için URL Girişlerini Göster"
"Generate List"=="Liste Oluştur"
+"List Selected URLs"=="Seçilen URL'leri Listele"
+"Delete Word"=="Kelime Sil"
+"Transfer to other peer"=="Başka bir eşe aktar"
+"Delete reference to selected URLs"=="Seçilen URL'lere referansı sil"
+"Add selected URLs to blacklist"=="Seçilen URL'leri kara listeye ekle"
+"Add selected domains to blacklist"=="Seçilen alan adlarını kara listeye ekle"
+Reverse Word Index Administration==Ters Kelime Dizin Yönetimi
+RWI Retrieval (= search for a single word)==RWI Çekme (= Tek bir kelime için arama)
+Retrieve by Word:==Word ile al:
+Retrieve by Word-Hash:==Word-Hash ile alma:
Limitations==Sınırlamalar
Index Reference Size==Dizin Referans Boyutu
No reference size limitation (this may cause strong CPU load when words are searched that appear very often)==Referans boyutu sınırlaması yok (bu, sıkça görünen kelimeler arandığında güçlü CPU yüküne neden olabilir)
Limitation of number of references per word:==Her kelime için referans sayısı sınırlaması:
(this causes that old references are deleted if that limit is reached)==(bu, limit ulaşıldığında eski referansların silinmesine neden olur)
->Set References Limit<==>Referans Limiti Belirle<
-#Cleanup==Temizlik
-#>Index Deletion<==>Dizin Silme<
-#>Delete Search Index<==>Arama Dizini Sil<
-#Stop Crawler and delete Crawl Queues==Crawler'ı Durdur ve Crawl Sıralarını Sil
-#Delete HTTP & FTP Cache==HTTP & FTP Önbelleği Sil
-#Delete robots.txt Cache==robots.txt Önbelleği Sil
-#Delete cached snippet-fetching failures during search==Arama sırasında önbelleğe alınmış snippet alma hatalarını sil
-#"Delete"=="Sil"
-No entry for word '#[word]#'=='#[word]#' kelimesi için giriş bulunamadı
-No entry for word hash==Kelime hash için giriş bulunamadı
-Search result==Arama sonucu
-total URLs==toplam URL
-appearance in==görünümü içinde
-in link type==bağlantı türünde
-document type==belge türü
-
description
==
açıklama
-
title
==
başlık
-
creator
==
oluşturan
-
subject
==
konu
-
url
==
url
-
emphasized
==
vurgulanan
-
image
==
görsel
-
audio
==
ses
-
video
==
video
-
app
==
uygulama
-index of==indexi
->Selection==>Seçim
+Set References Limit==Referans Sınırını Ayarla
+Search result:==Arama sonucu:
+total URLs==toplam URL'ler
+appearance in==görünüm
+in link type==bağlantı türünde
+document type==belge türü
+description==Tanım
+title==başlık
+creator==yaratıcı
+subject==ders
+url==URL
+emphasized==vurgulandı
+image==resim
+audio==ses
+video==video
+app==uygulama
+index of==endeksi
+Selection==Seçim
Display URL List==URL Listesini Göster
-Number of lines==Satır sayısı
+Number of lines:==Satır sayısı:
all lines==tüm satırlar
-"List Selected URLs"=="Seçilen URL'leri Listele"
+Word Deletion==Kelime Silme
+delete also the referenced URL (recommended, may produce unresolved references==referans verilen URL'yi de sil (tavsiye edilir, çözülemeyen referanslara neden olabilir
+at other word indexes but they do not harm)==diğer kelime dizinlerinde ancak zarar vermez
+for every resolvable and deleted URL reference, delete the same reference at every other word where==her çözülebilen ve silinen URL referansı için, referansın olduğu her kelime dizininde aynı referansı sil
+the reference exists (very extensive, but prevents further unresolved references)==referansın bulunduğu her yerde (çok kapsamlı ancak daha fazla çözülemeyen referansları engeller)
Transfer RWI to other Peer==RWI'yi Başka Bir Eşe Aktar
-Transfer by Word-Hash==Kelime-Hash ile Aktar
-"Transfer to other peer"=="Başka bir eşe aktar"
-to Peer==Eşe
-
select==
seç
-or enter a hash==veya bir hash girin
-Sequential List of Word-Hashes==Kelime-Hash'lerin Sıralı Listesi
+Transfer by Word-Hash:==Word-Hash ile Aktarım:
+to Peer:==Peer'e:
+select==seçme
+or enter a hash or peer name:==veya bir karma veya eş adı girin:
+Sequential List of Word-Hashes:==Kelime Karmalarının Sıralı Listesi:
No URL entries related to this word hash==Bu kelime hash ile ilgili URL girişi yok
->#[count]# URL entries related to this word hash==>Bu kelime hash ile ilgili #[count]# URL girişi
-Resource==Kaynak
+Resource==Kaynak
Negative Ranking Factors==Negatif Sıralama Faktörleri
Positive Ranking Factors==Pozitif Sıralama Faktörleri
+props==sahne donanımı
Reverse Normalized Weighted Ranking Sum==Ters Normalize Edilmiş Ağırlıklı Sıralama Toplamı
-hash==hash
-dom length==dom uzunluğu
-#ybr==#ybr
-#url comps
-url length==url uzunluğu
-pos in text==metindeki konum
-pos of phrase==ifade konumu
-pos in phrase==ifadedeki konum
-word distance==kelime mesafesi
-
statement==varsayılan arama penceresinin görüntülendiği satırı bulun, bu
<div id="search-box">
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
+Insert the following code right behind the div tag:==Div etiketinin hemen arkasına aşağıdaki kodu ekleyin:
Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Kod parçasındaki statik IP'lerin tüm görünümlerini kontrol edin ve bunları kendi IP'niz veya ana bilgisayar adınızla değiştirin
You may want to change the default text elements in the code snippet==Kod parçasındaki varsayılan metin öğelerini değiştirmek isteyebilirsiniz
To see all options for the search widget, look at the more generic description of search widgets at==Arama widget'ının tüm seçeneklerini görmek için, arama widget'larının daha genel bir açıklamasına bakın
-the configuration for live search.==canlı arama için yapılandırma sayfasına bakın.
-#-----------------------------```
+#-----------------------------
#File: Load_RSS_p.html
#---------------------------
-Configuration of a RSS Search==RSS Arama Yapılandırması
-Loading of RSS Feeds<==RSS Beslemelerini Yükleme<
-RSS feeds can be loaded into the YaCy search index.==RSS beslemeleri YaCy arama indeksine yüklenebilir.
-This does not load the rss file as such into the index but all the messages inside the RSS feeds as individual documents.==Bu, RSS dosyasını indekse kendisi olarak yüklemez, ancak RSS beslemeleri içindeki tüm mesajları bireysel belgeler olarak yükler.
-URL of the RSS feed==RSS beslemesinin URL'si
->Preview<==>Önizleme<
"Show RSS Items"=="RSS Öğelerini Göster"
-Available after successful loading of rss feed in preview==Önizlemede başarılı bir şekilde yükleme sonrasında kullanılabilir
"Add All Items to Index (full content of url)"=="Tüm Öğeleri İndexe Ekle (URL'nin tam içeriği)"
->once<==>bir kez<
->load this feed once now<==>bu beslemeyi şimdi bir kez yükle<
->scheduled<==>planlı<
->repeat the feed loading every<==>beslemeyi her tekrarla<
->minutes<==>dakika<
->hours<==>saat<
->days<==>gün<
-> automatically.==> otomatik olarak.
->List of Scheduled RSS Feed Load Targets<==>Planlanan RSS Besleme Yükleme Hedefleri Listesi<
->Title<==>Başlık<
-#>URL/Referrer<==>URL/Yönlendiren<
->Recording<==>Kayıt<
->Last Load<==>Son Yükleme<
->Next Load<==>Sonraki Yükleme<
->Last Count<==>Son Sayım<
->All Count<==>Toplam Sayım<
->Avg. Update/Day<==>Ortalama Güncelleme/Gün<
"Remove Selected Feeds from Scheduler"=="Seçilen Beslemeleri Zamanlayıcıdan Kaldır"
"Remove All Feeds from Scheduler"=="Tüm Beslemeleri Zamanlayıcıdan Kaldır"
->Available RSS Feed List<==>Kullanılabilir RSS Besleme Listesi<
"Remove Selected Feeds from Feed List"=="Seçilen Beslemeleri Besleme Listesinden Kaldır"
"Remove All Feeds from Feed List"=="Tüm Beslemeleri Besleme Listesinden Kaldır"
"Add Selected Feeds to Scheduler"=="Seçilen Beslemeleri Zamanlayıcıya Ekle"
->new<==>Yeni<
->enqueued<==>Sıraya alınmış<
->indexed<==>İndekslenmiş<
->RSS Feed of==>RSS Beslemesi
->Author<==>Yazar<
->Description<==>Açıklama<
->Language<==>Dil<
->Date<==>Tarih<
->Time-to-live<==>TTL (Yaşam Süresi)<
->Docs<==>Belgeler<
->State<==>Durum<
-#>URL<==>URL<
"Add Selected Items to Index (full content of url)"=="Seçilen Öğeleri İndexe Ekle (URL'nin tam içeriği)"
+Loading of RSS Feeds==RSS Yayınlarının Yüklenmesi
+RSS feeds can be loaded into the YaCy search index.==RSS beslemeleri YaCy arama indeksine yüklenebilir.
+This does not load the rss file as such into the index but all the messages inside the RSS feeds as individual documents.==Bu, RSS dosyasını indekse kendisi olarak yüklemez, ancak RSS beslemeleri içindeki tüm mesajları bireysel belgeler olarak yükler.
+URL of the RSS feed==RSS beslemesinin URL'si
+Preview==Önizleme
+Indexing==İndeksleme
+Available after successful loading of rss feed in preview==Önizlemede başarılı bir şekilde yükleme sonrasında kullanılabilir
+once==bir kere
+load this feed once now==bu feed'i şimdi bir kez yükle
+scheduled==planlanmış
+repeat the feed loading every==besleme yüklemesini her defasında tekrarlayın
+minutes==dakika
+hours==saat
+days==günler
+automatically.==otomatik olarak.
+collection==koleksiyon
+List of Scheduled RSS Feed Load Targets==Planlanmış RSS Feed Yükü Hedeflerinin Listesi
+Title==Başlık
+URL/Referrer==URL/Referrer
+Recording==Kayıt
+Last Load==Son Yükleme
+Next Load==Sonraki Yük
+Last Count==Son Sayım
+All Count==Tüm Sayım
+Avg. Update/Day==Ortalama Güncelleme/Day
+Available RSS Feed List==Mevcut RSS Besleme Listesi
+Author==Yazar
+Description==Açıklama
+Language==Dil
+Date==Tarih
+Time-to-live==Yaşama süresi
+Docs==Dokümanlar
+State==Durum
+URL==URL
+new==yeni
+enqueued==kuyruğa alınmış
+indexed==indekslenmiş
+Attached media==Ekli medya
#-----------------------------
-#File: Messages_p.html
-#---------------------------
->Messages==>Mesajlar
-Date==Tarih
-From==Kimden
-To==Kime
->Subject==>Konu
-Action==Eylem
-From:==Kimden:
-To:==Kime:
-Date:==Tarih:
-#Subject:==Konu:
->view==>görüntüle
-reply==cevapla
->delete==>sil
-Compose Message==Mesaj Oluştur
-Send message to peer==Eşe mesaj gönder
-"Compose"=="Oluştur"
-Message:==Mesaj:
-inbox==Gelen Kutusu
-#-----------------------------```
+#File: LogReports_p.html
+#---------------------------
+"delete this report"=="bu raporu sil"
+Log Reports==Günlük Raporları
+run report now==raporu şimdi çalıştır
+Generating report from the current-hour log lines — the LLM call can take a while …==Geçerli saat günlük satırlarından rapor oluşturuluyor — LLM çağrısı biraz zaman alabilir …
+seconds elapsed==saniyeler geçti
+No log lines were found for the current hour.==Geçerli saate ait günlük satırı bulunamadı.
+No production model is configured for the log-report role. Assign one in the==log-report rolü için çalışma modeli yapılandırılmadı. Birini şurada atayın:
+No production model is configured for the log-report role. Log report generation stays inactive until a model is assigned in the==log-report rolü için çalışma modeli yapılandırılmadı. Bir model atanana kadar günlük raporu oluşturma etkin kalmaz.
+Feeds:==Yayınlar:
+JSON==JSON
+RSS==RSS
+The report directory does not exist yet. Reports will appear here after the scheduler has generated the first completed hourly report.==Rapor dizini henüz mevcut değil. Planlayıcı ilk tamamlanan saatlik raporu oluşturduktan sonra raporlar burada görünecektir.
+×==×
+Report generation in progress …==Rapor oluşturma işlemi devam ediyor …
+the report below is completed live while the model is writing==aşağıdaki rapor model yazarken canlı olarak tamamlanır
+No generated log reports were found.==Oluşturulan günlük raporu bulunamadı.
+#-----------------------------
#File: MessageSend_p.html
#---------------------------
+"Enter"=="Gönder"
+"Preview"=="Önizleme"
Send message==Mesaj gönder
-You cannot send a message to==Mesaj gönderemezsiniz
The peer does not respond. It was now removed from the peer-list.==Eş yanıt vermiyor. Şu anda eş listesinden kaldırıldı.
-The peer ==Eş
-is alive and responded:==yaşıyor ve yanıt verdi:
-You are allowed to send me a message==Bana bir mesaj göndermeye izin verilmiştir
-kb and an==KB ve bir
-attachment ≤==Ek ≤
Your Message==Sizin Mesajınız
Subject:==Konu:
Text:==Metin:
-"Enter"=="Gönder"
-"Preview"=="Önizleme"
-You can use==Burada kullanabilirsiniz
-Wiki Code here.==Burada Wiki Kodu kullanabilirsiniz.
+The peer is alive but cannot respond. Sorry.==Eş yaşıyor ama yanıt veremiyor. Üzgünüz.
Preview message==Mesajı Önizle
The message has not been sent yet!==Mesaj henüz gönderilmedi!
-The peer is alive but cannot respond. Sorry.==Eş yaşıyor ama yanıt veremiyor. Üzgünüz.
+Message:==Mesaj:
Your message has been sent. The target peer responded:==Mesajınız gönderildi. Hedef eş yanıtladı:
The target peer is alive but did not receive your message. Sorry.==Hedef eş yaşıyor ancak mesajınızı almadı. Üzgünüz.
Here is a copy of your message, so you can copy it to save it for further attempts:==İşte mesajınızın bir kopyası, böylece kopyalayabilir ve ileriki denemeler için saklayabilirsiniz:
-You cannot call this page directly. Instead, use a link on the Network page.==Bu sayfayı doğrudan arayamazsınız. Bunun yerine Network sayfasındaki bir bağlantıyı kullanın.
+#-----------------------------
+
+#File: Messages_p.html
+#---------------------------
+"RSS"=="RSS"
+"Compose"=="Oluştur"
+Messages==Mesajlar
+Compose Message==Mesaj Oluştur
+Send message to peer==Eşe mesaj gönder
+Date==Tarih
+From==İtibaren
+To==İle
+Subject==Konu
+Action==Eylem
+view==görüş
+reply==cevapla
+delete==silmek
+From:==Kimden:
+To:==Kime:
+Date:==Tarih:
+Subject:==Başlık:
+Message:==Mesaj:
+Action:==Aksiyon:
+inbox==Gelen Kutusu
#-----------------------------
#File: Network.html
#---------------------------
-YaCy Search Network==YaCy Arama Ağı
-YaCy Network<==YaCy Ağı<
+"API"=="API"
+"Search"=="Ara"
+"https supported"=="https destekleniyor"
+"Type: Junior | Contact: passive"=="Tür: Genç | İletişim: pasif"
+"Junior passive"=="Genç pasif"
+"Type: Junior | Contact: direct"=="Tür: Genç | İletişim: doğrudan"
+"Junior direct"=="Junior doğrudan"
+"Type: Junior | Contact: offline"=="Tür: Genç | İletişim: çevrimdışı"
+"Junior offline"=="Junior çevrimdışı"
+"Type: Senior | Contact: passive"=="Tür: Kıdemli | İletişim: pasif"
+"senior passive"=="kıdemli pasif"
+"Type: Senior | Contact: direct"=="Tür: Kıdemli | İletişim: doğrudan"
+"Senior direct"=="Kıdemli doğrudan"
+"Type: Senior | Contact: offline"=="Tür: Kıdemli | İletişim: çevrimdışı"
+"Senior offline"=="Kıdemli çevrimdışı"
+"Type: Principal | Contact: passive | Seed download: possible"=="Tür: Müdür | İletişim: pasif | Tohum indirme: mümkün"
+"Principal passive"=="Ana pasif"
+"Type: Principal | Contact: direct | Seed download: possible"=="Tür: Müdür | İletişim: doğrudan | Tohum indirme: mümkün"
+"Principal active"=="Ana aktif"
+"Type: Principal | Contact: offline | Seed download: ?"=="Tür: Müdür | İletişim: çevrimdışı | Tohum indirme: ?"
+"Principal offline"=="Müdür çevrimdışı"
+"Accept Crawl: no"=="Tarama Kabulü: hayır"
+"no crawl"=="tarama yok"
+"Accept Crawl: yes"=="Tarama Kabulü: evet"
+"crawl possible"=="tarama mümkün"
+"no DHT receive"=="DHT alımı yok"
+"DHT Receive: yes"=="DHT Alımı: evet"
+"DHT receive enabled"=="DHT alımı etkin"
+"Profile updated"=="Profil güncellendi"
+"Wiki updated"=="Wiki güncellendi"
+"Blog updated"=="Blog güncellendi"
+"Crawl"=="Sürünmek"
+"The YaCy Network"=="YaCy Ağı"
+"Type: Virgin"=="Tür: Bakire"
+"Virgin"=="Bakir"
+"Type: Junior"=="Tür: Genç"
+"Junior"=="Genç"
+"Type: Senior"=="Tür: Kıdemli"
+"Senior"=="Kıdemli"
+"Type: Principal"=="Tür: Müdür"
+"Principal"=="Müdür"
+"Crawl enabled"=="Tarama etkin"
+"DHT Receive: no"=="DHT Alımı: hayır"
+"DHT Receive enabled"=="DHT Alma etkin"
+"add Peer"=="Eş ekle"
+"contact current peer from this peer"=="bu akrandan mevcut akranla iletişim kurun"
+YaCy Network==YaCy Ağ
+Network Overview==Ağ Genel Bakış
+Active Principal and Senior Peers==Aktif Müdür ve Kıdemli Akranlar
+Passive Senior Peers==Pasif Kıdemli Akranlar
+Junior (fragment) Peers==Junior (parça) Akranlar
+Network History==Ağ Geçmişi
The information that is presented on this page can also be retrieved as XML.==Bu sayfada sunulan bilgiler aynı zamanda XML olarak alınabilir.
Click the API icon to see the XML.==XML'yi görmek için API simgesine tıklayın.
-To see a list of all APIs, please visit the API wiki page.==Tüm API'ların listesini görmek için lütfen API wiki sayfasını ziyaret edin.
-Network Overview==Ağ Genel Bakış
-Active Peers==Aktif Eşler
-Passive Peers==Pasif Eşler
-Potential Peers==Potansiyel Eşler
-Active Peers in '#[networkName]#' Network== '#[networkName]#' Ağında Aktif Eşler
-Passive Peers in '#[networkName]#' Network== '#[networkName]#' Ağında Pasif Eşler
-Potential Peers in '#[networkName]#' Network== '#[networkName]#' Ağında Potansiyel Eşler
Manually contacting Peer==Eşi manuel olarak arama
-no remote #[peertype]# peer for this list known==Bu listede bilinen uzaktan #[peertype]# eş yok.
-Showing #[num]# entries from a total of #[total]# peers.==Toplam #[total]# eşten #[num]# giriş gösteriliyor.
-send Message/ show Profile/ edit Wiki/ browse Blog==Mesaj gönder (m)/ Profil göster (p)/ Wiki düzenle (w)/ Blogu gözat (b)
Search for a peername (RegExp allowed)==Bir eş adı arayın (RegExp izin verilir)
-"Search"=="Ara"
-Name==Ad
-Address==Adres
Hash==Hash
-Type==Tip
-Release<==YaCy Sürümü<
-#>PPM<==>Dak./Say.<
-#>QPH<==>Saat/Say.<
-Last Seen==Son görülme
+Name==Ad
+Info==Bilgi
+Release==Serbest bırakmak
+Age==Yaş
+con/h ==con/h
+PPM==PPM
+QPH==QPH
+Last Seen==Son görülme
+UTC Offset==UTC Ofset
+Uptime==Çalışma süresi
+Links==Bağlantılar
+RWIs==RWIs
+URLs for Remote Crawl==URL'ler for Uzaktan Tarama
+Sent DHT Word Chunks==DHT Kelime Parçaları Gönderildi
+Sent URLs==Gönderilen URL'ler
+Received DHT Word Chunks==DHT Kelime Parçaları alındı
+Received URLs==Alınan URL'ler
Location==Konum
->URLs for Remote Crawl<==>Uzaktan Tarama için URL'ler<
-Offset==Ofset
-Send message to peer==Eşe mesaj gönder
-View profile of peer==Eşin profilini görüntüle
-Read and edit wiki on peer==Eşin wiki'sini oku ve düzenle
-Browse blog of peer==Eşin blogunu gözat
-#"Ranking Receive: no"=="Sıralama Alımı: hayır"
-#"no ranking receive"=="sıralama alımı yok"
-#"Ranking Receive: yes"=="Sıralama Alımı: evet"
-#"Ranking receive enabled"=="Sıralama alımı etkin"
-"DHT Receive: yes"=="DHT Alımı: evet"
-"DHT receive enabled"=="DHT alımı etkin"
-"DHT Receive: no; #[peertags]#"=="DHT Alımı: hayır; #[peertags]#"
-"DHT Receive: no"=="DHT Alımı: hayır"
-#no tags given==verilen etiket yok
-"no DHT receive"=="DHT alımı yok"
-"Accept Crawl: no"=="Tarama Kabulü: hayır"
-"no crawl"=="tarama yok"
-"Accept Crawl: yes"=="Tarama Kabulü: evet"
-"crawl possible"=="tarama mümkün"
-Contact: passive==İletişim: pasif
-Contact: direct==İletişim: doğrudan
-Seed download: possible==Tohum indirme: mümkün
-runtime:==Çalışma süresi:
-#Peers==Eşler
-#YaCy Cluster==YaCy Kümes
-
->Network<==>Ağ<
-#>Online Peers<==>Online Eşler<
->Number of Documents<==>Belge Sayısı<
-Indexing Speed:==İndeksleme Hızı:
-Pages Per Minute (PPM)==Dakikada Sayfa (Dak./Say.)
-Query Frequency:==Sorgu Frekansı:
-Queries Per Hour (QPH)==Saatte Sorgu (Saat/Say.)
->Today<==>Bugün<
->Last Week<==>Geçen Hafta<
->Last Month<==>Geçen Ay<
+user agent ==kullanıcı aracısı
+send Message/ show Profile/ edit Wiki/ browse Blog==Mesaj gönder (m)/ Profil göster (p)/ Wiki düzenle (w)/ Blogu gözat (b)
+Network==Ağ
+Online Peers==Çevrimiçi Akranlar
+Number of Documents== Belge sayısı
+Indexing Speed: Pages Per Minute (PPM)==Dizin Oluşturma Hızı: Dakikadaki Sayfa Sayısı (PPM)
+Query Frequency: Queries Per Hour (QPH)==Sorgu Sıklığı: Saat Başına Sorgu Sayısı (QPH)
Last Hour==Son Saat
->Now<==>Şimdi<
->Active<==>Aktif<
->Passive<==>Pasif<
->Potential<==>Potansiyel<
->This Peer<==>Bu Eş<
-URLs for Remote Crawl==Uzaktan Tarama için URL'ler
-"The YaCy Network"=="YaCy Ağı"
-
-Indexing PPM==İndeksleme Dak./Say.
-(public local)==(genel yerel)
-(remote)==(uzak)
+Today==Bugün
+Last Week==Son Hafta
+Last Month==Son Ay
+Now==Şimdi
+Active Senior==Aktif Kıdemli
+Passive Senior==Pasif Kıdemli
+Junior (fragment)==Junior (parça)
+This Peer==Bu Akran
Your Peer:==Sizin Eşiniz:
-#>Name<==>Ad<
-#>Info<==>Bilgi<
-#>Version<==>Sürüm<
-#>UTC<==>UTC<
->Uptime<==>Çalışma Süresi<
-#>Links<==>Bağlantılar<
-#>RWIs<==>RWI'lar<
-Sent URLs==Gönderilen URL'ler
+Version==Sürüm
+UTC==UTC
+URLs for Remote Crawl==Uzaktan Tarama için URL'ler
Sent DHT Word Chunks==Gönderilen DHT Kelime Parçacıkları
-Received URLs==Alınan URL'ler
Received DHT Word Chunks==Alınan DHT Kelime Parçacıkları
Known Seeds==Bilinen Tohumlar
-Connects per hour==Saatte Bağlantılar
-#Version==Sürüm
-#Own/Other==Kendi/Diğer
->dark green font<==>koyu yeşil yazı<
+Connects per hour==Saatte bağlantı
+Indexing PPM==İndeksleme Dak./Say.
+QPH (public local)==QPH (genel yerel)
+QPH (remote)==QPH (uzaktan)
+dark green font==koyu yeşil yazı tipi
senior/principal peers==kıdemli/ana eşler
->light green font<==>açık yeşil yazı<
->passive peers<==>pasif eşler<
->pink font<==>pembe yazı<
+light green font==açık yeşil yazı tipi
+passive peers==pasif akranlar
+pink font==pembe yazı tipi
junior peers==junior eşler
red point==kırmızı nokta
this peer==bu eş
->grey waves<==>gri dalgalar<
->crawling activity<==>tarama aktivitesi<
->green radiation<==>yeşil radyasyon<
->strong query activity<==>güçlü sorgu aktivitesi<
->red lines<==>kırmızı çizgiler<
->DHT-out<==>DHT dışarı<
->green lines<==>yeşil çizgiler<
->DHT-in<==>DHT içeri<
-#You are in online mode, but probably no internet resource is available.==Çevrimiçi moddasınız, ancak muhtemelen internet kaynağı mevcut değil.
-#Please check your internet connection.==Lütfen internet bağlantınızı kontrol edin.
-#You are not in online mode. To get online, press this button:==Çevrimdışı modda değilsiniz. Çevrimiçi olmak için bu düğmeye basın:
-#"go online"=="çevrimiçi ol"
-
-
-Network History==Ağ Geçmişi
-Count of Connected Senior Peers==Bağlı Kıdemli Eşlerin Sayısı
-in the last two days, scale = 1h==son iki günde, ölçek = 1s
-Count of all Active Peers Per Day==Günlük Tüm Aktif Eşlerin Sayısı
-in the last week, scale = 1d==son bir haftada, ölçek = 1g
-Count of all Active Peers Per Week==Haftalık Tüm Aktif Eşlerin Sayısı
-in the last 30d, scale = 7d==son 30 günde, ölçek = 7g
-Count of all Active Peers Per Month==Aylık Tüm Aktif Eşlerin Sayısı
-in the last 365d, scale = 30d==son 365 günde, ölçek = 30g
+grey waves==gri dalgalar
+crawling activity==tarama etkinliği
+green radiation==yeşil radyasyon
+strong query activity==güçlü sorgu etkinliği
+red lines==kırmızı çizgiler
+DHT-out==DHT-çıkış
+green lines==yeşil çizgiler
+DHT-in==DHT-inç
+Peer Hash==Akran Karması
+Peer IP==Arkadaş IP
+Peer Port==Eş Bağlantı Noktası
+Contacting current peer from another:==Mevcut akranla başka birinden iletişim kurma:
+ip:port==ip:bağlantı noktası
+Count of Connected Senior Peers in the last two days, scale = 1h==Son iki gündeki Bağlantılı Kıdemli Akran Sayısı, ölçek = 1h
+Count of all Active Peers Per Day in the last week, scale = 1d==Geçen haftadaki Gün Başına Tüm Aktif Akranların Sayısı, ölçek = 1d
+Count of all Active Peers Per Week in the last 30d, scale = 7d==Son 30 gündeki Haftalık Tüm Aktif Akranların Sayısı, ölçek = 7 gün
+Count of all Active Peers Per Month in the last 365d, scale = 30d==Son 365 gündeki Aylık Tüm Aktif Eşlerin Sayısı, ölçek = 30 gün
#-----------------------------
#File: News.html
#---------------------------
+"Incoming News"=="Gelen Haberler"
+"Processed News"=="İşlenmiş Haberler"
+"Outgoing News"=="Giden Haberler"
+"Published News"=="Yayınlanan Haberler"
Overview==Genel Bakış
Incoming News==Gelen Haberler
Processed News==İşlenmiş Haberler
@@ -2231,234 +2595,264 @@ Other peers may use this information to prevent double-crawls from the same star
A table with recently started crawls is presented on the Index Create - page==Yeni başlatılan taramaların bir tablosu Index Create sayfasında sunulmaktadır.
A change in the personal profile will create a news entry. You can see recently made changes of==Kişisel profilde bir değişiklik bir haber girişi oluşturacaktır. Son zamanlarda yapılan değişiklikleri görebilirsiniz.
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.
+Publishing of added or modified translation for the user interface. Other peers may include it in their local translation list.==Kullanıcı arayüzü için eklenen veya değiştirilen çevirinin yayınlanması. Diğer meslektaşları bunu kendi yerel çeviri listelerine ekleyebilirler.
More news services will follow.==Daha fazla haber servisi izleyecek.
-
Above you can see four menus:==Yukarıda dört menüyü görebilirsiniz:
-Incoming News (#[insize]#): latest news that arrived your peer.==Gelen Haberler(#[insize]#): 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.
-Processed News (#[prsize]#): this is simply an archive of incoming news that you removed by processing.==İşlenmiş Haberler (#[prsize]#): Bu, işleyerek kaldırdığınız gelen haberlerin basit bir arşividir.
-Outgoing News (#[ousize]#): here your can see news entries that you have created. These news are currently broadcasted to other peers.==Giden Haberler (#[ousize]#): Burada oluşturduğunuz haber girişlerini görebilirsiniz. Bu haberler şu anda diğer eşlere yayınlanıyor.
you can stop the broadcast if you want.==Yayını isterseniz durdurabilirsiniz.
-Published News (#[pusize]#): your news that have been broadcasted sufficiently or that you have removed from the broadcast list.==Yayınlanan Haberler (#[pusize]#): Yeterince yayınlanmış veya yayın listesinden kaldırdığınız haberleriniz.
Originator==Başlatan
Created==Oluşturulan
Category==Kategori
Received==Alındı
Distributed==Dağıtılmış
Attributes==Özellikler
-"#(page)#::Process Selected News::Delete Selected News::Abort Publication of Selected News::Delete Selected News#(/page)#"=="#(page)#::Seçilen Haberleri İşle::Seçilen Haberleri Sil::Seçilen Haberlerin Yayınını İptal Et::Seçilen Haberleri Sil#(/page)#"
-"#(page)#::Process All News::Delete All News::Abort Publication of All News::Delete All News#(/page)#"=="#(page)#::Tüm Haberleri İşle::Tüm Haberleri Sil::Tüm Haberlerin Yayınını İptal Et::Tüm Haberleri Sil#(/page)#"
#-----------------------------
-Dosya: Performance_p.html
----------------------------
-==
-Leistungseinstellungen==Performans Ayarları
-Speichereinstellungen==Bellek Ayarları
-Für JVM reservierter Speicher==JVM için ayrılan bellek
-"Set"=="Ayarla"
-Resource Observer==Kaynak Gözlemcisi
-Reset state==Durumu Sıfırla
-> freier Speicher==> boş alan
-Deaktivere eingehende DHT-in below==Aşağıda DHT gelen iletimleri devre dışı bırak
-RAM==RAM
-Accepted change. This will take effect after restart of YaCy==Değişiklik kabul edildi. Bu, YaCy'nin yeniden başlatılması sonrasında etkili olacaktır
-restart now==şimdi yeniden başlat
-Confirm Restart==Yeniden Başlatma İşlemini Onayla
-refresh graph==Grafiği Yenile
-Use Default Profile:==Varsayılan Profili Kullan:
-and use==ve kullan
-of the defined performance.==tanımlanan performansın
-Save==Kaydet
-Changes take effect immediately==Değişiklikler hemen yürürlüğe girer
-YaCy Priority Settings==YaCy Öncelik Ayarları
-YaCy Process Priority==YaCy İşlem Önceliği
-#Normal==Normal
-Below normal==Normal altı
-Idle==Boşta
-"Set new Priority"=="Yeni Önceliği Ayarla"
-Changes take effect after restart of YaCy==Değişiklikler, YaCy'nin yeniden başlatılması sonrasında etkili olacaktır
-Online Caution Settings==Çevrimiçi Dikkat Ayarları
-This is the time that the crawler idles when the proxy is accessed, or a local or remote search is done.==Bu, özel erişim yapıldığında veya yerel veya uzak bir arama yapıldığında örümcek ağının boşta beklediği süredir.
-The delay is extended by this time each time the proxy is accessed afterwards.==Bu, proxy'ye sonradan her erişildiğinde süre ile uzatılır.
-This shall improve performance of the affected process (proxy or search).==Bu, etkilenen sürecin (proxy veya arama) performansını artırmalıdır.
-(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 occurrence==Olay oluşumundan sonra indexleme gecikmesi (milisaniye)
-#Proxy:==Proxy:
-Local Search:==Yerel Arama:
-Remote Search:==Uzak Arama:
-"Enter New Parameters"=="Yeni Parametreleri Gir"
+#File: PerformanceConcurrency_p.html
+#---------------------------
+Performance of Concurrent Processes==Eşzamanlı Süreçlerin Performansı
+serverProcessor Objects==sunucuİşlemci Nesneleri
+Thread==İplik
+Queue Size Current==Sıra Boyutu Mevcut
+Queue Size Maximum==Sıra Boyutu Maksimum
+Executors: Current Number of Threads==Yürütücüler: Mevcut Konu Sayısı
+Concurrency: Maximum Number of Threads==Eşzamanlılık: Maksimum Konu Sayısı
+Children==Çocuklar
+Average Block Time Reading==Ortalama Blok Süresi Okuma
+Average Exec Time==Ortalama Yürütme Süresi
+Average Block Time Writing==Ortalama Blok Süresi Yazma
+Total Cycles==Toplam Döngüler
+Full Description==Tam Açıklama
#-----------------------------
-Dosya: PerformanceMemory_p.html
----------------------------
-==
+
+#File: PerformanceMemory_p.html
+#---------------------------
+"PerformanceGraph"=="Performans Grafiği"
Performance Settings for Memory==Bellek için Performans Ayarları
-refresh graph==Grafiği Yenile
-simulate short memory status==Kısa bellek durumunu simüle et
-use Standard Memory Strategy (current: #[memoryStrategy]#)==Standart Bellek Stratejisini kullan (şu anki: #[memoryStrategy]#)
+refresh graph==grafiği yenile
+simulate short memory status==kısa hafıza durumunu simüle et
+use Standard Memory Strategy==Standart Bellek Stratejisini kullanın
Memory Usage==Bellek Kullanımı
-After Startup==Başlangıç Sonrası
-After Initializations==Başlatmalar Sonrası
-before GC==GC öncesi
-after GC==GC sonrası
->Now==>Şimdi
-before <==önce <
+Type==Tip
+After Startup==Başlangıçtan Sonra
+After Initializations before GC==Başlatmalardan Sonra GC'den önce
+After Initializations after GC==Başlatmalardan Sonra GC'den sonra
+Now==Şimdi
+before GC==GC'den önce
+after GC==GC'den sonra
Description==Açıklama
+Max==Maksimum
maximum memory that the JVM will attempt to use==JVM'nin kullanmaya çalışacağı maksimum bellek
->Available<==>Kullanılabilir<
-total available memory including free for the JVM within maximum==maksimum içinde JVM için kullanılabilir toplam bellek
->Total<==>Toplam<
-total memory taken from the OS==İşletim sisteminden alınan toplam bellek
->Free<==>Boş<
-free memory in the JVM within total amount==toplam miktar içinde JVM'deki boş bellek
->Used<==>Kullanılan<
-used memory in the JVM within total amount==toplam miktar içinde JVM'deki kullanılan bellek
-Solr Resources==Solr Kaynakları
->Class<==>Sınıf<
->Type<==>Tür<
->Statistics<==>İstatistikler<
->Size<==>Boyut<
-Table RAM Index==Tablo RAM İndeksi
->Key==>Anahtar
->Value==>Değer
-Table==Tablo
-Chunk Size<==Parça Boyutu<
-#Count==#Sayısı
-Used Memory<==Kullanılan Bellek<
-Object Index Caches==Nesne İndeks Önbellekleri
-Needed Memory==Gereken Bellek
-Object Read Caches==Nesne Okuma Önbellekleri
-
-Read Hit Cache<==>Okuma Başarılı Önbellek<
-Read Miss Cache<==>Okuma Başarısız Önbellek<
-Read Hit<==>Okuma Başarılı<
-Read Miss<==>Okuma Başarısız<
-Write Unique<==Benzersiz Yazma<
-Write Double<==Çift Yazma<
-Deletes<==Silinmiş<
-Flushes<==Temizlenmiş<
-Total Mem==Toplam Bellek
-MB (hit)==MB (Başarılı)
-MB (miss)==MB (Başarısız)
-Stop Grow when less than #[objectCacheStopGrow]# MB available left==#[objectCacheStopGrow]# MB'den az kaldığında büyümeyi durdur
-Start Shrink when less than #[objectCacheStartShrink]# MB available left==#[objectCacheStartShrink]# MB'den az kaldığında daralmaya başla
-
-Other Caching Structures==Diğer Önbellek Yapıları
-
-Hit<==>Başarılı<
-Miss<==>Başarısız<
-Insert<==Ekle<
-Delete<==Sil<
-#DNSCache==#DNSÖnbellek
-#DNSNoCache==#DNSNoÖnbellek
-#HashBlacklistedCache==#HashKaraListeÖnbellek
-Search Event Cache<==Arama Olayı Önbelleği<
-#-----------------------------
-#Dosya: PerformanceQueues_p.html
-#---------------------------
-Sıralar ve İşlemlerin Performans Ayarları==Sıralar ve İşlemlerin Performans Ayarları
-Zamanlanmış görevlerin genel bakışı ve bekleme süre ayarları:==Zamanlanmış görevlerin genel bakışı ve bekleme süre ayarları:
-Sıra Boyutu==Sıra Boyutu
->Toplam==>Toplam
-#Blok Süresi==
-#Uyku Süresi==
-#Çalışma Süresi==
-
Boş==
Boş
->Dolu==>Dolu
-Kısa Bellek Döngüleri==Kısa Bellek Döngüleri
->Döngü Başına==>Döngü Başına
->Dolu Döngü Başına==>Dolu Döngü Başına
->Bellek Kullanımı==>Bellek Kullanımı
->Arasındaki Gecikme==>Arasındaki Gecikme
->boş döngüler==>boş döngüler
->dolu döngüler==>dolu döngüler
-Gerekli Minimum Bellek==Gerekli Minimum Bellek
-Sistem Yükünün Maksimumu==Sistem Yükünün Maksimumu
-Tam Açıklama==Tam Açıklama
-Yeni Gecikme Değerlerini Gönder==Yeni Gecikme Değerlerini Gönder
-Varsayılana Sıfırla==Varsayılana Sıfırla
-Değişiklikler hemen geçerli olur==Değişiklikler hemen geçerli olur
-Önbellek Ayarları:==Önbellek Ayarları:
-#RAM Önbelleği==RAM Önbelleği
-
==Кількість
Queries Per Last Hour==Запитів за останню годину
Access Dates==Дата доступу
This is a list of searches that had been requested from remote peer search interface==Це список пошуків, виконаних з іншого вузла.
@@ -56,66 +37,60 @@ Peer Name==Ім’я вузла
#-----------------------------
+Host==Хост
+This is a list of requests (max. 1000) to the local http server within the last hour.==Це список запитів (макс. 1000) до локального http-сервера за останню годину.
+Date==Дата
+User Agent==Агент користувача
+Top Search Words (last 7 Days)==Найпопулярніші пошукові слова (за останні 7 днів)
+Count==Граф
#File: Blacklist_p.html
#---------------------------
Blacklist Administration==Керування чорним списком
-Used Blacklist engine:==Поточний двигун чорного списку:
This function provides an URL filter to the proxy; any blacklisted URL is blocked==Ця функція виставляє URL-фільтр для проксі. Завантаження будь-яких URL з чорного списку буде заблоковано.
from being loaded. You can define several blacklists and activate them separately.==Ви можете створити кілька чорних списків і окремо активувати.
You may also provide your blacklist to other peers by sharing them; in return you may==Ви можете також виставити ваш чорний список іншим вузлам на завантаження.
collect blacklist entries from other peers.==У свою чергу, ви можете завантажити собі чорні списки з інших вузлів.
Active list:==Активні списки:
No blacklist selected==не вибрано жодного чорного списку
-Select list:==Вибір списку:
-not shared::shared==не спільний::спільний
-"select"=="вибрати"
Create new list:==Створити новий список:
"create"=="створити"
-Settings for this list==Настройки для цього списку
"Save"=="Зберегти"
-Share/don't share this list==Зробити/не зробити цей список загальним
-Delete this list==Видалити список
-Edit this list==Редагувати цей список
-These are the domain name/path patterns in==Тут ім’я домену/шаблони шляху
Blacklist Pattern==Шаблон чорного списку
Edit selected pattern(s)==Редагувати вибраний шаблон
Delete selected pattern(s)==Видалити вибрані шаблони
Move selected pattern(s) to==Перемістити вибрані шаблони
-#You can select them here for deletion==Ви можете тут вибрати їх для видалення
Add new pattern:==Додати новий шаблон:
"Add URL pattern"=="Додати шаблон URL"
-The right '*', after the '/', can be replaced by a regular expression.==Права "*", після "/", може бути замінена на регулярний вираз.
-domain.net/fullpath<==domain.de/повний шлях<
-#>domain.net/*<==>domain.de/*<
-#*.domain.net/*<==*.domain.de/*<
-#*.sub.domain.net/*<==*.sub.domain.de/*<
-#sub.domain.*/*<==sub.domain.*/*<
-#domain.*/*<==domain.*/*<
-#was removed from blacklist==було видалено з чорного списку
-#was added to the blacklist==було додано до чорного списку
-Activate this list for==Активува цей список для
Show entries:==Показати записи:
Entries per page:==Записів на сторінку:
-#"Go"=="Вперед"
Edit existing pattern(s):==Редагувати поточні шаблони:
"Save URL pattern(s)"=="Зберегти шаблон(и) URL"
-==
#-----------------------------
+"set"=="встановити"
+"Share/don't share this list"=="Поділіться/don't поділіться цим списком"
+"Delete this list"=="Видалити цей список"
+Select list to edit:==Виберіть список для редагування:
+not shared==не ділиться
+shared==спільний доступ
+A legal name is made up from a letter, digit, minus, plus or underscore as the first character==Офіційна назва складається з літери, цифри, мінуса, плюса або підкреслення як першого символу
+followed by letters, digits, minus, plus, underscores or dots.==за якими йдуть літери, цифри, мінус, плюс, підкреслення або крапки.
+An error occurred while moving entries to the target list.==Під час переміщення записів до цільового списку сталася помилка.
+domain.net/fullpath==domain.net/fullpath
+domain.net/*==domain.net/*
+sub.domain.*/*==sub.domain.*/*
+domain.*/*==domain.*/*
+An error occurred while editing the following entries. Please check syntax.==Під час редагування наступних записів сталася помилка. Будь ласка, перевірте синтаксис.
+Activate this list for ...==Активуйте цей список для...
#File: BlacklistCleaner_p.html
#---------------------------
Blacklist Cleaner==Очищувач чорного списку
-#Blacklist Cleaner==Очисник чорного списку
Here you can remove or edit illegal or double blacklist-entries.==Тут можна видалити чи редагувати недійсні чи дублюючі записи чорного списку.
Check list==Перевірити список
"Check"=="Перевірити"
Allow regular expressions in host part of blacklist entries.==Дозволити регулярні вирази в хостовій частині записів чорного списку.
The blacklist-cleaner only works for the following blacklist-engines up to now:==На даний момент очисник чорного списку працює лише з наступними движками чорного списку:
-Illegal Entries in #[blList]# for==Помилкові записи в #[blList]# для
-Deleted #[delCount]# entries==#[delCount]# записів видалено
-Altered #[alterCount]# entries!==#[alterCount]# записів змінено
Two wildcards in host-part==Два шаблони в хостовій частині
-Either subdomain or wildcard==Одне з двох: піддомен чи шаблон
Path is invalid Regex==Шлях є неправильним регулярним виразом
Wildcard not on begin or end==Шаблон не на початку чи кінці
Host contains illegal chars==Хост містить недозволені символи
@@ -125,15 +100,17 @@ Double==Двічі
No Blacklist selected==Не вибрано жодного чорного списку
#-----------------------------
+Either subdomain==Будь-який субдомен
+or==або
+wildcard==символ підстановки
+Host is invalid Regex==Хост є недійсним регулярним виразом
#File: BlacklistImpExp_p.html
#---------------------------
Blacklist Import==Імпортування чорного списку
-Used Blacklist engine:==Поточний двигун чорного списку:
+Used Blacklist engine:==Поточний механізм чорного списку:
Import blacklist items from...==Імпортування чорного списку з...
other YaCy peers:==інші вузли YaCy:
"Load new blacklist items"=="Завантажити новий чорной список"
-#URL:==URL:
-plain text file:<==текстовий файл:<
XML file:==файл XML:
Upload a regular text file which contains one blacklist entry per line.==Завантажити звичайний текстовий документ, що мітить одий запис чорного списку на рядок.
Upload an XML file which contains one or more blacklists.==Завантажити XML файл, що мітить один чи більше чорних списків.
@@ -142,101 +119,87 @@ Here you can export a blacklist as an XML file. This file will contain additiona
information about which cases a blacklist is activated for.==інформацію, в яких випадках використовувати чорний список.
"Export list as XML"=="Експортувати список як XML"
Here you can export a blacklist as a regular text file with one blacklist entry per line.==Тут можна експортувати один (чи всі) чорний список як звичайний текстовий файл з одним записом на лінію.
-This file will not contain any additional information==Цей файл не містить жодної додаткової інформації
"Export list as text"=="Ексортувати список(-ки) як текст"
#-----------------------------
+URL:==URL:
+plain text file:==звичайний текстовий файл:
+all==все
+This file will not contain any additional information.==Цей файл не міститиме жодної додаткової інформації.
#File: BlacklistTest_p.html
#---------------------------
Blacklist Test==Перевірити чорний список
-Used Blacklist engine:==Поточний двигун чорного списку:
+Used Blacklist engine:==Поточний механізм чорного списку:
Test list:==Перевірити список:
"Test"=="Тестувати"
-The tested URL was==перевірені URL були
It is blocked for the following cases:==Вони заблоковані з наступних причин:
-#Crawling==Сканування
-#DHT==DHT
-#News==Новини
-#Proxy==Проксі
Search==Пошук
Surftips==Поради для серфінгу
#-----------------------------
+is not blocked==не заблокований
+Crawling==Повзання
+DHT==DHT
+News==Новини
+Proxy==Проксі
+The tested URL was not valid.==Перевірений URL недійсний.
#File: Blog.html
+Edit==Редагувати
#---------------------------
-by==від
-Comments==Коментарі
->edit==>редагувати
->delete==>видалити
-Edit<==Редагувати<
-previous entries==попередні записи
-next entries==наступні записи
-new entry==новий запис
-import XML-File==імпортувати XML-файл
-export as XML==експортувати як XML
-Comments==Коментарі
Blog-Home==Початкова сторінка блогу
Author:==Автор:
Subject:==Заголовок:
Text:==Текст:
-You can use==Ви можете тут
-Yacy-Wiki Code==використовувати команди
-here.==YaCy-Wiki.
Comments:==Коментарі:
deactivated==вимкнені
->activated==>увімкнені
moderated==модеровані
"Submit"=="Відправити"
"Preview"=="Попередній перегляд"
"Discard"=="Скасувати"
->Preview==>Попередній перегляд
No changes have been submitted so far!==Ще не було передано жодних змін!
Access denied==В доступі відмовлено
To edit or create blog-entries you need to be logged in as Admin or User who has Blog rights.==Для зміни або створення записів блогу ви повинні ввійти як Admin чи уповноважений користувач.
-Are you sure==Ви дійсно впевнені
-that you want to delete==що ви хочете видалити наступне:
Confirm deletion==Підтвердити видалення
-Yes, delete it.==Так, видалити.
-No, leave it.==Ні, залишити.
Import was successful!==Успішно імпортовано!
Import failed, maybe the supplied file was no valid blog-backup?==Імпорт не вдався. Можливо, наданий файл не був правильною резервною копією блогу?
Імпортування закінчилося невдачею, можливо поначений файл не був дійсною резервною копією блогу?
Please select the XML-file you want to import:==Будь-ласка, виберіть XML-файл, який потрібно імпортувати:
"Import"=="Імпорт"
->XML-Import<==>XML-Імпорт<
#-----------------------------
+"RSS"=="RSS"
+"Yes, delete it."=="Так, видалити."
+"No, leave it."=="Ні, залиште."
+<< previous entries==<< попередніх записів
+next entries >>==наступні записи >>
+activated==активовано
+Preview==Попередній перегляд
+Are you sure...==Ви впевнені...
+XML-Import==XML-Імпорт
#File: BlogComments.html
+Comments:==Коментарі:
#---------------------------
-by==від
-Comments==Коментарі
-Login==Einloggen
Blog-Home==Початкова сторінка блогу
-delete==видалити
-allow==дозволити
Author:==Автор:
Subject:==Заголовок:
Text:==Текст:
-You can use==Ви можете тут
-Yacy-Wiki Code==використовувати команди
-here.==YaCy-Wiki.
"Submit"=="Відправити"
"Preview"=="Попередній перегляд"
"Discard"=="Скасувати"
#-----------------------------
+<< previous entries==<< попередніх записів
+next entries >>==наступні записи >>
+Comments are not allowed for this posting!==Коментарі до цієї публікації заборонені!
+Comment on this Blog==Прокоментуйте цей блог
#File: Bookmarks.html
+"Save"=="Зберегти"
#---------------------------
-YaCy '#[clientname]#': Bookmarks==YaCy '#[clientname]#': Закладки
The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.==Список закладок може також бути отриманий як RSS. Це можливо також при виборі конкретних ключових слів.
Click the API icon to load the RSS from the current selection.==Натисніть на піктограму API для завантаження RSS з поточного вибору.
-To see a list of all APIs, please visit the API wiki page.==Для перегляду списку всіх API, будь-ласка, відвідайте сторінку API у Wiki.
-
Bookmarks==
Закладки
-Bookmarks (==Закладки (
-#Login==Вхід
List Bookmarks==Список закладок
Add Bookmark==Додати закладку
Import Bookmarks==Імпортувати закладку
@@ -244,39 +207,54 @@ Import XML Bookmarks==Importiere XML-Lesezeichen
Import HTML Bookmarks==Імпортувати HTML-Закладки
"import"=="імпортувати"
Default Tags:==Стандартні ключі:
-imported==імпортовано
-#Edit Bookmark==Редагувати закладку
-#URL:==URL:
Title:==Заголовок:
Description:==Опис:
Folder (/folder/subfolder):==Папка (/папка/підпапка):
Tags (comma separated):==Ключові вирази (розділені комами):
->Public:==>Публічні:
yes==так
no==ні
Bookmark is a newsfeed==Закладка є стрічкою новин
"create"=="створити"
-"edit"=="редагувати"
File:==Файл:
-import as Public==імпортувати як публічну
"private bookmark"=="приватна закладка"
"public bookmark"=="піблічна закладка"
-Tagged with==Ключові слова:
-'Confirm deletion'=='Підтвердити видалення'
Edit==Редагувати
Delete==Видалити
Folders==Папки
Bookmark Folder==Закласти в закладки папку
-#Tags==Ключові слова
Bookmark List==Список закладок
previous page==попередня сторінка
next page==наступна сторінка
-All==Всі
Show==Показати
Bookmarks per page.==Закладок на сторінку
-#unsorted==не сортовані
#-----------------------------
+"RSS"=="RSS"
+"API"=="API"
+"start it"=="почати це"
+"stop it"=="припини це"
+Bookmarks==Закладки
+Login==Логін
+Bookmarks (XBEL)==Закладки (XBEL)
+Bookmarks (XML)==Закладки (XML)
+Bookmarks (RSS)==Закладки (RSS)
+Edit Bookmark==Редагувати закладку
+URL:==URL:
+Query:==Запит:
+Public:==Публічний:
+import as Public:==імпортувати як Public:
+Tags==Теги
+Auto Search==Автоматичний пошук
+start autosearch of new bookmarks==почати автопошук нових закладок
+autosearch queue:==черга автопошуку:
+received results:==отримали результати:
+current query:==поточний запит:
+This starts a search of new or modified bookmarks since startup==Це розпочне пошук нових або змінених закладок з моменту запуску
+in folder "search" with "query=<original_search_term>"==у папці "пошук" із "query=<original_search_term>"
+Every peer online will be ask for results.==Кожного однолітка онлайн запитуватимуть про результати.
+Tagged with |==Позначено тегом |
+Info==Інформація
+search==пошук
#File: Collage.html
#---------------------------
Image Collage==Суміш картинок
@@ -290,22 +268,18 @@ Public Queue==Публічна черга
Websearch Comparison==Порівняння пошуку
Left Search Engine==ліва пошукова машина
Right Search Engine==права пошукова машина
-Query==Пошукове слово
"Compare"=="Порівняти"
Search Result==Результати пошуку
#-----------------------------
+loading....==завантаження....
#File: ConfigAccounts_p.html
+Username==Користувач
#---------------------------
User Accounts==Облікові записи користувачів
User Administration==Керування користувачами
-User created:==Користувач створений:
-User changed:==Користувач змінений:
Generic error.==Загальна помилка.
Passwords do not match.==Паролі не збігаються.
-Username too short. Username must be >= 4 Characters.==Ім’я користувача закоротке. Повинно бути не менше 4 символів.
-No password is set for the administration account.==Для адміністратора не було встановлено пароля.
-Please define a password for the admin account.==Будь ласка, встановіть пароль для облікового запису адміністратора.
Admin Account==Обліковий запис адміністратора
Access from localhost without account==Доступ з місцевого хосту без облікового запису
Access only with qualified account==Доступ тільки з відповідного облікового запису
@@ -315,136 +289,159 @@ Repeat Peer Password:==Повтор паролю:
"Define Administrator"=="Визначити адміністратора"
Select user==Вибрати користувача
New user==Новий користувач
-Edit User==Редагувати користувача
-Delete User==Видалити користувача
-Edit current user:==Редагувати поточного користувача:
-Username==Ім’я користувача
-Password==Пароль
Repeat password==Повтор пароля
First name==Ім’я
Last name==Прізвище
Address==Адреса
-Rights==Права
Timelimit==Часове обмеження
Time used==Часу використано
-Save User==Зберегти користувача
-==
#-----------------------------
+"Set Access Rules"=="Встановити правила доступу"
+"Edit User"=="Редагувати користувача"
+"Delete User"=="Видалити користувача"
+"Save User"=="Зберегти користувача"
+Username too short. Username must be >= 4 Characters.==Ім'я користувача занадто коротке. Ім’я користувача має містити >= 4 символи.
+Username already used (not allowed).==Ім'я користувача вже використано (не дозволено).
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==WARNING Цим екземпляром YaCy можна керувати за допомогою облікового запису «admin» і пароля за умовчанням «yacy».
+Change the password as soon as possible!==Змініть пароль якнайшвидше!
+Access to your peer from your own computer (localhost access) is granted with administrator rights. No need to configure an administration account.==Доступ до вашого вузла з вашого власного комп’ютера (доступ до локального хосту) надається з правами адміністратора. Не потрібно налаштовувати обліковий запис адміністратора.
+This setting is convenient but less secure than using a qualified admin account.==Цей параметр зручний, але менш безпечний, ніж використання кваліфікованого облікового запису адміністратора.
+Please use with care, notably when you browse untrusted and potentially malicious websites while running your YaCy peer on the same computer.==Будь ласка, використовуйте обережно, особливо коли ви переглядаєте ненадійні та потенційно зловмисні веб-сайти під час роботи вашого однорангового YaCy на тому самому комп’ютері.
+This is required if you want a remote access to your peer, but it also hardens access controls on administration operations of your peer.==Це потрібно, якщо вам потрібен віддалений доступ до вашого однорангового вузла, але це також посилює контроль доступу до операцій адміністрування вашого однорангового вузла.
+Access Rules==Правила доступу
+Protection of all pages: if set to on, access to all pages need authorization; if off, only pages with "_p" extension are protected.==Захист усіх сторінок: якщо ввімкнено, для доступу до всіх сторінок потрібна авторизація; якщо вимкнено, захищені лише сторінки з розширенням "_p".
+Password==Пароль
+Rights:==права:
#File: ConfigAppearance_p.html
+Text==Текст
#---------------------------
Appearance and Integration==Зовнішній вигляд та інтеграція
You can change the appearance of the YaCy interface with skins.==Ви можете змінити зовнішній вигляд інтерфейсу YaCy з допомогою шкури.
-#You can change the appearance of YaCy with skins==Ви можете змінити зовнішній вигляд YaCy зі шкурами
The selected skin and language also affects the appearance of the search page.==Вибрані дизайн і мова також впливають на зовнішній вигляд сторінки пошуку.
-If you create a search portal with YaCy then you can==Якщо ви створюєте пошуковий портал з Yacy, то можете
-change the appearance of the search page here.==змінити появу пошукової сторінки тут, а також змінити графіку та стиль посилань пошукової сторінки на власні.
-#and the default icons and links on the search page can be replaced with you own.==і стандартні іконки та посилання на сторінці пошуку можуть бути замінені на власні.
+change the appearance of the search page here.==змінити вигляд пошукової сторінки тут.
Skin Selection==Вибір шкурки
-Select one of the default skins, download new skins, or create your own skin.==Виберіть один з існуючих скінів, завантажте новий або створіть для себе новий.
Current skin==Поточна шкура
Available Skins==Доступні шкури
"Use"=="Використовувати"
"Delete"=="Видалити"
->Skin Color Definition<==>Визначення кольору шкури<
The generic skin 'generic_pd' can be configured here with custom colors:==Загальна шкурка "generic_pd" може бути настроєна зі своїми власними кольорами:
->Background<==>Фон<
->Text<==>Текст<
->Legend<==>Легенда<
->Table Header<==>Заголовок таблиці<
->Table Item<==>Клітинка 1<
->Table Item 2<==>Клітинка 2<
->Table Bottom<==>Низ таблиці<
->Border Line<==>Крайня лінія<
->Sign 'bad'<==>Знак "добре"<
->Sign 'good'<==>Знак "погано"<
->Sign 'other'<==>Знак "інший"<
->Search Headline<==>Заголовок пошуку<
->Search URL==>URL пошуку
-hover<==наведення<
"Set Colors"=="Виставити кольори"
->Skin Download<==>Завантаження шкурки<
-Skins can be installed from download locations==Шкурки може бути встановлені безпосередньо з джерела завантаження
Install new skin from URL==Втановити нову шкурку з URL
Use this skin==Використовувати цю шкурку
"Install"=="Встановити"
Make sure that you only download data from trustworthy sources. The new Skin file==Переконайтеся, що ви завантажуєте файли тільки з надійних джерел.
might overwrite existing data if a file of the same name exists already.==Увага, якщо файл з таким ім'ям вже існує, він буде замінений !
->Unable to get URL:==>URL не може бути завантажений:
Error saving the skin.==Не вдалося зберегти шкуру.
#-----------------------------
+Select one of the default skins. After selection it might be required to reload the web page while holding the shift key to refresh cached style files.==Виберіть один із типових скінів. Після вибору може знадобитися перезавантажити веб-сторінку, утримуючи клавішу Shift, щоб оновити кешовані файли стилів.
+Skin Color Definition==Визначення кольору шкіри
+Background==Фон
+Legend==Легенда
+Table Header==Таблиця Заголовок
+Table Item==Table Item
+Table Item 2==Таблиця Пункт 2
+Table Bottom==Таблиця Внизу
+Border Line==Межа Лінія
+Sign 'bad'==Знак "погано"
+Sign 'good'==Знак "добре"
+Sign 'other'==Sign 'інше'
+Search Headline==Пошук Заголовок
+Search URL==Пошук URL
+Search URL + hover==Пошук URL + наведення курсора
+Skin Download==Завантажити скін
+Skins can be installed from download locations:==Скіни можна встановити з місць завантаження:
#File: ConfigBasic.html
#---------------------------
-Access Configuration==Настройка доступу
Basic Configuration==Початкова настройка
Your YaCy Peer needs some basic information to operate properly==Ваш YaCy-вузол потребує деякої початкової інформації для правильної роботи
-Select a language for the interface==Виберіть мову інтерфейсу
Use Case: what do you want to do with YaCy:==Застосування: Як ви хочете використовувати YaCy:
Community-based web search==Спільний Пошук
Join and support the global network 'freeworld', search the web with an uncensored user-owned search network==Приєднуйтесь до мережі "Вільний Світ", шукайте в нецензурованій користувацькій пошуковій мережі
Search portal for your own web pages==Пошуковий портал для ваших власних веб-сторінок
Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.==Ваша установка YaCy працює незалежно від інших вузлів, і ви можете створити свій власний індекс, запустити своє власне сканувати веб. Це може бути використано для пошуку на власному сайті або створення тематично-орієнтованого пошукового порталу.
-Files may also be shared with the YaCy server, assign a path here:==Спільні файли також можуть використовуватися з сервером YaCy, призначте шлях тут:
-This path can be accessed at ==Цей шлях може бути доступний на
-Use that path as crawl start point.==Використовуйте його як відправну точку для сканування.
Intranet Indexing==Індексування внутрішньої мережі
-Create a search portal for your intranet or web pages or your (shared) file system.==Пошуковий портал для вашої внутрішньої мережі, публічних веб-сторінок чи вашої (розподіленої) файлової системи.
-URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form==URL можуть використовуватися з http/https/ftp і локальним доменним ім’ям чи IP, або ж з наступними URL:
-#or smb:==чи smb:
-file:///<path> or smb://<server>/<path>==file://<шлях> чи smb://<сервер>/<шлях>
Your peer name has not been customized; please set your own peer name==Ім’я вашого вузла не було скориговано, будь ласка, використовуйте своє ім’я вузла
You may change your peer name==Ви можете змінити ім’я свого вузла
Peer Name:==Ім’я вузла:
-Your peer cannot be reached from outside==Ваш вузол не може бути досягнутий ззовні
-which is not fatal, but would be good for the YaCy network==що не так погано, але могло б бути, для мережі YaCy, краще
-please open your firewall for this port and/or set a virtual server option in your router to allow connections on this port==Будь-ласка, відкрийте цей порт у брандмауері і/або створіть віртуальний сервер в маршрутизаторі, щоб дозволити з’єднання на цей порт
Your peer can be reached by other peers==Ваш вузол може бути досягний з інших вузлів
Peer Port:==Порт вузла:
-Configure your router for YaCy:==Настроїти маршрутизатор:
Configuration was not successful. This may take a moment.==Настройка не була успішною. Це може зайняти деякий час.
-Set Configuration==Зберегти налаштування
What you should do next:==Що можна зробити далі:
-Your basic configuration is complete! You can now (for example)==Ваша початкова настройка готова! Ви можете зараз (наприклад)
-just <==просто <
-start an uncensored search==розпочати пошук без цензури
-start your own crawl and contribute to the global index, or create your own private web index==запустити сканування і поповнити загальний індекс, або ж створити свій власний приватний індекс
-set a personal peer profile (optional settings)==вказати профіль власного вузла (добровільна інформація)
-monitor at the network page what the other peers are doing==спостерігати за мережною сторінкою, що роблять інші вузли
Your Peer name is a default name; please set an individual peer name.==Ім’я вашого вузла стандартне; будь-ласка виставте індивідуальне ім’я вузла.
-You did not set a user name and/or a password.==Ви не вказали ім’я користувача чи пароль.
-Some pages are protected by passwords.==Деякі сторінки захищені паролем.
-You should set a password at the Accounts Menu to secure your YaCy peer.::==Ви повинні вказати пароль в меню облікових записів для захисту вашого вузла YaCy.::
-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 recommended.==Ви також можете використовувати ваш вузол, не відкриваючи його, але це не рекомендується.
#-----------------------------
+"ok"=="добре"
+"Use the browser preferred language if available"=="Використовуйте бажану мову браузера, якщо вона доступна"
+"Click to generate translated pages"=="Натисніть, щоб створити перекладені сторінки"
+"Active : translated pages are available"=="Активний : доступні перекладені сторінки"
+"Usecase Freeworld"=="Випадок використання Freeworld"
+"Usecase Portal"=="Портал використання"
+"Usecase Intranet"=="Інтранет використання"
+"warning"=="УВАГА"
+"Set Configuration"=="Встановити конфігурацію"
+Your port has changed. Please wait 10 seconds.==Ваш порт змінився. Зачекайте 10 секунд.
+WARNING This YaCy instance can be administered with the account "admin" and the default password "yacy".==WARNING Цим екземпляром YaCy можна керувати за допомогою облікового запису «admin» і пароля за умовчанням «yacy».
+Select a language for the interface:==Виберіть мову для інтерфейсу:
+Browser==Браузер
+English==англійська
+Deutsch==Deutsch
+Français==Français
+Greek==грецька
+Italiano==Italiano
+Español==Español
+Can not leave from Intranet Indexing : one or more remote Solr instances are attached and may contain private documents indexed.==Неможливо вийти з індексування інтрамережі: один або кілька віддалених екземплярів Solr вкладено та можуть містити приватні документи, проіндексовані.
+One or more remote Solr instances are attached and may contain indexed public documents irrelevant to your local domain.==Один або кілька віддалених екземплярів Solr вкладено та можуть містити проіндексовані загальнодоступні документи, які не стосуються вашого локального домену.
+One or more remote Solr instances are attached.==Долучено один або кілька віддалених екземплярів Solr.
+Create a search portal for your intranet or web pages or your (shared) file system. URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form file:///<path> or smb://<server>/<path>==Створіть пошуковий портал для вашої внутрішньої мережі чи веб-сторінок або вашої (спільної) файлової системи. URL-адреси можна використовувати з http/https/ftp і локальним доменним іменем або IP, або з URL у форматі file:///<path> чи smb://<server>/<path>
+with SSL (https enabled==з SSL (https увімкнено
+Configure your router for YaCy using UPnP:==Налаштуйте маршрутизатор для YaCy за допомогою UPnP:
+Your Browser will reload the YaCy UI with the new port in 5 seconds...==Ваш веб-переглядач перезавантажить інтерфейс YaCy з новим портом за 5 секунд...
+Your basic configuration is complete! You can now (for example):==Ваша базова конфігурація завершена! Тепер ви можете (наприклад):
+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 recommended.==Ви не відкрили порт у своєму брандмауері або ваш маршрутизатор не пересилає порт сервера на ваш одноранговий пристрій. Це потрібно, якщо ви хочете повною мірою брати участь у мережі YaCy. Ви також можете використовувати свій одноранговий, не відкриваючи його, але це не рекомендується.
#File: ConfigHeuristics_p.html
+"Save"=="Зберегти"
+Comment==Коментар
#---------------------------
Heuristics Configuration==Настройки евристики
-#A heuristic is an 'experience-based technique that help in problem solving, learning and discovery' (wikipedia).==Heuristik 'bezeichnet die Kunst, mit begrenztem Wissen und wenig Zeit zu guten Lösungen zu kommen.' (Wikipedia).
-The search heuristics that can be switched on here are techniques that help the discovery of possible search results based on link guessing, in-search crawling and requests to other search engines.==Пошукова евристика може бути використовувати методи, які допомагають виявити можливі результати пошуку з використанням запитів по посиланнях, вбудованого сканування та запитів до інших пошукових систем.
-When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content.==При використанні пошукової евристики знайдені посилання не відображаються як пошукові результати, а індексуються та зберігаються разом з іншим вмістом.
-This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==Це гарантує, що чорні списки можуть бути використані, і що пошукові терміни з’являються дійсно на сторінках, які були знайдені за допомогою евристики.
-The success of heuristics are marked with an image==Успіх евристики відзначається картинкою
-heuristic:<name>==евристика:<ім’я>
-#(redundant)==(надлишковий)
-(new link)==(нове посилання)
-below the favicon left from the search result entry:==під favicon зліва від запису пошукового результату:
The search result was discovered by a heuristic, but the link was already known by YaCy==Пошуковий результат був знайдений евристикою, але посилання вже відоме YaCy
The search result was discovered by a heuristic, not previously known by YaCy==Пошуковий результат був знайдений евристикою, посилання ще невідоме YaCy.
'site'-operator: instant shallow crawl=="site"-оператор: негайне поверхневе сканування
When a search is made using a 'site'-operator (like: 'download site:yacy.net') then the host of the site-operator is instantly crawled with a host-restricted depth-1 crawl.==Якщо пошук розпочатий з оператором "site" (наприклад: "завантажити site:yacy.net"), то сервер оператора "site" буде проскановано з глибиною 1.
That means: right after the search request the portal page of the host is loaded and every page that is linked on this page that points to a page on the same host.==Це означає: Відразу після пошуку буде завантажена головна сторінка порталу і кожна сторінка, на яку є посилання з головної і яка знаходиться на тому ж сервері.
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 simultaneously, parsed and indexed immediately.==20 результатів витягуються з Blekko, одночасно завантажуються, аналізуються і негайно індексуються.
#-----------------------------
+"heuristic:<name> (redundant)"=="евристика:<name> (зайве)"
+"heuristic:<name> (new link)"=="евристика:<name> (нове посилання)"
+"add"=="додати"
+"reset to default list"=="скинути список за замовчуванням"
+"discover from index"=="знайти з індексу"
+"switch Solr fields on"=="увімкніть поля Solr"
+When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content. This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==Коли використовується евристика пошуку, отримані посилання не використовуються безпосередньо як результат пошуку, але завантажені сторінки індексуються та зберігаються, як інший вміст. Це гарантує можливість використання чорних списків і те, що шукане слово дійсно з’явиться на сторінці, яка була виявлена евристикою.
+The success of heuristics are marked with an image (==Успішність евристик позначено зображенням (
+) below the favicon left from the search result entry:==) під піктограмою зліва від результату пошуку:
+search-result: shallow crawl on all displayed search results==search-result: поверхневе сканування всіх відображених результатів пошуку
+add as global crawl job==додати як завдання глобального сканування
+When a search is made then all displayed result links are crawled with a depth-1 crawl.==Коли виконується пошук, усі відображені посилання результатів скануються з глибиною 1.
+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).==Якщо ви позначите «додати як завдання глобального сканування», сторінки для сканування буде додано до глобальної черги сканування (віддалені вузли можуть забирати сторінки для сканування).
+Default is to add the links to the local crawl queue (your peer crawls the linked pages).==За замовчуванням посилання додаються до локальної черги сканування (ваш вузол сканує пов’язані сторінки).
+opensearch load external search result list from active systems below==opensearch завантажує зовнішній список результатів пошуку з активних систем нижче
+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 simultaneously, parsed and indexed immediately.==20 результатів беруться з віддаленої системи та завантажуються одночасно, аналізуються та негайно індексуються.
+Available/Active Opensearch System==Доступна/Active Opensearch System
+Active==Активний
+Title==Назва
+Url==Url
+delete==видалити
+new==новий
+With the button "discover from index" you can search within the metadata of your local index (Web Structure Index) to find systems which support the Opensearch specification.==За допомогою кнопки «вийти з індексу» ви можете шукати в метаданих вашого локального індексу (індекс веб-структури), щоб знайти системи, які підтримують специфікацію Opensearch.
+The task is started in the background. It may take some minutes before new entries appear (after refreshing the page).==Завдання запускається у фоновому режимі. Перш ніж з’являться нові записи (після оновлення сторінки), може минути кілька хвилин.
#File: ConfigHTCache_p.html
+milliseconds==мілісекунд
#---------------------------
Hypertext Cache Configuration==Налаштування гіпертекстового кешу
The HTCache stores content retrieved by the HTTP and FTP protocol. Documents from smb:// and file:// locations are not cached.==HTCache зберігає вміст, одержаний по протоколах HTTP та FTP. Документи з smb:// та file:// не зберігаються.
@@ -459,45 +456,44 @@ Cache Deletion==Видалити кеш
Delete HTTP & FTP Cache==Видалити HTTP & FTP кеш
Delete robots.txt Cache==Видалити robots.txt кеш
"Delete"=="Видалити"
-Delete cached snippet-fetching failures during search==Видаляти кешовані невдачі фрагментів-вибірок при пошуку
#-----------------------------
+"A cache hit occurs when the requested data can be found in a cache."=="Попадання в кеш виникає, коли запитані дані можна знайти в кеші."
+"Concurrent access timeout info"=="Інформація про час очікування одночасного доступу"
+Cache hits==Звернення до кешу
+MB==MB
+Compression level==Рівень стиснення
+Concurrent access timeout==Час очікування одночасного доступу
+The maximum time to wait for acquiring a synchronization lock on concurrent get/store cache operations.==Максимальний час очікування отримання блокування синхронізації для одночасних операцій кешу get/store.
+Beyond this limit, the crawler or proxy falls back to regular remote resource loading.==За межами цієї межі сканер або проксі повертається до звичайного віддаленого завантаження ресурсу.
#File: ConfigLanguage_p.html
#---------------------------
Language selection==Вибір мови
You can change the language of the YaCy-webinterface with translation files.==Тут можна вибрати мову. Виберіть зі списку мову свого народу.
-Current language==Поточна мова
-#default(english)==Українська
-Author(s) (chronological)==Автори (в часовому порядку)
-Send additions to maintainer==Надіслати доповнення
-Available Languages==Доступні мови
Install new language from URL==Встановити мову з URL
Use this language==Використовувати цю мову
"Use"=="Використовувати"
"Delete"=="Видалити"
"Install"=="Встановити"
-Unable to get URL:==Неможливо встановити вказаний файл з наступної URL:
Error saving the language file.==Помилка при збереженні мовного файлу.
Make sure that you only download data from trustworthy sources. The new language file==Переконайтеся, що ви завантажуєте файли тільки з надійних джерел.
might overwrite existing data if a file of the same name exists already.==Увага, якщо файл з таким ім'ям вже існує, він буде замінений !
#-----------------------------
+Current language==Актуальна мова
+default(english)==за замовчуванням (англійською)
+Author(s) (chronological)==Автор(и) (хронологічно)
+Send additions to maintainer==Надіслати доповнення супроводжуючому
+Available Languages==Доступні мови
+Download Language File==Завантажити мовний файл
+Supported formats are the internal language file (extension .lng) or XLIFF (extension .xlf) format.==Підтримувані формати: файл внутрішньої мови (розширення .lng) або формат XLIFF (розширення .xlf).
#File: ConfigNetwork_p.html
+Accepted Changes.==Зберегти зміни.
#---------------------------
-==
Network Configuration==Налаштування мережі
No changes were made!==Не було зроблено жодних змін!
-Accepted Changes==Зміни прийняті
-Inapplicable Setting Combination==непридатна комбінація налаштувань
-#P2P operation can run without remote indexing, but runs better with remote indexing switched on. Please switch 'Accept Remote Crawl Requests' on==P2P діяльність виконується без віддаленої індексації, але працює краще, коли вона ввімкнена. Будь ласка, увімкніть "Приймати запити на віддалене сканування"
-For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration==Для P2P-функціонування повинен бути ввімнений DHT-розподіл чи DHT-прийом (або обидва). В іншому випадку у вас буде вузол типу Робінсон.
Global Search in P2P configuration is only allowed, if index receive is switched on. You have a P2P configuration, but are not allowed to search other peers.==Глобальний пошук дозволяється лише в режимі P2P, якщо активовано прийом індексу. Ви в режимі P2P, але не можете шукати по інших вузлах.
-For Robinson Mode, index distribution and receive is switched off==В режимі Робінсона розподіл та передача індексу вимкнені
-#This Robinson Mode switches remote indexing on, but limits targets to peers within the same cluster. Remote indexing requests from peers within the same cluster are accepted==Цей режим Робінсон активує віддалене індексування, але запити обмежуються вузлами з того ж кластера. Приймаються лише запити на індексацію від вузлів того ж кластера
-#This Robinson Mode does not allow any remote indexing (neither requests remote indexing, nor accepts it)==Цей режим Робінсона дозволяє будь-яку віддалену індексацію (запити на віддалене індесування не надсилаються, і не приймаються)
Network and Domain Specification==Деталі мережі і домену
-# With this configuration it is not allowed to authentify automatically from localhost!==Diese Konfiguration erlaubt keine automatische Authentifikation von localhost!
-# Please open the Account Configuration and set a new password.==Bitte in der Benutzerverwaltung ein neues Passwort festlegen.
YaCy can operate a computing grid of YaCy peers or as a stand-alone node.==Ви можете взяти участь в розподіленій мережі вузлів YaCy або створити незалежну.
To control that all participants within a web indexing domain have access to the same domain,==Для того щоб перевірити, що всі учасники індексації мають доступ до певного домену,
this network definition must be equal to all members of the same YaCy network.==визначення мережі має бути однаковим у всіх членів даної мережі YaCy.
@@ -505,123 +501,85 @@ Network Definition==Визначення (опис) мережі
Network Nick==Назва мережі
Long Description==Детальний опис
Indexing Domain==Індексація доменів
-#DHT==DHT
"Change Network"=="Змінити мережу"
Distributed Computing Network for Domain==Мережа розподілених обчислень для домену
-You can configure if you want to participate at the global YaCy network or if you want to have your==Ви можете вказати, чи хочете взяти участь у глобальній YaCy-мережі або у своєму
-own separate search cluster with or without connection to the global network. You may also define==окремому пошуковому кластері, з або без підключення до глобальної мережі. Ви також можете визначити
-a completely independent search engine instance, without any data exchange between your peer and other==повністю незалежну пошукову машину, без визначення будь-якого обміну даними між комп’ютером та іншими вузлами.
-peers, which we call a 'Robinson' peer.==Такий вузол ми називаємо вузлом "Робінсон".
Peer-to-Peer Mode==Одноранговий режим
->Index Distribution==>Розподіл індексу
-This enables automated, DHT-ruled Index Transmission to other peers==Вмикає автоматичний, базований на DHT розподіл індексу до інших вузлів
->enabled==>ввімкнено
disabled during crawling==вимкнено під час сканування
disabled during indexing==вимкнено під час індексування
->Index Receive==>Прийом індексу
-Accept remote Index Transmissions==Дозволити віддалену передачу індексу
-This works only if you have a senior peer. The DHT-rules do not work without this function==Це працює тільки якщо у вас Старший вузол. DHT-правила не працюють без цієї функції
->reject==>відкинути
accept transmitted URLs that match your blacklist==приймати передані URL-адреси, які відповідають вашому чорному списку
-#>Accept Remote Crawl Requests==>Remotecrawl-Anfragen akzeptieren
-#Perform web indexing upon request of another peer==Führe Indexierung bei Anfrage eines anderen Peers aus
-#This works only if you are a senior peer==Dies funktioniert nur, wenn Sie ein Senior-Peer sind
-#Load with a maximum of==Lade mit maximal
-#pages per minute==Seiten pro Minute (PPM)
->Robinson Mode==>Режим Робінсона
-If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers==Якщо ваш вузол працює у "Режимі Робінсона", YaCy використовується як пошукова система для вашого власного пошукового порталу, без будь-якого обміну даними з іншими вузлами
-There is no index receive and no index distribution between your peer and any other peer==Тут відсутній прийом і передача індексу на будь-які інші вузли
-In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster==У випадку кластеризації Робінсона, може приймати віддалені запити на сканування від вузлів того ж кластера
->Private Peer==>Власний вузол
-Your search engine will not contact any other peer, and will reject every request==Ваша пошукова машина не буде зв’язуватися з іншими вузлами і відкидатиме всі запити від інших вузлів
-#>Private Cluster==>Privater Cluster
#Your peer is part of a private cluster without public visibility
#Index data is not distributed, but remote crawl requests are distributed and accepted from your cluster
#Search requests are spread over all peers of the cluster, and answered from all peers of the cluster
#List of ip:port - addresses of the cluster: (comma-separated)
->Public Cluster==>Публічний кластер
-Your peer is part of a public cluster within the YaCy network==Ваш вузол є частиною публічного кластера в мережі YaCy
Index data is not distributed, but remote crawl requests are distributed and accepted==Індексні дані не поширюються, але віддалені запити на сканування поширюються і приймаються.
-Search requests are spread over all peers of the cluster, and answered from all peers of the cluster==Пошукові запити розподілені по всіх вузлах в кластері, і відповідь отримується зі всіх вузлів кластера
List of .yacy or .yacyh - domains of the cluster: (comma-separated)==Список доменів вузлів кластера .yacy чи .yacyh: (поділ комами)
->Public Peer==>Публічний вузол
-You are visible to other peers and contact them to distribute your presence==Ви видимі іншим учасникам і зв’язуєтесь з ними, щоб сказати про свою присутність
-Your peer does not accept any outside index data, but responds on all remote search requests==Ваш вузол не приймає жодних даних ззовні, але відповідає на всі віддалені пошукові запити
->Peer Tags==>Ключові слова вузла
-When you allow access from the YaCy network, your data is recognized using keywords==Якщо ви дозволите доступ з мережі YaCy, ваші дані будуть доступні через ключові слова
-Please describe your search portal with some keywords (comma-separated)==Будь-ласка, опишіть ваш пошуковий портал кількома ключовими словами (через кому)
If you leave the field empty, no peer asks your peer. If you fill in a '*', your peer is always asked.==Якщо ви залишите поле порожнім, жоден вузол не надішле запит до вашого вузла. Якщо ж виставите "*", то ваш вузол у всіх випадках буде отримувати запити.
"Save"=="Зберегти"
#-----------------------------
+"Transport Layer Security"=="Безпека транспортного рівня"
+"Secure Sockets Layer"=="Рівень захищених сокетів"
+Inapplicable Setting Combination:==Незастосовна комбінація параметрів:
+For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration.==Для операції P2P має бути налаштовано щонайменше DHT розповсюдження або DHT отримання (або обидва). Таким чином, ви визначили конфігурацію Робінсона.
+For Robinson Mode, index distribution and receive is switched off.==У режимі Робінзона розподіл і отримання індексів вимкнено.
+Enter custom URL...==Введіть спеціальний URL...
+Remote Network Definition URL==Визначення віддаленої мережі URL
+DHT==DHT
+Enable Peer-to-Peer Mode to participate in the global YaCy network,==Увімкніть одноранговий режим для участі в глобальній мережі YaCy,
+or if you want your own separate search cluster with or without connection to the global network.==або якщо вам потрібен власний окремий пошуковий кластер з підключенням до глобальної мережі або без нього.
+Enable 'Robinson Mode' for a completely independent search engine instance,==Увімкніть «Режим Робінзона» для абсолютно незалежного примірника пошукової системи,
+without any data exchange between your peer and other peers.==без будь-якого обміну даними між вашим однолітком та іншими однолітками.
+Index Distribution==Розподіл індексу
+This enables automated, DHT-ruled Index Transmission to other peers.==Це забезпечує автоматичну передачу індексу, керовану DHT, іншим вузлам.
+enabled==включено
+Index Receive==Отримання індексу
+Accept remote Index Transmissions.==Приймати віддалену передачу індексу.
+This works only if you have a senior peer. The DHT-rules do not work without this function.==Це працює, лише якщо у вас є старший колега. Правила DHT не працюють без цієї функції.
+reject==відхилити
+allow==дозволяють
+deny remote search==заборонити віддалений пошук
+Robinson Mode==Режим Робінзона
+If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers.==Якщо ваш партнер працює в «режимі Робінзона», ви запускаєте YaCy як пошукову систему для власного пошукового порталу без обміну даними з іншими партнерами.
+There is no index receive and no index distribution between your peer and any other peer.==Немає отримання індексу та розподілу індексу між вашим і будь-яким іншим однорангом.
+In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster.==У випадку кластеризації за Робінсоном можливе прийняття запитів на віддалене сканування від однорангових вузлів цього кластера.
+Private Peer==Приватний одноліток
+Your search engine will not contact any other peer, and will reject every request.==Ваша пошукова система не зв'язуватиметься з жодним іншим партнером і відхилятиме кожен запит.
+Public Peer==Загальнодоступний колега
+You are visible to other peers and contact them to distribute your presence.==Ви видимі для інших колег і зв’язуєтеся з ними, щоб повідомити про свою присутність.
+Your peer does not accept any outside index data, but responds on all remote search requests.==Ваш партнер не приймає жодних зовнішніх даних індексу, але відповідає на всі запити віддаленого пошуку.
+Public Cluster==Громадський кластер
+Your peer is part of a public cluster within the YaCy network.==Ваш вузол є частиною публічного кластера в мережі YaCy.
+Search requests are spread over all peers of the cluster, and answered from all peers of the cluster.==Пошукові запити розподіляються між усіма одноранговими вузлами кластера, і на них відповідають усі однорангові вузли кластера.
+Peer Tags==Теги однолітків
+When you allow access from the YaCy network, your data is recognized using keywords.==Коли ви дозволяєте доступ із мережі YaCy, ваші дані розпізнаються за допомогою ключових слів.
+Please describe your search portal with some keywords (comma-separated).==Будь ласка, опишіть свій пошуковий портал кількома ключовими словами (через кому).
+Outgoing communications encryption==Шифрування вихідних повідомлень
+Protocol operations encryption==Шифрування операцій протоколу
+Prefer HTTPS for outgoing connexions to remote peers.==Надавати перевагу HTTPS для вихідних з’єднань з віддаленими одноранговими вузлами.
+When TLS/SSL is enabled on remote peers, it should be used to encrypt outgoing communications with them (for operations such as network presence, index transfer, remote crawl...).==Коли TLS/SSL увімкнено на віддалених узлах, його слід використовувати для шифрування вихідного зв’язку з ними (для таких операцій, як присутність у мережі, передача індексу, віддалене сканування...).
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Зауважте, що всупереч суворому TLS, сертифікати не перевіряються довіреними центрами сертифікації (CA), що дозволяє YaCy вузлам використовувати самопідписані сертифікати.
#File: ConfigParser_p.html
#---------------------------
Parser Configuration==Настройка обробника
Content Parser Settings==Налаштування обробника вмісту
With this settings you can activate or deactivate parsing of additional content-types based on their MIME-types.==З допомогою цих настройок можна вмикати і вимикати обробку додаткових типів даних на основі їхніх MIME-типів.
For a detailed description of the various MIME-types take a look at==Для докладного опису різних типів MIME дивіться
-If you want to test a specific parser you can do so using the File Viewer==Якщо потрібно перевірити незвичайний аналізатор, це можна зробити з допомогою переглядача файлів
-enable/disable Parser==Ввім./Вимк. обробник
# --- Parser Names are hard-coded BEGIN ---
Mime-Type==Тип MIME
-#Microsoft Powerpoint Parser==Microsoft Powerpoint
-#Torrent Metadata Parser==Метадані Torrent
-#HTML Parser==HTML
-#GNU Zip Compressed Archive Parser==GNU Zip Стиснутий Архів
-#Adobe Flash Parser==Adobe Flash
-#Word Document Parser==Документ Word
-#vCard Parser==vCard
-#Bzip 2 UNIX Compressed File Parser==Стиснутий файл bzip2 UNIX
-#OASIS OpenDocument V2 Text Document Parser==Текстовий документ OASIS OpenDocument V2
-#Microsoft Excel Parser==Microsoft Excel
-#ZIP File Parser==Файл ZIP
-#Rich Site Summary/Atom Feed Parser==Rich Site Summary/Atom Feed
-#Comma Separated Value Parser==Comma Separated Value (CSV)
-#Microsoft Visio Parser==Microsoft Visio
-#Tape Archive File Parser==Архів стрічкового накопичувача
-#7zip Archive Parser==Архів 7zip
-#Acrobat Portable Document Parser==Рухомий документ Adobe Acrobat
-#Rich Text Format Parser==Тестовий формат Rich
-#Generic Image Parser==Звичайного зображення
-#PostScript Document Parser==Документ PostScript
-#Open Office XML Document Parser==Документ Open Office XML
-#BMP Image Parser==Зображення BMP
# --- Parser Names are hard-coded END ---
"Submit"=="Відправити"
-: Advanced Settings<==: Аналізатори<
-enable/disable==ввімкнути/вимкнути
->Extension==>Розширення
#-----------------------------
+Extension==Розширення
#File: ConfigPortal_p.html
+"idea"=="думка"
#---------------------------
Integration of a Search Portal==Інтегрування пошукового порталу
If you like to integrate YaCy as portal for your web pages, you may want to change icons and messages on the search page.==Якщо ви хочете вбудувати YaCy в якості пошукового порталу у веб-сайт, ви також можете змінити значки та повідомлення на сторінках пошуку.
-The search page may be customized.==Сторінки пошуку можуть бути пристосовані до ваших потреб.
-You can change the 'corporate identity'-images, the greeting line==Ви можете змінити логотип, рядок привітання
and a link to a home page that is reached when the 'corporate identity'-images are clicked.==і змінити посилання на головній сторінці, пов’язане з логотипом.
-To change also colours and styles use the Appearance Servlet for different skins and languages.==Для того, щоб змінити також кольори і стилі використовуйте сервлет зовнішнього вигляду для інших шкурок і мов.
-Greeting Line<==Рядок привітання<
-URL of Home Page<==URL домашньої сторінки<
-URL of a Small Corporate Image<==URL малого зображення<
-URL of a Large Corporate Image<==URL великого зображення<
-Show Navigation Bar on Search Page==Показувати панель навігації
-Show Navigation Top-Menu ==показувати вгорі меню навігації
no link to YaCy Menu (admin must navigate to /Status.html manually)==жодних посилань на меню YaCy (admin повинен вручну перейти на /Status.html)
Show Advanced Search Options on Search Page?==Показувати додаткові параметри?
-Show Advanced Search Options on index.html ==показувати розширені параметри
do not show Advanced Search==не показувати розширений пошук
-Show Information Links for each Search Result Entry==Надавати дані про кожен запис
->Date&==>Дата&
->Size&==>Розмір&
->Metadata&==>Метадані&
->Parser&==>Аналізатор&
->Pictures==>Зображення
-Default Pop-Up Page<==Стандартна спливаюча сторінка<
->Status Page==>Сторінка стану
->Search Front Page==>Титульна сторінка пошуку
->Search Page (small header)==>Сторінка пошуку (малий заголовок)
->Interactive Search Page==>Взаємодіюча сторінка
Default index.html Page (by forwarder)==Стандартна сторінка index.html (перенаправлення)
Target for Click on Search Results==Цільове вікно при натисканні на результат пошуку
@@ -637,21 +595,9 @@ The search page can be integrated in your own web pages with an iframe. Simply u
This would look like:==Це буде мати такий вигляд:
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 administrator is allowed to search==тільки адміністратор може шукати
-Show Media Search Options==Показувати варіанти пошуку
-Text==Текст
-Images==Зображення
-Audio==Аудіо
-Video==Відео
-Applications==Додатки
Default maximum number of results per page==Стандартна макс.кількість результатів/сторінку
-Show Navigation on Side-Bar==Навігація в бічній панелі
-Host Navigation==Хост
-Author Navigation==Автор
-Wiki Name-Space Navigation==Wiki
-Topics (Tag-Cloud) Navigation==Теми (хмара ключових слів)
Snippet Fetch Strategy & Link Verification==Стратегія витягнення фрагментів & перевірка посилань
NOCACHE: no use of web cache, load all snippets online==NOCACHE: не використовувати веб-кеш, завантажувати всі фрагменти з мережі
IFFRESH: use the cache if the cache exists and is fresh otherwise load online==IFFRESH: використовувати наявний кеш, якщо він свіжий, інакше завантажувати з мережі
@@ -663,31 +609,67 @@ FALSE: no link verification and not snippet generation: all search results are v
Exclude Hosts==Вилучити сервери
List of hosts that shall be excluded from search results by default but can be included using the site:<host> operator:==Список сайтів, які повинні бути виключені з результатів пошуку за замовчуванням, але можуть бути включені використовуючи оператор site:<хост>:
'About' Column (shown in a column alongside with the search result page)==Стовпчик "Про" (показаний в стовчику поруч зі сторінкою результатів пошуку)
-(Headline)==(Заголовок)
(Content)==(Вміст)
#-----------------------------
+"Remote results resorting can be triggered once the 'Refresh sorting' button (near the 'Search' button) becomes available."=="Віддалену сортування результатів можна запустити, коли стане доступною кнопка «Оновити сортування» (біля кнопки «Пошук»)."
+"This usually improves ranking accuracy, but doesn't work well for users who have Javascript disabled, are using screen readers, or are on slow computers."=="Зазвичай це покращує точність рейтингу, але не працює належним чином для користувачів, у яких вимкнено Javascript, які використовують програми зчитування з екрана або працюють на повільних комп’ютерах."
+"Detailed statistics"=="Детальна статистика"
+The search page may be customized. You can change the 'corporate identity'-images, the greeting line==Сторінку пошуку можна налаштувати. Ви можете змінити «фірмовий стиль»-образи, вітальну лінію
+Greeting Line==Вітальна лінія
+URL of Home Page==URL домашньої сторінки
+URL of a Small Corporate Image==URL малого корпоративного зображення
+URL of a Large Corporate Image==URL великого корпоративного зображення
+Alternative text for Corporate Images==Альтернативний текст для корпоративних зображень
+Enable Search for Everyone?==Увімкнути пошук для всіх?
+Show Navigation Bar on Search Page?==Показувати панель навігації на сторінці пошуку?
+Show Navigation Top-Menu==Показати верхнє меню навігації
+Show Advanced Search Options on index.html==Показати розширені параметри пошуку на index.html
+Media Search==Медіа-пошук
+Extended==Розширений
+Strict==Суворий
+Control whether media search results are as default strictly limited to indexed documents matching exactly the desired content domain (images, videos or applications specific),==Контролюйте, чи результати медіа-пошуку за замовчуванням суворо обмежуються індексованими документами, які точно відповідають бажаному домену вмісту (зображення, відео чи окремі програми),
+or extended to pages including such medias (provide generally more results, but eventually less relevant).==або поширюється на сторінки, що містять такі засоби масової інформації (загалом надають більше результатів, але зрештою менш релевантні).
+Remote results resorting==Пересортиця віддалених результатів
+On demand, server-side==На вимогу, на стороні сервера
+Automated, with JavaScript in the browser.==Автоматизовано, з JavaScript у браузері.
+Automated results resorting with JavaScript makes the browser load the full result set of each search request.==Автоматичне використання результатів із JavaScript змушує браузер завантажувати повний набір результатів кожного пошукового запиту.
+This may lead to high system loads on the server.==Це може призвести до високого навантаження системи на сервер.
+Remote search encryption==Шифрування віддаленого пошуку
+Prefer https for search queries on remote peers.==Надавайте перевагу https для пошукових запитів на віддалених вузлах.
+When SSL/TLS is enabled on remote peers, https should be used to encrypt data exchanged with them when performing peer-to-peer searches.==Коли SSL/TLS увімкнено на віддалених однорангових вузлах, протокол https слід використовувати для шифрування даних, якими вони обмінюються під час однорангового пошуку.
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==Зауважте, що всупереч суворому TLS, сертифікати не перевіряються довіреними центрами сертифікації (CA), що дозволяє YaCy вузлам використовувати самопідписані сертифікати.
+Speed up search results with this option! (use CACHEONLY or FALSE to switch off verification)==Прискоріть результати пошуку за допомогою цієї опції! (використовуйте CACHEONLY або FALSE, щоб вимкнути перевірку)
+Counts by origin :==Розраховується за походженням:
+Greedy Learning Mode==Жадібний режим навчання
+Index remote results==Індексуйте віддалені результати
+add remote search results to the local index ( default=on, it is recommended to enable this option ! )==додати результати віддаленого пошуку до локального індексу (за умовчанням=увімкнено, рекомендується ввімкнути цю опцію!)
+Limit size of indexed remote results==Обмеження розміру індексованих віддалених результатів
+maximum allowed size in kbytes for each remote search result to be added to the local index (for example, a 1000kbytes limit might be useful if you are running YaCy with a low memory setup)==максимальний дозволений розмір у кбайтах для кожного віддаленого результату пошуку, який буде додано до локального індексу (наприклад, обмеження в 1000 кбайт може бути корисним, якщо ви використовуєте YaCy з невеликим налаштуванням пам’яті)
+Default Pop-Up Page==Сторінка спливаючого вікна за умовчанням
+Status Page==Сторінка стану
+Search Front Page==Головна сторінка пошуку
+Search Page (small header)==Сторінка пошуку (маленький заголовок)
+Interactive Search Page==Інтерактивна сторінка пошуку
+Special Target as Exception for an URL-Pattern==Спеціальна ціль як виняток для шаблону URL
+Pattern:==Візерунок:
+(Headline)==(Заголовок)
#File: ConfigProfile_p.html
#---------------------------
Your Personal Profile==Ваш персональний профіль
You can create a personal profile here, which can be seen by other YaCy-members==Тут ви можете керувати своїм особистим профілем, який зможуть
-or in the public using a FOAF RDF file.==переглянути інші користувачі YaCy, а також всі інші через файл FOAF RDF.
->Name==>Ім’я
Nick Name==Псевдонім
-Homepage (appears on every Supporter Page as long as your peer is online)==Домашня сторінка (доступна звідси)
eMail==ел.Пошта
-#ICQ==ICQ
-#Jabber==Jabber
-#Yahoo!==Yahoo!
-#MSN==MSN
-#Skype==Skype
Comment==Коментар
"Save"=="Зберегти"
-You can use <==Ви можете тут використовувати <
-> here.==>.
->Wiki Code==>коди Wiki
#-----------------------------
+Name==Ім'я
+ICQ==ICQ
+Jabber==Jabber
+Yahoo!==Yahoo!
+MSN==MSN
+Skype==Skype
#File: ConfigProperties_p.html
#---------------------------
Advanced Config==Розширені установки
@@ -697,11 +679,11 @@ For explanation please look into defaults/yacy.init==Пояснення міст
"Save"=="Зберегти"
#-----------------------------
+"Clear"=="ясно"
#File: ConfigRobotsTxt_p.html
#---------------------------
Exclude Web-Spiders==Не пускати павуків
Here you can set up a robots.txt for all webcrawlers that try to access the webinterface of your peer.==Тут ви можете встановити robots.txt для всіх сканерів, які пробують отримати доступ до вашого вузла по HTTP.
-is a volunteer agreement most search-engines (including YaCy) follow.==це добровільний стандарт, який підтримують більшість пошукових машин (у тому числі YaCy).
It disallows crawlers to access webpages or even entire domains.==Він може заборони сканувати окремі веб-сторінки або навіть цілі домени.
Deny access to==Заборонити доступ до
Entire Peer==Вузла повністю
@@ -710,23 +692,27 @@ Network pages==Сторінки мережі
Surftips==Порад по серфінгу
News pages==Сторінки новин
Blog==Блогу
-#Wiki==Вікі
Public bookmarks==Публічних закладок
Home Page==Домашньої сторінки
File Share==Обміну файлами
"Save restrictions"=="Зберегти обмеження"
Impressum==Відбитку
-Local robots.txt==Місцевий robots.txt
#-----------------------------
+robots.txt==robots.txt
+is a voluntary agreement most search-engines (including YaCy) follow.==є добровільною угодою, якої дотримується більшість пошукових систем (включно з YaCy).
+Unable to access the local file:==Неможливо отримати доступ до локального файлу:
+Deletion of==Видалення
+htroot/robots.txt==htroot/robots.txt
+failed==не вдалося
+Wiki==Wiki
#File: ConfigSearchBox.html
#---------------------------
Integration of a Search Box==Інтегрування рядка пошуку
We give information how to integrate a search box on any web page that==Тут міститься інформація про те, як використовувати вікно пошуку на будь-якій сторінці.
calls the normal YaCy search window.==Переспрямування до нормального пошукового вікна YaCy.
Simply use the following code:==Просто використовуйте наступний код:
- MySearch== Мій пошук
"Search"=="Пошук"
This would look like:==Виглядає це приблизно так:
This does not use a style sheet file to make the integration into another web page with a different style sheet easier.==Стилі не використовуються для спрощення включення до інших сторінок зі своїми таблицями стилів.
@@ -735,13 +721,11 @@ Replace the given colors #eeeeee (box background) and #cccccc (box border)==За
Replace the word "MySearch" with your own message==Замініть вираз "Мій пошук" вашим власним повідомленням
#-----------------------------
+MySearch==MySearch
#File: ConfigUpdate_p.html
#---------------------------
->System Update==>Оновлення системи
-: System Update<==: Оновлення системи<
Manual System Update==Ручне оновлення системи
Current installed Release==Поточна встановлена версія
-Available Releases==Доступні випуски
(unsigned)==(непідписана)
(signed)==(підписана)
"Download Release"=="Завантажити випуск"
@@ -751,28 +735,20 @@ No downloaded releases available for deployment.==Немає завантаже
no automated installation on development environments==Немає автоматичної установки в середовищі розробки
"Install Release"=="Встановити випуск"
"Delete Release"=="Видалити випуск"
-#Automatic Update==Автоматичне оновлення
Automatic Update==Самооновлення
check for new releases, download if available and restart with downloaded release==пошук нових версій, завантаження і перезапуск в завантажену версію
"Check + Download + Install Release Now"=="Пошук + Завантаження + Встановлення випуску"
-Download of release #[downloadedRelease]# finished. Restart Initiated.== Завантаження випуску #[downloadedRelease]# закінчено. Розпочатий перезапуск.
No more recent release found.==Новіших випусків не знайдено.
Release will be installed. Please wait.==Випуск буде встановлено. Будь-ласка, зачекайте.
-You installed YaCy with a package manager.==Ви встановили YaCy з допомогою менеджера пакетів чи установлювача.
-To update YaCy, use the package manager:==Для оновлення YaCy використовуйте менеджер пакетів.
Omitting update because this is a development environment.==Оновлення пропущене, тому що це розробницьке середовище.
-Omitting update because download of release #[downloadedRelease]# failed.==Оновлення пропущене, так як завантаження випуску #[downloadedRelease]# закінчилось невдачею.
-#Automated System Update==Автоматичне оновлення системи
Automated System Update==Самооновлення системи
manual update==Ручне оновлення
no automatic look-up, updates can be made manually using this interface (see options above)==Без автооновлення, оновлення можна зробити вручну (див. настройки вище).
-#automatic update==Автоматичне оновлення
automatic update==Самооновлення
updates are made within fixed cycles:==Оновлення будуть зроблені у відповідності з визначеними правилами:
Time between lookup==Час між перевірками
hours==годин
Release blacklist==Небажані випуски
-regex on release number strings==регулярний вираз по номерах випусків
Release type==Тип випуску
only main releases==тільки офіційні випуски
any release including developer releases==будь-який випуск, включно з розробницькими
@@ -785,88 +761,74 @@ Last System Lookup==Остання перевірка системи
never==ніколи
Last Release Download==Останнє завантаження
Last Deploy==Останнє оновлення
-changelog==журнал змін
#-----------------------------
+System Update==Оновлення системи
+This servlet can only be used on operating systems that are currently supported for deploy functions.==Цей сервлет можна використовувати лише в операційних системах, які наразі підтримують функції розгортання.
+If you see this message this means that your operation system is not supported.==Якщо ви бачите це повідомлення, це означає, що ваша операційна система не підтримується.
+(no signature)==(без підпису)
+Omitting update because an error occurred while trying to deploy the release.==Пропущено оновлення через помилку під час спроби розгорнути випуск.
+(regex on release number strings)==(регулярний вираз у рядках номерів випуску)
+You installed YaCy with a package manager. To update YaCy, use the package manager:==Ви встановили YaCy за допомогою менеджера пакетів. Щоб оновити YaCy, скористайтеся менеджером пакетів:
+manual update: apt-get update && apt-get install yacy==оновлення вручну: apt-get update && apt-get install yacy
+automatic update: add the following line to /etc/crontab 0 6 * * * root apt-get update && apt-get -y --force-yes install yacy==автоматичне оновлення: додайте наступний рядок до /etc/crontab 0 6 * * * root apt-get update && apt-get -y --force-yes install yacy
#File: Connections_p.html
#---------------------------
-Connection Tracking==Стан підключень
Server Connection Tracking==Стан підключень сервера
Incoming Connections==Вхідні з’єднання
-Showing #[numActiveRunning]# active, #[numActivePending]# pending connections from a max. of #[numMax]# allowed incoming connections.==Показано #[numActiveRunning]# активних та #[numActivePending]# очікуючих з’єднань з макс. #[numMax]# дозволених вхідних з’єднань.
-Protocol==Протокол
Duration==Тривалість
Source IP[:Port]==IP джерела[:Порт]
Dest. IP[:Port]==IP призначення[:Порт]
-Command==Команда
-Used==Використаний
-Close==Закрити
-Waiting for new request nr.==Очікування на новий запит №
Outgoing Connections==Вихідні з’єднання
-Showing #[clientActive]# pooled outgoing connections used as:==Показано #[clientActive]# об’єднаних вихідних з’єднань, використовуваних як:
-Duration==Тривалість
-#ID==ID
Up-Bytes==Передано
#-----------------------------
+Protocol==Протокол
+Command==Команда
+ID==ID
#File: CookieMonitorIncoming_p.html
#---------------------------
-Incoming Cookies Monitor==Спостереження за вхідним печивом
Cookie Monitor: Incoming Cookies==Спостереження за печивом: Вхідне печиво
This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:==Це список всіх кук (cookie), які веб-сервер послав клієнтам YaCy проксі:
-Showing #[num]# entries from a total of #[total]# Cookies.==Показано #[num]# записів з #[total]# печенин.
Sending Host==Сервер (відправник)
-Date==Дата
Receiving Client==Клієнт (отримувач)
->Cookie==>Печиво
"Enable Cookie Monitoring"=="Ввімкнути спостереження за печивом"
-"Disable Cookie Monitoring"=="Вимкнути спостереження за печивом"
+"Disable Cookie Monitoring"=="Вимкнути моніторинг cookie"
#-----------------------------
+Date==Дата
+Cookie==Печиво
#File: CookieMonitorOutgoing_p.html
#---------------------------
-Outgoing Cookies Monitor==Спостереження за вихідним печивом
Cookie Monitor: Outgoing Cookies==Спостереження за печивом: Вихідне печиво
This is a list of cookies that browsers using the YaCy proxy sent to webservers:==Це список всіх кук (cookie), які браузери, використовуючи проксі YaCy, відправили на веб-сервери:
-Showing #[num]# entries from a total of #[total]# Cookies.==Показано #[num]# записів з #[total]# печенин.
Receiving Host==Сервер (отримувач)
-Date==Дата
Sending Client==Клієнт (відправник)
->Cookie==>Печиво
"Enable Cookie Monitoring"=="Ввімкнути спостереження за печивом"
-"Disable Cookie Monitoring"=="Вимкнути спостереження за печивом"
+"Disable Cookie Monitoring"=="Вимкнути моніторинг cookie"
#-----------------------------
+Date==Дата
+Cookie==Печиво
#File: CrawlProfileEditor_p.html
+Crawler Steering==Керування сканером
+Depth==Глибина
+no==ні
+yes==так
#---------------------------
Crawl Profile Editor==Редактор профілю сканування
->Crawler Steering<==>Контроль сканера<
->Crawl Scheduler<==>Планувальник сканування<
->Scheduled Crawls can be modified in this table<==>Заплановані сканування можуть бути змінені в цій таблиці<
Crawl profiles hold information about a crawl process that is currently ongoing.==Профілі сканування включають інформацію про поточний процес сканування.
-#Crawl profiles hold information about a specific URL which is internally used to perform the crawl it belongs to.==Профілі сканування містять інформацію про конкретні URL, які використовуються всередині, щоб зрозуміти, що таке сканування.
-#The profiles for remote crawls, indexing via proxy and snippet fetches==Профілі віддаленого сканування, індексування через проксі та фрагменти витягнення
-#cannot be altered here as they are hard-coded.==не може бути змінений, тому що прописаний "намертво".
Crawl Profile List==Профіль списку сканування
Crawl Thread==Потік сканування
Status==Стан
-Start URL==Початкова URL
->Depth==>Глибина
Must Match==Повинно збігатися
Must Not Match==Повинно не збігатися
-MaxAge==Макс. вік
-#Auto Filter Depth==Автофільтр глибини
-#Auto Filter Content==Автоіфльтр вмісту
-Max Page Per Domain==Макс. сторінок на домен
Accept '?' URLs==URL зі "?"
Fill Proxy Cache==Додати в кеш проксі
Local Text Indexing==Місцеве індекс. тексту
Local Media Indexing==Місцеве індекс. медіа
Remote Indexing==Віддал. індекс.
-#Status / Action==Стан / Дії
-#terminated::active==закінчені::активні
-no::yes==ні::так
Running==Працює
"Terminate"=="Припинити"
Finished==Завершений
@@ -874,26 +836,19 @@ Finished==Завершений
"Delete finished crawls"=="Видалити завершені сканування"
Select the profile to edit==Виберіть профіль для редагування
"Edit profile"=="Редагувати профіль"
-An error occurred during editing the crawl profile:==Сталася наступна помилка при редагуванні профілю сканування:
-Edit Profile==Редагувати профіль
"Submit changes"=="Надіслати зміни"
Domain Counter Content==Число вмістів домену
#-----------------------------
+Crawl Scheduler==Планувальник сканування
+Scheduled Crawls can be modified in this table==У цій таблиці можна змінювати заплановані сканування
+Collections==Колекції
+Recrawl if older than==Пересканувати, якщо старше
+Max Page Per Domain==Максимальна кількість сторінок на домен
+false==помилковий
+true==правда
#File: CrawlResults.html
#---------------------------
-Crawl Results<==Результати сканування<
-Overview==Огляд
-#Receipts==Відгуки
-Receipts==Надходження
-#Receipts==Зворотній зв’язок
-Queries==Пошукові запити
-DHT Transfer==DHT-Розподіл
-Proxy Use==Використання проксі
-Local Crawling==Місцеве сканування
-Global Crawling==Загальне сканування
-Pack Import==Імпорт "Заміщень"
->Crawl Results Overview<==>Огляд результатів сканування<
These are monitoring pages for the different indexing queues.==Ці сторінки для спостереження за різними чергами індексації.
YaCy knows 5 different ways to acquire web indexes. The details of these processes (1-5) are described within the submenu's listed==YaCy знає 5 різних способів упорядкування індексу. Деталі цих процесів (1-5) описані в меню вище.
above which also will show you a table with indexing results so far. The information in these tables is considered as private,==Там ви також можете побачити таблицю з результатами індексування. Інформація в цих таблицях вважається приватною,
@@ -907,8 +862,6 @@ Some processes occur double to document the complex index migration structure.==
This is the list of web pages that this peer initiated to crawl,==Це список сторінок, які були запущені на сканування вашим вузлом,
but had been crawled by other peers.==але просканувалися іншими вузлами.
This is the 'mirror'-case of process (6).==Це є "дзеркальним" до (6)
-Use Case: You get entries here, if you start a local crawl on the 'Advanced Crawler' page and check the==Використання: Тут видаються записи, якщо ви запустили місцеве сканування на сторінці 'створення індексу' і ввімкнули
-'Do Remote Indexing'-flag, and if you checked the 'Accept Remote Crawl Requests'-flag on the 'Remote Crawling' page.=="віддалене індексування", and if you checked the 'Accept Remote Crawl Requests'-flag on the 'Remote Crawling' page.
Every page that a remote peer indexes upon this peer's request is reported back and can be monitored here.==Кожна сторінка, яку індексує віддалений вузол на ваш запит, повертається і відображається тут.
#результат
#наслідок
@@ -928,7 +881,6 @@ the logic of the Global Distributed Hash Table.==відповідно до ло
Use Case: This list may fill if you check the 'Index Receive'-flag on the 'Index Control' page==Використання: Цей список заповнюється, якщо ввімкнене "отримання індексу" на сторінці "керування індексом".
(4) Results for Proxy Indexing==(4) Результати проксі-індексування
These web pages had been indexed as result of your proxy usage.==Ці сторінки були проіндексовані за допомогою проксі-сервера.
-No personal or protected page is indexed==Особисті й захищені сторінки не індексуються
such pages are detected by Cookie-Use or POST-Parameters (either in URL or as HTTP protocol)==Такі сторінки визначаються за використанням печива або POST-даними (в URL або HTTP-протоколі)
and automatically excluded from indexing.==і автоматично виключаються з індексування.
Use Case: You must use YaCy as proxy to fill up this table.==Використання: Ви повинні використовувати YaCy в якості проксі для заповнення цієї таблиці.
@@ -940,125 +892,65 @@ These web pages had been crawled by your own crawl task.==Ці сторінки
(6) Results for Global Crawling==(6) Результати загальних сканувань
These pages had been indexed by your peer, but the crawl was initiated by a remote peer.==Ці сторінки були проіндексовані вашим вузлом, але були запущені за бажанням іншої сторони (віддалене сканування).
This is the 'mirror'-case of process (1).==Це в "дзеркальний" процес до (1).
-Use Case: This list may fill if you check the 'Accept Remote Crawl Requests'-flag on the 'Remote Crawling' page==Використання: Цей список заповнюється, якщо ви ввімкнули "Приймати запити на сканування" на сторінці 'Віддалений сканування'.
The stack is empty.==Список порожній.
-Statistics about #[domains]# domains in this stack:==Статистика щодо #[domains]# доменів в цій черзі:
(7) Results from pack import==(7) Результати з імпорту "заміщень"
These records had been imported from pack files in DATA/PACKS/load==Ці записи було імпортовано з сурогатних файлів з DATA/PACKS/load
-Use Case: place files with dublin core metadata content into DATA/PACKS/load or use an index import method==Використання: Розмістіть файли з вмістом dublin core metadata в DATA/PACKS/load або використайте в функцію імпорту індексу
-(i.e. MediaWiki import, OAI-PMH retrieval)==(Наприклад, Імпорт Dump'у MediaWiki, Імпорт OAI-PMH)
Domain==Домен
URLs=URL
"delete all"=="Видалити всі"
-Showing all #[all]# entries in this stack.==В цьому списку показано всі #[all]# записи.
-Showing latest #[count]# lines from a stack of #[all]# entries.==Показано останні #[count]# записи з цього списку зі всіх #[all]# записів.
"clear list"=="Очистити список"
Initiator==Зачинщик
->Executor==>Виконавець
->Modified==>Дата зміни
->Words==>Слова
->Title==>Заголовок
-#URL==URL
"delete"=="Видалити"
#-----------------------------
+"An illustration how yacy works"=="Ілюстрація того, як працює yacy"
+"del & blacklist"=="видалення та чорний список"
+Crawl Results Overview==Огляд результатів сканування
+No remote crawl results can currently been added to the local index as the remote crawler is disabled on this peer.==Наразі результати віддаленого сканування не можна додати до локального індексу, оскільки віддалений сканер вимкнено на цьому вузлі.
+No personal or protected page is indexed;==Жодна особиста чи захищена сторінка не проіндексована;
+The remote crawler is currently disabled==Віддалений сканер наразі вимкнено
+URLs==URL-адреси
+Blacklist to use==Чорний список для використання
+Collection==Колекція
+Executor==Виконавець
+Modified==Змінено
+Words==Слова
+Title==Назва
+Country==Країна
+IP of Host==IP хоста
+URL==URL
+no title==без назви
#File: CrawlStartExpert.html
#---------------------------
-==
-Crawl Start<==Запуск сканування<
Expert Crawl Start==Розширений запуск сканування
Start Crawling Job:==Завдання запуску сканування:
-You can define URLs as start points for Web page crawling and start crawling here. "Crawling" means that YaCy will download the given website, extract all links in it and then download the content behind these links. This is repeated as long as specified under "Crawling Depth".==Ви можете вказати URL-адресу для сканування і запустити його. "Сканування" означає, що YaCy завантажить вказані веб-сторінки, потім витягне всі посилання, за якими після цього буде завантажувати наступний вміст. Це повторюється стільки разів, скільки вказано в "глибині сканування".
-Attribute<==Властивість<
-Value<==Значення<
-Description<==Опис<
->Starting Point:==>Початкова точка:
->From URL==>З URL
From Sitemap==З карти сайту
-From File==З файлу
-Existing start URLs are always re-crawled.==Наявні початкові URL завжди перескановуються.
Other already visited URLs are sorted out as "double", if they are not allowed using the re-crawl option.==Інші, вже відвідані сторінки відкидаються як "повторні", якщо вони не дозволені через настройку перескановування.
-Create Bookmark==Створити закладку
-(works with "Starting Point: From URL" only)==(працює тільки з "Початкова точка з URL")
-Title<==Заголовок<
-Folder<==Папка<
-This option lets you create a bookmark from your crawl start URL.==Ця настройка дає можливість створити закладку з початкової URL сканування.
-
(:):
==
:
This defines how often the Crawler will follow links (of links..) embedded in websites.==Визначає, як довго сканувач буде переходити за посиланнями (з посилань ...), вбудованими в сайти.
0 means that only the page you enter under "Starting Point" will be added==0 означає, що тільки сторінка вказана в "Початку сканування" буде додана
to the index. 2-4 is good for normal indexing. Values over 8 are not useful, since a depth-8 crawl will==в індекс. 2-4 добре для звичайного індексування. Значення вище 8 не є корисними, оскільки пошук з глибиною 8
index approximately 25.600.000.000 pages, maybe this is the whole WWW.==проіндексує близько 25.600.000.000 сторінок, а це цілий WWW.
-Scheduled re-crawl:?<==Запланувати пересканування:<
->no doubles<==>Без повторів<
-run this crawl once and never load any page that is already known, only the start-url may be loaded again.==Виконати це сканування одноразово і ніколи не завантажувати жодної відомої (крім початкової URL) сторінки.
->re-load<==>З повторами<
-run this crawl once, but treat urls that are known since==Виконати це сканування одноразово, але дозволити перезавантажувати наявні сторінки через
->years<==>років<
->months<==>місяців<
->days<==>днів<
->hours<==>годин<
-not as double and load them again. No scheduled re-crawl.== Без планування.
->scheduled<==>Заплановане<
-after starting this crawl, repeat the crawl every==Після початку цього сканування, повторити його через
-> automatically.==> автоматично.
A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==Сканувач виконує перевірку на наявність адрес у своїй внутрішній базі даних. Якщо ж адреса знайдена,
then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,==URL розглядається як дублікат, якщо властивість "Без повторів" була вибрана. URL може бути завантажена знову, коли вона досягне певного віку.
-to use that check the 're-load' option. When you want that this web crawl is repeated automatically, then check the 'scheduled' option.==Для використання цього використовуйте "З повторами". Якщо вибраний варіант "Заплановане", сканер буде запускатись на повтор автоматично.
-In this case the crawl is repeated after the given time and no url from the previous crawl is omitted as double.==У цьому випадку сканування запускається після встановленого часу і жодне посилання не буде пропущене по причині повтору.
-Must-Match Filter for==Повинно-співпадати фільтр для
-IPs==IP
-URLs==URL
Use filter==Використовувати фільтр
-Restrict to start domain==Обмежити до початкового домену
-Restrict to sub-path==Обмежити до початкового шляху
-#The filter is an emacs-like regular expression that must match with the URLs which are used to be crawled;==Це emacs-подібний регулярний вираз, яий повинен співпадати зі сканованими URL;
-The filter is a regular expression==Цей фільтр регулярний вираз,
-that must match with the URLs which are used to be crawled; default is 'catch all'.==який повинен співпадати з URL, що використовуються при скануванні. За умовчанням встановлено значення "Дозволити все".
-Example: to allow only urls that contain the word 'science', set the filter to '.*science.*'.==Приклад: Щоб дозволити тільки URL-адреси, що містять слово "Wissenschaft", створюється фільтр ".*Wissenschaft.*".
You can also use an automatic domain-restriction to fully crawl a single domain.==Ви можете також використовувати автоматичне обмеження домену для повного сканування певного домену.
-Must-Not-Match Filter for==Повинно-не-співпадати фільтр для
-that must not match to allow that the page is accepted for crawling.==який повинен не співпадати, щоб допустити сторінку до сканування.
-The empty string is a never-match filter which should do well for most cases.==Порожнє поле ніколи не відповідає фільтру, чого достатньо в більшості випадків.
-If you don't know what this means, please leave this field empty.==Якщо ви не знаєте, що це означає, залиште поле порожнім.
-#Re-crawl known URLs:==Відомі URL для пересканування:
-Use:==Використовувати:
-#It depends on the age of the last crawl if this is done or not: if the last crawl is older than the given==Це залежить від віку останнього сканування, якщо це буде зроблено або не зроблено: якщо останнє сканування старіше за вказане
-#Auto-Dom-Filter:==Авто-Дом-Фільтр:
-#This option will automatically create a domain-filter which limits the crawl on domains the crawler==Ця настройка автоматично генерує фільтр для домену, який обмежує сканування на домена, які сканувач
-#will find on the given depth. You can use this option i.e. to crawl a page with bookmarks while==знайде на заданій глибині. Ця настройка може бути використана, наприклад, для сканування сторінок із закладками
-#restricting the crawl on only those domains that appear on the bookmark-page. The adequate depth==а потім наступного автоматичного обмеження сканування областями, які містяться в списку закладок. Відповідна глибина
-#for this example would be 1.==для цього прикладу була 1.
-#The default value 0 gives no restrictions.==Значення за умовчанням 0 означає, що обмеження немає.
-
(:):
==
:
Page-Count==Кількість сторінок
You can limit the maximum number of pages that are fetched and indexed from a single domain with this option.==Цією настройкою можна обмежити максимальне число сторінок, які знаходяться і індексується з одиночного домену.
You can combine this limitation with the 'Auto-Dom-Filter', so that the limit is applied to all the domains within==Ви також можете поєднати це з "Авто-Дом-Фільтром", внаслідок чого межа застосовується до всіх доменів з
the given depth. Domains outside the given depth are then sorted-out anyway.== зазначеною глибиною. Домени за межами заданої глибини просто відкидаються.
-Accept URLs with '?' / dynamic URLs==Приймати URL з "?" / динамічні URL
-A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled. However, there are sometimes web pages with static content that==Знак запитання, як правило, вказує на динамічну сторінку. URL-адреси з динамічним вмістом, як правило, не сканують. Проте, інколи зустрічаються сайти з постійним вмістом,
is accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.==доступні тільки по URL що містить знак запитання. Якщо ви не впевнені, не вибирате цю функцію щоб уникнути закільцювання.
Store to Web Cache==Зберегти у кеш
This option is used by default for proxy prefetch, but is not needed for explicit crawling.==Ця настройка ввімкнена за замовчуванням для проксі, але не потрібна для сканування.
Policy for usage of Web Cache==Правила використання веб-кешу
The caching policy states when to use the cache during crawling:==Правила кешування визначають, коли кеш буде використовуватися під час сканування:
-#no cache==без кешу
no cache==без кешу
-#if fresh==якщо свіжий
if fresh==якщо свіжий
-#if exist==якщо існує
if exist==якщо існує
-#cache only==тільки кеш
cache only==тільки кеш
-never use the cache, all content from fresh internet source;==Ніколи не використовувати кеш, все брати напряму свіже;
-use the cache if the cache exists and is fresh using the proxy-fresh rules;==Використовувати кеш, якщо посилання наявне в кеші і свіже;
-use the cache if the cache exist. Do no check freshness. Otherwise use online source;==Викорисовувати кеш по можливості, без перевірки дати. В іншому випадку, використання прямого джерела;
-never go online, use all content from cache. If no cache exist, treat content as unavailable==Ніколи не виходити в мережу, брати вміст тільки з кешу. Якщо немає кешу, вважати що вміст не доступний.
-Do Local Indexing:==Місцеве індексування:
index text==Індексувати текст
index media==Індексувати медіа
-This enables indexing of the wepages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the==Це дає можливість індексування сторінок, завантажених сканувачем. Має бути ввімкнене за замовчуванням, якщо не хочете сканувати для заповнення
Document Cache without indexing.==кешу документів без індексації.
Do Remote Indexing==Виконувати віддалене індексування
Describe your intention to start this global crawl (optional)==Опишіть, чому ви починаєте це загальне сканування (не обов’язково)
@@ -1066,197 +958,238 @@ This message will appear in the 'Other Peer Crawl Start' table of other peers.==
If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==При активації сканер буде підтримувати зв’язок з іншими вузлами і використовувати їх як віддалених індексаторів для вашого сканування.
If you need your crawling results locally, you should switch this off.==Якщо вам потрібне місцеве сканування, відключіть цю функцію.
Only senior and principal peers can initiate or receive remote crawls.==Тільки Старший і Головний вузли можуть починати або приймати віддалене сканування.
-A YaCyNews message will be created to inform all peers about a global crawl==Повідомлення відображається в розділі Новин YaCy і надсилається всім вузлам мережі
so they can omit starting a crawl with the same start point.==щоб вони могли уникнути запуску сканування з тієї ж відправної точки.
-Exclude static Stop-Words==Виключити статичні стоп-слова
-This can be useful to circumvent that extremely common words are added to the database, i.e. "the", "he", "she", "it"... To exclude all words given in the file yacy.stopwords from indexing,==Це корисно для запобігання таким надзвичайно поширеним словам, як "це", "він", "та" і т.д., які входять до бази даних. Щоб виключити з індексування всі слова, що містяться у файлі yacy.stopwords,
-check this box.==відмітьте цю пташку.
-"Start New Crawl"=="Запустити нове сканування"
From Link-List of URL==Зі списку посилань
->minutes==>хвилин
also all linked non-parsable documents==також всі пов’язані необроблювані документи
-Like the MUST-Match Filter for URLs this filter must match, but only for the IP of the host.==Як Повинно-співпадати фільтр для URL, цей фільтр повинен повинен співпадати з IP машини, на якій знаходиться сайт.
-YaCy performs a DNS lookup for each host and this filter restricts the crawl to specific IPs.==YaCy здійснює DNS-пошук для кожного хосту і цей фільтр дозволює сканувати тільки певні IP.
-This filter must not match on the IP of the crawled host.==Цей фільтр повинен не співпадати з IP сканованого хосту.
-Crawls can be restricted to specific countries.==Сканування можуть бути обмежені певними країнами.
-This uses the country code that can be computed from==Ця можливість використовує код країни, вирахуваний з
-the IP of the server that hosts the page.==IP сервера, який розміщує сторінку.
-The filter is not a regular expressions but a list of country codes, separated by comma.==Фільтр не є регулярним виразом, а простим списком з кодами країн, що перелічені через кому.
no country code restriction==Без обмеження по коду країни
Must-Match List for Country Codes==Список повинно-співпадати для кодів країн
#-----------------------------
+"API"=="API"
+"info"=="інформація"
+"empty"=="порожній"
+"Show all links"=="Показати всі посилання"
+"Media Type checking info"=="Інформація про перевірку типу носія"
+"Media Type filter info"=="Інформація про фільтр медіа"
+"Solr query filter info"=="Інформація про фільтр запиту Solr"
+"Clean up search events cache info"=="Очистити кеш інформації про події пошуку"
+"Start New Crawl Job"=="Розпочати нове завдання сканування"
+Click on this API button to see a documentation of the POST request parameter for crawl starts.==Натисніть цю кнопку API, щоб переглянути документацію щодо параметра запиту POST для запуску сканування.
+You can define URLs as start points for Web page crawling and start crawling here.==Ви можете визначити URL-адреси як початкові точки для сканування веб-сторінки та розпочати сканування тут.
+"Crawling" means that YaCy will download the given website, extract all links in it and then download the content behind these links.==«Сканування» означає, що YaCy завантажить даний веб-сайт, витягне всі посилання на ньому, а потім завантажить вміст за цими посиланнями.
+This is repeated as long as specified under "Crawling Depth".==Це повторюється стільки часу, скільки вказано в розділі «Глибина сканування».
+Crawl Job==Робота сканування
+A Crawl Job consist of one or more start point, crawl limitations and document freshness rules.==Завдання сканування складається з однієї або кількох початкових точок, обмежень сканування та правил актуальності документів.
+Start Point==Початкова точка
+One Start URL or a list of URLs: (must start with http:// https:// ftp:// smb:// file://)==Один початок URL або список URL-адрес: (має починатися з http:// https:// ftp:// smb:// файл://)
+Define the start-url(s) here. You can submit more than one URL, each line one URL please.==Визначте початкову URL-адресу тут. Ви можете надіслати більше одного URL, у кожному рядку один URL, будь ласка.
+Each of these URLs are the root for a crawl start, existing start URLs are always re-loaded.==Кожна з цих URL-адрес є кореневою для початку сканування, існуючі початкові URL-адреси завжди перезавантажуються.
+From File (enter a path within your local file system)==З файлу (введіть шлях у локальній файловій системі)
+Index Attributes==Атрибути індексу
+Add Crawl result to collection (important for Index Pack generation)==Додати результат сканування до колекції (важливо для створення пакета індексів)
+A crawl result can be tagged with names which are candidates for a collection request.==Результат сканування можна позначити іменами, які є кандидатами для запиту на збір.
+Do not use underline '_' in collection name, use '-' instead. When useful, add a language code to the collection name, e.g. 'top-100-en'.==Не використовуйте підкреслення '_' у назві колекції, замість цього використовуйте '-'. За необхідності додайте код мови до назви колекції, наприклад. "топ-100-uk".
+Time Zone Offset==Зсув часового поясу
+The time zone is required when the parser detects a date in the crawled web page. Content can be searched with the on: - modifier which==Часовий пояс потрібен, коли аналізатор виявляє дату на просканованій веб-сторінці. Вміст можна шукати за допомогою on: - модифікатора which
+requires also a time zone when a query is made. To normalize all given dates, the date is stored in UTC time zone. To get the right offset==також вимагає часового поясу під час виконання запиту. Щоб нормалізувати всі задані дати, дата зберігається в часовому поясі UTC. Щоб отримати правильне зміщення
+from dates without time zones to UTC, this offset must be given here. The offset is given in minutes;==від дат без часових поясів до UTC, цей зсув має бути вказаний тут. Зсув наводиться в хвилинах;
+Time zone offsets for locations east of UTC must be negative; offsets for zones west of UTC must be positve.==Зсув часового поясу для місць на схід від UTC має бути від’ємним; зміщення для зон на захід від UTC має бути позитивним.
+Crawler Filter==Гусеничний фільтр
+These are limitations on the crawl stacker. The filters will be applied before a web page is loaded.==Це обмеження для сканера. Фільтри будуть застосовані перед завантаженням веб-сторінки.
+Indexing==Індексація
+This enables indexing of the webpages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the==Це дозволяє індексувати веб-сторінки, які сканер завантажить. Це має бути ввімкнено за умовчанням, якщо ви не хочете сканувати лише для заповнення
+A YaCyNews message will be created to inform all peers about a global crawl,==Повідомлення YaCyNews буде створено для інформування всіх однорангових користувачів про глобальне сканування,
+Remote crawl results won't be added to the local index as the remote crawler is disabled on this peer.==Результати віддаленого сканування не буде додано до локального індексу, оскільки віддалений сканер вимкнено на цьому вузлі.
+Crawling Depth==Глибина сканування
+Unlimited crawl depth for URLs matching with==Необмежена глибина сканування для URL-адрес, що збігаються з
+Maximum Pages per Domain==Максимальна кількість сторінок на домен
+Use==використання
+misc. Constraints==різне обмеження
+A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled.==Знак питання зазвичай є підказкою для динамічної сторінки. URL-адреси, що вказують на динамічний вміст, зазвичай не слід сканувати.
+However, there are sometimes web pages with static content that==Однак інколи трапляються веб-сторінки зі статичним вмістом
+Following frames is NOT done by Gxxg1e, but we do by default to have a richer content. 'nofollow' in robots metadata can be overridden; this does not affect obeying of the robots.txt which is never ignored.==Gxxg1e НЕ відстежує кадри, але ми це робимо за замовчуванням, щоб отримати багатший вміст. "nofollow" у метаданих роботів можна перевизначити; це не впливає на виконання robots.txt, який ніколи не ігнорується.
+Accept URLs with query-part ('?'):==Приймати URL-адреси з частиною запиту ('?'):
+Obey html-robots-noindex:==Дотримуйтесь html-robots-noindex:
+Obey html-robots-nofollow:==Дотримуйтесь html-robots-nofollow:
+Media Type detection==Визначення типу носія
+Not loading URLs with unsupported file extension is faster but less accurate.==Не завантажувати URL-адреси з непідтримуваним розширенням файлу швидше, але менш точно.
+Indeed, for some web resources the actual Media Type is not consistent with the URL file extension. Here are some examples:==Дійсно, для деяких веб-ресурсів фактичний тип носія не відповідає розширенню файлу URL. Ось кілька прикладів:
+Do not load URLs with an unsupported file extension==Не завантажуйте URL-адреси з непідтримуваним розширенням файлу
+Always cross check file extension against Content-Type header==Завжди перевіряйте розширення файлу з заголовком Content-Type
+Load Filter on URLs==Завантажити фільтр за URL-адресами
+Example: to allow only urls that contain the word 'science', set the must-match filter to '.*science.*'.==Приклад: щоб дозволити лише URL-адреси, які містять слово "наука", установіть фільтр обов'язкового збігу на ".*наука.*".
+must-match==обов'язковий матч
+Restrict to start domain(s)==Обмежити початкові домени
+Restrict to sub-path(s)==Обмежити підшляхом(ами)
+(must not be empty)==(не має бути порожнім)
+must-not-match==повинен-не збігатися
+Load Filter on URL origin of links==Завантажити фільтр за джерелом посилань URL
+Example: to allow loading only links from pages on example.org domain, set the must-match filter to '.*example.org.*'.==Приклад: щоб дозволити завантажувати лише посилання зі сторінок домену example.org, установіть для фільтра обов’язкового збігу значення «.*example.org.*».
+Load Filter on IPs==Фільтр навантаження за IP-адресами
+Crawls can be restricted to specific countries. This uses the country code that can be computed from==Сканування можна обмежити окремими країнами. Тут використовується код країни, який можна обчислити
+the IP of the server that hosts the page. The filter is not a regular expressions but a list of country codes, separated by comma.==IP сервера, на якому розміщено сторінку. Фільтр — це не регулярні вирази, а список кодів країн, розділених комами.
+Document Filter==Фільтр документів
+These are limitations on index feeder. The filters will be applied after a web page was loaded.==Це обмеження для індексного пристрою подачі. Фільтри будуть застосовані після завантаження веб-сторінки.
+Filter on URLs==Фільтрувати за URL-адресами
+that must not match with the URLs to allow that the content of the url is indexed.==що не має збігатися з URL-адресами, щоб дозволити індексувати вміст URL-адреси.
+No Indexing when Canonical present and Canonical != URL==Немає індексування, якщо Canonical присутній і Canonical != URL
+Filter on Content of Document (all visible text, including camel-case-tokenized url and title)==Фільтрувати за вмістом документа (увесь видимий текст, у тому числі URL-адресу та заголовок із маркерами верблюдів)
+Filter on Document Media Type (aka MIME type)==Фільтрувати за типом медіадокумента (він же тип MIME)
+that must match with the document Media Type (also known as MIME Type) to allow the URL to be indexed.==що має відповідати типу медіа документа (також відомому як тип MIME), щоб дозволити індексувати URL.
+Each parsed document is checked against the given Solr query before being added to the index.==Перш ніж додати до індексу, кожен проаналізований документ перевіряється на відповідність заданому запиту Solr.
+The embedded local Solr index must be connected to use this kind of filter.==Вбудований локальний індекс Solr має бути підключений, щоб використовувати цей тип фільтра.
+Content Filter==Фільтр вмісту
+These are limitations on parts of a document. The filter will be applied after a web page was loaded.==Це обмеження на частини документа. Фільтр буде застосовано після завантаження веб-сторінки.
+You can choose to:==Ви можете вибрати:
+Evaluate by default==Оцінити за умовчанням
+Use all words in document by default until a CSS class as listed below appears; then ignore all==Використовуйте всі слова в документі за замовчуванням, доки не з’явиться клас CSS, як зазначено нижче; то ігноруйте все
+Ignore by default==Ігнорувати за замовчуванням
+Ignore all words in document by default until a CSS class as listed below appears, then evaluate all==Ігнорувати всі слова в документі за замовчуванням, доки не з’явиться клас CSS, як зазначено нижче, а потім оцінити всі
+Filter div or nav class names==Фільтр імен класів div або nav
+comma-separated list of <div> or <nav> element class names which should be filtered out/in according to switch above.==розділений комами список імен класів елементів <div> або <nav>, які мають бути відфільтровані/in відповідно до перемикача вище.
+Clean-Up before Crawl Start==Очищення перед початком сканування
+Clean up search events cache==Очистити кеш подій пошуку
+Check this option to be sure to get fresh search results including newly crawled documents. Beware that it will also interrupt any refreshing/resorting of search results currently requested from browser-side.==Позначте цей параметр, щоб отримати свіжі результати пошуку, включаючи нещодавно проскановані документи. Майте на увазі, що це також призведе до переривання будь-якого оновлення/resorting результатів пошуку, яке зараз запитується на стороні браузера.
+No Deletion==Без видалення
+After a crawl was done in the past, document may become stale and eventually they are also deleted on the target host.==Після того, як у минулому було виконано сканування, документ може застаріти, і згодом він також буде видалено на цільовому хості.
+To remove old files from the search index it is not sufficient to just consider them for re-load but it may be necessary==Щоб видалити старі файли з індексу пошуку, недостатньо розглядати їх для повторного завантаження, але це може знадобитися
+to delete them because they simply do not exist any more. Use this in combination with re-crawl while this time should be longer.==видалити їх, тому що вони просто більше не існують. Використовуйте це в поєднанні з повторним скануванням, хоча цей час має бути довшим.
+Do not delete any document before the crawl is started.==Не видаляйте жодного документа до початку сканування.
+Delete sub-path==Видалити підшлях
+For each host in the start url list, delete all documents (in the given subpath) from that host.==Для кожного хосту в списку початкових URL-адрес видаліть усі документи (у вказаному підшляху) з цього хосту.
+Delete only old==Видалити тільки старі
+Treat documents that are loaded==Обробка завантажених документів
+ago as stale and delete them before the crawl is started.==тому як застарілі та видаліть їх перед початком сканування.
+Double-Check Rules==Правила повторної перевірки
+No Doubles==Ні Подвійки
+to use that check the 're-load' option.==щоб використовувати це, позначте опцію «перезавантажити».
+Never load any page that is already known. Only the start-url may be loaded again.==Ніколи не завантажуйте вже відомі сторінки. Знову можна завантажити лише початкову URL-адресу.
+Re-load==Перезавантажити
+ago as stale and load them again. If they are younger, they are ignored.==тому як застарілі та завантажте їх знову. Якщо вони молодші, їх ігнорують.
+Document Cache==Кеш документів
+no cache: never use the cache, all content from fresh internet source;==ні кеш: ніколи не використовувати кеш, весь вміст зі свіжого інтернет-джерела;
+if fresh: use the cache if the cache exists and is fresh using the proxy-fresh rules;==if fresh: використовувати кеш, якщо кеш існує та є свіжим за допомогою правил проксі-нового;
+if exist: use the cache if the cache exist. Do no check freshness. Otherwise use online source;==if exist: використовувати кеш, якщо кеш існує. Свіжість не перевіряти. В іншому випадку використовуйте онлайн-джерело;
+cache only: never go online, use all content from cache. If no cache exist, treat content as unavailable==кеш лише: ніколи не виходьте в Інтернет, використовуйте весь вміст із кешу. Якщо кеш-пам’яті немає, вважати вміст недоступним
+Robot Behaviour==Поведінка робота
+Use Special User Agent and robot identification==Використовуйте спеціальний агент користувача та ідентифікацію робота
+Because YaCy can be used as replacement for commercial search appliances==Оскільки YaCy можна використовувати як заміну для комерційних пошукових пристроїв
+(like the Google Search Appliance aka GSA) the user must be able to crawl all web pages that are granted to such commercial platforms.==(наприклад, Google Search Appliance, він же 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.==тут альтернативні агенти користувача, які мають інший час сканування, а також ідентифікують себе з іншим агентом користувача та підкоряються відповідним правилам роботів.
+Enrich Vocabulary==Збагачувати словниковий запас
+Scraping Fields==Поля зіскрібка
+You can use class names to enrich the terms of a vocabulary based on the text content that appears on web pages. Please write the names of classes into the matrix.==Ви можете використовувати назви класів, щоб збагатити терміни словника на основі текстового вмісту, який з’являється на веб-сторінках. Будь ласка, запишіть назви класів у матрицю.
+Vocabulary==Словниковий запас
+Class==Клас
#File: CrawlStartScanner_p.html
+hours==годин
#---------------------------
Network Scanner==Сканувач внутрішньої мережі
YaCy can scan a network segment for available http, ftp and smb server.==YaCy може сканувати частину мережі на наявність HTTP, FTP і SMB серверів.
You must first select a IP range and then, after this range is scanned,==Перш за все, необхідно вказати IP-область, а коли область буде просканована,
it is possible to select servers that had been found for a full-site crawl.==можна вибрати знайдені сервери для повного сканування сторінок.
No servers had been detected in the given IP range #[iprange]#.
-Please enter a different IP range for another scan.==Будь ласка, введіть інший IP-діапазон для сканування.
-Please wait...==Будь-ласка, зачекайте...
->Scan the network<==>Сканування мережі<
Scan Range==Сканувати область
Scan sub-range with given host==Сканувати район зазначеного хосту
-Full Intranet Scan:==Повне сканування внутрішньої мережі:
Do not use intranet scan results, you are not in an intranet environment!==Не використовуйте результати сканування внутрішньої мережі, якщо ви не у внутрішній мережі YaCy!
->Scan Cache<==>Зберігання<
accumulate scan results with access type "granted" into scan cache (do not delete old scan result)==Збір результатів з типом доступу "дозволено" в кеш (Не видаляти старі результати)
->Service Type<==>Тип служби<
-#>ftp==>FTP
-#>smb==>SMB
-#>http==>HTTP
-#>https==>HTTPS
->Scheduler<==>Планування<
run only a scan==Одиночне сканування
scan and add all sites with granted access automatically. This disables the scan cache accumulation.==Сканувати і додати всі сайти, до яких є доступ, автоматично. Ця установка вимикає кеш.
-Look every==Див. кожні
->minutes<==>хвилин<
->hours<==>годин<
->days<==>днів<
again and add new sites automatically to indexer.==і додавати нові сайти в індексувач автоматично.
Sites that do not appear during a scheduled scan period will be excluded from search results.==Сайти, які не з’являться під час сканування, будуть усунуті з результатів пошуку.
"Scan"=="Сканувати"
-timeout:==Чекати:
-ms,==мс,
-bigrange==Широка смуга
Time-Out==Чекати
-> ms==> мс
Subnet==Підмережа
-The following servers had been detected:==Були виявлені наступні сервери:
-Available server within the given IP range==Доступні сервери в межах вказаної IP-області
->Protocol<==>Протокол<
-#>IP<==>IP<
-#>URL<==>URL<
->Access<==>Доступ<
->Process<==>Обробка<
->unknown<==>невідомий<
->empty<==>порожній<
->granted<==>дозволено<
->denied<==>заборонено<
->not in index<==>не в індексі<
->indexed<==>проіндексовано<
-"Add Selected Servers to Crawler"=="Додати обрані сервери у сканування"
-The following servers can be searched:==По наступних серверах можна здійснювати пошук:
-Available server within the given IP range==Доступні сервери в межах вказаної IP-області
#-----------------------------
+Scan the network==Проскануйте мережу
+All known hosts in the search index (/31 subnet recommended!)==Усі відомі хости в індексі пошуку (рекомендується підмережа /31!)
+/31 (only the given host(s))==/31 (лише вказаний хост(и))
+/24 (254 addresses)==/24 (254 адреси)
+/20 (4064 addresses)==/20 (4064 адреси)
+/16 (65024 addresses)==/16 (65024 адреси)
+ms==РС
+Scan Cache==Кеш сканування
+Service Type==Тип послуги
+ftp==ftp
+smb==хтось
+http==http
+https==https
+Scheduler==Планувальник
+ Look every== Подивитися кожен
+minutes==хвилин
+days==днів
#File: CrawlStartSite.html
+Path==Каталог
#---------------------------
-Crawl Start<==Запуск сканування<
->Site Crawling<==>Сканування сайту<
Site Crawler:==Сканувач сайту:
Download all web pages from a given domain or base URL.==Завантажує всі сторінки з наданого домену чи URL.
->Site Crawl Start<==>Розпочати сканування сайту<
->Site<==>Сайт<
Link-List of URL==Список HTML-посилань
->Scheduler<==>Планувальник<
-run this crawl once==виконати це сканування одноразово
-scheduled, look every==заплановане, перевіряти кожні
->minutes<==>хвилин<
->hours<==>годин<
->days<==>днів<
-for new documents automatically.==автоматично на наявність нових документів.
->Path<==>Шлях<
load all files in domain==завантажити всі файли з домену
load only files in a sub-path of given url==завантажити тільки файли з підшляху даного URL
->Limitation<==>Обмеження<
-not more than <==не більше, ніж <
->documents<==>документів<
->Dynamic URLs<==>Динамічні URL<
-allow query-strings (urls with a '?' in the path)==дозволити рядки-запити (URL зі "?" в шляху)
->Start<==>Запуск<
"Start New Crawl"=="Запустити нове сканування"
-Hints<==Підказки<
->Crawl Speed Limitation<==>Обмеження швидкості сканування<
-No more that two pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.==Для зменшення навантаження на кінцевий сервер, буде завантажуватись не більше, ніж 2 сторінки за секунду з одного хосту (не більше 120 сторінок за хвилину).
->Target Balancer<==>Цільовий балансир<
A second crawl for a different host increases the throughput to a maximum of 240 documents per minute since the crawler balances the load over all hosts.==Друге сканування іншого хосту пришвидшує обробку до щонайбільш 240 документів за хвилину, так-як балансир сканування розподілює навантаження між всіма кінцевими машинами.
->High Speed Crawling<==>Швидкісне сканування<
A 'shallow crawl' which is not limited to a single host (or site)=="Миттєве сканування", що не обмежене окремим хостом (чи сайтом)
can extend the pages per minute (ppm) rate to unlimited documents per minute when the number of target hosts is high.==може розширити Сторіки За Хвилину (ppm) до нескінченної кількості документів за хвилину, коли кількість кінцевих хостів велика.
-This can be done using the Expert Crawl Start servlet.==Це може бути здійснене з допомогою сервлетів Сканування (Знавець).
->Scheduler Steering<==>Плановий контроль<
-The scheduler on crawls can be changed or removed using Automation.==Заплановане виконання сканування може бути змінене або видалене з API.
-Start URL==Початкова URL
Sitemap URL==Карта сайту
#-----------------------------
+"empty"=="порожній"
+"Show all links"=="Показати всі посилання"
+Site Crawling==Сканування сайту
+Site Crawl Start==Початок сканування сайту
+Site==Сайт
+Start URL (must start with http:// https:// ftp:// smb:// file://)==Початок URL (має починатися з http:// https:// ftp:// smb:// файл://)
+Limitation==Обмеження
+not more than==не більше ніж
+documents==документів
+Collection==Колекція
+Start==старт
+Hints==Підказки
+Crawl Speed Limitation==Обмеження швидкості сканування
+No more that four pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.==Не більше чотирьох сторінок завантажуються з одного хосту за одну секунду (не більше 120 документів на хвилину), щоб обмежити навантаження на цільовий сервер.
+Target Balancer==Цільовий балансир
+High Speed Crawling==Високошвидкісне сканування
+Scheduler Steering==Кермове керування планувальником
#File: Help.html
#---------------------------
YaCy: Tutorial==YaCy: Підручник
-YaCy: Help==YaCy: Допомога
->Tutorial==>Підручник
-You are using the administration interface of your own search engine==Ви використовуєте інтерфейс адміністрування вашого власного пошукового двигуна
-You can create your own search index with YaCy==Ви можете створити свій власний пошуковий індекс YaCy
-To learn how to do that, watch one of the demonstration videos below==Див. демонстрацію в якості орієнтира (2-е відео нижче німецькою мовою)
->More Tutorials==>Більше підручників
-Please see the tutorials on==Будь-ласка, дивіться підручники на
->twitter this video<==>твітнути це відео<
-Download from Vimeo:==Завантажити з Vimeo:
#-----------------------------
+Tutorial==Підручник
+You are using the administration interface of your own search engine. You can create your own search index with YaCy.==Ви використовуєте інтерфейс адміністрування власної пошукової системи. Ви можете створити власний індекс пошуку за допомогою YaCy.
+To learn how to do that, watch one of the demonstration videos below:==Щоб дізнатися, як це зробити, перегляньте одне з демонстраційних відео нижче:
+twitter this video==розмістити це відео в Twitter
+More Tutorials==Більше посібників
#File: index.html
+Search==Пошук
#---------------------------
-==
-YaCy '#[clientname]#': Search Page==YaCy '#[clientname]#': Сторінка пошуку
-kiosk mode==режим кіоску
-"Search"=="Пошук"
Text==Текст
Images==Зображення
Audio==Аудіо
Video==Відео
Applications==Додатки
more options...==більше налаштувань...
-advanced parameters==розширені параметри
-Max. number of results==Макс. кількість результатів
Results per page==Результатів на сторінку
Resource==Джерело
-global==global
->local==>lokal
-Global search is disabled because==Глобальний пошук відключений, тому що
-DHT Distribution is==DHT-розподіл
-Index Receive is==прийом індексу
-DHT Distribution and Index Receive are==DHT-розподіл і прийом індексу
-disabled.#(==вимкнено.#(
-URL mask==URL-фільтр
restrict on==обмежено до
show all==показати все
#überarbeiten!!!
Prefer mask==Віддавати перевагу
-Constraints==Обмеження
only index pages==Лише індексні сторінки
-"authentication required"=="потрібна авіторизація"
-Disable search function for users without authorization==Вимкнути пошук для неавторизованих користувачів
-Enable web search to everyone==Дозволити пошук для всіх
the peer-to-peer network==однорангова мережа
only the local index==тільки локальний індекс
Query Operators==Оператори пошуку
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-annotated==тільки сторінки з вказаним автором
-only pages from top-level-domains==тільки сторінки з домену верхнього рівня
only resources from http or https servers==тільки ресурси з HTTP- чи HTTPS-серверів
-only resources from ftp servers==тільки ресурси з FTP-серверів
-they are rare==більш рідкісні
-crawl them yourself==проскануйте їх самостійно
-only resources from smb servers==тільки ресурси з SMB-серверів
-Intranet Indexing must be selected==Індексування внутрішньої мережі повинно бути вибране
-only files from a local file system==тільки файли з локальної файлової системи
ranking modifier==ранжування
-sort by date==сортувати за датою
-latest first==останні спочатку
multiple words shall appear near==Кілька слів повинні бути близько один від одного
-doublequotes==лапки
-prefer given language==Віддавати перевагу вказаній мові
-an ISO 639-1 2-letter code==2-буквенний код ISO 639-1
heuristics==евристика
-add search results from ==додати пошукові результати з
Search Navigation==Пошукова навігація
keyboard shortcuts==швидкий доступ
next result page==наступна сторінка результатів
@@ -1265,84 +1198,68 @@ automatic result retrieval==автоматичне одержання резул
browser integration==вбудовування в переглядач
after searching, click-open on the default search engine in the upper right search field of your browser and select 'Add "YaCy Search.."'==Після пошуку, натисніть на пошукове поле переглядача і виберіть "Додати "Пошук YaCy.."
search as rss feed==пошук як rss
-click on the red icon in the upper right after a search. this works good in combination with the '/date' ranking modifier. See an==Після пошуку клацніть по червоному значку у верхньому правому куті. Гарно працює з оператором "/date":
->example==>приклад
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"
#-----------------------------
+"Extend media search results (images, videos or applications specific) to pages including such medias (provides generally more results, but eventually less relevant)."=="Розширити результати пошуку медіафайлів (зображення, відео чи спеціальні програми) на сторінки, що містять такі медіафайли (загалом надає більше результатів, але з часом менш релевантні)."
+"Strictly limit media search results (images, videos or applications specific) to indexed documents matching exactly the desired content domain."=="Строго обмежте результати медіа-пошуку (зображень, відео чи окремих програм) індексованими документами, які точно відповідають бажаному домену вмісту."
+"Reference alpha-2 language codes list"=="Довідковий список кодів мов альфа-2"
+Constraints:==Обмеження:
+Media search==Медіа пошук
+Extended==Розширений
+Strict==Суворий
+inurl:<phrase>==inurl:<phrase>
+inlink:<phrase>==вхідне посилання:<фраза>
+only urls with the <phrase> within outbound links of the document==лише URL-адреси з <фразою> у вихідних посиланнях документа
+filetype:<ext>==тип файлу:<ext>
+only urls with extension <ext>==лише URL-адреси з розширенням <ext>
+site:<host>==сайт:<host>
+only urls from host <host>==лише URL-адреси з хосту <host>
+author:<author>==автор:<автор>
+only pages with as-author-annotated <author>==лише сторінки з позначкою автора <author>
+tld:<tld>==tld:<tld>
+only pages from top-level-domains <tld>==лише сторінки з доменів верхнього рівня <tld>
+on:<date>==на:<дата>
+only pages with <date> in content==лише сторінки з <датою> у вмісті
+from:<date1> to:<date2>==з:<date1> до:<date2>
+only pages with a date between <date1> and <date2> in content==лише сторінки з датою між <date1> та <date2> у вмісті
+keyword:<phrase>==ключове слово:<фраза>
+only pages with keyword anotation containing <phrase>==лише сторінки з анотацією до ключового слова, що містить <фразу>
+/http==/http
+/ftp==/ftp
+/smb==/smb
+/file==/file
+spatial restrictions==просторові обмеження
+/location==/location
+only documents having location metadata (geographical coordinates)==лише документи, що мають метадані розташування (географічні координати)
+/radius/<latitude>/<longitude>/<distance>==/radius/<latitude>/<longitude>/<distance>
+only documents within a square zone embracing a circle of given radius (in decimal degrees) around the specified latitude and longitude (in decimal degrees)==лише документи в межах квадратної зони, що охоплює коло заданого радіуса (у десяткових градусах) навколо вказаної широти та довготи (у десяткових градусах)
+/date==/date
+sort by date (latest first)==сортувати за датою (спочатку останні)
+/near==/near
+"" (doublequotes)=="" (подвійні лапки)
+/language/<lang>==/language/<lang>
+/heuristic==/heuristic
+add search results from external opensearch systems==додати результати пошуку із зовнішніх відкритих пошукових систем
#File: IndexControlRWIs_p.html
+Resource==Джерело
#---------------------------
Reverse Word Index Administration==Керування Зворотним Індексом Слів
-The local index currently contains #[wcount]# reverse word indexes==Місцевий індекс на даний час містить #[wcount]# зворотніх слів
RWI Retrieval (= search for a single word)==Отримання RWI (= Пошук одиночного слова)
-Select Segment:==Виберіть частину:
-Retrieve by Word:<==Отримання за словом:<
"Show URL Entries for Word"=="Показати URL-записи для слова"
-Retrieve by Word-Hash==Отримання за хешем слова
"Show URL Entries for Word-Hash"=="Показати URL-записи для хешу"
"Generate List"=="Створити список"
-Cleanup==Очистити
->Index Deletion<==>Видалення індексу<
->Delete Search Index<==>Видалити пошуковий індекс<
-Stop Crawler and delete Crawl Queues==Зупинити сканувач і видалити черги сканування
-Delete HTTP & FTP Cache==Видалити HTTP & FTP кеші
-Delete robots.txt Cache==Видалити кеш robots.txt
-Delete cached snippet-fetching failures during search==Видалити збережені помилки отримання частин під час пошуку
-"Delete"=="Видалити"
-No entry for word '#[word]#'==Жодного запису для слова "#[word]#"
-No entry for word hash==Жодного запису для контр.суми слова
-Search result==Результати пошуку
-total URLs==всього URL
-appearance in==з’являються в
-in link type==в типі посилання
-document type==типі документу
-
description
==
Опис
-
title
==
Заголовок
-
creator
==
Творець
-
subject
==
Тема
-
url
==
URL
-
emphasized
==
наголошено
-
image
==
Зображення
-
audio
==
Звук
-
video
==
Відео
-
app
==
Додаток
-index of==Index of
->Selection==>Вибір
Display URL List==Показати URL-список
-Number of lines==Кількість рядків
all lines==всі рядки
"List Selected URLs"=="Показати вибрані URL"
Transfer RWI to other Peer==Перенесення RWI на інший вузол
-Transfer by Word-Hash==Перенести через хеші слів
"Transfer to other peer"=="Відправити на інший вузол"
-to Peer==на вузол
-
select==
виберіть
-or enter a hash==чи введіть контр.суму
-Sequential List of Word-Hashes==Послідовний список хешів URL
No URL entries related to this word hash==Жодного URL-запису для контр.суми цього слова
-
#[count]# URL entries related to this word hash==
#[count]# URL-записів для контр.суми цього слова
-Resource==Ресурс
Negative Ranking Factors==Негативні фактори ранжування
Positive Ranking Factors==Позитивні фактори ранжування
Reverse Normalized Weighted Ranking Sum==Зворотня нормована зважена сума рангу
-hash==Контр.сума
-dom length==Довжина домену
-ybr==YBR
#url comps
-url length==Довжина URL
-pos in text==Місце в тексті
-pos of phrase==Місце виразу
-pos in phrase==Місце у виразі
-word distance==Відстань між словами
-
authority
==
Авторство
-
date
==
Дата
-words in title==Слова в заголовку
-words in text==Слова в тексті
-local links==місцеві посилання
-remote links==віддалені посилання
-hitcount==Кількість звернень
-#props==
unresolved URL Hash==недозволена контр.сума URL
Word Deletion==Видалення слова
Deletion of selected URLs==Видалення вибраних URL
@@ -1355,62 +1272,71 @@ the reference exists (very extensive, but prevents further unresolved references
Blacklist Extension==Розширення чорного списку
"Add selected URLs to blacklist"=="Додати вибрані URL в чорний список"
"Add selected domains to blacklist"=="Додати вибрані домени в чорний список"
->Limitations==>Обмеження
Index Reference Size==Кількість посилань
No reference size limitation (this may cause strong CPU load when words are searched that appear very often)==Без обмеження кількості посилань (може викликати сильне завантаженння CPU при пошуку дуже частих слів)
-Limitation of number of references per word==Обмеження кількості посилань на слово
-this causes that old references als deleted if that limit is reached==старіші посилання видаляються, якщо межа досягнена
->Set References Limit<==>Виставити обмеження посилань<
#-----------------------------
+Retrieve by Word:==Отримати за допомогою Word:
+Retrieve by Word-Hash:==Отримати за допомогою Word-Hash:
+Limitations==Обмеження
+Limitation of number of references per word:==Обмеження кількості посилань на слово:
+(this causes that old references are deleted if that limit is reached)==(це призводить до того, що старі посилання видаляються, якщо цей ліміт досягнуто)
+Set References Limit==Встановити ліміт посилань
+Search result:==Результат пошуку:
+total URLs==загальна кількість URL-адрес
+appearance in==поява в
+in link type==у типі посилання
+document type==тип документа
+description==опис
+title==назва
+creator==творець
+subject==тема
+url==url
+emphasized==підкреслено
+image==зображення
+audio==аудіо
+video==відео
+app==додаток
+index of==індекс
+Selection==Вибір
+Number of lines:==Кількість ліній:
+Transfer by Word-Hash:==Передача за допомогою Word-Hash:
+to Peer:==до Peer:
+select==вибрати
+or enter a hash or peer name:==або введіть хеш або ім'я однорангового пристрою:
+Sequential List of Word-Hashes:==Послідовний список хешів слів:
+props==реквізит
+hash==хеш
+dom length==довжина будинку
+url comps==url comps
+url length==довжина url
+pos in text==поз в тексті
+pos of phrase==поз фрази
+pos in phrase==поз у фразі
+term frequency==частота терміну
+authority==повноваження
+date==дата
+words in title==слова в заголовку
+words in text==слова в тексті
+local links==локальні посилання
+remote links==віддалені посилання
+hitcount==кількість звернень
#File: IndexControlURLs_p.html
+"Delete"=="Видалити"
+Cleanup==Очистити
+Click the API icon to see an example call to the search rss API.==Щиглик API, щоб побачити зразок виклику пошукового API RSS.
+Delete HTTP & FTP Cache==Видалити HTTP & FTP кеш
+Delete robots.txt Cache==Видалити robots.txt кеш
+Domain==Домен
#---------------------------
-URL References Administration==Керування URL-посиланнями
-The local index currently contains #[ucount]# URL references==Місцевий індекс на даний момент містить #[ucount]# URL-посилань
URL Retrieval==Отримання URL
-Select Segment:==Виберіть частину:
-Retrieve by URL:<==Отримання за URL:<
-Retrieve by URL-Hash==Отримання за хешем URL
"Show Details for URL"=="Показати подробиці для URL"
"Show Details for URL-Hash"=="Показати подробиці для хешу"
-"Generate List"=="Створити список"
Statistics about top-domains in URL Database==Статистика щодо доменів в БД URL
Show top==Показати
domains from all URLs.==доменів з усіх URL.
"Generate Statistics"=="Створити статистику"
-Statistics about the top-#[domains]# domains in the database:==Статистика щодо Top-#[domains]# доменів в БД:
"delete all"=="Видалити всі"
-#Domain==Домен
-#URLs==URL
-Sequential List of URL-Hashes==Послідовний список URL-хешів
-Loaded URL Export==Експорт завантажених URL
-Export File==Файл для експорту
-URL Filter==Фільтр URL
-Export Format==Формат експорту
-#Only Domain (superfast)==Тільки домени (дуже швидко)
-Only Domain:==Тільки домени:
-Full URL List:==Список всіх URL:
-Plain Text List (domains only)==Список звичайним текстом (лише домени)
-HTML (domains as URLs, no title)==HTML (домени як URL, без заголовку)
-#Full URL List (high IO)==Список зі всіма URL (значне IO)
-Plain Text List (URLs only)==Список звичайним текстом (тільки URL)
-HTML (URLs with title)==HTML (URL з заголовком)
-#XML (RSS)==XML (RSS)
-"Export URLs"=="Експортувати URL"
-Export to file #[exportfile]# is running .. #[urlcount]# URLs so far==Виконується експортування в файл #[exportfile]# .. #[urlcount]# URL наразі
-Finished export of #[urlcount]# URLs to file==Експортування #[urlcount]# URL в файл завершено
-Export to file #[exportfile]# failed:==Експортування в файл #[exportfile]# скінчилося невдачею:
-No entry found for URL-hash==Жодного запису не виявлено для контрольної суми URL
-#URL String==URL-адреса
-#Hash==Хеш
-#Description==Опис
-#Modified-Date==Дата зміни
-#Loaded-Date==Дата завантаження
-#Referrer==Реферер
-#Doctype==Тип документу
-#Language==Мова
-#Size==Розмір
-#Words==Слів
"Show Content"=="Показати вміст"
"Delete URL"=="Видалити URL"
this may produce unresolved references at other word indexes but they do not harm==це може призвести до недозволених посилань на інші індекси слів, але без пошкоджень
@@ -1418,32 +1344,45 @@ this may produce unresolved references at other word indexes but they do not har
delete the reference to this url at every other word where the reference exists (very extensive, but prevents unresolved references)==видаляє посилання на цей URL на будь-яких інших словах, де існує посилання (вельми всеосяжно, але рятує від недозволених посилань)
#-----------------------------
+"API"=="API"
+"Optimize Solr"=="Оптимізувати Solr"
+"Shut Down and Re-Start Solr"=="Вимкніть і перезапустіть Solr"
+URL Database Administration==URL Адміністрування бази даних
+Retrieve by URL:==Отримати до URL:
+Retrieve by URL-Hash:==Отримати URL-Хеш:
+Index Deletion==Видалення індексу
+Delete local search index (embedded Solr and old Metadata)==Видалити індекс локального пошуку (вбудований Solr і старі метадані)
+Delete remote solr index==Видалити віддалений індекс solr
+Delete RWI Index (DHT transmission words)==Видалити індекс RWI (DHT слів передачі)
+Delete Citation Index (linking between URLs)==Видалити індекс цитування (посилання між URL-адресами)
+Delete First-Seen Date Table==Видалити таблицю дат першого перегляду
+Stop Crawler and delete Crawl Queues==Зупиніть сканер і видаліть черги сканування
+Optimize Solr==Оптимізувати Solr
+merge to max.==злити до макс.
+segments==сегменти
+Reboot Solr Core==Перезавантажте Solr Core
+This feature is available when using exclusively a local embedded Solr.==Ця функція доступна, якщо використовується виключно локальний вбудований Solr.
+URLs==URL-адреси
#File: IndexCreateLoaderQueue_p.html
+Status==Стан
#---------------------------
Loader Queue==Черги завантаження
The loader set is empty==Черга завантажувача порожня.
-There are #[num]# entries in the loader set:==В завантажувачі #[num]# записів:
Initiator==Зачинщик
Depth==Глибина
-#URL==URL
#-----------------------------
+URL==URL
#File: IndexCreateParserErrors_p.html
#---------------------------
-Parser Errors==Помилки обробника
-Rejected URL List:==Список відхилених URL:
-There are #[num]# entries in the rejected-urls list.==В списку відхилених URL #[num]# записів.
-Showing latest #[num]# entries.==Показано #[num]# останніх записів.
"show more"=="Показати більше"
"clear list"=="Очистити список"
-There are #[num]# entries in the rejected-queue:==В черзі відхилених URL #[num]# записів:
-Initiator==Зачинщик
-Executor==Виконавець
-#URL==URL
Fail-Reason==Причина помилки
Rejected URLs==Відхилені URL
#-----------------------------
+Time==час
+URL==URL
#File: ContentIntegrationPHPBB3_p.html
#---------------------------
Content Integration: Retrieval from phpBB3 Databases==Вбудовування вмісту: Видобування з БД phpBB3
@@ -1451,103 +1390,101 @@ It is possible to extract texts directly from mySQL and postgreSQL databases.==
Each extraction is specific to the data that is hosted in the database.==Кожен захід видобуває саме ті записи, які розміщені в базі даних.
This interface gives you access to the phpBB3 forums software content.==Ця оболонка дозволяє отримати доступ до вмісту програмного забезпечення форуму phpBB3.
If you read from an imported database, here are some hints to get around problems when importing dumps in phpMyAdmin:==Якщо портібно читати з імпортованої бази даних, ось кілька порад для уникннення проблем при імпортуванні dump'ів бази даних в PHPMyAdmin.
-before importing large database dumps, set the following Line==Перед імпортуванням великих dump'ів бази даних впишіть наступний рядок
-in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB)==в phpmyadmin/config.inc.php і збережіть файл бази даних в /tmp (в іншому випадку неможливо завантажити файл розміром більше 2 Мб)
deselect the partial import flag==Зніміть прапорець часткового імпорту
When an export is started, pack files are generated into DATA/PACKS/load which are automatically fetched by an indexer thread.==При запуску експорту в DATA/PACKS/load створюються допоміжні файли, які автоматично вилучаються та опрацьовуються потоком індексувача.
All indexed pack files are then moved to DATA/PACKS/loaded and can be re-cycled when an index is deleted.==Всі проіндексовані допоміжні файли потім переміщуються в DATA/PACKS/loaded, і можуть бути знову оброблені, якщо індекс буде видалено.
-The URL stub, like https://community.searchlab.eu==Частина URL, як наприклад, https://community.searchlab.eu
-this must be the path right in front of '/viewtopic.php?'==повний шлях перед "/viewtopic.php?"
-Type==Тип
-Host of the database<==Ім’я хосту БД<
-of database (use either 'mysql' or 'pgsql')==БД ("mysql" або "pgsql")
-Port of database service==Порт служби БД
-usually 3306 for mySQL==зазвичай 3306 для MySQL
-Name of the database==Ім’я БД
-on the host==на хості
-Table prefix string==Рядок префікса таблиці
-for table names==для імен таблиць
-User==Користувач
-that can access the database==з доступом до БД
-Password==Пароль
-for the account of that user given above==для доступу вищезазначеним користувачем
-Posts per file==Повідомлень на файл
-in exported packs==в експортованому допоміжному файлі
-Check database connection==Перевірити підключення до бази даних
-Export Content to Packs==Експортувати вміст до допоміжних файлів
-Import a database dump==Імпорт виписок бази даних
-Import Dump==Імпортувати dump бази даних
Posts in database==Повідомлень у базі даних
first entry==перший запис
last entry==останній запис
-Info failed:==Інформаційна помилка:
-Export successful! Wrote #[files]# files in DATA/PACKS/load==Експортування завершилось успіхом! #[files]# файлів записано в DATA/PACKS/load
-Export failed:==Збій при експорті:
Import successful!==Імпорт завершився успіхом!
-Import failed:==Не вдалося імпортувати:
#-----------------------------
+"Check database connection"=="Перевірте підключення до бази даних"
+"Export Content to Packs"=="Експорт вмісту в пакети"
+"Import Dump"=="Дамп імпорту"
+before importing large database dumps, set the following Line in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB):==перш ніж імпортувати великі дампи бази даних, установіть такий рядок у phpmyadmin/config.inc.php і розмістіть файл дампа в /tmp (інакше неможливо завантажити файли розміром більше 2 Мб):
+The URL stub, like http://forum.yacy-websuche.de this must be the path right in front of '/viewtopic.php?'==Заглушка URL, як http://forum.yacy-websuche.de це має бути шлях безпосередньо перед '/viewtopic.php?'
+Type of database (use either 'mysql' or 'pgsql')==Тип бази даних (використовуйте «mysql» або «pgsql»)
+Host of the database==Хост бази даних
+Port of database service (usually 3306 for mySQL)==Порт служби бази даних (зазвичай 3306 для mySQL)
+Name of the database on the host==Назва бази даних на хості
+Table prefix string for table names==Рядок префікса таблиці для імен таблиць
+User that can access the database==Користувач, який має доступ до бази даних
+Password for the account of that user given above==Пароль для облікового запису цього користувача, указаний вище
+Posts per file in exported packs==Публікацій на файл в експортованих пакетах
+Import a database dump,==Імпортувати дамп бази даних,
#File: DictionaryLoader_p.html
+Action==Дія
+Status==Стан
+deactivated==вимкнені
#---------------------------
-Dictionary Loader==Завантаження словника
YaCy can use external libraries to enable or enhance some functions. These libraries are not==YaCy може використовувати зовнішні бібліотеки для розширення або ввімкнення певних можливостей. Ці бібліотеки не
included in the main release of YaCy because they would increase the application file too much.==входять в стандартний випуск YaCy, бо це призвело б до значного збільшення розміру установки.
You can download additional files here.==Ви можете завантажити додаткові файли тут.
->Geolocalization<==>Географічне положення<
Geolocalization will enable YaCy to present locations from OpenStreetMap according to given search words.==Географічне положення дозволяє YaCy визначати місця на OpenStreetMap відповідно до заданих умов пошуку.
->GeoNames<==>Географічні назви<
-With this file it is possible to find cities with a population > 1000 all over the world.==З допомогою цього файлу можна знайти міста по всьому світу, які мають більш ніж 1000 жителів.
->Download from<==>Завантажити з<
->Storage location<==>Розташування<
->Status<==>Стан<
->not loaded<==>не завантажено<
->loaded<==>завантажено<
-:deactivated==:вимкнено
->Action<==>Дія<
->Result<==>Результат<
"Load"=="Завантажити"
"Deactivate"=="Вимкнути"
"Remove"=="Видалити"
"Activate"=="Ввімкнути"
->loaded and activated dictionary file<==>Файл словника завантажений і увімкнений<
->loading of dictionary file failed: #[error]#<==>Завантаження файлу словника не вдалося: #[error]#<
->deactivated and removed dictionary file<==>Файл словника вимкнений і видалений<
->cannot remove dictionary file: #[error]#<==>Файл словника не може бути видалений: #[error]#<
->deactivated dictionary file<==>Файл словника вимкнений<
->cannot deactivate dictionary file: #[error]#<==>Файл словника не може бути вимкнений: #[error]#<
->activated dictionary file<==>Файл словника увімкнений<
->cannot activate dictionary file: #[error]#<==>Файл словника не може бути увімкнений: #[error]#<
-#>OpenGeoDB<==>OpenGeoDB<
->With this file it is possible to find locations in Germany using the location (city) name, a zip code, a car sign or a telephone pre-dial number.<==>З допомогою цього файлу можна знайти місця у Німеччині на основі найменування (міста), поштового індексу, номерного знаку або телефонного коду області.<
Suggestions==Підказки
Suggestion dictionaries will help YaCy to provide better suggestions during the input of search words==Словники підказок допомагають YaCy надавати кращі пошукові пропозиції під час введення слів.
This file provides 100000 most common german words for suggestions==Цей файл надає 100000 найбільш вживаних німецьких слів для підказок.
#-----------------------------
+Knowledge Loader==Завантажувач знань
+Geolocalization==Геолокалізація
+GeoNames==GeoNames
+With this file it is possible to find cities all over the world.==За допомогою цього файлу можна знайти міста по всьому світу.
+Content==Зміст
+cities with a population > 1000 all over the world==міст з населенням > 1000 по всьому світу
+Download from==Завантажити з
+Storage location==Місце зберігання
+not loaded==не завантажений
+loaded==завантажений
+Result==Результат
+loaded and activated dictionary file==завантажений і активований файл словника
+deactivated and removed dictionary file==дезактивовано та видалено файл словника
+deactivated dictionary file==дезактивований файл словника
+activated dictionary file==активований файл словника
+cities with a population > 5000 all over the world==міста з населенням > 5000 по всьому світу
+cities with a population > 100000 all over the world (the set is is reduced to cities > 100000)==міста з населенням > 100 000 по всьому світу (набір скорочено до міст > 100 000)
+OpenGeoDB==OpenGeoDB
+With this file it is possible to find locations in Germany using the location (city) name, a zip code, a car sign or a telephone pre-dial number.==За допомогою цього файлу можна знайти місця в Німеччині, використовуючи назву місця (міста), поштовий індекс, автомобільний знак або номер попереднього набору телефону.
+Downloaded from==Завантажено з
+loaded - can be upgraded using the Load button for the new URL==завантажено - можна оновити за допомогою кнопки "Завантажити" для нового URL
+loaded and upgraded dictionary file==завантажений і оновлений файл словника
+DeReWo - Korpusbasierte Grund-/Wortformenlisten (German) of 'Institut für Deutsche Sprache'==DeReWo - Korpusbasierte Grund-/Wortformenlisten (німецька) «Institut für Deutsche Sprache»
+Synonyms==Синоніми
+Synonyms are used to find not only the searched word but also their synonyms. This is done by adding all synonyms of words in documents to the document and searching the synonyms as well.==Синоніми використовуються для пошуку не лише шуканого слова, а й його синонімів. Це робиться шляхом додавання всіх синонімів слів у документах до документа та пошуку синонімів.
+OpenThesaurus - German Thesaurus from http://www.openthesaurus.de==OpenThesaurus - німецький тезаурус від http://www.openthesaurus.de
+The data from this source was converted to the YaCy synonym file format and part of the YaCy distribution.==Дані з цього джерела перетворено у формат файлу синонімів YaCy і є частиною розподілу YaCy.
+Deactivated==Деактивовано
+Activated==активовано
+Moby Lexicon - English Thesaurus from https://www.gutenberg.org/ebooks/3202==Moby Lexicon - Тезаурус англійської мови від https://www.gutenberg.org/ebooks/3202
+Russian Thesaurus==Російський тезаурус
+The data was converted to the YaCy synonym file format and part of the YaCy distribution.==Дані перетворено у формат файлу синонімів YaCy і є частиною розподілу YaCy.
#File: IndexCreateQueues_p.html
+Depth==Глибина
+Initiator==Зачинщик
#---------------------------
-#Crawl Queue<==Crawl Queue<
-#Click on this API button to see an XML with information about the crawler latency and other statistics.==Click on this API button to see an XML with information about the crawler latency and other statistics.
-#This crawler queue is empty==This crawler queue is empty
Delete Entries:==Видалити записи:
"Delete"=="Видалити"
-#>Count<==>Count<
->Initiator<==>Зачинщик<
->Profile<==>Профіль<
->Depth<==>Глибина<
Modified Date==Дата зміни
Anchor Name==Ім’я якоря
#-----------------------------
+"API"=="API"
+Click on this API button to see an XML with information about the crawler latency and other statistics.==Натисніть цю кнопку API, щоб переглянути XML з інформацією про затримку сканера та іншу статистику.
+This crawler queue is empty==Ця черга сканера порожня
+Profile==Профіль
+URL==URL
+Count==Граф
+Delta/ms==Delta/ms
+Host==Хост
#File: IndexImportMediawiki_p.html
#---------------------------
MediaWiki Dump Import==Імпорт Dump'у MediaWiki
No import thread is running, you can start a new thread here==Ви можете запустити новий потік, оскільки в даний час немає робочих потоків імпорту.
-Bad input data:==Неприпустимі вхідні дані:
-#MediaWiki Dump File Selection: select a 'bz2' file==Вибір файлу Dump'у MediaWiki: Виберіть файл "bz2"
-MediaWiki Dump File Selection: select a xml file (which may be bz2- or gz-encoded)==Вибір файлу Dump'у MediaWiki: Виберіть файл xml (може бути запакований bz2 або gz)
-You can import MediaWiki dumps here. An example is the file==Тут ви можете імпортувати dump'и MediaWiki. Приклад файлу
-Dumps must be in XML format and may be compressed in gz or bz2. Place the file in the YaCy folder or in one of its sub-folders.==Dump'и повинні бути в XML-форматі і стиснутими bz2. Помістіть файл у каталог YaCy або в його підпапку.
"Import MediaWiki Dump"=="Імпортувати Dump MediaWiki"
When the import is started, the following happens:==Коли імпортування запущене, відбувається наступне:
The dump is extracted on the fly and wiki entries are translated into Dublin Core data format. The output looks like this:==Dump видобувається під час виконання і wiki-записи переводяться у формат Dublin Core. Результат виглядає наступним чином:
@@ -1558,68 +1495,60 @@ When a pack file is finished with indexing, it is moved to /DATA/PACKS/loaded==
You can recycle processed pack files by moving them from /DATA/PACKS/loaded to /DATA/PACKS/load==Ви можете переобробити вже оброблені сурогатні файли, перемістивши їх з /DATA/PACKS/loaded в /DATA/PACKS/load.
Import Process==Процес імпорту
Thread:==Потік:
-#Dump:==Dump:
Processed:==Оброблені:
-Wiki Entries==записів Wiki
Speed:==швидкість:
-articles per second<==Статтей за секунду<
Running Time:==Час роботи:
-hours,==годин,
-minutes<==хвилин<
Remaining Time:==Залишилось часу:
-#hours,==шодин,
-#minutes<==хвилин<
#-----------------------------
+"Uniform Resource Locator"=="Уніфікований покажчик ресурсів"
+"Dump file path on this YaCy server file system, or any remote URL"=="Шлях файлу дампа на цій файловій системі сервера YaCy або будь-якому віддаленому URL"
+Error : dump URL is malformed.==Помилка: дамп URL має неправильний формат.
+MediaWiki Dump File Selection==Вибір файлу дампа MediaWiki
+Dumps can be stored in the local file system or on a remote server in XML format and may be compressed in gz or bz2.==Дампи можна зберігати в локальній файловій системі або на віддаленому сервері у форматі XML і стискати в gz або bz2.
+Dump file path or URL==Шлях файлу дампа або URL
+Import only when modified since last import==Імпортувати, лише коли змінено після останнього імпорту
+When checked, the dump file is imported only if its last modified date is unknown or is after the last import execution date on this same file==Якщо позначено, файл дампа імпортується, лише якщо дата його останньої зміни невідома або наступає після останньої дати виконання імпорту цього файлу
+started==почався
+running==біг
+Dump:==Дамп:
#File: IndexImportOAIPMH_p.html
#---------------------------
OAI-PMH Import==Імпорт OAI-PMH
-Results from the import can be monitored in the indexing results for packs==Наслідки імпортування знаходяться на сторінці наслідків імпорту "заміщень"
Single request import==Імпортування одиночним запитом
This will submit only a single request as given here to a OAI-PMH server and imports records into the index==При цьому способі тільки один запит відправляється до OAI-PMH сервера і отримані записи додаються в індекс
"Import OAI-PMH source"=="Імпортувати джерело OAI-PMH"
Source:==Джерело:
Processed:==Оброблені:
-records<==записи<
-#ResumptionToken:==ЗнакПовернення:
-Import failed:==Не вдалося імпортувати:
Import all Records from a server==Імпортування всіх даних з сервера
Import all records that follow according to resumption elements into index==Імпортувати всі наступні записи відповідно до елементів відновлення в індекс
"import this source"=="Імпортувати це джерело"
-::or ==::або
"import from a list"=="Імпортувати зі списку"
Import started!==Імпортування почалось!
-Bad input data:==Неприпустимі вхідні дані:
#-----------------------------
+ResumptionToken:==ResumptionToken:
+or==або
#File: IndexImportOAIPMHList_p.html
+Thread==Потік
#---------------------------
-List of #[num]# OAI-PMH Servers==Список #[num]# серверів OAI-PMH
"Load Selected Sources"=="Завантажити вибрані джерела"
-OAI-PMH source import list==Завантаження списку джерел OAI-PMH
-#OAI Source List==Завантаження списку джерел OAI
->Source<==>Джерело<
Import List==Імпортувати список
->Thread<==>Потік<
->Processed Chunks<==>Оброблені записи<
->Imported Records<==>Внесені записи<
->Speed (records/second)==>Швидкість ==(записів/секунду)
Complete at # Records==Завершено на # записів
#-----------------------------
+Source==Джерело
+Processed Chunks==Оброблено Чанки
+Imported Records==Імпортовані записи
+Speed (records/second)==Швидкість (записи/second)
#File: Load_MediawikiWiki.html
#---------------------------
-: Configuration of a Wiki Search==: Налаштування пошуку Wiki
Integration in MediaWiki==Вбудовування в MediaWiki
It is possible to insert wiki pages into the YaCy index using a web crawl on that pages.==Цілком можливо записати wiki-сторінки в індекс YaCy, шляхом сканування цих сторінок.
This guide helps you to crawl your wiki and to insert a search window in your wiki pages.==Цей посібник допоможе вам сканувати вашу wiki, і вбудувати вікно пошуку на сторінках wiki.
Retrieval of Wiki Pages==Витягнення wiki-сторінок
The following form is a simplified crawl start that uses the proper values for a wiki crawl.==Нижче наводиться спрощена форма запуску сканування з використанням відповідних значень для wiki.
-Just insert the front page URL of your wiki.==Просто додайте початкову URL-адресу вашої wiki.
-After you started the crawl you may want to get back==Після того як ви почали сканування, ви повинні повернутися назад
to this page to read the integration hints below.==перейдіть на цю сторінку, щоб нижче прочитати вказівки щодо вбудовування.
-URL of the wiki main page==URL головної сторінки wiki
-This is a crawl start point==Це початкова точка сканування
"Get content of Wiki: crawl wiki pages"=="Отримати вміст Wiki: сканувати wiki-сторінки"
Inserting a Search Window to MediaWiki==Вставка поля пошуку в MediaWiki
To integrate a search window into a MediaWiki, you must insert some code into the wiki template.==Для вставки пошукового поля в MediWiki, вам необхідно вкласти певний код у ваш wiki-шаблон.
@@ -1629,115 +1558,98 @@ open skins/MonoBook.php==Відкрийте skins/MonoBook.php
find the line where the default search window is displayed, there are the following statements:==Знайдіть рядок, що використовується для показу пошукового вікна за замовчуванням, такого вмісту:
Remove that code or set it in comments using '<!--' and '-->'==Видаліть цей код або закоментуйте його з "<!--" і "-->"
Insert the following code:==Вставте наступний код:
-Search with YaCy in this Wiki:==Пошук з YaCy в цій Wiki:
-value="Search"==value="Пошук"
Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Перевірте всі появи в цьому фрагменті коду статичних адрес IP і замініть їх на свої власні IP або на ім’я власного хосту.
You may want to change the default text elements in the code snippet==Ви також можете замінити елементи тексту за замовчуванням у фрагменті коду власними текстами.
To see all options for the search widget, look at the more generic description of search widgets at==Щоб побачити всі варіанти пошуку, дивіться більш загальний опис пошукових віджетів
-the configuration for live search.==на сторінці налашування живого пошуку.
#-----------------------------
+Just insert the front page URL of your wiki. After you started the crawl you may want to get back==Просто вставте першу сторінку URL вашої вікі. Після того, як ви розпочали сканування, ви можете повернутися
+URL of the wiki main page This is a crawl start point==URL головної сторінки вікі Це початкова точка сканування
#File: Load_PHPBB3.html
#---------------------------
-Configuration of a phpBB3 Search==Налаштування пошуку phpBB3
Integration in phpBB3==Вбудовування в phpBB3
It is possible to insert forum pages into the YaCy index using a database import of forum postings.==Цілком можливо записати сторінки форуму в індекс YaCy, шляхом імпортування бази даних із записами форуму.
This guide helps you to insert a search window in your phpBB3 pages.==Цей посібник допоможе вам вбудувати вікно пошуку для сторінок phpBB3.
Retrieval of phpBB3 Forum Pages using a database export==Видобуток сторінок форуму phpBB3 шляхом експорту бази даних
Forum posting contain rich information about the topic, the time, the subject and the author.==Повідомлення форуму містять багату інформацію про предмет обговоренння, час, тему і творця.
This information is in an bad annotated form in web pages delivered by the forum software.==Ця інформація знаходиться у поганому форматі поставляється у вигляді анотованих веб-сторінок, створених програмним забезпеченням форуму.
-It is much better to retrieve the forum postings directly from the database.==Набагато краще отримувати повідомлення прямо з бази даних.
-This will cause that YaCy is able to offer nice navigation features after searches.==Завдяки прямому імпорту YaCy може після пошуку також запропонувати корисні функції для навігації.
-YaCy has a phpBB3 extraction feature, please go to the phpBB3 content integration servlet for direct database imports.==YaCy вже може витягувати дані з форуму phpBB3. На сторінці імпорту бази даних phpBB3 знаходиться сервлет для прямого імпорту даних.
Retrieval of phpBB3 Forum Pages using a web crawl==Видобування сторінок форуму phpBB3 шляхом веб-сканування
The following form is a simplified crawl start that uses the proper values for a phpbb3 forum crawl.==Нижче наводиться спрощена форма запуску сканування з використанням відповідних значень для форуму phpBB3.
Just insert the front page URL of your forum. After you started the crawl you may want to get back==Просто додайте початкову URL-адресу вашого форуму. Після того як ви почали сканування, ви повинні повернутися назад
to this page to read the integration hints below.==перейдіть на цю сторінку, щоб нижче прочитати вказівки щодо вбудовування.
-URL of the phpBB3 forum main page==URL головної сторінки форуму
-This is a crawl start point==Це початкова точка сканування
"Get content of phpBB3: crawl forum pages"=="Отримати вміст phpBB3: сканувати сторінки форуму"
Inserting a Search Window to phpBB3==Вставка поля пошуку у форум phpBB3
To integrate a search window into phpBB3, you must insert some code into a forum template.==Для вставки пошукового поля в форум phpBB3, вам необхідно вкласти певний код у шаблон форуму.
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, that's right behind the
<div id="search-box">
statement==Знайдіть рядок, що використовується для показу пошукового вікна за замовчуванням, яке йде відразу за
<div id="search-box">
-Insert the following code right behind the div tag==Вставте наступний код зразу за тегом div
-YaCy Forum Search==Пошук YaCy по форуму
-;YaCy Search==;Пошук YaCy
Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==Перевірте всі появи в цьому фрагменті коду статичних адрес IP і замініть їх на свої власні IP або на ім’я власного хосту.
You may want to change the default text elements in the code snippet==Ви також можете замінити елементи тексту за замовчуванням у фрагменті коду власними текстами.
To see all options for the search widget, look at the more generic description of search widgets at==Щоб побачити всі варіанти пошуку, дивіться більш загальний опис пошукових віджетів
-the configuration for live search.==на сторінці налашування живого пошуку.
#-----------------------------
+It is much better to retrieve the forum postings directly from the database. This will cause that YaCy is able to offer nice navigation features after searches.==Набагато краще отримувати повідомлення форуму безпосередньо з бази даних. Це призведе до того, що YaCy зможе запропонувати гарні функції навігації після пошуку.
+URL of the phpBB3 forum main page This is a crawl start point==URL головної сторінки форуму phpBB3 Це початкова точка сканування
+you are using the default template, 'prosilver':==ви використовуєте стандартний шаблон "prosilver":
+Insert the following code right behind the div tag:==Вставте наступний код безпосередньо за тегом div:
#File: Load_RSS_p.html
+Description==Опис
+hours==годин
#---------------------------
-Configuration of a RSS Search==Налаштування пошуку RSS
-Loading of RSS Feeds<==Завантаження RSS-їжі<
RSS feeds can be loaded into the YaCy search index.==RSS-канали можуть бути завантажені в пошуковий індекс YaCy.
This does not load the rss file as such into the index but all the messages inside the RSS feeds as individual documents.==В індекс завантажується не RSS-файл як такий, а всі повідомлення всередині RSS-каналу у вигляді окремих документів.
URL of the RSS feed==URL RSS-каналу
->Preview<==>Попередній перегляд<
"Show RSS Items"=="Показати RSS-новини"
Available after successful loading of rss feed in preview==Доступно після успішного завантаження з каналу RSS в попередньому перегляді
"Add All Items to Index (full content of url)"=="Додати всі новини в індекс (повний вміст URL)"
->once<==>одиночно<
->load this feed once now<==>Завантажити цей канал зараз одноразово<
->scheduled<==>запланувати<
->repeat the feed loading every<==>Повторювати завантаження цього каналу кожні<
->minutes<==>звилин<
->hours<==>годин<
->days<==>днів<
-> automatically.==> автоматично.
->List of Scheduled RSS Feed Load Targets<==>Список усіх запланованих на завантаження RSS-каналів<
->Title<==>Заголовок<
-#>URL/Referrer<==>URL/Referrer<
->Recording<==>Запис<
-#>Last Load<==>Остання зарядка<
->Last Load<==>Останнє завантаження<
-#>Next Load<==>Наступна зарядка<
->Next Load<==>Наступне завантаження<
->Last Count<==>Остання кількість<
->All Count<==>Загальна кількість<
->Avg. Update/Day<==>Всередньому оновлень на день<
"Remove Selected Feeds from Scheduler"=="Видалити вибрані канали зі списку запланованих"
"Remove All Feeds from Scheduler"=="Видалити всі канали зі списку запланованих"
->Available RSS Feed List<==>Список доступних RSS-каналів<
"Remove Selected Feeds from Feed List"=="Видалити вибрані канали зі списку каналів"
"Remove All Feeds from Feed List"=="Видалити всі канали зі списку каналів"
"Add Selected Feeds to Scheduler"=="Додати вибрані канали до списку запланованих"
->new<==>Нові<
->enqueued<==>Заплановані<
->indexed<==>Проіндексовані<
->RSS Feed of==>RSS-канал
->Author<==>Творець<
->Description<==>Опис<
->Language<==>Мова<
->Date<==>Дата<
->Time-to-live<==>TTL (час життя)<
->Docs<==>Документи<
-#>State<==>Стан<
-#>URL<==>URL<
"Add Selected Items to Index (full content of url)"=="Додати обрані записи в індекс (повний вміст URL)"
->Indexing==>Індексування
#-----------------------------
+Loading of RSS Feeds==Завантаження каналів RSS
+Preview==Попередній перегляд
+Indexing==Індексація
+once==один раз
+load this feed once now==завантажити цей канал один раз
+scheduled==заплановано
+repeat the feed loading every==повторюйте завантаження корму щоразу
+minutes==хвилин
+days==днів
+automatically.==автоматично.
+collection==колекція
+List of Scheduled RSS Feed Load Targets==Список запланованих цілей навантаження каналу RSS
+Title==Назва
+URL/Referrer==URL/Referrer
+Recording==Запис
+Last Load==Останнє завантаження
+Next Load==Наступне завантаження
+Last Count==Останній відлік
+All Count==Усі підрахунки
+Avg. Update/Day==Середнє Оновити/Day
+Available RSS Feed List==Доступний список каналів RSS
+Author==Автор
+Language==Мова
+Date==Дата
+Time-to-live==Час життя
+Docs==документи
+State==Держава
+URL==URL
+new==новий
+enqueued==поставлено в чергу
+indexed==індексується
+Attached media==Прикріплені медіа
#File: Messages_p.html
+Messages==Повідомлення
+Subject==Назва
#---------------------------
->Messages==>Повідомлення
-Date==Дата
-From==Від
-To==До
->Subject==>Тема
Action==Дія
From:==Від:
To:==До:
Date:==Дата:
-#Subject:==Тема:
->view==>показати
reply==відповісти
->delete==>видалити
Compose Message==Створення повідомлень
Send message to peer==Відправити повідомлення до вузла
"Compose"=="Створити"
@@ -1745,174 +1657,168 @@ Message:==Повідомлення:
inbox==Вхідні
#-----------------------------
+"RSS"=="RSS"
+Date==Дата
+From==Від
+To==до
+view==переглянути
+delete==видалити
+Subject:==Заголовок:
+Action:==Дія:
#File: MessageSend_p.html
+Message:==Повідомлення:
#---------------------------
Send message==Відправити повідомлення
-You cannot send a message to==Ви не можете відправити повідомлення до
The peer does not respond. It was now removed from the peer-list.==Вузол не відповідає. Він більше не доступний зі списку вузлів.
-The peer ==Вузол
-is alive and responded:==в мережі і відповідає:
-You are allowed to send me a message==Ви маєте право надіслати мені повідомлення
-kb and an==KB і
-attachment ≤==додаток ≤
Your Message==Ваше повідомлення
Subject:==Тема:
Text:==Текст:
"Enter"=="Відправити"
"Preview"=="Попередній перегляд"
-You can use==Ви можете тут використовувати
-Wiki Code here.==Wiki коди.
Preview message==Попередній перегляд повідомлення
The message has not been sent yet!==Повідомлення не було відправлено!
The peer is alive but cannot respond. Sorry.==Вузол не в мережі і не може відповісти. Вибачте.
Your message has been sent. The target peer responded:==Ваше повідомлення було успішно надіслано. Цільовий вузол відповів:
The target peer is alive but did not receive your message. Sorry.==Цільовий вузол в мережі, але не прийняв ваше повідомлення. Вибачте.
Here is a copy of your message, so you can copy it to save it for further attempts:==Ось копія вашого повідомлення. Ви можете скопіювати, зберегти його і спробувати ще раз пізніше:
-You cannot call this page directly. Instead, use a link on the Network page.==Ви не можете викликати цю сторінку безпосередньо. Замість цього використовуйте посилання на сторінку мережі.
#-----------------------------
#File: Network.html
#---------------------------
-YaCy Search Network==Пошукова мережа YaCy
-YaCy Network<==Мережа YaCy<
The information that is presented on this page can also be retrieved as XML.==Інформацію на цій сторінці також можна отримати в форматі XML.
Click the API icon to see the XML.==Натисніть значок API для відображення XML.
-To see a list of all APIs, please visit the API wiki page.==Для перегляду списку всіх API, будь-ласка, відвідайте сторінку API у Wiki.
Network Overview==Огляд мережі
-Active Peers==Активні вузли
-Passive Peers==Пасивні вузли
-Potential Peers==Можливі вузли
-Active Peers in '#[networkName]#' Network==Активні вузли в мережі "#[networkName]#"
-Passive Peers in '#[networkName]#' Network==Пасивні вузли в мережі "#[networkName]#"
-Potential Peers in '#[networkName]#' Network==Можливі вузли в мережі "#[networkName]#"
Manually contacting Peer==Ручний зв’язок
-no remote #[peertype]# peer for this list known==Жоден #[peertype]# вузол не відомий.
-Showing #[num]# entries from a total of #[total]# peers.==Показано #[num]# з #[total]# вузлів.
-send Message/ show Profile/ edit Wiki/ browse Blog==Зв’язок Профіль Wiki Блог
+send Message/ show Profile/ edit Wiki/ browse Blog==надіслати повідомлення/ показати профіль/ редагувати Wiki/ переглянути блог
Search for a peername (RegExp allowed)==Пошук імені вузла (RegExp)
"Search"=="Пошук"
->Name==>Ім’я
->Address==>Адреса
->Hash==>Контр.сума
-Release/ SVN==Версія/SVN
Last Seen==Востаннє відомий
Location==Місце
->URLs for Remote Crawl<==>Надає URL<
-UTC Offset==Зсув UTC
-Send message to peer==Відправити повідомлення до вузла
-View profile of peer==Показати профіль вузла
-Read and edit wiki on peer==Читати/редагувати Wiki вузла
-Browse blog of peer==Переглянути блог вузла
-#"Ranking Receive: no"=="Прийом ранжування: ні"
-#"no ranking receive"=="без прийому ранжування"
-#"Ranking Receive: yes"=="Прийом ранжування: так"
-#"Ranking receive enabled"=="Прийом ранжування ввімкнений"
+UTC Offset==UTC зсув
"DHT Receive: yes"=="DHT-прийом: так"
"DHT receive enabled"=="DHT-прийом ввімкнений"
-"DHT Receive: no; #[peertags]#"=="DHT-прийом: ні; #[peertags]#"
"DHT Receive: no"=="DHT-прийом: ні"
-#no tags given==не дано жодного ключа
"no DHT receive"=="без DHT-прийому"
"Accept Crawl: no"=="Прийом сканувань: ні"
-#"Accept Crawl: no"=="Приймання сканувань: ні"
"no crawl"=="без сканування"
"Accept Crawl: yes"=="Прийом сканувань: так"
-#"Accept Crawl: yes"=="Приймання сканувань: так"
"crawl possible"=="Сканування можливе"
-Contact: passive==Зв’язок: пасивний
-Contact: offline==Зв’язок: не в мережі
-Contact: direct==Зв’язок: прямий
-Type: Principal==Тип: Головний
-Type: Senior==Тип: Старший
-Type: Junior==Тип: Молодший
-Type: Virgin==Тип: Новенький
-"Principal=="Головний
-"Senior=="Старший
-"Junior=="Молодший
-"Virgin=="Новенький
-offline"==не в мережі"
-direct"==прямий"
-#active"==активний"
-#passive"==пасивний"
-
-Seed download:==Завантаження насіння:
-Seed download: possible==Завантаження насіння: можливе
-runtime:==час роботи:
-ms==мс
-#Peers==Вузли
-#YaCy Cluster==Скупчення YaCy
-
->Network<==>Мережа<
->Online Peers<==>Доступні вузли<
->Number of Documents<==>Кількість документів<
-Indexing Speed:==Швидкість індексування:
-Pages Per Minute (PPM)==Сторінок За Хвилину (PPM)
-Query Frequency:==Частота запитів:
-Queries Per Hour (QPH)==Запитів За Годину (QPH)
->Today<==>Сьогодні<
->Last Week<==>За останній тиждень<
->Last Month<==>а останній місяць<
->Now<==>Зараз<
->Active<==>Активні<
->Passive<==>Пасивні<
->Potential<==>Можливі<
->This Peer<==>Цей вузол<
+
+
URLs for Remote Crawl==Надає URL
"The YaCy Network"=="Мережа YaCy"
Indexing PPM==Індексування PPM
-(public local)==(місцеве)
-(remote)==(віддалене)
Your Peer:==Ваш вузол:
->Info<==>Дані<
->Version<==>Випуск<
-
UTC<==
Час UTC<
->Uptime<==>Час роботи<
->Links<==>Посилань<
->RWIs<==>RWI<
-Sent Words==Послано слів
Sent URLs==Послано URL
-Received Words==Отримано слів
Received URLs==Отримано URL
Known Seeds==Відомо насіння
Connects per hour==З’єднань в годину
-#Version==Випуск
-#Own/Other==Власний/Інший
->dark green font<==>темно-зелений шрифт<
senior/principal peers==старші/головні вузли
->light green font<==>світло-зелений шрифт<
->passive peers<==>пасивні вузли<
->pink font<==>рожевий шрифт<
junior peers==молодші вузли
red point==червона крапка
this peer==ваш вузол
->grey waves<==>сірі швилі<
->crawling activity<==>сканування<
->green radiation<==>зелене сяйво<
->strong query activity<==>багато запитів<
->red lines<==>червоні лінії<
->DHT-out<==>DHT-відправка<
->green lines<==>зелені лінії<
->DHT-in<==>DHT-прийом<
-#You are in online mode, but probably no internet resource is available.==Ви знаходитесь в режимі реального часу, але в даний час немає підключення до інтернету.
-#Please check your internet connection.==Будь ласка, перевірте підключення до Інтернету.
-#You are not in online mode. To get online, press this button:==Ви не в режимі реального часу. Щоб виходити в інтернет, потрібно натиснути на цю кнопку:
-#"go online"=="вийти в інтернет"
-Unable to execute query.==Неможливо виконати запит.
-is no valid regular expression, please enter a valid regular expression to search for a peername.==є неправильним регцлярним виразом. Будь-ласка, введіть правильний рег.вираз для пошуку імені вузла.
->Ping<==>Відгук<
-Contacting current peer from another==Зв’язок з поточним вузлом через іншого
->ip:port<==>IP:порт<
-contact current peer from this peer==зв’язатись з поточним вузлом через цей вузол
"add Peer"=="додати вузол"
->Peer Hash<==>Хеш вузла<
->Peer IP<==>IP вузла<
->Peer Port<==>Потр вузла<
#-----------------------------
+"API"=="API"
+"https supported"=="https підтримується"
+"Type: Junior | Contact: passive"=="Тип: Юніор | Контакт: пасивний"
+"Junior passive"=="Молодший пасив"
+"Type: Junior | Contact: direct"=="Тип: Юніор | Контакт: прямий"
+"Junior direct"=="Молодший прямий"
+"Type: Junior | Contact: offline"=="Тип: Юніор | Контакт: офлайн"
+"Junior offline"=="Юніор офлайн"
+"Type: Senior | Contact: passive"=="Тип: Старший | Контакт: пасивний"
+"senior passive"=="старший пасив"
+"Type: Senior | Contact: direct"=="Тип: Старший | Контакт: прямий"
+"Senior direct"=="Старший прямий"
+"Type: Senior | Contact: offline"=="Тип: Старший | Контакт: офлайн"
+"Senior offline"=="Старший офлайн"
+"Type: Principal | Contact: passive | Seed download: possible"=="Тип: Головний | Контакт: пасивний | Завантаження насіння: можливо"
+"Principal passive"=="Головний пасив"
+"Type: Principal | Contact: direct | Seed download: possible"=="Тип: Головний | Контакт: прямий | Завантаження насіння: можливо"
+"Principal active"=="Директор активний"
+"Type: Principal | Contact: offline | Seed download: ?"=="Тип: Головний | Контакт: офлайн | Завантаження початкового матеріалу: ?"
+"Principal offline"=="Директор офлайн"
+"Profile updated"=="Профіль оновлено"
+"Wiki updated"=="Wiki оновлено"
+"Blog updated"=="Блог оновлено"
+"Crawl"=="Сканувати"
+"Type: Virgin"=="Тип: Діва"
+"Virgin"=="Богородиця"
+"Type: Junior"=="Тип: Юніор"
+"Junior"=="молодший"
+"Type: Senior"=="Тип: Старший"
+"Senior"=="Старший"
+"Type: Principal"=="Тип: Директор"
+"Principal"=="Директор"
+"Crawl enabled"=="Сканування ввімкнено"
+"DHT Receive enabled"=="DHT Отримання ввімкнено"
+"contact current peer from this peer"=="зв'язатися з поточним однорангом від цього однорангового вузла"
+YaCy Network==YaCy Мережа
+Active Principal and Senior Peers==Активний Директор та Старший Колеги
+Passive Senior Peers==Пасивний Старший Колеги
+Junior (fragment) Peers==Молодший (фрагмент) Однолітки
+Network History==Історія мережі
+Hash==Хеш
+Name==Ім'я
+Info==Інформація
+Release==Звільнення
+Age==Вік
+con/h ==con/h
+PPM==PPM
+QPH==QPH
+Uptime==Час роботи
+Links==Посилання
+RWIs==RWIs
+URLs for Remote Crawl==URL для Віддаленого сканування
+Sent DHT Word Chunks==Надіслано фрагменти DHT Word
+Received DHT Word Chunks==Отримано фрагменти DHT Word
+user agent ==агент користувача
+Network==Мережа
+Online Peers==Інтернет-однолітки
+Number of Documents==Кількість документів
+Indexing Speed: Pages Per Minute (PPM)==Швидкість індексування: Сторінок за хвилину (PPM)
+Query Frequency: Queries Per Hour (QPH)==Частота запитів: Запитів на годину (QPH)
+Last Hour==Остання година
+Today==Сьогодні
+Last Week==Останній тиждень
+Last Month==Останній місяць
+Now==Зараз
+Active Senior==Активний старший
+Passive Senior==Пасивний старший
+Junior (fragment)==Юніор (фрагмент)
+This Peer==Це Пер
+Version==Версія
+UTC==UTC
+Sent DHT Word Chunks==Надіслано DHT Word Chunks
+Received DHT Word Chunks==Отримано DHT Word Chunks
+QPH (public local)==QPH (публічний локальний)
+QPH (remote)==QPH (віддалений)
+dark green font==темно-зелений шрифт
+light green font==світло-зелений шрифт
+passive peers==пасивні однолітки
+pink font==рожевий шрифт
+grey waves==сірі хвилі
+crawling activity==активність сканування
+green radiation==зелене випромінювання
+strong query activity==сильна активність запитів
+red lines==червоні лінії
+DHT-out==DHT-вийшов
+green lines==зелені лінії
+DHT-in==DHT-дюйм
+Peer Hash==Одноранговий хеш
+Peer IP==Одноліток IP
+Peer Port==Одноранговий порт
+Contacting current peer from another:==Зв'язок з поточним колегою від іншого:
+ip:port==ip: порт
+Count of Connected Senior Peers in the last two days, scale = 1h==Кількість підключених старших колег за останні два дні, масштаб = 1 година
+Count of all Active Peers Per Day in the last week, scale = 1d==Кількість усіх активних однорангових користувачів на день за останній тиждень, масштаб = 1 день
+Count of all Active Peers Per Week in the last 30d, scale = 7d==Кількість усіх активних однолітків за тиждень за останні 30 днів, масштаб = 7 днів
+Count of all Active Peers Per Month in the last 365d, scale = 30d==Кількість усіх активних однорангових користувачів за місяць за останні 365 днів, масштаб = 30 днів
#File: News.html
#---------------------------
-News Monitor==Перегляд новин
Overview==Про новини/повідомлення
Incoming News==Вхідні новини
Processed News==Оброблені новини
@@ -1928,57 +1834,36 @@ profile entries on the Network page, where that profile change is visualized wit
More news services will follow.==Пізніше буде більше служб новин.
Above you can see four menus:==Ви можете бачити ці чотири вкладки:
-Incoming News (#[insize]#): latest news that arrived your peer.==Вхідні новини (#[insize]#): Останні новини, що досягли вашого вузла.
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==Ви можете обробити їх натисненням кнопки на сторінці (відмітити як "прочитані"). Потім ці повідомлення більше не будуть з’являтися на сторінках мережі та створення індексу.
-Processed News (#[prsize]#): this is simply an archive of incoming news that you removed by processing.==Оброблені новини (#[prsize]#): Це звичайний архів прочитаних новин.
-Outgoing News (#[ousize]#): here your can see news entries that you have created. These news are currently broadcasted to other peers.==Вихідні новини (#[ousize]#):Створені вами новини. Ці новини відразу ж після створення передаються іншим вузлам.
you can stop the broadcast if you want.==При бажанні можна зупинити перерозподіл.
-Published News (#[pusize]#): your news that have been broadcasted sufficiently or that you have removed from the broadcast list.==Опубліковані новини (#[pusize]#): Ваші новини, які були достатньо поширені або вилучені зі списку розсилання.
Originator==Творець
Created==Створено
Category==Розряд
Received==Відправлено
Distributed==Розподілено
Attributes==Властивості
-"#(page)#::Process Selected News::Delete Selected News::Abort Publication of Selected News::Delete Selected News#(/page)#"=="#(page)#::Позначити вибрані новини як прочитані::Видалити вибрані новини::Скасувати поширення вибраних новин::Видалити вибрані новини#(/page)#"
-"#(page)#::Process All News::Delete All News::Abort Publication of All News::Delete All News#(/page)#"=="#(page)#::Позначити всі новини як прочитані::Видалити всі новини::Скасувати поширення всіх новин::Видалити всі новини#(/page)#"
#-----------------------------
+"Incoming News"=="Вхідні новини"
+"Processed News"=="Оброблені новини"
+"Outgoing News"=="Вихідні новини"
+"Published News"=="Опубліковані новини"
+Publishing of added or modified translation for the user interface. Other peers may include it in their local translation list.==Публікація доданого або зміненого перекладу для інтерфейсу користувача. Інші однолітки можуть включити його до свого локального списку перекладів.
#File: Performance_p.html
+"Save"=="Зберегти"
#---------------------------
-==
Performance Settings==Установки живлення
Memory Settings==Налаштування пам’яті
Memory reserved for JVM==Пам’ять, утримувана для JVM
"Set"=="Виставити"
Resource Observer==Спостерігач за ресурсами
-Reset state==відновити стан
-> free space==> вільної пам’яті
-disable DHT-in below==Вимкнути отримання DHT при менше
-RAM==Основна пам’ять
-Accepted change. This will take effect after restart of YaCy==Зміни прийняті. Вони вступлять в силу тільки після перезапуску YaCy
-restart now==перезапустити зараз
-Confirm Restart==Підтрвердіть перезапуск
+RAM==RAM
refresh graph==оновлення графіку
-#show memory tables==Показати таблиці пам’яті
-Use Default Profile:==Використання профілю за замовчунням:
-and use==і використовувати
-of the defined performance.==заданої швидкості.
-Save==Зберегти
Changes take effect immediately==Зміни набирають чинності негайно
-YaCy Priority Settings==Установки пріоритету YaCy
-YaCy Process Priority==Пріоритет процесу YaCy
-Normal==Звичайний
-Below normal==Нижче звичного
-Idle==Холостий
-"Set new Priority"=="Запам’ятати новий пріорітет"
-Changes take effect after restart of YaCy==Зміни набирають чинності після перезавантаження YaCy
-Online Caution Settings==Установки затримки мережного доступу
This is the time that the crawler idles when the proxy is accessed, or a local or remote search is done.==Це час, після якого сканувач призупиняється при доступі до проксі-сервера або при проведенні місцевого чи глобального пошуку.
The delay is extended by this time each time the proxy is accessed afterwards.==Нормальна затримка продовжується на цей час, при доступі до проксі-сервера.
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 occurrence==затримка індексатора (в мілісекундах) для мережного доступу
@@ -1987,109 +1872,133 @@ Local Search:==Місцевий пошук:
Remote Search:==Віддалений пошук:
"Enter New Parameters"=="Ввести нові параметри"
MByte==МБайт
-==
#-----------------------------
+"PerformanceGraph"=="PerformanceGraph"
+"Java Virtual Machine"=="Java Віртуальна машина"
+"Restart now"=="Перезапустіть зараз"
+"Amount of space (in Mebibytes) that should be kept free as steady state"=="Обсяг простору (у мебібайтах), який має бути вільним у стабільному стані"
+"Mebibyte"=="Мебібайт"
+"Amount of space (in Megabytes) that should at least be kept free as hard limit"=="Обсяг простору (у мегабайтах), який має бути принаймні вільним як жорстке обмеження"
+"Distributed Hash Table"=="Розподілена хеш-таблиця"
+"Free space disk autoregulation info"=="Інформація про авторегулювання вільного місця на диску"
+"Maximum amount of space (in Mebibytes) that should be used as steady state"=="Максимальний обсяг простору (у мебібайтах), який слід використовувати в стабільному стані"
+"Maximum amount of space (in Mebibytes) that should be used as hard limit"=="Максимальний обсяг простору (у мебібайтах), який слід використовувати як жорстке обмеження"
+"Used space disk autoregulation info"=="Інформація про авторегулювання використаного дискового простору"
+"Random Access Memory"=="Оперативна пам'ять"
+"Proper state info"=="Правильна інформація про стан"
+"Exhausted state info"=="Інформація про стан вичерпана"
+"Reset state"=="Скинути стан"
+"Manually reset to 'proper' state"=="Скинути вручну до «правильного» стану"
+"Amount of memory (in Mebibytes) that should at least be free for proper operation"=="Обсяг пам’яті (у мебібайтах), який має бути принаймні вільним для належної роботи"
+Accepted change. This will take effect after restart of YaCy.==Прийнята зміна. Це набуде чинності після перезапуску з YaCy.
+Restart now==Перезапустіть зараз
+Free space disk==Вільне місце на диску
+Steady-state minimum==Стаціонарний мінімум
+MiB. Disable crawls when free space is below.==MiB. Вимикати сканування, коли вільного місця менше.
+Absolute minimum==Абсолютний мінімум
+MiB. Disable DHT-in when free space is below.==MiB. Вимикати DHT-in, коли вільного місця менше.
+Autoregulate==Авторегулювання
+when absolute minimum limit has been reached.==коли досягнуто абсолютного мінімуму.
+The autoregulation task performs the following sequence of operations, stopping once free space disk is over the steady-state value :==Завдання авторегуляції виконує таку послідовність операцій, зупиняючись, коли вільний простір на диску перевищує значення сталого стану:
+delete old releases==видалити старі випуски
+delete logs==видалити журнали
+delete robots.txt table==видалити таблицю robots.txt
+delete news==видалити новини
+clear HTCACHE==очистити HTCACHE
+clear citations==чіткі цитати
+throw away large crawl queues==викинути великі черги сканування
+cut away too large RWIs==відрізати занадто великий RWIs
+Used space disk==Використаний простір на диску
+Steady-state maximum==Стаціонарний максимум
+MiB. Disable crawls when used space is over.==MiB. Вимикати сканування, коли використаного місця більше.
+Absolute maximum==Абсолютний максимум
+MiB. Disable DHT-in when used space is over.==MiB. Вимикати DHT-in, коли використаного місця більше.
+when absolute maximum limit has been reached.==коли досягнуто абсолютного максимального ліміту.
+The autoregulation task performs the following sequence of operations, stopping once used space disk is below the steady-state value:==Завдання авторегуляції виконує таку послідовність операцій, зупиняючи, коли простір на диску менше ніж у стаціонарному стані:
+Memory state :==Стан пам'яті:
+proper==належне
+Enough memory is available for proper operation.==Доступно достатньо пам'яті для належної роботи.
+exhausted==вичерпано
+Within the last eleven minutes, at least four operations have tried to request memory that would have reduced free space within the minimum required.==Протягом останніх одинадцяти хвилин щонайменше чотири операції намагалися запитати пам’ять, що призвело б до зменшення вільного простору в межах необхідного мінімуму.
+Minimum required==Необхідний мінімум
+MiB free space. Disable DHT-in below.==MiB вільного місця. Вимикати DHT-in нижче цього значення.
+Online Caution Settings:==Налаштування попереджень онлайн:
#File: PerformanceMemory_p.html
+Delete==Видалити
+refresh graph==оновлення графіку
#---------------------------
-==
Performance Settings for Memory==Налаштування швидкодії для пам’яті
-
==Таблиця
-Chunk Size<==Розмір шматка<
-#Count==Кількість
-Used Memory<==Використано пам’яті<
Object Index Caches==Кеші індексу об’єктів
Needed Memory==Потрібна пам’ять
-Object Read Caches==Кеші читання об’єктів
->Read Hit Cache<==>Кеш успіхів читання<
->Read Miss Cache<==>Кеш невдач читання<
->Read Hit<==>Успіхи читання<
->Read Miss<==>Невдачі читання<
-Write Unique<==Одиночні записи<
-Write Double<==Повторні записи<
-Deletes<==Видалень<
-Flushes<==Очищень<
-Total Mem==Всього пам’яті
-MB (hit)==MБ (успіх)
-MB (miss)==MБ (невдача)
-Stop Grow when less than #[objectCacheStopGrow]# MB available left==Зупинити зростання, коли доступно менше #[objectCacheStopGrow]# MБ
-Start Shrink when less than #[objectCacheStartShrink]# MB availabe left==Запустити скорочення, коли доступно менше #[objectCacheStartShrink]# MБ
Other Caching Structures==Інші кешувальні структури
-Type==Тип
->Hit<==>Успіх<
->Miss<==>Невдача<
-Insert<==Вставка<
-Delete<==Видалення<
-DNSCache==DNSКеш
DNSNoCache==DNSБезКешу
HashBlacklistedCache==КешЧСХешів
-Search Event Cache<==Кеш подій пошуку<
simulate short memory status==моделювати стан короткої пам’яті
->use==>використовувати
-(current:==(поточна:
->Max==>Найбільше
-/Hit<==/Успіх<
-/Miss<==/Невдача<
#-----------------------------
+"PerformanceGraph"=="PerformanceGraph"
+use Standard Memory Strategy==використовувати стандартну стратегію пам'яті
+Type==Тип
+After Initializations before GC==Після ініціалізацій перед GC
+After Initializations after GC==Після ініціалізацій після GC
+Now==Зараз
+Max==Макс
+Available==в наявності
+Total==Всього
+Free==безкоштовно
+Used==б/в
+Table==Таблиця
+Size==Розмір
+Key==ключ
+Value==Значення
+Chunk Size==Розмір шматка
+Used Memory==Використана пам'ять
+Hit==удар
+Miss==Міс
+Insert==Вставка
+DNSCache/Hit==DNSCache/Hit
+(ARC)==(ARC)
+DNSCache/Miss==DNSCache/Miss
+Search Event Cache==Кеш подій пошуку
#File: PerformanceQueues_p.html
+Description==Опис
+Thread==Потік
#---------------------------
Performance Settings of Queues and Processes==Налаштування продуктивності для черг і потоків
Scheduled tasks overview and waiting time settings:==Огляд призначених завдань і налаштування затримки:
-Queue Size==Розмір черги
+Queue Size==Розмір черги
Total Block Time==Загальний блочний час
Total Sleep Time==Загальний час сну
Total Exec Time==Загальний час виконання
Total Cycles==Всього циклів
-
Idle Cycles==
Вільних цклів
->Busy Cycles==>Зайнятих циклів
Short Mem Cycles==Короткі цикли пам’яті
Sleep Time per Cycle (millis)==Час сну за цикл (мс)
Exec Time per Busy-Cycle (millis)==Час запуску за зайнятий цикл (мс)
-Memory Use per Busy-Cycle (kbytes)==Використання пам’яті за зайнятий цикл (кбайтів)
->Delay between==>Затримка між
->idle loops==>холостими циклами
->busy loops==>зайнятими циклами
+Memory Use per Busy-Cycle (kbytes)==Використання пам’яті за робочий цикл (кбайтів)
Minimum of Required Memory==Найменше необхідної пам’яті
Full Description==Повний опис
-Submit New Delay Values==Запам’ятати нові значення затримки
Changes take effect immediately==Зміни набирають чинності негайно
Cache Settings:==Установки кешу:
RAM Cache==RAM кеш
-
Description==
Опис
-URLs in RAM buffer:==URL в черзі RAM:
-This is the size of the URL write buffer. Its purpose is to buffer incoming URLs==Це розмір буфера запису URL. Його робота полягає в буферизації вхідних URL-адрес
-in case of search result transmission and during DHT transfer.==У разі передачі результатів пошуку і під час передачі DHT.
-Words in RAM cache:==Слова в RAM-кеші
This is the current size of the word caches.==Це поточний розмір кешів слів.
The indexing cache speeds up the indexing process, the DHT cache holds indexes temporary for approval.==Індексація кешу прискорює процес індексування, кеш DHT містить тимчасові індекси для підтвердження.
The maximum of this caches can be set below.==Максимум цього кешу можна встановити нижче.
-Maximum URLs currently assigned to one cached word:==Найбільша кількість URL-адрес в даний час призначена для одного слова:
+Maximum URLs currently assigned to one cached word:==Максимальна кількість URL-адрес для одного кешованого слова:
This is the maximum size of URLs assigned to a single word cache entry.==Це максимальна кількість URL-адрес, призначається для одного запису у кеші слів.
If this is a big number, it shows that the caching works efficiently.==Якщо ця кількість велика, то це означає, що кеш слів працює ефективно.
Maximum age of a word:==Максимальний вік слова:
@@ -2100,33 +2009,51 @@ Maximum number of words in cache:==Максимальна кількість с
This is is the number of word indexes that shall be held in the==Це кількість слів в індексах, що під час індексації
ram cache during indexing. When YaCy is shut down, this cache must be==RAM кешу повинні бути збережені. Під час вимкнення YaCy, цей кеш повинен
flushed to disc; this may last some minutes.==бути збережений на диск, що може зайняти декілька хвилин.
-#Initial space of words in cache:==Початковий вільний простір в кеші слів:
-#This is is the init size of space for words in cache.==Це початковий розмір слів у кеші.
-Enter New Cache Size==Задати новий розмір кешу
-Balancer Settings==Налаштування балансира
-This is the time delta between accessing of the same domain during a crawl.==Це різниця в часі між двома доступами до одного домену під час сканування.
-The crawl balancer tries to avoid that domains are==Балансир сканування намагається уникати, щоб домени
-accessed too often, but if the balancer fails (i.e. if there are only links left from the same domain), then these minimum==запитувалися занадто часто. Але якщо балансування помиляється (наприклад, коли посилання залишилися тільки з того ж домену), тоді використовується
-delta times are ensured.==мінімальний час різниці.
->Crawler Domain<==>Домен сканувача<
->Minimum Access Time Delta<==>Мінімальна часова різниця між доступами<
->local (intranet) crawls<==>Місцеві (внутр.мережа) сканування<
->global (internet) crawls<==>Загальні (інтернет) сканування<
-"Enter New Parameters"=="Задати нові параметри"
Thread Pool Settings:==Установки пулу потоків:
-Thread Pool<==Пул потоків<
maximum Active==макс. активний
current Active==поточний активний
-Enter new Threadpool Configuration==Задати нову конфігурацію пулу потоків
-Size in KBytes==Розмір в КБайтах
->Thread<==>Потік<
milliseconds==мілісекунд
-> kbytes<==> кбайтів<
#Сурогати->Заміщення
-==
#-----------------------------
+"Submit New Delay Values"=="Надішліть нові значення затримки"
+"Re-set to default"=="Відновити налаштування за умовчанням"
+"When the system load average is over the specified value, that type of remote search request is not used to fill search results."=="Коли середнє завантаження системи перевищує вказане значення, цей тип запиту віддаленого пошуку не використовується для заповнення результатів пошуку."
+"Reverse Word Index"=="Зворотний покажчик слів"
+"Submit New Values"=="Надіслати нові значення"
+"Enter New Cache Size"=="Введіть новий розмір кешу"
+"Enter new Threadpool Configuration"=="Введіть нову конфігурацію Threadpool"
+"Total maximum number of simultaneously open connections in the pool"=="Загальна максимальна кількість одночасно відкритих підключень у пулі"
+"Number of connections currently being used to execute requests."=="Кількість підключень, які зараз використовуються для виконання запитів."
+"Number of reusable idle connections"=="Кількість багаторазових неактивних підключень"
+"Number of connection requests being blocked awaiting a free connection"=="Кількість заблокованих запитів на підключення в очікуванні вільного підключення"
+Idle Cycles==Неактивний циклів
+Busy Cycles==Зайнятий циклів
+High CPU Cycles==Високі CPU циклів
+Delay between idle loops==Затримка між неактивними циклами
+Delay between busy loops==Затримка між петлями зайнятості
+Maximum of System-Load==Максимальне навантаження системи
+kbytes==кбайт
+load==навантаження
+Remote search requests:==Запити на віддалений пошук:
+Type==Тип
+Maximum system load==Максимальне навантаження на систему
+RWI==RWI
+Search requests performed on remote peers distributed Reverse Word Index==Запити на пошук, що виконуються на віддалених однорангових вузлах, розповсюджуються в зворотному індексі слів
+Solr==Solr
+Search requests performed on remote peers Solr indexes==Пошукові запити виконуються на віддалених однорангових індексах Solr
+Words in RAM cache: (Size in KBytes)==Слова в кеші RAM: (Розмір у кбайтах)
+Thread Pool==Пул потоків
+Outgoing connections pools settings :==Параметри пулів вихідних з'єднань:
+Connection Pool==Пул підключень
+Total maximum==Загальний максимум
+Current statistics==Актуальна статистика
+Active==Активний
+Idle==Бездіяльність
+Pending==В очікуванні
+General==Загальний
+Remote Solr servers==Віддалені сервери Solr
#File: PerformanceConcurrency_p.html
#---------------------------
Performance of Concurrent Processes==Швидкодія одночасних потоків
@@ -2134,50 +2061,43 @@ serverProcessor Objects==Об’єкти serverProcessor
Thread==Потік
Queue Size Current==Поточний розмір черги
Queue Size Maximum==Найбільший розмір черги
-Concurrency: Number of Threads==Одночасність: Кількість потоків
Children==Дочірні процеси
-Average Block Time Reading==Середнє читання
-Average Exec Time==Середнє виконання
-Average Block Time Writing==Середній запис
-Total Cycles==Всього циклів
+Average Block Time Reading==Середній час блокування читання
+Average Exec Time==Середній час виконання
+Average Block Time Writing==Середній час блокування запису
+Total Cycles==Усього циклів
Full Description==Повний опис
-==
#-----------------------------
+Executors: Current Number of Threads==Виконавці: Поточна кількість потоків
+Concurrency: Maximum Number of Threads==Одночасність: Максимальна кількість потоків
#File: PerformanceSearch_p.html
+Comment==Коментар
#---------------------------
-Performance Settings of Search Sequence==Дієвість пошуку
Search Sequence Timing==Швидкодія обробки пошуку
Timing results of latest search request:==Затримки під час останнього пошукового запиту:
Query==Запит
-Event<==Подія<
-Comment<==Коментар<
-Time<==Час<
Duration (ms)==Тривалість (мс)
Result-Count==Кількість результатів
The network picture below shows how the latest search query was solved by asking corresponding peers in the DHT:==Картина мережі нижче показує, як останній пошуковий запит був оброблений з допомогою звернення до відповідних вузлів в DHT.
-red -> request list alive==червона -> Діючий список запиту
-green -> request has terminated==зелена -> Запит закінчено
-grey -> the search target hash order position(s) (more targets if a dht partition is used)<==сіра -> Позиція(ї) результату пошуку в порядку контр.суми (більше цілей, якщо використовується розділ DHT) <
"Search event picture"=="Картина пошукової події"
Delta (ms)==Різниця (мс)
#-----------------------------
+Event==Подія
+Time==час
+red -> request list alive==червоний -> список запитів живий
+green -> request has terminated==зелений -> запит припинено
+grey -> the search target hash order position(s) (more targets if a dht partition is used)==сірий -> позиції хеш-порядку цілі пошуку (більше цілей, якщо використовується розділ dht)
#File: ProxyIndexingMonitor_p.html
#---------------------------
Indexing with Proxy==Індексування з проксі
YaCy can be used to 'scrape' content from pages that pass the integrated caching HTTP proxy.==YaCy може бути використаний для "зішкрябування" вмісту зі всіх сторінок, які проходять через вбудований HTTP-проксі-сервер.
When scraping proxy pages then no personal or protected page is indexed;==При індексуванні сторінок з проксі не індексуються жодні особисті або захищені сторінки!
-# This is the control page for web pages that your peer has indexed during the current application run-time==Це сторінка для керування сторінками, що ваш вузол проіндексував в ході поточної роботи
-# as result of proxy fetch/prefetch.==в результаті роботи проксі.
-# No personal or protected page is indexed==Приватні сторінки і захищені сторінки не індексуються
those pages are detected by properties in the HTTP header (like Cookie-Use, or HTTP Authorization)==Такі сторінки визначаються за особливостями в заголовку HTTP (початку сторінки) (наприклад, печиво, або HTTP-авторизація)
-or by POST-Parameters (either in URL or as HTTP protocol)==або за POST-даними (якщо URL, наприклад, завантажується через протокол HTTP)
-and automatically excluded from indexing.==і не допускаються до індесування.
Proxy Auto Config:==Авто-настройка проксі:
this controls the proxy auto configuration script for browsers at http://localhost:8090/autoconfig.pac==Визначає сценарій автоматичної настройки проксі на http://localhost:8090/autoconfig.pac
-.yacy-domains only==тільки домени .yacy
whether the proxy should only be used for .yacy-Domains==Чи повинен проксі використовуватись тільки для доменів .yacy.
Proxy pre-fetch setting:==Установки індексування проксі:
this is an automated html page loading procedure that takes actual proxy-requested==Це автоматична функція завантаження веб-сторінок, яка використовує поточні
@@ -2200,143 +2120,122 @@ Please note that this setting only take effect for a prefetch depth greater than
Proxy generally==Проксі вцілому
Path==Каталог
The path where the pages are stored (max. length 300)==Каталог, в який повинен розміщуватись кеш (не більше 300 знаків)
-Size==Розмір
The size in MB of the cache.==Розмір кешу в MБ.
"Set proxy profile"=="Зберегти профіль проксі"
-The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.==Файл DATA/PLASMADB/crawlProfiles0.db відсутній або пошкоджений.
-Please delete that file and restart.==Будь-ласка, видаліть цей файл і перезапустіть YaCy.
-Pre-fetch is now set to depth==Індексування проксі тепер на глибині
-Caching is now #(caching)#off::on#(/caching)#.==Збереження з проксі в кеш зараз #(caching)#з::на#(/caching)#.
-Local Text Indexing is now #(indexingLocalText)#off::on==Місцеве індексування тексу зараз #(indexingLocalText)#з::на
-Local Media Indexing is now #(indexingLocalMedia)#off::on==Місцеве індексування медіа зараз #(indexingLocalMedia)#з::на
-Remote Indexing is now #(indexingRemote)#off::on==Віддалене індексування зараз #(indexingRemote)#з::на
-Cachepath is now set to '#[return]#'. Please move the old data in the new directory.==Кеш зараз в каталозі "#[return]#". Будь-ласка, перепишіть ваші файли в новий каталог.
-Cachesize is now set to #[return]#MB.==Розмір кешу зараз виставлений в #[return]#MБ.
Changes will take effect after restart only.==Зміни набируть чинності після перезапуску YaCy.
-An error has occurred:==Виникла помилка:
You can see a snapshot of recently indexed pages==Ви можете перегянути останні проіндексовані сторінки
-on the Proxy Index Monitor Page.==на сторінці спостереження за індексуванням проксі.
-You have to setup the proxy before use.==Вам потрібно налаштувати проксі-сервер перед його використанням.
-#-----------------------------
-
-#File: QuickCrawlLink_p.html
-#---------------------------
-Quick Crawl Link==Швидке сканування посилання
-#Quickly adding Bookmarks:==Schnell Crawl Lesezeichen:
-#Simply drag and drop the link shown below to your Browsers Toolbar/Link-Bar.==Ziehen Sie einfach den unten stehenden Link auf Ihre Browser Toolbar/Linkbar.
-#If you click on it while browsing, the currently viewed website will be inserted into the YaCy crawling queue for indexing.==Wenn Sie, während Sie surfen, auf dieses Lesezeichen klicken, wird die gerade betrachtete Seite zum YaCy Crawler-Puffer hinzugefügt, um indexiert zu werden.
-#Crawl with YaCy==Mit YaCy crawlen
-#Title:==Titel:
-#Link:==link:
-#Status:==Status:
-#URL successfully added to Crawler Queue==Die Url wurde erfolgreich zum Crawler-Puffer hinzugefügt.
-#Malformed URL==Fehler in der URL
-#Unable to create new crawling profile for URL:==Es ist nicht möglich für diese URL ein Crawling Profil zu erstellen:
-#Unable to add URL to crawler queue:==Es ist nicht möglich die URL zum Crawler-Puffer hinzuzufügen:
#-----------------------------
+or by POST-Parameters (either in URL or as HTTP protocol) and automatically excluded from indexing.==або за допомогою POST-Parameters (у URL або як HTTP протокол) і автоматично виключається з індексування.
+Size==Розмір
+The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.==Файл DATA/PLASMADB/crawlProfiles0.db відсутній або пошкоджений.
+Please delete that file and restart.==Будь ласка, видаліть цей файл і перезапустіть.
+Caching is now==Кешування зараз
+off==вимкнено
+on==на
+Local Text Indexing is now==Локальне текстове індексування наразі
+Local Media Indexing is now==Індексування локальних медіа зараз
+Remote Indexing is now==Віддалене індексування зараз
#File: RemoteCrawl_p.html
+Last Seen==Востаннє відомий
#---------------------------
-Remote Crawl Configuration==Налаштування віддаленого сканування
->Remote Crawler<==>Віддалений сканувач<
The remote crawler is a process that requests urls from other peers.==Віддалений сканувач це процес, що отримує URL-адреси від інших вузлів.
Peers offer remote-crawl urls if the flag 'Do Remote Indexing'==Вузли забезпечують віддалене сканування, коли прапор "використовувати віддалене індексування"
is switched on when a crawl is started.==встановлений під час початку сканування.
Remote Crawler Configuration==Налаштування віддаленого сканування
->Accept Remote Crawl Requests<==>Приймати запити на сканування<
Perform web indexing upon request of another peer.==Здійснювати веб-індексування на запити інших вузлів.
Load with a maximum of==Завантажувати не більше
pages per minute==сторінок за хвилину
"Save"=="Зберегти"
-Crawl results will appear in the==Показ результатів знаходиться в
->Crawl Result Monitor<==>світлині результатів сканування<
Peers offering remote crawl URLs==Вузли, що пропонують URL для віддаленого сканування
If the remote crawl option is switched on, then this peer will load URLs from the following remote peers:==Якщо віддалене сканування увімкнене, то цей вузол скануватиме URL-адреси з таких віддалених вузлів:
->Name<==>Ім’я<
-#>Remote Crawl<==>Remote Crawl<
->Release/ SVN<==>Випуск/SVN<
->PPM<==>Сторінок За Хвилину (PPM)<
->QPH<==>Запитів За Годину (QPH)<
->Last Seen<==>Востаннє бачено<
-UTC Offset==Зсув UTC
->Uptime<==>Час в мережі<
->Links<==>Посилання<
->RWIs<==>RWI<
->Age<==>Вік<
-URLs for Remote Crawl==Надає URL
+UTC Offset==UTC зсув
+URLs for Remote Crawl==URL для віддаленого сканування
#-----------------------------
+Remote Crawler==Віддалений сканер
+Your peer cannot accept remote crawls because you need senior or principal peer status for that!==Ваш партнер не може погоджуватися на віддалене сканування, тому що для цього вам потрібен статус старшого або головного партнера!
+Accept Remote Crawl Requests==Приймати запити на віддалене сканування
+Name==Ім'я
+Release==Звільнення
+PPM==PPM
+QPH==QPH
+Uptime==Час роботи
+Links==Посилання
+RWIs==RWIs
+Age==Вік
#File: Settings_p.html
#---------------------------
Advanced Settings==Розширені настройки
If you want to restore all settings to the default values,==Якщо ви хочете скинути всі налаштування до вихідних значень,
-but forgot your administration password, you must stop the proxy,==але забули пароль адміністратора, необхідно зупинити YaCy,
+but forgot your administration password, you must stop the proxy,==але забули пароль адміністратора, необхідно зупинити проксі,
delete the file 'DATA/SETTINGS/yacy.conf' in the YaCy application root folder and start YaCy again.==видалити з каталогу установки YaCy файл "DATA/SETTINGS/yacy.conf" і перезапустити YaCy.
-#Performance Settings of Queues and Processes==Установки швидкодії для черг і процесів
-Performance Settings of Busy Queues==Установки швидкодії зайнятих черг
-Performance of Concurrent Processes==Швидкодія одночасних процесів
-Performance Settings for Memory==Швидкодія пам’яті
-Performance Settings of Search Sequence==Установки швидкодії пошукових запитів
### --- Those 3 items are removed in latest SVN BEGIN
-Viewer and administration for database tables==Керування таблицями БД
-Viewer for Peer-News==Установки повідомлень вузла
-Viewer for Cookies in Proxy==Установки обробки печива
### --- Those 3 items are removed in latest SVN END
Server Access Settings==Установки доступу до сервера
-Proxy Access Settings==Установки доступу до проксі
-#Content Parser Settings==Установки обробника вмісту
Crawler Settings==Установки сканувача
-HTTP Networking==Мережа HTTP
Remote Proxy (optional)==Віддалений проксі (не обов’язково)
Seed Upload Settings==Установки вивантаження насіння
Message Forwarding (optional)==Пересилання повідомлень (не обов’язково)
#-----------------------------
+Referrer Policy Settings==Параметри політики реферера
+Transparent Proxy Access Settings==Прозорі налаштування доступу до проксі
+URL/Web Proxy Access Settings==URL/Web Параметри доступу проксі
+Debug/Analysis Settings==Debug/Analysis Налаштування
+HTTP client Settings==Налаштування клієнта HTTP
#File: Settings_Crawler.inc
+Changes will take effect immediately.==Зміни набирають чинності негайно.
+Crawler Settings==Установки сканувача
#---------------------------
->Crawler Settings==>Установки сканувача
-Generic Crawler Settings==Загальні установки сканувача
Timeout:==Час підключення:
-Connection timeout in ms==Тривалість утримування невикористовуваних з’єднань в мс
-means unlimited==означає необмежений
HTTP Crawler Settings:==Установки сканувача HTTP:
-Maximum Filesize==Найбільший файл
-FTP Crawler Settings==Установки сканувача FTP
-SMB Crawler Settings==Установки сканувача SMB
-Local File Crawler Settings==Установки сканувача місцевої файлової системи
-Maximum allowed file size in bytes that should be downloaded==Найбільший дозволений розмір файлу в байтах
-Larger files will be skipped==Більші файли будуть пропущені
-Please note that if the crawler uses content compression, this limit is used to check the compressed content size==Зверніть увагу, що при завантаженні файлів стиснутих зі стисканням вмісту, цей показник використовується для перевірки розміру стиснутих даних
-Submit==Зберегти
-Changes will take effect immediately==Зміни набирають чинності негайно
#-----------------------------
+"Submit"=="Відправити"
+Generic Crawler Settings:==Загальні налаштування сканера:
+Maximum Filesize:==Максимальний розмір файлу:
+Please note that if the crawler uses content compression, this limit is used to check the compressed content size.==Зауважте, що якщо веб-сканер використовує стиснення вмісту, це обмеження використовується для перевірки розміру стисненого вмісту.
+FTP Crawler Settings:==Налаштування сканера FTP:
+SMB Crawler Settings:==Налаштування сканера SMB:
+Local File Crawler Settings:==Налаштування сканера локальних файлів:
#File: Settings_ProxyAccess.inc
+"change"=="змінити"
+Proxy Access Settings==Налаштування доступу до проксі
+These settings configure the access method to your own http proxy and server.==Ці налаштування визначають спосіб доступу до вашого власного HTTP-проксі та сервера.
+All traffic is routed through one single port, for both proxy and server.==Увесь трафік проксі й сервера проходить через один порт.
+Server Access Restrictions==Обмеження доступу до сервера
+You can restrict the access to this proxy/server using a two-stage security barrier:==Ви можете обмежити доступ до цього проксі/сервера за допомогою двоступеневого захисту:
+define an access domain with a list of granted client IP-numbers or with wildcards==визначити домен доступу зі списком дозволених IP-адрес клієнтів або шаблонів
+define an user account with an user:password - pair==визначити обліковий запис користувача з парою user:password
+This is the account that restricts access to the proxy function.==Цей обліковий запис обмежує доступ до функції проксі.
+You probably don't want to share the proxy to the internet, so you should set the==Ймовірно, ви не хочете відкривати проксі для інтернету, тому слід встановити
+IP-Number Access Domain to a pattern that corresponds to you local intranet.==домен доступу IP-номерів на шаблон, що відповідає вашій локальній інтрамережі.
+The default setting should be right in most cases. If you want, you can also set a proxy account==Типове налаштування підходить у більшості випадків. За потреби можна також задати обліковий запис проксі,
+so that every proxy user must authenticate first, but this is rather unusual.==щоб кожен користувач проксі спочатку проходив автентифікацію, але це досить незвично.
+IP-Number filter==Фільтр IP-номерів
#---------------------------
-HTTP Networking==Мережа HTTP
Transparent Proxy==Прозорий проксі
With this you can specify if YaCy can be used as transparent proxy.==Дозволяє вказати, чи може YaCy бути використаним в якості прозорого проксі.
-Hint: On linux you can configure your firewall to transparently redirect all http traffic through yacy using this iptables rule==Примітка: У Linux ви можете налаштувати брандмауер, щоб всі HTTP-з’єднання прозоро передавалися YaCy, використовуючи для цього правила IPTables
-Connection Keep-Alive==Утримувати зв’язок
-With this you can specify if YaCy should support the HTTP connection keep-alive feature.==Цим можна визначити, чи буде YaCy підтримувати таку можливість зв’язку, як HTTP Keep-Alive.
Send "Via" Header==Відсилати "Via"
-Specifies if the proxy should send the Via==Визначає, чи буде проксі відсилати Via-HTTP-Заголовок
http header according to RFC 2616 Sect 14.45.==відповідно до RFC 2616 Sect 14.45.
Send "X-Forwarded-For" Header==Відсилати "X-Forward-For"
Specifies if the proxy should send the X-Forwarded-For http header.==Визначає, чи буде проксі відсилати HTTP-Заголовок X-forwarded-For.
"Submit"=="Зберегти"
-Changes will take effect immediately.==Зміни набирають чинності негайно.
#-----------------------------
+Proxy Settings==Налаштування проксі
+Hint: On linux you can configure your firewall to transparently redirect all http traffic through yacy using this iptables rule:==Підказка: у Linux ви можете налаштувати свій брандмауер на прозоре перенаправлення всього http-трафіку через yacy за допомогою цього правила iptables:
+Always Fresh==Завжди свіжий
+If unchecked, the proxy will act using Cache Fresh / Cache Stale rules. If checked, the cache is always fresh which means==Якщо не позначено, проксі-сервер діятиме за правилами Cache Fresh/Cache Stale. Якщо позначено, кеш завжди свіжий, що означає
+that a page is never loaded again if it was already stored in the cache. However, if the page does not exist in the cache, it will be loaded in any case.==що сторінка ніколи не завантажується знову, якщо вона вже була збережена в кеші. Однак, якщо сторінка не існує в кеші, вона буде завантажена в будь-якому випадку.
+HTTPS Server Port:==HTTPS Порт сервера:
+Accounts==Облікові записи
#File: Settings_Proxy.inc
#---------------------------
Remote Proxy (optional)==Віддалений проксі-сервер
YaCy can use another proxy to connect to the internet. You can enter the address for the remote proxy here:==YaCy можете використовувати різні проксі для підключення до інтернету. Ви можете ввести адресу віддаленого проксі тут.
-Use remote proxy==Використовувати віддалений проксі
Enables the usage of the remote proxy by yacy==Вмикає використання віддалених проксі через YaCy
-Use remote proxy for yacy <-> yacy communication==Використовувати віддалений проксі для YaCy <-> Зв’язок YaCy
-Specifies if the remote proxy should be used for the communication of this peer to other yacy peers.==Вказує, чи віддалений проксі-сервер повинен бути використаним для зв’язку між цим та іншими вузлами YaCy.
-Hint: Enabling this option could cause this peer to remain in junior status.==Примітка: Це може викликати те, що цей вузол стане Молодшим.
Use remote proxy for HTTPS==Використовувати віддалений проксі для HTTPS
Specifies if YaCy should forward ssl connections to the remote proxy.==Визначає, чи буде YaCy спрямовувати SSL підключення через віддалений проксі.
Remote proxy host==Віддалений проксі-хост
@@ -2351,41 +2250,7 @@ IP addresses for which the remote proxy should not be used==IP-адреси, щ
Changes will take effect immediately.==Зміни набирають чинності негайно.
#-----------------------------
-#File: Settings_ProxyAccess.inc
-#---------------------------
-Proxy Access Settings==Установки доступу до проксі
-These settings configure the access method to your own http proxy and server.==Ці параметри впливають на доступ до вашого HTTP-проксі і -сервера.
-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:==У вас є чотири способи вказати адресу:
-defining a port only==вказати тільки порт
-e.g. 8090==наприклад, 8090
-defining IP address and port==вказати IP-адресу і порт
-e.g. 192.168.0.1:8090==наприклад, 192.168.0.1:8090
-defining host name and port==вказати ім’я хосту і порт
-e.g. home:8090==наприклад, home:8090
-defining interface name and port==вказати ім’я інтерфейсу і порт
-e.g. #eth0:8090==наприклад, #eth0:8090
-Hint: Dont forget to change your firewall configuration after you have changed the port.==Примітка: Не забудьте змінити настройки брандмауера після зміни порту.
-Proxy and http-Server Administration Port==Порт керування проксі і HTTP-сервером
-Changes will take effect in 5-10 seconds==Зміни наберуть чинності напротязі 5-10 секунд
-Server Access Restrictions==Обмеження доступу до сервера
-You can restrict the access to this proxy/server using a two-stage security barrier:==Ви можете обмежити доступ до цього проксі/сервера з 2-х ступінчастим захисним бар’єром:
-define an access domain with a list of granted client IP-numbers or with wildcards==визначіть простір мережних адрес, використовуючи список дозволених адрес IP клієнта або з використанням шаблонів
-define an user account with an user:password - pair==визначіть обліковий запис користувача з парою користувач:пароль
-This is the account that restricts access to the proxy function.==Це коли користувач отримує доступ до проксі-служби.
-You probably don't want to share the proxy to the internet, so you should set the==Ви, напевно, не хочете надавати доступ до проксі з інтернету, так-що повинні
-IP-Number Access Domain to a pattern that corresponds to you local intranet.==встановити адресний IP-простір таким чином, щоб він відносився до вашої місцевої мережі.
-The default setting should be right in most cases. If you want, you can also set a proxy account==Значення за замовчуванням повинні бути доцільними в більшості випадків. Якщо хочете, можете створити облікові записи-посередники,
-so that every proxy user must authenticate first, but this is rather unusual.==щоб кожен користувач проксі повинен був спочатку увійти в систему, хоча це досить незвично.
-IP-Number filter==IP-фільтр
-Use Accounts==>Проксі
-Proxy Accounts==облікові записи проксі
-"Submit"=="Відправити"
-#-----------------------------
-
+Use remote proxy==Використовувати віддалений проксі
#File: Settings_Seed.inc
#---------------------------
Seed Upload Settings==Установки вивантаження насіння
@@ -2397,22 +2262,25 @@ Your peer will then upload the seed-bootstrap information periodically,==Ваш
but only if there have been changes to the seed-list.==але тільки якщо в списку насіння були зміни.
Upload Method==Спосіб вивантаження
"Submit"=="Зберегти"
-Retry Uploading==Повторити вивантаження
-Here you can specify which upload method should be used.==Тут ви можете вибрати, який буде використано спосіб вивантаження.
-Select 'none' to deactivate uploading.==Використовуйте "жоден", щоб відключити вивантаження.
The URL that can be used to retrieve the uploaded seed file, like==URL, який може бути використаний для отримання отримання вивантаженого насіннєвого файлу, наприклад,
#-----------------------------
+"Retry Uploading"=="Повторити завантаження"
+Here you can specify which upload method should be used. Select 'none' to deactivate uploading.==Тут ви можете вказати, який метод завантаження слід використовувати. Виберіть «немає», щоб вимкнути завантаження.
+URL==URL
+http://www.<my-host>.net/yacy/seed.txt'==http://www.<my-host>.net/yacy/seed.txt'
#File: Settings_Seed_UploadFile.inc
#---------------------------
Store into filesystem:==Розмістити в файлову систему:
You must configure this if you want to store the seed-list file onto the file system.==Використовуйте ці настройки, якщо потрібно розмістити список насіння у файловій системі.
-File Location==Розташування
Here you can specify the path within the filesystem where the seed-list file should be stored.==Тут ви можете вказати шлях у файловій системі, куди повинен бути розміщений список насіння.
"Submit"=="Зберегти"
#-----------------------------
+File Location:==Розташування файлу:
+current:==поточний:
#File: Settings_Seed_UploadFtp.inc
+Path==Каталог
#---------------------------
Uploading via FTP:==Вивантажити по FTP:
This is the account for a FTP server where you can host a seed-list file.==Це обліковий запис для FTP-сервера, на якому ви можете розмістити список насіння.
@@ -2420,41 +2288,37 @@ If you set this, you will become a principal peer.==Якщо ви це роби
Your peer will then upload the seed-bootstrap information periodically,==Ваш вузол потім буде періодично завантажиувати туди початкову інформацію (насіння),
but only if there had been changes to the seed-list.==але тільки якщо файл насіння був змінений.
The host where you have a FTP account, like 'ftp.<my-host>.net'==Сервер, на якому у вас є обліковий запис FTP, наприклад, "ftp.<my-host>.net"
-Path==Шлях
-The remote path on the FTP server, like==Віддалений шлях на сервері FTP, наприклад,
-Missing sub-directories are NOT created automatically.==Відсутні підкаталоги самі НЕ створюються.
Username==Користувач
Your log-in at the FTP server==Ваш обліковий запис на сервері
-Password==Пароль
The password==Пароль
"Submit"=="Зберегти"
->Server==>Сервер
#-----------------------------
+Server==Сервер
+The remote path on the FTP server, like 'yacy/seed.txt'. Missing sub-directories are NOT created automatically.==Віддалений шлях на сервері FTP, наприклад 'yacy/seed.txt'. Відсутні підкаталоги НЕ створюються автоматично.
+Password==Пароль
#File: Settings_Seed_UploadScp.inc
+Path==Каталог
#---------------------------
Uploading via SCP:==Вивантажити по SCP:
This is the account for a server where you are able to login via ssh.==Це обліковий запис сервера, на який ви можете ввійти по SSH.
->Server==>Сервер
The host where you have an account, like 'my.host.net'==Хост, на якому у вас є обліковий запис, наприклад, "mein.host.net"
Server Port==Порт
The sshd port of the host, like '22'==Порт SSHD хосту, наприклад, "22"
-Path==Шлях
The remote path on the server, like '~/yacy/seed.txt'. Missing sub-directories are NOT created automatically.==Віддалений шлях на сервері, наприклад, "~/yacy/seed.txt". Відсутні підкаталоги самі НЕ створюються.
Username==Користувач
Your log-in at the server==Ваш обліковий запис на сервері
-Password==Пароль
The password==Пароль
"Submit"=="Зберегти"
#-----------------------------
+Server==Сервер
+Password==Пароль
#File: Settings_ServerAccess.inc
#---------------------------
Server Access Settings==Установки доступу до сервера
IP-Number filter:==IP-фільтр:
-Here you can restrict access to the server.==Тут ви можете обмежити доступ до сервера.
-By default, the access is not limited,==За замовчуванням доступ необмежений,
because this function is needed to spawn the p2p index-sharing function.==тому-що це необхідно для P2P обміну індексом.
If you block access to your server (setting anything else than '*'), then you will also be blocked==Якщо заблокувати доступ до вашого сервера (виставити будь-що крім "*"), то ви також вимкнете використання
from using other peers' indexes for search service.==індексу інших вузлів для пошуку.
@@ -2468,78 +2332,114 @@ an access point for incoming connections.==точку доступу для вх
This access address can be set here (either as IP number or domain name).==Ця адреса доступу може бути визначена (як IP-число або ім’я домена).
If the address of outgoing connections is equal to the address of incoming connections,==Якщо адреса доступу вихідних з’єднань така ж, як і для вхідних,
you don't need to set anything here, please leave it blank.==вам не потрібно що-небудь тут вказувати. Будь ласка, залиште це поле порожнім.
-ATTENTION: Your current IP is recognized as "#[clientIP]#".==УВАГА: Ваш поточний IP визначається як "#[clientIP]#".
If the value you enter here does not match with this IP,==Якщо значення, яке ви ввели, не співпадає з IP,
you will not be able to access the server pages anymore.==ви не матимете можливості доступу до серверної частини.
-value="Submit"==value="Зберегти"
#-----------------------------
+"Submit"=="Відправити"
+(requires restart)==(потрібно перезавантаження)
+Here you can restrict access to the server. By default, the access is not limited,==Тут ви можете обмежити доступ до сервера. За замовчуванням доступ не обмежений,
+Filter have to be entered as IP, IP range or using CIDR notation separated by comma (e.g. 192.168.1.1,2001:db8==Фільтр має бути введений як IP, IP діапазон або використовуючи нотацію CIDR, розділену комами (наприклад, 192.168.1.1,2001:db8
+ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)==ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)
+further details on format see Jetty==додаткові відомості про формат дивіться в Jetty
+publicPort (optional):==publicPort (необов'язково):
+The publicPort can help that your peer can be reached by other peers in case that your==PublicPort може допомогти, щоб ваш одноранговий пристрій міг бути доступним для інших однорангових пристроїв, якщо ваш
+peer is behind a reverse proxy.==вузол знаходиться за зворотним проксі.
+If the port used to access YaCy is the same port the application is listening on,==Якщо порт, який використовується для доступу до YaCy, є тим самим портом, який програма прослуховує,
+fileHost:==fileHost:
+Set this to avoid error-messages like 'proxy use not allowed / granted' on accessing your Peer by its hostname.==Встановіть це, щоб уникнути повідомлень про помилку на зразок «використання проксі-сервера заборонено/надано» під час доступу до однорангового вузла за його іменем хоста.
+Virtual host for httpdFileServlet access for example http://FILEHOST/ shall access the file servlet and==Віртуальний хост для доступу до httpdFileServlet, наприклад http://FILEHOST/ має доступ до файлового сервлета та
+return the defaultFile at rootPath either way, http://FILEHOST/ denotes the same as http://localhost:<port>/==повернути файл за замовчуванням у rootPath у будь-який спосіб, http://FILEHOST/ позначає те саме, що http://localhost:<port>/
+for the preconfigured value 'localpeer', the URL is: http://localpeer/.==для попередньо налаштованого значення 'localpeer' URL: http://localpeer/.
+Server Port Settings==Налаштування порту сервера
+Server port:==Порт сервера:
+This is the main port for all http communication (default is 8090). A change requires a restart.==Це основний порт для всіх HTTP-зв’язків (за замовчуванням 8090). Зміна потребує перезапуску.
+Server ssl port:==Порт ssl сервера:
+This is the port to connect via https (default is 8443). A change requires a restart.==Це порт для підключення через https (за замовчуванням 8443). Зміна потребує перезапуску.
+Shutdown port:==Порт вимкнення:
+This is the local port on the loopback address (127.0.0.1 or :1) to listen for a shutdown signal to stop the YaCy server (-1 disables the shutdown port, recommended default is 8005). A change requires a restart.==Це локальний порт на петлевій адресі (127.0.0.1 або :1) для прослуховування сигналу завершення роботи для зупинки сервера YaCy (-1 вимикає порт завершення роботи, рекомендоване значення за умовчанням — 8005). Зміна потребує перезапуску.
+Compression settings==Параметри стиснення
+Compress responses with gzip==Стискайте відповіді за допомогою gzip
+When checked (default), HTTP responses can be compressed using gzip.==Якщо позначено (за замовчуванням), відповіді HTTP можна стиснути за допомогою gzip.
+The requesting user-agent (a web browser, another YaCy peer or any other tool) uses the header 'Accept-Encoding' to tell whether it accepts gzip compression or not.==Запитуючий агент користувача (веб-браузер, інший одноранговий вузол YaCy або будь-який інший інструмент) використовує заголовок «Accept-Encoding», щоб визначити, чи приймає він стиснення gzip чи ні.
+This adds some processing overhead, but can significantly reduce the amount of bytes transmitted over the network.==Це додає певні витрати на обробку, але може значно зменшити кількість байтів, що передаються через мережу.
+Changes need a server restart.==Зміни потребують перезапуску сервера.
#File: SettingsAck_p.html
#---------------------------
-YaCy '#[clientname]#': Settings Acknowledge==YaCy "#[clientname]#": Прийняття налаштувань
Settings Receipt:==Застосування установок:
No information has been submitted==Не було передано жодної інформації.
Error with submitted information.==Виникла помилка у передачі інформації.
-Nothing changed.==Нічого не змінилося.
The user name must be given.==Ім’я користувача повинно бути вказано.
-Your request cannot be processed.==Ваш запит не може бути оброблений.
The password redundancy check failed. You have probably mistyped your password.==Перевірка пароля не вдалася. Ви, напевно, помилилися.
-Shutting down. Application will terminate after working off all crawling tasks.==Завершення роботи. Додаток буде закрито після обробки всіх сканувань.
Your administration account setting has been made.==Ваші налаштування облікового запису адміністратора були збережені.
-Your new administration account name is #[user]#. The password has been accepted. If you go back to the Settings page, you must log-in again.==Ваше нове ім’я облікового запису адміністратора #[user]#. Пароль був прийнятий. Якщо ви хочете повернутися до налаштувань, необхідно увійти заново.
Your proxy access setting has been changed.==Установки доступу проксі-сервера були змінені.
-Your proxy account check has been disabled==Перевірка вашого облікового запису була вимкнена
-since you did not supply a password==бо ви не вказали пароль
The new proxy IP filter is set to==Новий IP-фільтр для проксі
The proxy port is:==Порт проксі:
Port rebinding will be done in a few seconds.==Переприв’язка порту буде завершена протягом декількох секунд.
-You can reach your YaCy server under the new location==Ви можете зв’язатися з вашим новим сервером YaCy за адресою:
-Your proxy access setting has been changed.==Ваші налаштування доступу до проксі були змінені.
-Your server access filter is now set to==Ваш фільтр доступу до проксі тепер встановлений в
Auto pop-up of the Status page is now disabled==Спливання сторінки стану при запуску переглядача в даний час вимкнене.
Auto pop-up of the Status page is now enabled==Спливання сторінки стану при запуску переглядача в даний час увімкнене.
-You are now permanently online.==Тепер ви знаходитесь в мережі постійно.
-After a short while you should see the effect on the==Незабаром зміни будуть впроваджені і відображені на
-status page.==сторінці стану.
The Peer Name is:==Ім’я цього вузла:
Your static Ip(or DynDns) is:==Ваш постійний IP (або DynDNS):
-Seed Settings changed.#(success)#::You are now a principal peer.==Насіннєві установки були змінені#(success)#.:: Ви тепер головний вузол.
Seed Settings changed, but something is wrong.==Насіннєві установки були змінені, але щось не так.
Seed Uploading was deactivated automatically.==Вивантаження насіння було автоматично вимкнене.
Please return to the settings page and modify the data.==Будь-ласка, поверніться до налаштувань і змініть дані.
The remote-proxy setting has been changed==Установки віддаленого проксі-сервера були змінені.
The new setting is effective immediately, you don't need to re-start.==Нові установки вступають в силу негайно. Вам не потрібно перезапускати вузол.
-The submitted peer name is already used by another peer. Please choose a different name. The Peer name has not been changed.==Введене вами ім’я вузла вже використовується іншим вузлом. Будь ласка, виберіть інше ім’я. Ім’я вузла не змінилося.
Your Peer Language is:==Мова вашого вузла:
-The submitted peer name is not well-formed. Please choose a different name. The Peer name has not been changed.==Надіслане ім’я вузла неправильне. Будь ласка, виберіть інше ім’я. Ім’я вузла не змінилося.
Peer names must not contain characters other than (a-z, A-Z, 0-9, '-', '_') and must not be longer than 80 characters.==Ім’я вузла повинно не містити знаки, відмінні від (a-z, A-Z, 0-9, '-', '_') і не повинно бути довшим 80 знаків.
-The new parser settings where changed successfully==Нові настройки обробника були успішно змінені
-The new crawler settings where changed successfully==Нові настройки сканувача були успішно змінені
-Parsing of the following mime-types was enabled:==Обробка наступних типів mime була задіяна:
Seed Upload method was changed successfully.==Спосіб вивантаження насіння було успішно змінено.
You are now a principal peer.==Ви тепер основний вузол.
Seed Upload Method:==Спосіб вивантаження насіння:
Seed File URL:==URL файлу насіння:
Your proxy networking settings have been changed.==Ваші мережні настройки проксі були змінені.
Transparent Proxy Support is:==Прозорий проксі:
-Connection Keep-Alive Support is:==Утримування (Keep-Alive) з’єднання:
Your message forwarding settings have been changed.==Ваші настройки переадресації повідомлень були змінені.
Message Forwarding Support is:==Підтримка пересилання повідомлень:
Message Forwarding Command:==Команда передачі повідомлень:
Recipient Address:==Адреса одержувача:
-You are now event-based online.==Тепер ви знаходитесь в мережі при подіях.
-You are now in Cache Mode.==Зараз ви знаходитесь в режимі кешування.
-Only Proxy-cache ist available in this mode.==Тільки проксі-кеш доступний в цьому режимі.
-You can now go back to the==Тепер ви можете повернутися на сторінку
-Settings page if you want to make more changes.==установок, якщо потрібно зробити інші зміни.
-You can reach your YaCy server under the new location==Цей вузол YaCy тепер може бути досягнутим за його новою адресою:
Send via header is:==Відсилати "Via":
Send X-Forwarded-For header is:==Відсилати "X-Forward-For":
If you open any public web page through the proxy, you must log-in.==Якщо хочете відкрити будь-яку загальну веб-сторінку через проксі-сервер, спершу потрібно увійти.
-==
#-----------------------------
+Nothing changed.==Нічого не змінилося.
+Your request cannot be processed. Nothing changed.==Ваш запит не може бути оброблено. Нічого не змінено.
+Shutting down. Application will terminate after working off all crawling tasks.==Завершення роботи. Програма припинить роботу після виконання всіх завдань сканування.
+Your proxy access setting has been changed.==Налаштування доступу до проксі-сервера було змінено.
+Your proxy account check has been disabled.==Перевірку вашого проксі-облікового запису вимкнено.
+Port rebinding will be done in a view seconds.==Повторне прив’язування портів буде виконано за кілька секунд.
+Your public port is:==Ваш публічний порт:
+Seed Settings changed.==Налаштування початкового коду змінено.
+The submitted peer name is already used by another peer. Please choose a different name. The Peer name has not been changed.==Подане ім’я однорангового вузла вже використовується іншим одноранговим вузлом. Виберіть інше ім’я. Ім’я однорангового користувача не змінено.
+The submitted peer name is not well-formed. Please choose a different name. The Peer name has not been changed.==Подане ім’я однорангового вузла неправильно сформоване. Виберіть інше ім’я. Ім’я однорангового користувача не змінено.
+Always Fresh is:==Завжди свіжий - це:
+Invalid IP-Number filter:==Недійсний IP-числовий фільтр:
+Your crawler settings have been changed.==Налаштування вашого веб-сканера змінено.
+Generic Settings:==Загальні налаштування:
+Crawler timeout:==Час очікування сканера:
+http Crawler Settings:==Налаштування веб-сканера http:
+Maximum HTTP Filesize:==Максимальний HTTP розмір файлу:
+ftp Crawler Settings:==Налаштування сканера ftp:
+Maximum FTP Filesize:==Максимальний FTP розмір файлу:
+smb Crawler Settings:==Налаштування сканера smb:
+Maximum SMB Filesize:==Максимальний SMB розмір файлу:
+Maximum file Filesize:==Максимальний розмір файлу:
+Invalid crawler timeout value:==Недійсне значення часу очікування сканера:
+Invalid maximum file size for http crawler:==Недійсний максимальний розмір файлу для сканера http:
+Invalid maximum file size for ftp crawler:==Недійсний максимальний розмір файлу для сканера ftp:
+HTTPS port is now:==Порт HTTPS зараз:
+the change will take effect after restart.==зміни набудуть чинності після перезавантаження.
+URL Proxy settings have been saved.==Налаштування URL-проксі збережено.
+Debug/Analysis settings have been saved.==Налаштування Debug/Analysis збережено.
+Referrer policy settings have been saved.==Налаштування політики реферера збережено.
+The ports are now configured as follows (active on next start).==Тепер порти налаштовані таким чином (активні під час наступного запуску).
+HTTP port==HTTP порт
+HTTPS port==HTTPS порт
+Shutdown port==Порт вимкнення
+Compression settings have been saved.==Налаштування стиснення збережено.
+HTTP client settings have been saved.==Налаштування клієнта HTTP збережено.
+Your need to restart YaCy to activate the changes.==Потрібно перезапустити YaCy, щоб активувати зміни.
#File: Settings_MessageForwarding.inc
#---------------------------
Message Forwarding==Пересилання повідомлень
@@ -2547,162 +2447,139 @@ With this settings you can activate or deactivate forwarding of yacy-messages vi
Enable message forwarding==Ввімкнути пересилання повідомлень
Enabling/Disabling message forwarding via email.==Ввімкнути/Вимкнути пересилання повідомлень по ел.Пошті.
Forwarding Command==Команда пересилання
-The command-line program that should be used to forward the message. ==Програма командного рядка для пересилання повідомлення.
Forwarding To==Пересилати до
-The recipient email-address. ==Електронна адреса отримувача.
-e.g.:==наприклад:
"Submit"=="Відправити"
Changes will take effect immediately.==Зміни набирають чинності негайно.
#-----------------------------
+The command-line program that should be used to forward the message.==Програма командного рядка, яку слід використовувати для пересилання повідомлення.
+e.g.:==наприклад:
+The recipient email-address.==Електронна адреса одержувача.
#File: sharedBlacklist_p.html
#---------------------------
-Shared Blacklist==Загальний чорний список
Add Items to Blacklist==Додавання даних у чорний список
Unable to store the items into the blacklist file:==Неможливо помістити дані в наступний файл чорного списку:
-File Error! Wrong Path?==Помилка файлу! Неправильний шлях?
-YaCy-Peer "#[name]#" not found.==YaCy-вузол "#[name]#" не знайдено.
-not found or empty list.==не знайдено або порожній список.
-Wrong Invocation! Please invoke with==Неправильний виклик! Будь ласка, викличте з
Blacklist source:==Джерело чорного списку:
Blacklist target:==Ціль чорного списку:
Blacklist item==Запис чорного списку
"select all"=="вибрати всі"
"deselect all"=="зняти всі"
-value="add"==value="додати"
#-----------------------------
+"add"=="додати"
+File Error! Unable to fetch data from file.==Помилка файлу! Не вдалося отримати дані з файлу.
+YaCy-Peer "==YaCy-Однаковий "
+" not found.==" не знайдено.
+URL "==URL "
+" not found or empty list.==" не знайдено або порожній список.
+Wrong Invocation! Please invoke with sharedBlacklist.html?name=PeerName==Неправильний виклик! Будь ласка, викликайте за допомогою sharedBlacklist.html?name=PeerName
+Parse Error! An error occured while parsing XML data. Please check if the XML is valid.==Помилка аналізу! Під час аналізу даних XML сталася помилка. Перевірте, чи XML дійсний.
#File: Status.html
#---------------------------
-Console Status==Консоль стану
Log-in as administrator to see full status==Увійдіть як адміністратор для перегляду повного стану
Welcome to YaCy!==Вітаємо в YaCy!
Your settings are _not_ protected!==Ваші налаштування _не_ захищені паролем!
-Please open the accounts configuration page immediately==Будь-ласка, негайно відкрийте настройки облікових записів
and set an administration password.==і виставте пароль адміністратора.
You have not published your peer seed yet. This happens automatically, just wait.==Ваш вузол не відомий мережі. Зачекайте, це робиться автоматично.
The peer must go online to get a peer address.==Ваш вузол повинен вийти в мережу, щоб отримати адресу.
You cannot be reached from outside.==Ваш вузол не може бути досягнутий ззовні.
A possible reason is that you are behind a firewall, NAT or Router.==Одна з можливих причин, що ви знаходитесь за брандмауером, NAT'ом або маршрутизатором.
-But you can search the internet using the other peers'==Але ви можете здійснювати пошук в глобальному індексі
global index on your own search page.==інших вузлів зі своєї сторінки пошуку.
"bad"=="погано"
"idea"=="думка"
"good"=="добре"
-"Follow YaCy on Twitter"=="Слідувати за YaCy на Twitter'і"
We encourage you to open your firewall for the port you configured (usually: 8090),==Ми рекомендуєм відкрити файрвол на виставленому порту YaCy (за замовчуванням: 8090)
or to set up a 'virtual server' in your router settings (often called DMZ).==або виставити "віртуальний сервер" у вашому маршрутизаторі (часто називається DMZ).
Please be fair, contribute your own index to the global index.==Будь-ласка, будьте справедливими і зробіть свій внесок у загальний індекс!
-Free disk space is lower than #[minSpace]#. Crawling has been disabled. Please fix==Вільного простору на жорсткому диску менше #[minSpace]#. Сканування було вимкнене. Будь ласка, виправте
it as soon as possible and restart YaCy.==цю проблему якомога швидше і перезапустіть YaCy.
-Free memory is lower than #[minSpace]#. DHT-in has been disabled. Please fix==Залишилось менше, ніж #[minSpace]# пам’яті. DHT-in вимкнений. Будь ласка, виправте
-Latest public version is==Остання стабільна версія
You can download a more recent version of YaCy. Click here to install this update and restart YaCy:==Ви можете завантажити нову версію YaCy. Натисніть тут, щоб встановити це оновлення і перезапустити YaCy:
"Update YaCy"=="Оновити YaCy"
-Install YaCy==Встановити YaCy
You are running a server in senior mode and you support the global internet index,==Ви можете запустити YaCy в режимі Старшого і підтримати глобальний індекс,
-which you can also search yourself.==по якому ви також самі можете здійснювати пошук.
You have a principal peer because you publish your seed-list to a public accessible server==У вас Основний вузол, тому що ви вивантажили насіннєвий список на загальнодоступний сервер,
-where it can be retrieved using the URL==де вони доступні за адресою:
-Your Web Page Indexer is idle. You can start your own web crawl here==Ваш індексатор знаходиться в режимі очікування. Запустити сканування
-Your Web Page Indexer is busy. You can monitor your web crawl here.==Ваш веб-індексатор зайнятий. Можете перевірити своє сканування тут
#-----------------------------
+"Fork me on GitHub"=="Форк мене на GitHub"
+"YaCy Websearch"=="YaCy Веб-пошук"
+"PerformanceGraph"=="PerformanceGraph"
+"banner"=="банер"
+"lock icon"=="значок замка"
+Your network configuration is in private mode. Your peer seed will not be published.==Конфігурація вашої мережі знаходиться в приватному режимі. Насіння ваших аналогів не буде опубліковано.
+Access is unrestricted from localhost (this includes administration features).==Доступ необмежений з локального хосту (це включає функції адміністрування).
+Crawling is paused! If the crawling was paused automatically, please check your disk space.==Повзання призупинено! Якщо сканування призупинено автоматично, перевірте вільний простір на диску.
+If you need professional support, please write to==Якщо вам потрібна професійна підтримка, будь ласка, напишіть
+support@yacy.net==support@yacy.net
#File: Status_p.inc
+Address==Адреса
#---------------------------
System Status==Стан системи
-Process==Процес
Unknown==невідомо
-Uptime:==Час в мережі:
-System Resources==Системні ресурси
-Processors:==Процесори:
Protection==Безпека
-Password is missing==Пароль відсутній
password-protected==Захист паролем
-Unrestricted access from localhost==Необмежений доступ з localhost
-Address==Адреса
peer address not assigned==Адреса вузла не призначена
-Public Address:==Публічний вузол:
-YaCy Address:==Адреса YaCy:
-Peer Host==Хост вузла
Port Forwarding Host==Хост переспрямування порту
not used==не використовується
broken==зламаний
connected==під’єднаний
-Remote Proxy==Віддалений проксі
-not used==не використовується
-Used for YaCy -> YaCy communication:==Використовується YaCy -> Зв’язок YaCy:
-WARNING:==ПОПЕРЕДЖЕННЯ:
-You do this on your own risk.==Ви можете використовувати цей параметр на власний ризик.
-If you do this without YaCy running on a desktop-pc or without Java 6 installed, this will possibly break startup.==Якщо ви використовуєте цю настройку, якщо YaCy не працює на настільному ПК, або без Java 6, то YaCy може перестати запускатися.
-In this case, you will have to edit the configuration manually in DATA/SETTINGS/yacy.conf==У цьому випадку необхідно вручну змінити настройки в файл налаштувань DATA/SETTINGS/yacy.conf
->Experimental<==>Експериментальний<
Yes==Так
No==Ні
Auto-popup on start-up==Самопоказ при запуску
-Disabled==Вимкнено
-Enable]==Увімкнути]
-Enabled ==Скинути
Incoming Connections==Вхідні з’єднання
-Active:==Активні:
Max:Макс.:
-Indexing Queue==Черга індексування
-Loader Queue==Черга завантажувача
-paused==вимк.
->Queues<==>Черги<
Local Crawl==Місцеве сканування
Remote triggered Crawl==Вхідні віддалені сканування
Pre-Queueing==Передчерга
Seed server==Насіннєвий сервер
-Configure==Настройка
-Enabled: Updating to server==Ввімкнено, насіннєвий сервер:
-Last upload: #[lastUpload]# ago.==Останнє оновлення: #[lastUpload]#
-Enabled: Updating to file==Ввімкнено: Оновлення файлу
->Traffic==>Трафік
->Proxy==>Проксі
->Crawler==>Сканер
-pause ==призупинити
-continue ==продовжити
-local crawl==місцеве сканування
-remote triggered crawl==вхідне віддалене сканування
Tray-Icon==Значок у треї
-Max:==Макс.:
#-----------------------------
+System==система
+Default password is not changed==Пароль за умовчанням не змінено
+[Configure]==[Налаштувати]
+Proxy==Проксі
+Transparent==Прозорий
+on==на
+off==вимкнено
+URL==URL
+Remote:==Віддалений:
+Experimental==Експериментальний
+RAM used:==Використана оперативна пам'ять:
+RAM max:==Макс ОЗП:
+DISK used:==ДИСК використаний:
+DISK free:==ДИСК безкоштовно:
+Queues==Черги
+(paused)==(пауза)
+Disabled.==Вимкнено.
#File: Steering.html
#---------------------------
-Steering==Контроль
-Checking peer status...==Перевірка статусу вузла ...
-Peer is online again, forwarding to status page...==Вузол в мережі. Перенаправлення до сторінки стану ...
-Peer is not online yet, will check again in a few seconds...==Вузол ще не підключений до мережі. Наступна перевірка через кілька секунд ...
No action submitted==Ніяких дій не відправлено
-Go back to the Settings page==Назад до сторінки налаштувань
Your system is not protected by a password==Ваша система не захищена паролем
-Please go to the User Administration page and set an administration password.==Будь-ласка, перейдіть на сторінку керування користувачами і виставте основний пароль.
You don't have the correct access right to perform this task.==У вас немає дозволу на запуск цього додатка.
-#Please log in.==Bitte melden Sie sich an.
-You can now go back to the Settings page if you want to make more changes.==Якщо хочете зробити інші зміни, можна перейти назад на сторінку налаштувань.
See you soon!==До зустрічі!
Just a moment, please!==Зачекайте трохи, будь ласка!
Application will terminate after working off all scheduled tasks.==YaCy буде вимкнений після виконання намічених завдань.
Then YaCy will restart.==Після цього YaCy буде перезапущений.
If you can't reach YaCy's interface after 5 minutes restart failed.==Якщо через 5 хвилин доступу до інтерфейсу YaCy не буде, значить перезапуск не вдався.
-Installing release==Установка випуску
-YaCy will be restarted after installation==Після установки YaCy буде перезапущений
#-----------------------------
+"Kaskelix"=="Каскелікс"
+"Restart"=="Перезапустіть"
+"Shutdown"=="Вимкнення"
+Re-Start==Перезапуск
+Shutdown==Вимкнення
+Please log in.==Будь ласка, увійдіть.
+Please send us feed-back!==Будь ласка, надішліть нам відгук!
+We don't track YaCy users, YaCy does not send 'home-pings', we do not even know how many people use YaCy as their private search engine.==Ми не відстежуємо користувачів YaCy, YaCy не надсилає запити на домашню сторінку, ми навіть не знаємо, скільки людей використовують YaCy як свою приватну пошукову систему.
+Therefore we like to ask you: do you like YaCy? Will you use it again... if not, why? Is it possible that we change a bit to suit your needs?==Тому ми хочемо запитати вас: чи подобається вам YaCy? Чи будете ви використовувати його знову... якщо ні, то чому? Чи можливо, що ми дещо змінимо відповідно до ваших потреб?
+Please send us feed-back about your experience with an==Будь ласка, надішліть нам відгук про свій досвід роботи з
+or a==або a
+Professional Support==Професійна підтримка
+YaCy will be restarted after installation.==YaCy буде перезапущено після встановлення.
+The file you are trying to install is not located in the release directory.==Файл, який ви намагаєтеся встановити, не знаходиться в каталозі випуску.
+You are in a development environment or the file you are trying to install is empty.==Ви перебуваєте в середовищі розробки або файл, який ви намагаєтеся встановити, порожній.
#File: Supporter.html
#---------------------------
-Supporter<==Постачальники<
-"Please enter a comment to your link recommendation. (Your Vote is also considered without a comment.)"=="Будь ласка, введіть коментар до вашого рекомендаційного посилання. (Голоси без коментарів також приймаються.)"
Supporter are switched off for users without authorization==Сторінки постачальників вимкнені для користувачів без авторизації
"bookmark"=="закладка"
"Add to bookmarks"=="Додати в закладки"
@@ -2710,90 +2587,132 @@ Supporter are switched off for users without authorization==Сторінки п
"Give positive vote"=="Виставити позитивний відгук"
"negative vote"=="негативний відгук"
"Give negative vote"=="Виставити негативний відгук"
-provided by YaCy peers with an URL in their profile. This shows only URLs from peers that are currently online.==надаються вузлами YaCy з URL в їхніх профілях. Показуються URL-адреси тільки з вузлів, які знаходяться в мережі.
#-----------------------------
+"YaCy Supporter"=="YaCy Прихильник"
+Supporter==Прихильник
#File: Surftips.html
+"Add to bookmarks"=="Додати в закладки"
+"Give negative vote"=="Виставити негативний відгук"
+"Give positive vote"=="Виставити позитивний відгук"
+"bookmark"=="закладка"
+"negative vote"=="негативний відгук"
+"positive vote"=="позитивний відгук"
#---------------------------
-Surftips==Путівник
-Surftips==Поради по серфінгу
-Surftips are switched off==Поради по серфінгу вимкнені
-title="bookmark"==title="Поради по серфінгу"
-alt="Add to bookmarks"==alt="Додати в закладки"
-title="positive vote"==title="позитивний відгук"
-alt="Give positive vote"==alt="виставити позитивний відгук"
-title="negative vote"==title="негативний відгук"
-alt="Give negative vote"==alt="виставити негативний відук"
-YaCy Supporters<==Постачальники YaCy<
->a list of home pages of yacy users<==>Список домашніх сторінок користувачів 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 authorization==Приховати поради для користувачів без дозволу
Show surftips to everyone==Показувати поради для всіх
#-----------------------------
+"YaCy Surftips"=="YaCy Підказки"
+Surftips==Поради для серфінгу
+Surftips are switched off for users without authorization==Для користувачів без авторизації підказки вимкнено
+YaCy Supporters==YaCy Прихильники
+a list of home pages of yacy users==список домашніх сторінок користувачів yacy
#File: Automation_p.html
+Comment==Коментар
+Status==Стан
+hours==годин
#---------------------------
-: Peer Steering==: Керування вузлом
-Steering of API Actions<==Керування подіями API<
-This table shows actions that had been issued on the YaCy interface==Ця таблиця показує події, які були викликані з оболонки YaCy,
-to change the configuration or to request crawl actions.==для зміни налаштувань чи запиту подій сканування.
These recorded actions can be used to repeat specific actions and to send them==Ці записані події можуть бути використані багаторазово для виконання певних дій, а також
to a scheduler for a periodic execution.==для періодичного самовиконання.
->Recorded Actions<==>Записані події<
"next page"=="наступна сторінка"
"previous page"=="попередня сторінка"
"no next page"=="немає наступних сторінок"
"no previous page"=="немає попередніх сторінок"
- of #[of]#== з #[of]#
->Type==>Тип
->Comment==>Примітка
-Call Count<==Виклики<
->Recording Date<==>Дата запису<
->Last Exec Date<==>Останній запуск<
->Next Exec Date<==>Наступний запуск<
->Scheduler<==>Планувальник<
->no repetition<==>без повторення<
->activate scheduler<==>з плануванням<
"Execute Selected Actions"=="Запустити вибрані події"
"Delete Selected Actions"=="Видалити вибрані події"
->Result of API execution==>Результат виклику API
->Status<==>Стан>
-#>URL<==>URL<
->minutes<==>хвилин<
->hours<==>годин<
->days<==>днів<
-Scheduled actions are executed after the next execution date has arrived within a time frame of #[tfminutes]# minutes.==Заплановані дії виконуються в межах тимчасове вікна в #[tfminutes]# хвилин, коли наступна дата виконання буде досягнута.
The information that is presented on this page can also be retrieved as XML.==Інформацію на цій сторінці також можна отримати в форматі XML.
Click the API icon to see the XML.==Натисніть значок API для відображення XML.
-To see a list of all APIs, please visit the API wiki page.==Для перегляду списку всіх API, будь-ласка, відвідайте сторінку API у Wiki.
#-----------------------------
+"API"=="API"
+"Apply edited next execution dates"=="Застосувати відредаговані наступні дати виконання"
+"clone"=="клонувати"
+"yyyy/MM/dd HH:mm:ss"=="рррр/MM/dd ГГ:хх:сс"
+"Delete all Actions which had been created before "=="Видалити всі дії, які були створені раніше"
+Process Automation==Автоматизація процесів
+This table shows actions that had been issued on the YaCy interface.==У цій таблиці показано дії, які було виконано в інтерфейсі YaCy.
+Recorded Actions==Записані дії
+Type==Тип
+Call Count==Підрахунок дзвінків
+Recording Date==Запис Дата
+Last Exec Date==Дата останнього виходу
+Next Exec Date==Наступна Exec Дата
+Apply==Застосувати
+Event Trigger==Тригер події
+Scheduler==Планувальник
+URL==URL
+no event==жодної події
+activate event==активувати подію
+off==вимкнено
+run once==запустити один раз
+run regular==запускати регулярно
+after start-up==після запуску
+at 00:00h==о 00:00 год
+at 01:00h==о 01:00 год
+at 02:00h==о 02:00 год
+at 03:00h==о 03:00 год
+at 04:00h==о 04:00 год
+at 05:00h==о 05:00 год
+at 06:00h==о 06:00 год
+at 07:00h==о 07:00 год
+at 08:00h==о 08:00 год
+at 09:00h==о 09:00 год
+at 10:00h==о 10:00 год
+at 11:00h==об 11:00 год
+at 12:00h==о 12:00 год
+at 13:00h==о 13:00 год
+at 14:00h==о 14:00 год
+at 15:00h==о 15:00 год
+at 16:00h==о 16:00 год
+at 17:00h==о 17:00 год
+at 18:00h==о 18:00 год
+at 19:00h==о 19:00 год
+at 20:00h==о 20:00 год
+at 21:00h==о 21:00 год
+at 22:00h==о 22:00 год
+at 23:00h==о 23:00 год
+no repetition==без повторення
+activate scheduler==активувати планувальник
+minutes==хвилин
+days==днів
+1 day==1 день
+2 days==2 дні
+3 days==3 дні
+4 days==4 дні
+5 days==5 днів
+6 days==6 днів
+1 week==1 тиждень
+2 weeks==2 тижні
+3 weeks==3 тижні
+1 month==1 місяць
+2 months==2 місяці
+3 months==3 місяці
+6 months==6 місяців
+9 months==9 місяців
+1 year==1 рік
+2 years==2 роки
+Result of API execution==Результат виконання API
#File: Table_RobotsTxt_p.html
#---------------------------
-Table Viewer==Перегляд таблиці
The information that is presented on this page can also be retrieved as XML.==Інформацію на цій сторінці також можна отримати в форматі XML.
Click the API icon to see the XML.==Натисніть значок API для відображення XML.
-To see a list of all APIs, please visit the API wiki page.==Щоб побачити список усіх API, будь ласка, відвідайте вікі-сторінку API.
->robots.txt table<==>Таблиця robots.txt<
#-----------------------------
### This Tables section is removed in current SVN Versions
+"robots.txt Table"=="Таблиця robots.txt"
+"API"=="API"
+robots.txt table==таблиця robots.txt
#File: Tables_p.html
#---------------------------
Table Administration==Керування таблицями БД
-Table Viewer==Переглядач таблиць
Table Selection==Вибір таблиці
Select Table:==Виберіть таблицю:
-#"Show Table"=="Показати таблицю"
show max.==Показати макс.
->all<==>всі<
entries,==записів,
search rows for==відобразити рядки для
"Search"=="Пошук"
-Table Editor: showing table==Редактор таблиць: показ таблиці
->PK==>Первинний ключ
"Edit Selected Row"=="Редагувати вибраний рядок"
"Add a new Row"=="Додати новий рядок"
"Delete Selected Rows"=="Видалити вибрані рядки"
@@ -2801,55 +2720,51 @@ Table Editor: showing table==Редактор таблиць: показ таб
Row Editor==Редактор рядків
Primary Key==Первинний ключ
"Commit"=="Надіслати"
-==
#-----------------------------
+"Tables"=="Таблиці"
+all==все
+reverse:==зворотний:
+PK==ПК
#File: terminal_p.html
#---------------------------
-YaCy System Monitor==Системний монітор YaCy
->YaCy System Terminal Monitor==>Системний монітор-термінал YaCy
-Search Form==Форма пошуку
-Crawl Start==Початок сканування
-Status Page==Сторінка стану
-Confirm Shutdown==Підтвердження завершення роботи
-><Shutdown==><Вимкнення
Event Terminal==Термінал подій
Image Terminal==Термінал зображень
Domain Monitor==Монітор доменів
-"Loading Processing software..."=="Програма обробки завантажується..."
This browser does not have a Java Plug-in.==Цей переглядач не має доповнення Java.
Get the latest Java Plug-in here.==Завантажте останнє доповнення Java тут.
Resource Monitor==Ресурси
Network Monitor==Мережа
#-----------------------------
+"YaCy"=="YaCy"
+"Download Java Plug-in"=="Завантажте плагін Java"
+"PerformanceGraph"=="PerformanceGraph"
+"WebStructurePicture"=="WebStructurePicture"
+"The yacy Network"=="Мережа yacy"
+YaCy System Terminal Monitor==YaCy Монітор системного терміналу
+<Search Form>==<Форма пошуку>
+<Crawl Start>==<Початок сканування>
+<Status Page>==<Сторінка статусу>
+<Shutdown>==<Вимкнення>
#File: Threaddump_p.html
#---------------------------
YaCy Debugging: Thread Dump==Відлагодження YaCy: Dump потоку
-Threaddump<==Dump потоку<
"Single Threaddump"=="Одиночний Dump потоку"
"Multiple Dump Statistic"=="Множинна Dump-статистика"
-#"create Threaddump"=="Створити Dump потоку"
#-----------------------------
+Threaddump==Дамп потоку
#File: User.html
#---------------------------
User Page==Сторінка користувача
-You are not logged in. ==Ви не ввійшли.
Username:==Ім’я користувача:
-Password: Get URL Viewer<==>Перегляд URL<
->URL Metadata<==>Метадані URL<
-#URL==URL
-Hash==Хеш
-Word Count==Кількість слів
-Description==Опис
-Size==Розмір
View as==Показати як
Plain Text==Простий текст
Parsed Text==Розібраний текст
Parsed Sentences==Розібрані речення
Parsed Tokens/Words==Розібрані слова
->Parsed Tokens<==>Розібрані слова<
Link List==Список посилань
"Show"=="Показати"
Unable to find URL Entry in DB==Неможливо знайти запис про URL в базі даних.
@@ -2880,421 +2801,401 @@ Invalid URL==Неправильна URL
Unable to download resource content.==Неможливо завантажити вміст ресурсу.
Unable to parse resource content.==Неможливо розібрати вміст ресурсу.
Unsupported protocol.==Непідтримуваний протокол.
->Original Content from Web<==>Оригінальний вміст з веб<
Parsed Content==Розібраний вміст
->Original from Web<==>Оригінал з веб<
->Original from Cache<==>Оригінал з кешу<
-#Original==Оригінальний
-In URL-DB==В URL-БД
-In Cache==В кеші
-MimeType==Тип Mime
-#:yes==:так
-#:no==:ні
See the page info about the url.==Дивіться довідкову сторінку щодо url.
#-----------------------------
+"API"=="API"
+"Show Metadata"=="Показати метадані"
+"Browse Host"=="Огляд хосту"
+"Show Snippet"=="Показати фрагмент"
+"action"=="дію"
+Get URL Viewer==Отримати URL Viewer
+URL:==URL:
+Search in Document:==Пошук у документі:
+URL Metadata==URL Метадані
+Hash:==Хеш:
+In Metadata:==У метаданих:
+In Cache:==У кеші:
+First Seen:==Вперше побачено:
+Word Count:==Кількість слів:
+Size:==розмір:
+MimeType:==MimeType:
+Collections:==Колекції:
+Original from Web==Оригінал з Інтернету
+Original from Cache==Оригінал з Cache
+Schema Fields==Поля схеми
+Citation Report==Звіт про цитування
+Snippet==Фрагмент
+Headline==Заголовок
+Teaser Text==Текст тизера
+Original Content from Web==Оригінальний вміст з Інтернету
+dc:title==dc: заголовок
+dc:creator==dc:творець
+dc:subject==dc:тема
+dc:description==dc:опис
+dc:publisher==dc:видавник
+dc:format==dc: формат
+dc:identifier==dc: ідентифікатор
+dc:source==dc: джерело
+geo:lat & geo:long==geo:lat & geo:long
+nr==nr
+type==типу
+name==назва
+link==посилання
+rel==відн
+Parsed Tokens==Проаналізовані токени
+CitationReport==CitationReport
#File: ViewLog_p.html
#---------------------------
-Lines==ліній
reversed order==зворотній порядок
"refresh"=="оновити"
-max.==макс.
Server Log==Журнал сервера
#-----------------------------
+regex==регулярний вираз
+terms==умови
+Invalid regular expression filter.==Недійсний фільтр регулярного виразу.
#File: ViewProfile.html
+Comment==Коментар
+Nick Name==Псевдонім
+eMail==ел.Пошта
#---------------------------
Local Peer Profile:==Профіль цього вузла:
-Remote Peer Profile==Профіль віддаленого вузла
Wrong access of this page==Неправильний доступ на цій сторінці
The requested peer is unknown or a potential peer.==Потрібний вузол невідомий або є потенційним вузлом.
The profile can't be fetched.==Неможливо завантажити профіль.
-The peer==Вузол
-is not online.==не в мережі.
-This is the Profile of==Це профіль
->Name==>Ім’я
->Nick Name==>Псевдонім
->Homepage==>Домашня сторінка
->eMail==ел.Пошта
-#ICQ==ICQ
-#Jabber==Jabber
-#Yahoo!==Yahoo!
-#MSN==MSN
-#Skype==Skype
->Comment==>Коментар
-View this profile as==Відобразити цей профіль як
-> or==> або
-#vCard==vCard
-You can edit your profile==Ви можете відредагувати свій профіль
->here==>тут
#-----------------------------
+"vCard"=="vCard"
+"rdf:foaf"=="rdf:foaf"
+"Onlinestatus"=="Онлайн-статус"
+Remote Peer Profile:==Профіль віддаленого однорангового користувача:
+Name==Ім'я
+Homepage==Домашня сторінка
+ICQ==ICQ
+Jabber==Jabber
+Yahoo!==Yahoo!
+MSN==MSN
+Skype==Skype
+vCard==vCard
#File: Crawler_p.html
+"Terminate"=="Припинити"
+Index Size==Розмір індексу
+Running==Працює
+Status==Стан
#---------------------------
-Crawler Queues==Черги сканера
-PPM (Pages Per Minute)==PPM (Сторінок За Хвилину)
Traffic (Crawler)==Трафік (Сканер)
-RWI RAM (Word Cache)==RWI RAM (Кеш Слів)
Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db==Помилки в керуванні профілями. Будь ласка, зупиніть YaCy, видаліть файл DATA/PLASMADB/crawlProfiles0.db
and restart.==і запустіть YaCy знову.
-Error:==Помилка:
Application not yet initialized. Sorry. Please wait some seconds and repeat==Додаток не ініціалізований. Будь ласка, зачекайте кілька секунд і спробуйте знову
-ERROR: Crawl filter==ПОМИЛКА: маска сканування
-does not match with==не збігається з
-crawl root==початок сканування
-Please try again with different==Будь ласка, спробуйте ще раз з іншою
-filter. ::==маскою. ::
-Crawling of==Сканування
-failed. Reason:==не вдалося. Причина:
-Error with URL input==Помилка з URL
-Error with file input==Помилка з файлом
-started.==запущене.
-Please wait some seconds,==Будь ласка, зачекайте кілька секунд,
-it may take some seconds until the first result appears there.==незабаром будуть перші результати.
-If you crawl any un-wanted pages, you can delete them here.==Якщо ви просканували якусь небажану сторінку, її можна видалити тут.
-Crawl Queue:==Черга сканера:
-Queue
==Черга
-Profile==Профіль
-#Initiator==Ініціатор
-Initiator==Зачинщик
-Depth==Глибина
-Modified Date==Дата зміни
-Anchor Name==Текст посилання
-#URL==URL
-Delete==Видалити
-Next update in==Наступне оновлення через
-/> seconds.==/> секунд.
-See a access timing here==Таблиця затримок і часу доступу знаходиться тут.
-Queue==Черга
->Size==>Розмір
->Max<==>Макс.<
-Indexing==Індексування
->Loader==>Завантажувач
->Local Crawler==>Місцевий сканер
->unlimited==>необмежено
->Remote Crawler==>Віддалений сканер
->Speed==>Швидкість
->Database==>База даних
->Entries==>Записи
-Pages (URLs)==Сторінки (URL)
-RWIs (Words)==RWI (Слова)
->Indicator==>Показник
->Level==>Рівень
-#>Limit Crawler==>Обмежувач сканера
->Limit Crawler==>Cканер обмежень
->No-Load Crawler==>Сканер кешу
-#Pause this queue==Призупинити цю чергу
-#Continue this queue==Продовжити цю чергу
-
-"minimum"=="minimum" onclick="$(this).val('minimum');"
-"custom"=="custom" onclick="$(this).val('custom');"
-"maximum"=="maximum" onclick="$(this).val('maximum');"
-==
+
#-----------------------------
+"API"=="API"
+"Pages Per Minute"=="Сторінок за хвилину"
+"Latency Factor"=="Коефіцієнт затримки"
+"Max same Host in queue"=="Максимальний той самий хост у черзі"
+"set"=="встановити"
+"Set PPM to the default minimum value"=="Встановіть PPM на мінімальне значення за замовчуванням"
+"Set PPM to the default maximum value"=="Установіть максимальне значення PPM за замовчуванням"
+"show link structure"=="показати структуру посилання"
+"hide graphic"=="приховати графіку"
+Click on this API button to see an XML with information about the crawler status==Натисніть цю кнопку API, щоб побачити XML з інформацією про статус сканера
+Crawler==Гусеничний
+(Please enable JavaScript to automatically update this page!)==(Увімкніть JavaScript для автоматичного оновлення цієї сторінки!)
+Queues==Черги
+Queue==Черга
+Size==Розмір
+Local Crawler==Локальний сканер
+Limit Crawler==Обмежений сканер
+Remote Crawler==Віддалений сканер
+No-Load Crawler==Робота без навантаження
+Terminate All==Припинити всі
+Database==База даних
+Entries==Записи
+Seg- ments==Сегменти- ments
+Citations (reverse link index)==Цитати (індекс зворотного посилання)
+RWIs (P2P Chunks)==RWIs (P2P фрагментів)
+Progress==Прогрес
+Indicator==Індикатор
+Level==Рівень
+Speed / PPM (Pages Per Minute)==Швидкість / PPM (сторінок за хвилину)
+PPM==PPM
+LF==LF
+MH==MH
+Crawler PPM==Гусеничний PPM
+Postprocessing Progress==Хід постобробки
+pending:==в очікуванні:
+MB==MB
+Load==навантаження
+the request.==запит.
+filter.==фільтр.
+it may take some seconds until the first result appears there.==Це може зайняти кілька секунд, поки там не з'явиться перший результат.
+No embedded local Solr index is connected. This is required to use a Solr query filter.==Жодного вбудованого локального індексу Solr не підключено. Це потрібно для використання фільтра запиту Solr.
+The Solr filter query syntax is not valid :==Синтаксис запиту фільтра Solr недійсний:
+Could not parse the Solr filter query :==Не вдалося проаналізувати запит фільтра Solr:
+You asked for remote indexing, but remote crawl results won't be added to the local index as the remote crawler is currently disabled on this peer.==Ви попросили віддалену індексацію, але результати віддаленого сканування не будуть додані до локального індексу, оскільки віддалений сканер наразі вимкнено на цьому вузлі.
+Name==Ім'я
+Count==Граф
+Crawled Pages==Проскановані сторінки
#File: WatchWebStructure_p.html
+Text==Текст
#---------------------------
The data that is visualized here can also be retrieved in a XML file, which lists the reference relation between the domains.==Дані, що тут показані, також можуть бути завантажені в XML, в якому перераховані зв’язки між доменами.
With a GET-property 'about' you get only reference relations about the host that you give in the argument field for 'about'.==З властивістю GET "about" можна витягувати тільки зв’язки відносно сервера, поданого в полі аргументу "about".
With a GET-property 'latest' you get a list of references that had been computed during the current run-time of YaCy, and with each next call only an update to the next list of references.==З властивістю GET "latest" можна отримати список посилань, що був розрахований протягом поточної роботи YaCy. І з кожним викликом, тільки оновлення до наступного списку посилань.
Click the API icon to see the XML file.==Натисніть значок API для перегляду XML-файлу.
-To see a list of all APIs, please visit the API wiki page.==Щоб переглянути список усіх API, будь ласка, відвідайте вікі-сторінку API.
Web Structure==Структура мережі
-host<==хост<
-depth<==глибина<
-nodes<==вузли<
-time<==час<
-size<==розмір<
->Background<==>Фон<
->Text<==>Текст<
->Line<==>Лінія<
->Dot<==>Крапка<
->Dot-end<==>Кінець крапки<
->Color <==>Колір <
"change"=="змінити"
#-----------------------------
+"API"=="API"
+"minus"=="мінус"
+"plus"=="плюс"
+"WebStructurePicture"=="WebStructurePicture"
+Host List==Список хостів
+host==хост
+depth==глибина
+nodes==вузлів
+time==час
+size==розмір
+Background==Фон
+Color==Колір
+Line==лінія
+Pivot Dot==Опорна точка
+Other Dot==Інша точка
+Dot-end==Крапка
#File: Wiki.html
+Edit==Редагувати
#---------------------------
-YaCyWiki page:==Сторінка YaCyWiki:
-last edited by==востаннє редаговано
-change date==дата зміни
-Edit<==Редагувати<
-only granted to admin==дозволяється тільки адміністратору
Grant Write Access to==Дозволити наступним користувачам змінювати Wiki
# !!! Do not translate the input buttons because that breaks the function to switch rights !!!
-#"all"=="Всі"
-#"admin"=="Адміністратор"
Start Page==Початкова сторінка
Index==Індекс
Versions==Версії
Author:==Автор:
Text:==Текст:
You can use==Ви можете тут використовувати
-Wiki Code here.==коди Wiki.
-"edit"=="змінити"
"Submit"=="Надіслати"
"Preview"=="Попередній перегляд"
"Discard"=="Відкинути"
->Preview==>Попередній перегляд
No changes have been submitted so far!==Поки-що не надіслано жодних змін!
Subject==Назва
Change Date==Дата зміни
Last Author==Останній автор
-IO Error reading wiki database:==Помилка IO пи читанні бази даних Wiki:
-Select versions of page '#[page]#'==Вибір версій сторінки "#[page]#"
Compare version from==Порівняння версії
"Show"=="Показати"
with version from==з версією
-"current"=="поточна"
"Compare"=="Порівняти"
-Return to==Повернутись до
Changes will be published as announcement on YaCyNews==Зміни будуть опубліковані у службі новин YaCy.
#-----------------------------
+"all"=="все"
+"admin"=="адмін"
+(only granted to admin)==(надається лише адміністратору)
+Index -==Індекс -
+Preview==Попередній перегляд
+Error==Помилка
#File: WikiHelp.html
#---------------------------
-Wiki Help==Допомога по Wiki
Wiki-Code==Команди Wiki
This table contains a short description of the tags that can be used in the Wiki and several other servlets==Ця таблиця містить короткий опис кодів, що можуть бути використані у YaCy-Wiki та інших місцях.
of YaCy. For a more detailed description visit the==Детальний опис можна знайти на
-#YaCy Wiki==YaCy Wiki
Description==Опис
-=headline===Заголовок
-These tags create headlines. If a page has three or more headlines, a table of content will be created automatically.==Ці коди утворюють заголовки. Якщо сторінка містить три або більше заголовків, каталог вмісту буде створено автоматично.
-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 emphasizes it more strongly (i.e. bold) and the last tags create a combination of both.==друга підкреслює текст сильніше (наприклад, виділення жирним шрифтом), а остання є сумішшю того й іншого.
-Text will be displayed struck through.==Текст буде відображатись перекресленим.
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.==Ці коданди створюють номерований список.
-something<==дещо<
-another thing==щось ще
-and yet another==ще інше
-something else==щось
These tags create an unnumbered list.==Ці коданди створюють неномерований список.
-word==слово
-:definition==:визначення
These tags create a definition list.==Ці команди створюють список визначень.
This tag creates a horizontal line.==Цей код створює горизонтальну лінію.
-pagename==назва сторінки
-description]]==опис]]
This tag creates links to other pages of the wiki.==Цей код створює посилання на іншу сторінку у Wiki.
This tag displays an image, it can be aligned left, right or center.==Це код вставки зображення, яке може бути залишено (left), вирівняно по правому краю (right) або виставлено посередині (center).
These tags create a table, whereas the first marks the beginning of the table, the second starts==Це команди створення таблиці, з яких перша визначає початок таблиці, другий починає
a new line, the third and fourth each create a new cell in the line. The last displayed tag==новий рядок, а третя та четверта створюють нову клітинку в рядку. Останній код
closes the table.==є завершальним.
-#The escape tags will cause all tags in the text between the starting and the closing tag to not be treated as wiki-code.==Для тексту між цими тегами інші команди wiki не працюють.
A text between these tags will keep all the spaces and linebreaks in it. Great for ASCII-art and program code.==Текст між цими тегами буде включати в себе всі пропуски і розриви рядків. Добре підходить для ASCII-мистецтва і коду.
If a line starts with a space, it will be displayed in a non-proportional font.==Якщо рядок починається з пропуску, він відображається в непропорційному шрифті.
-url description==url опис
This tag creates links to external websites.==Цей код створює посилання на зовнішній сайт.
-alt text==підказка
-Text will be displayed underlined.==Текст буде відображатись підкресленим.
#-----------------------------
+Code==Код
+These tags create headlines. If a page has three or more headlines, a table of content will be created automatically. Headlines of level 1 will be ignored in the table of content.==Ці теги створюють заголовки. Якщо на сторінці є три або більше заголовків, автоматично буде створено зміст. Заголовки рівня 1 ігноруватимуться у змісті.
+''text'' '''text''' '''''text'''''==''текст'' ''''текст''' ''''''текст'''''
+<s>text</s>==<s>текст</s>
+Text will be displayed==Буде відображено текст
+struck through==прокреслено
+<u>text</u>==<u>текст</u>
+underlined==підкреслено
+;word 1:definition 1==;слово 1:визначення 1
+;word 2:definition 2==;слово 2:визначення 2
+;;word 3:definition 3==;;слово 3:визначення 3
+;word 4:definition 4==;слово 4:визначення 4
+[[pagename]]==[[назва сторінки]]
+[[pagename|description]]==[[назва сторінки|опис]]
+[url]==[url]
+[url description]==[URL опис]
+[[Image:url]]==[[Зображення:url]]
+[[Image:url|alt text]]==[[Зображення:url|альтернативний текст]]
+[[Image:url|align|alt text]]==[[Зображення:url|вирівняти|альтернативний текст]]
+[[Youtube:id]]==[[Youtube:id]]
+[[Vimeo:id]]==[[Vimeo:id]]
+This tag displays a Youtube or Vimeo video with the id specified and fixed width 425 pixels and height 350 pixels.==Цей тег відображає відео Youtube або Vimeo із зазначеним ідентифікатором і фіксованою шириною 425 пікселів і висотою 350 пікселів.
+i.e. use [[Youtube:QZsWG4-7Qfk]] to embed this video: https://www.youtube.com/watch?v=QZsWG4-7Qfk==тобто використовуйте [[Youtube:QZsWG4-7Qfk]], щоб вставити це відео: https://www.youtube.com/watch?v=QZsWG4-7Qfk
+i.e. use [[Vimeo:32200946]] to embed this video: http://vimeo.com/32200946==тобто використовуйте [[Vimeo:32200946]], щоб вставити це відео: http://vimeo.com/32200946
+||row 1, col 1||row 1, col 2==||рядок 1, стовпець 1||рядок 1, стовпець 2
+||row 2, col 1||row 2, col 2==||рядок 2, стовпець 1||рядок 2, стовпець 2
+<pre> text </pre>==<pre> текст </pre>
+text text text==текст текст текст
#File: yacyinteractive.html
+"Search"=="Пошук"
#---------------------------
YaCy Interactive Search==Живий пошук YaCy
-This search result can also be retrieved as RSS/opensearch output.==Результати пошуку можна отримати також у вигляді RSS/opensearch.
-The query format is similar to SRU.==Формат запитів подібний до SRU.
Click the API icon to see an example call to the search rss API.==Щиглик API, щоб побачити зразок виклику пошукового API RSS.
-To see a list of all APIs, please visit the API wiki page.==Щоб побачити список усіх API, будь ласка, відвідайте вікі-сторінку API.
loading from local index...==завантаження з місцевого індексу...
-e="Search"==e="Пошук"
#-----------------------------
+"Search..."=="пошук..."
+onkeyup="xmlhttpPost(); return false;"==onkeyup="xmlhttpPost(); return false;"
#File: yacysearch.html
+Show==Показати
#---------------------------
-Search Page==Сторінка пошуку
-This search result can also be retrieved as RSS/opensearch output.==Ці результати пошуку також доступні у вигляді RSS/opensearch.
-The query format is similar to SRU.==Формат запиту схожий на SRU.
-Click the API icon to see an example call to the search rss API.==Клацніть по значку API, щоб побачити зразок виклику пошукового API RSS.
-To see a list of all APIs, please visit the API wiki page.==Щоб побачити список усіх API, будь ласка, відвідайте вікі-сторінку API.
Did you mean:==Можливо, ви мали на увазі:
-"Search"=="Пошук"
-'Search'=='Пошук'
-"search again"=="Шукати знову"
-more options==більше налаштувань...
-Text==Текст
-Images==Зображення
-Audio==Аудіо
-Video==Відео
-Applications==Додатки
-The following words are stop-words and had been excluded from the search:==Наступні слова є стоп-словами і були виключені з пошуку:
No Results.==Результати відсутні.
-length of search words must be at least==Довжина пошукового запиту повинна бути не менше
-d+ characters==d+ знаків
-> of==> з
-> local,==> локально,
-remote from==віддалених з
-YaCy peers).==вузлів YaCy).
#-----------------------------
+"Refresh sorting. Depending on their rank, some results fetched in background may then appear on this page."=="Оновити сортування. Залежно від їхнього рангу деякі результати, отримані у фоновому режимі, можуть з’явитися на цій сторінці."
+"YaCy server is fetching results from available data sources."=="Сервер YaCy отримує результати з доступних джерел даних."
+"Show anyway links to images that could not be rendered"=="Усе одно показувати посилання на зображення, які не вдалося відобразити"
+"Hide links to images that could not be rendered"=="Приховати посилання на зображення, які не вдалося відобразити"
+"Play all"=="Грайте всі"
+"Stop all"=="Зупинити все"
+Click the RSS icon to see this search result as RSS message stream.==Натисніть піктограму RSS, щоб побачити цей результат пошуку як потік повідомлень RSS.
+Use the RSS search result format to add static searches to your RSS reader, if you use one.==Використовуйте формат результатів пошуку RSS, щоб додати статичні пошукові запити до програми для читання RSS, якщо ви її використовуєте.
+search==пошук
+No Results. (length of search words must be at least 1 character)==Немає результатів. (довжина пошукових слів має бути не менше 1 символу)
+You are not allowed to search the web with this peer.==Вам заборонено здійснювати пошук в Інтернеті з цим однорангом.
+You have reached the maximum allowed number of accesses to this search page within ten minutes.==Ви досягли максимально дозволеної кількості доступів до цієї сторінки пошуку протягом десяти хвилин.
+Please try again later or log in as administrator or as a user with extended search right.==Будь ласка, спробуйте пізніше або увійдіть як адміністратор або як користувач із правами розширеного пошуку.
+You have reached the maximum allowed number of accesses to this search page within one minute.==Ви досягли максимально дозволеної кількості доступів до цієї сторінки пошуку протягом однієї хвилини.
+You have reached the maximum allowed number of accesses to this search page within three seconds.==Ви досягли максимально дозволеної кількості доступів до цієї сторінки пошуку протягом трьох секунд.
+Location -- click on map to enlarge==Розташування -- натисніть на карту для збільшення
+Failed to render 0 thumbnail(s).==Не вдалося відобразити мініатюри 0.
+Hide==Сховати
+Media==ЗМІ
+URL==URL
+Player==гравець
#File: yacysearchitem.html
+"bookmark"=="закладка"
#---------------------------
-#"bookmark"=="закладка"
"recommend"=="рекомендувати"
"delete"=="видалити"
Pictures==Bilder
->Metadata<==>Метадані<
->Parser<==>Обробник<
-#-----------------------------
-
-#File: yacysearchtrailer.html
-#---------------------------
-show search results for "#[query]#" on map==Показати результати пошуку для "#[query]#" на карті
->Provider==>Домени
->Name Space==>Простір імен
->Author==>Автори
-#Типи, Роди
->Filetype==>Види файлів
#-----------------------------
-### Subdirectory api ###
+"blacklist host"=="хост чорного списку"
+"Show all"=="Показати все"
+"Last known modification date"=="Дата останньої відомої зміни"
+"Browse index"=="Перегляд індексу"
+"Raw ranking score value"=="Необроблене значення рейтингу"
+Tags:==Теги:
+Metadata==Метадані
+Parser==Парсер
+Citations==Цитування
+Cache==Кеш
+View via proxy==Перегляд через проксі
+Not supported==Не підтримується
#File: api/table_p.html
#---------------------------
-Table Viewer==Переглядач таблиць
->PK<==>Основний ключ<
"Edit Table"=="Редагувати таблицю"
->Table==>Таблиця
#-----------------------------
-#File: api/yacydoc.html
-#---------------------------
->Author<==>Автор<
->Description<==>Опис<
->Subject<==>Тема<
->Publisher<==>Видавець<
->Contributor<==>Учасник<
->Date<==>Дата<
->Type<==>Тип<
->Identifier<==>ID<
->Language<==>Мова<
->Load Date<==>Дата завантаження<
->Referrer Identifier<==>ID переходу<
->Referrer URL<==>URL переходу<
->Document size<==>Розмір документу<
->Number of Words<==>Кількість слів<
->Title<==>Заголовок<
->YaCy Identifier<==>YaCy ID<
->Location<==>Місцезнаходження<
->lat==>шир
-, lon==, дов
-#-----------------------------
-
-### Subdirectory env/templates ###
+"Table"=="Таблиця"
+PK==ПК
#File: env/templates/header.template
+"Search"=="Пошук"
+Search==Пошук
+System Status==Стан системи
#---------------------------
-YaCy - Distributed Search Engine==YaCy - Розподілений пошук
### SEARCH & BROWSE ###
-Web Search==Веб-Пошук
-File Search==Пошук файлів
Index Browser==Index Перегляд
-Search & Browse==Пошук & перегляд
-Search Page==Сторінка пошуку
-Rich Client Search==Пошук Rich Client
-Interactive local Search==Живий місцевий пошук
-Compare Search==Порівняльний
-Ranking Config==Налаштування ранжування
-#>Surftips==>Серфінг
-#>Surftips==>Мандри
-#>Surftips==>Путівник
-#>Surftips==>Вибір шляху
->Surftips==>Дороговказ
-#Local Peer Wiki==Локальна Wiki
-Local Peer Wiki==Місцева Wiki
->Bookmarks==>Закладки
->Help==>Допомога
### INDEX CONTROL ###
-Index Production==Індексування
-Index Control==Керування індексом
-Index Creation==Індексування
Crawler Monitor==Спостереження за сканером
-Crawl Results==Результати сканування
Index Administration==Керування
Filter & Blacklists==Фільтр & ЧС
### SEARCH INTEGRATION ###
-#Search Integration==Інтегрування
-#Search Integration==Злиття
-#Search Integration==Включення
-#Search Integration==Об’єднання
-Search Integration==Вбудовування
-Search Portals==Пошуковий портал
-Customization==Налаштування
### MONITORING ###
-#Monitoring==Контроль
Monitoring==Нагляд
-YaCy Network==Мережа YaCy
-Web Visualization==Зображення веб
-Access Tracker==Спостереження за доступом
-Server Log==Журнал сервера
->Messages==>Повідомлення
->Terminal==>Термінал
-"New Messages"=="Нові повідомлення"
### PEER CONTROL
-Peer Control==Керування
-Admin Console==Адмін. консоль
->API Action Steering<==>Події API<
-Confirm Restart==Підтвердіть перезапуск
-Re-Start==Перезапуск
-Confirm Shutdown==Підтвердіть зупинку
->Shutdown==>Зупинка
### THE PROJECT ###
-The Project==Проект
-Project Home==Стор. проекту
-Deutsches Forum==Нім. форум
-English Forum==Англ. форум
-YaCy Project Wiki==Wiki проекту
-Development Change Log==Історія змін
-amp;language=en==amp;language=uk
-Development Change Log==Історія змін
-#YaCy Bugtracker==Помилки
-YaCy Bugtracker==Помилкозбирач
-Peer Statistics::YaCy Statistics==Статистика::Статистика YaCy
-
->Search==>Пошук
-Computation==Обчислення
-Tutorial==Підручник
-Network Access==Мережа
-Crawler Monitor==Створення
-Crawler / Harvester==Сканер / Збирач
-#-----------------------------
-#File: env/templates/simpleheader.template
-#---------------------------
-#Administration<==Адміністрація<
-Administration<==Адміністрування<
->Web Search<==>Веб-Пошук<
->Search Network<==>Пошукова мережа<
-#Peer Owner Profile==Профіль власника вузла
-Help / YaCy Wiki==Допомога / YaCy Wiki
+Network Access==Мережа
#-----------------------------
+"YaCy"=="YaCy"
+"Search..."=="пошук..."
+"Restart"=="Перезапустіть"
+"Shutdown"=="Вимкнення"
+"Community"=="Спільнота"
+"Help"=="Довідка"
+"Chat"=="Чат"
+Administration==Адміністрація
+Toggle navigation==Перемкнути навігацію
+Re-Start==Перезапуск
+Shutdown==Вимкнення
+Forum==Форум
+Help==Довідка
+About This Page==Про цю сторінку
+JavaScript information==JavaScript інформація
+external YaCy Tutorials==external YaCy Підручники
+external Download YaCy==external Завантажити YaCy
+external Community (Web Forums)==external Спільнота (веб-форуми)
+external Git Repository==external Git Репозиторій
+Sponsor==Спонсор
+YaCy is free software, so we need the help of many to support the development. You can help by joining a sponsoring plan:==YaCy є безкоштовним програмним забезпеченням, тому нам потрібна допомога багатьох для підтримки розробки. Ви можете допомогти, приєднавшись до плану спонсорства:
+externalbecome a Github Sponsor==externalстаньте спонсором Github
+externalbecome a YaCy Patreon==externalстань YaCy Patreon
+Please help! We need financial help to move on with the development!==Будь ласка, допоможіть! Нам потрібна фінансова допомога, щоб продовжити розвиток!
+Chat==Чат
+First Steps==Перші кроки
+Use Case & Account==Випадок використання & обліковий запис
+Grab a whole site==Захопіть цілий сайт
+Peer-to-Peer Network==Однорангова мережа
+Production==виробництво
+Crawler==Гусеничний
+AI Lab==AI Lab
+Automation==автоматизація
+YaCy Packs & Import/Export==YaCy Пакети & Імпорт/Export
+Content Semantic==Семантика змісту
+Target Analysis==Цільовий аналіз
+System Administration==Системне адміністрування
+RAM/Disk Usage & Updates==RAM/Disk Використання & Оновлення
+Search Portal Integration==Інтеграція пошукового порталу
+Portal Configuration==Конфігурація порталу
+Portal Design==Дизайн порталу
+Ranking and Heuristics==Ранжування та евристика
#File: env/templates/submenuAccessTracker.template
#---------------------------
Access Tracker==Мережний доступ
Server Access==Доступ до сервера
Access Grid==Сітка доступу
-#>Overview==>Огляд
-#>Details==>Подробиці
Incoming Requests Overview==Огляд вхідних з’єднань
Incoming Requests Details==Подробиці вхідних з’єднань
-All Connections==Всі з’єднання
-#Connections==З’єднання
Local Search==Місцевий пошук
Log==Журнал
Host Tracker==Спостереження за сервером
-Remote Search<==Віддалений пошук<
Cookie Menu==Меню печива
Incoming Cookies==Вхідне печиво
Outgoing Cookies==Вихідне печиво
#-----------------------------
+All Connections==Всі підключення
+Access Rate Limitations==Обмеження швидкості доступу
+Remote Search==Віддалений пошук
#File: env/templates/submenuBlacklist.template
#---------------------------
Filter & Blacklists==Фільтр & ЧС
@@ -3302,125 +3203,74 @@ Blacklist Administration==Керування чорним списком
Blacklist Cleaner==Очищення чорного списку
Blacklist Test==Перевірка чорного списку
Import/Export==Імпорт / Експорт
-Index Cleaner==Очищення індексу
#-----------------------------
#File: env/templates/submenuConfig.template
#---------------------------
#UNUSED HERE
-#Peer Administration Console==Адмін. консоль
->Status==>Стан
->Heuristics<==>Евристика<
-Dictionary Loader==Завантаження словника
-System Update==Оновлення системи
->Performance==>Швидкодія
Advanced Settings==Розширені настройки
-#Parser Configuration==Налаштування аналізатора
-Parser Configuration==Налаштування обробника
-Local robots.txt==Місцевий robots.txt
-Web Cache==Веб-кеш
Advanced Properties==Розширені властивості
-Thread Dump==Dump потоку
#-----------------------------
+System Administration==Системне адміністрування
+Performance Settings of Busy Queues==Параметри продуктивності зайнятих черг
+Viewer and administration for database tables==Перегляд і адміністрування таблиць бази даних
+UI Translations==Переклади інтерфейсу користувача
#File: env/templates/submenuCrawlMonitor.template
#---------------------------
Web Crawler==Сканер мережі
Processing Monitor==Спостереження
-Crawler Queues==Черги сканера
-Loader<==Завантажувач<
Rejected URLs==Відхилені URL
->Queues<==>Черги<
-Local<==Місцева<
-Global<==Загальна<
-Remote<==Віддалена<
Crawler Steering==Керування сканером
-Scheduler and Profile Editor<==Планувальник/редактор профілю<
robots.txt Monitor==robots.txt
Crawl Results==Результати сканування
Overview==Огляд
-Receipts==Надходження
-Queries==Запити
-DHT Transfer==DHT-Передача
-Proxy Use==Проксі
-Local Crawling==Місцеві
-Global Crawling==Глобальні
-Pack Import==Імпорт "Заміщень"
-#-----------------------------
-
-#File: env/templates/submenuDesign.template
-#---------------------------
-#Customization==Настройка
->Appearance==>Зовнішній вигляд
-#User Profile==Профіль користувача
->Language==>Мова
#-----------------------------
+Crawler==Гусеничний
+Loader==Навантажувач
+Queues==Черги
+Local==Місцевий
+Global==Глобальний
+Remote==Дистанційний
+No-Load==Без навантаження
+Scheduler and Profile Editor==Планувальник і редактор профілів
+(1) Receipts==(1) Квитанції
+(2) Queries==(2) Запити
+(3) DHT Transfer==(3) DHT Передача
+(4) Proxy Use==(4) Використання проксі
+(5) Local Crawling==(5) Локальне сканування
+(6) Global Crawling==(6) Глобальне сканування
+(7) Pack Import==(7) Імпорт упаковки
#File: env/templates/submenuIndexControl.template
#---------------------------
Index Administration==Керування індексом
-Reverse Word Index Administration==Керування RWI
-URL References Database==База даних посилань URL
-URL Viewer==Переглядач URL
-Federated Index==Об’єднаний індекс
-#-----------------------------
-
-#File: env/templates/submenuIndexCreate.template
-#---------------------------
-#Web Crawler Control==Керування веб-сканером
-#Start a Web Crawl==Запустити веб-сканування
-#Crawl Start==Запустити сканування
-#Crawl Profile Editor==Редактор профілю сканування
-#Crawler Queues==Черги сканера
-#Indexing<==Індексування<
-#Loader<==Завантажувач<
-#URLs to be processed==URL для обробки
-#Processing Queues==черги обробки
-#Local<==Місцевий<
-#Global<==Загальний<
-#Remote<==Віддалений<
-#Overhang<==Зависання<
-#Media Crawl Queues==Черги сканування медіа
-#>Images==>Зображення
-#>Movies==>Фільми
-#>Music==>Музика
-#--- New menu items ---
-Index Creation==Створення індексу
-Crawler/Spider<==Сканер/Павук<
-Full Site Crawl/ Sitemap Loader==Спрощене сканування
-Crawl Start (Expert)==Cканування (знавець)
-Network Scanner==Сканувач мережі
->Intranet Scanner<==>Сканер Внутрішньої мережі<
-Crawling of MediaWikis==Сканування з MediaWiki
-Crawling of phpBB3 Forums==Сканування з phpBB3
-Content Import<==Імпортувач вмісту<
-Network Harvesting<==Мережний видобуток<
-Remote Crawling==Віддалене сканування
-Scraping Proxy==Видобуток з проксі
-
Database Reader==
Читач бази даних
-Database Reader for phpBB3 Forums==Читач БД phpBB3
-Dump Reader for MediaWiki dumps==Читач Dump'ів MediaWiki
-RSS Feed Importer==Імпорт RSS Feed
-OAI-PMH Importer==Імпорт OAI-PMH
#-----------------------------
+URL Database Administration==URL Адміністрування бази даних
+Index Deletion==Видалення індексу
+Index Sources & Targets==Джерела індексу & Цілі
+Solr Schema Editor==Solr Редактор схем
+Field Re-Indexing==Переіндексація полів
+Reverse Word Index==Зворотний покажчик слів
+Content Analysis==Аналіз вмісту
#File: env/templates/submenuPublication.template
#---------------------------
Publication==Публікація
-#Wiki==Wiki
Blog==Блог
-File Hosting==Загальний доступ до файлів
#-----------------------------
+Wiki==Wiki
#File: env/templates/submenuUseCaseAccount.template
#---------------------------
-#Use Case & Accounts==Use Case & Accounts
Basic Configuration==Початкове налаштування
->Accounts<==>Облікові записи<
Network Configuration==Настройка мережі
#-----------------------------
+Use Case & Accounts==Випадок використання & Облікові записи
+Accounts==Облікові записи
#File: env/templates/submenuWebStructure.template
+Index Browser==Index Перегляд
#---------------------------
Web Visualization==Зображення веб
Web Structure==Структура інтернету
@@ -3428,13 +3278,13 @@ Image Collage==Змішана картина
#-----------------------------
#File: proxymsg/authfail.inc
+Username==Користувач
#---------------------------
Your Username/Password is wrong.==Ім’я користувача/пароль неправильні.
-Username==Ім’я користувача
-Password==Пароль
"login"=="ввійти"
#-----------------------------
+Password==Пароль
#File: proxymsg/error.html
#---------------------------
YaCy: Error Message==YaCy: Повідомлення про помилку
@@ -3443,99 +3293,50 @@ unspecified error==невідома помилка
not-yet-assigned error==ще не визначена помилка
You don't have an active internet connection. Please go online.==У вас немає активного підключення до інтернету. Будь ласка, зайдіть у мережу.
Could not load resource. The file is not available.==Файл не може бути завантажений. Файл не існує.
-Exception occurred==Помилка в
-Generated #[date]# by==Зібрано #[date]# на
-Exception occurred==Стався виняток
-TRACE==СЛІД
#-----------------------------
+YaCy==YaCy
#File: proxymsg/proxylimits.inc
#---------------------------
Your Account is disabled for surfing.==Ваш обліковий запис вимкнений для серфінга.
-Your Timelimit (#[timelimit]# Minutes per Day) is reached.==Ви досягли свого часового обмеження (#[timelimit]# хвилин на день).
#-----------------------------
#File: proxymsg/unknownHost.inc
#---------------------------
-The server==Сервер
-could not be found.==не знайдений.
Did you mean:==Ви мали на увазі:
#-----------------------------
-#File: js/Crawler.js
-#---------------------------
-"Continue this queue"=="Відновити обробку цієї черги"
-"Pause this queue"=="Призупинити цю чергу"
-#-----------------------------
-
-#File: js/yacyinteractive.js
-#---------------------------
->total results==>Всьго результатів
- topwords:== Найбільш вживані слова:
->count<==>к-сть<
->Protocol<==>Протокол<
->Host<==>Сайт<
->Path<==>Шлях<
->Name<==>Назва<
->Size<==>Розмір<
->Date<==>Дата<
->no results<==>безрезультатно<
-loading from local index==Завантаження з місцевого індексу
-#-----------------------------
-
#File: AccessGrid_p.html
#---------------------------
-YaCy Network Access==Мережний доступ YaCy
Server Access Grid==Сітка доступу до сервера
This images shows incoming connections to your YaCy peer and outgoing connections from your peer to other peers and web servers==Ці зображення показують вхідні з’єднання до вашого вузла і вихідні з’єднання до інших вузлів та веб-серверів
#-----------------------------
### Subdirectory jquery/js ###
-#File: jquery/js/jquery.multiselect.filter.min.js
-#---------------------------
-"Enter keywords"=="Введіть ключ"
-#-----------------------------
-
-
-#Hash==Хеш
-#Public==Загальнодоступна
-#Crawl start==Початок сканування
-#Title==Заголовок
-#Tags==Ключові слова
-#Folders==Папки
-#Date Added==Дата додавання
-#Date modified==Дата зміни
-#Date visited==Дата відвідання
-#API PK==API PK
-#Date recording==Дата запису
-#Date next exec==Дата наступного запуску
-#Date last exec==Дата останнього запуску
-#-----------------------------
-
+"YaCy Access Grid"=="YaCy Сітка доступу"
#File: ServerScannerList.html
#---------------------------
Network Scanner Monitor==Результати сканування мережі
The following servers can be searched:==По наступних серверах можна здійснювати пошук:
-The following servers had been detected:==Були виявлені наступні сервери:
Available server within the given IP range==Доступні сервери в межах вказаної IP-області
->Protocol<==>Протокол<
-#>IP<==>IP<
-#>URL<==>URL<
->Access<==>Доступ<
->Process<==>Обробка<
->unknown<==>невідомий<
->empty<==>порожній<
->granted<==>дозволено<
->denied<==>заборонено<
->not in index<==>не в індексі<
->indexed<==>проіндексовано<
"Add Selected Servers to Crawler"=="Додати обрані сервери у сканування"
#-----------------------------
+Protocol==Протокол
+IP==IP
+URL==URL
+Access==Доступ
+Process==процес
+inaccessible==недоступний
+empty==порожній
+granted==надано
+denied==відмовлено
+not in index==немає в індексі
+indexed==індексується
#File: env/templates/submenuComputation.template
+Status==Стан
#---------------------------
-Computation Monitor==Спостереження за обчисленнями
Processes==Процеси
Server Log==Журнал сервера
Concurrent Indexing==Індексування
@@ -3549,41 +3350,1481 @@ Outgoing News==Вихідні
Published News==Опубліковані
#-----------------------------
-#File: YaCySearchPluginFF.html
-#---------------------------
-Quick Crawl Link==Швидке сканування посилання
-Firefox Search Plugin==Пошукове доповнення Firefox
-Unable to install the firefox search plugin==Неможливо встановити пошукове розширення firefox
-#"General"=="Загалом"
-YaCy Firefox Search-Plugin Installation==Установка пошукового розширення YaCy Firefox
-Simply click on the link shown below to integrate the YaCy Firefox Search-Plugin into your browser==Просто клацніть подане нижче посилання, щоб вбудувати пошукове розширення YaCy Firefox у ваш переглядач
-In Mozilla Firefox, you can the Search-Plugin via the search box on the toolbar==В Mozilla Firefox пошукове розширення доступне з поля пошуку на панелі інструментів
-In Mozilla (Seamonkey) you can access the Search-Plugin via the Sidebar or the Location Bar==В Mozilla (Seamonkey) пошукове розширення доступне з бічної панелі або адресного рядка
-Install the YaCy search plugin==Встановити пошукове розширення YaCy
-#-----------------------------
-
+Application Status==Статус програми
+System==система
+Log Reports==Журнал звітів
+Thread Dump==Дамп потоку
+Community Data==Дані спільноти
+Surftips==Поради для серфінгу
+Local Peer Wiki==Local Peer Wiki
+Bookmarks==Закладки
#File: IndexFederated_p.html
+"Set"=="Виставити"
#---------------------------
-Federated Index==Об’єднаний індекс
-YaCy supports multiple index storage locations. At this time only the YaCy-internal search index can be used for the Yacy search interface.==YaCy підтримує кілька місць зберігання індексу. У цей час тільки внутрішній YaCy пошуковий індекс може бути використаний для пошукової оболонки Yacy.
-A Solr index storage location is optional. The local index storage location can be disabled.==Місце зберігання індексу Solr не є обов’язковим. Місцеве зберігання індексу може бути відключене.
-YaCy Embedded Index Engine==Вбудований індексний двугун YaCy
-You can just switch on or off this index. If you switch it off, you will not be able to search with YaCy any more.==Ви можете просто ввімкнути або вимкнути цей індекс. Якщо вимкнете, то більше не зможете шукати з YaCy.
-Remote Solr Index==Віддалений індекс Solr
-You can set one or more Solr targets here. If you wish to set several targets, then list them in the 'Solr URL' field using a ',' (comma) as separator.==Тут можна встановити одну або кілька Solr мішеней. Якщо хочете встановити кілька цілей, то перерахуйте їх в полі "Solr URL", використовуючи "," (кому) як роздільник.
Solr Hosts==Сервери Solr
Solr Host Administration Interface==Оболонка керування сервером Solr
Index Size==Розмір індексу
Solr URL(s)==Solr URL
Sharding Method==Спосіб поширення
->Scheme==>Схема
-Index Scheme==Схема індексу
-Active==Діє
-#Attribute==Ознака
-Attribute==Властивість
-Comment==Примітка
-Set==Виставити
-==
#-----------------------------
# EOF
+
+Index Sources & Targets==Джерела індексу & Цілі
+YaCy supports multiple index storage locations.==YaCy підтримує кілька місць зберігання індексів.
+As an internal indexing database a deep-embedded multi-core Solr is used and it is possible to attach also a remote Solr.==Як внутрішня база даних індексування використовується глибоко вбудована багатоядерна Solr, а також можна приєднати віддалену Solr.
+Solr Search Index==Solr Індекс пошуку
+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 is stored within the YaCy DATA directory.==Це запише YaCy-вбудований індекс Solr, який зберігається в каталозі YaCy DATA.
+The Solr native search interface is accessible at==Інтерфейс рідного пошуку Solr доступний за адресою
+/solr/select?q=*:*&start=0&rows=3&core=collection1==/solr/select?q=*:*&start=0&rows=3&core=collection1
+for the default search index (core: collection1) and at==для індексу пошуку за замовчуванням (core: collection1) і at
+If you switch off this index, a remote Solr must be activated.==Якщо ви вимкнете цей індекс, потрібно активувати віддалений Solr.
+Use remote Solr server(s)==Використовувати віддалений сервер(и) 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. Його також можна використовувати додатково до внутрішнього Solr, тоді обидва індекси Solr віддзеркалюються.
+Allow self-signed certificates==Дозволити самопідписані сертифікати
+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 https://user:password@localhost:8984/solr.==Поставте прапорець, якщо віддалений сервер Solr захищено паролем і отримує запит через HTTPS, але надає лише самопідписаний сертифікат (а не підтверджений офіційним центром сертифікації). Solr URL може бути, наприклад, таким як https://user:password@localhost:8984/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 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).==Набір віддалених цілей використовується як фрагменти повного індексу. Частина URL-адреси хоста використовується як ключ для хеш-функції, яка вибирає один із сегментів (один із ваших віддалених серверів).
+When a search request is made, all servers are accessed synchronously and the result is combined.==Коли виконується пошуковий запит, доступ до всіх серверів здійснюється синхронно, а результат об’єднується.
+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 forty times more links from loaded pages than in documents of the main search index).==Індекс веб-структури використовується для перегляду хосту (для виявлення внутрішньої структури файлу/folder), ранжування (підрахунок кількості посилань) і пошуку файлів (посилань із завантажених сторінок приблизно в сорок разів більше, ніж у документах основного пошукового індексу).
+use citation reference index (lightweight and fast)==використовувати індекс цитування (легкий і швидкий)
+use webgraph search index (rich information in second Solr core)==використовувати пошуковий індекс webgraph (багата інформація у другому ядрі Solr)
+Peer-to-Peer Operation==Однорангова робота
+The 'RWI' (Reverse Word Index) is necessary for index transmission in distributed mode. For portal or intranet mode this must be switched off.=='RWI' (зворотний індекс слів) необхідний для передачі індексу в розподіленому режимі. Для режиму порталу або інтрамережі це має бути вимкнено.
+support peer-to-peer index transmission (DHT RWI index)==підтримка однорангової індексної передачі (DHT RWI індекс)
+Block known error URLs in DHT==Блокувати URL-адреси з відомими помилками в DHT
+Reject URLs/RWIs with known errors from peers. Disable to opt out.==Відхиляти URL-адреси/RWIs з відомими помилками від вузлів. Вимкніть, щоб відмовитися.
+Retry after (days)==Повторити через (днів)
+for temporary errors; permanent errors stay blocked.==за тимчасові помилки; постійні помилки залишаються заблокованими.
+Permanent error statuses==Постійні статуси помилок
+comma-separated (default: 404,410,-1; -1=DNS/network errors)==розділені комами (за замовчуванням: 404,410,-1; -1=DNS/network помилки)
+#File: Autocrawl_p.html
+#---------------------------
+"Save"=="Зберегти"
+#-----------------------------
+
+Autocrawler==Автосканер
+Autocrawler automatically selects and adds tasks to the local crawl queue. This will work best when there are already quite a few domains in the index.==Autocrawler автоматично вибирає та додає завдання до локальної черги сканування. Це найкраще працюватиме, якщо в індексі вже є чимало доменів.
+Autocralwer Configuration==Конфігурація Autocralwer
+You need to restart for some settings to be applied==Потрібно перезавантажити, щоб застосувати деякі налаштування
+Enable Autocrawler:==Увімкнути автосканер:
+Deep crawl every Nth document:==Глибоке сканування кожного N-го документа:
+Warning: if this is bigger than "Rows to fetch" only shallow crawls will run.==Попередження: якщо значення більше, ніж «Рядки для отримання», виконуватимуться лише неглибокі сканування.
+Rows to fetch at once:==Рядки для одночасного отримання:
+Recrawl only older than # days:==Повторне сканування лише старше # днів:
+Get hosts by query:==Отримати хости за запитом:
+Can be any valid Solr query.==Може бути будь-яким дійсним Solr запитом.
+Shallow crawl depth (0 to 2):==Мала глибина сканування (від 0 до 2):
+Deep crawl depth (1 to 5):==Глибоке сканування (від 1 до 5):
+Index text:==Індексний текст:
+Index media:==Індекс медіа:
+#File: ConfigAccountList_p.html
+#---------------------------
+Address==Адреса
+First name==Ім’я
+Last name==Прізвище
+User Accounts==Облікові записи користувачів
+#-----------------------------
+
+User List==Список користувачів
+User==Користувач
+Last Access==Останній доступ
+Rights==права
+Time==час
+Traffic==трафік
+#File: ConfigSearchPage_p.html
+#---------------------------
+Applications==Додатки
+Audio==Аудіо
+Images==Зображення
+Location==Місце
+Pictures==Bilder
+Text==Текст
+Video==Відео
+#-----------------------------
+
+"Top navigation bar"=="Верхня панель навігації"
+"Enable login link/status"=="Увімкнути посилання для входу/status"
+"Log in to use extended search features"=="Увійдіть, щоб скористатися функціями розширеного пошуку"
+"You are authenticated as userName"=="Ви автентифіковані як ім'я користувача"
+"Help"=="Довідка"
+"Protocols"=="Протоколи"
+"Tag cloud"=="Хмара тегів"
+"earthsearchlogo"=="earthsearchlogo"
+"Delete navigator"=="Видалити навігатор"
+"Sorted by descending counts"=="Відсортовано за спаданням кількості"
+"Sorted by ascending counts"=="Відсортовано за зростанням числа"
+"Sorted by descending labels"=="Відсортовано за спаданням міток"
+"Sorted by ascending labels"=="Відсортовано за зростанням міток"
+"search..."=="пошук..."
+"Maximum days number in the histogram. Beware that a large value may trigger high CPU loads both on the server and on the browser with large result sets."=="Максимальна кількість днів на гістограмі. Майте на увазі, що велике значення може викликати високе навантаження на ЦП як на сервері, так і на браузері з великими наборами результатів."
+"info"=="інформація"
+"Website favicon"=="Значок веб-сайту"
+"Last known modification date"=="Дата останньої відомої зміни"
+"Browse index"=="Перегляд індексу"
+"Raw ranking score value"=="Необроблене значення рейтингу"
+"Date"=="Дата"
+"Size"=="Розмір"
+"Add navigator"=="Додати навігатор"
+"Save Settings"=="Зберегти налаштування"
+"Set Default Values"=="Встановити значення за замовчуванням"
+Search Result Page Layout Configuration==Конфігурація макета сторінки результатів пошуку
+Below is a generic template of the search result page. Mark the check boxes for features you would like to be displayed.==Нижче наведено загальний шаблон сторінки результатів пошуку. Установіть прапорці для функцій, які ви хочете відображати.
+Page Template==Шаблон сторінки
+Toggle navigation==Перемкнути навігацію
+Log in==авторизуватися
+userName==ім'я користувача
+Search Interfaces==Пошукові інтерфейси
+Administration »==Адміністрація »
+http==http
+https==https
+ftp==ftp
+smb==хтось
+file==файл
+Tag==Тег
+Topics==Теми
+Cloud==Хмара
+show search results on map==показати результати пошуку на карті
+Sort by==Сортувати за
+Descending counts==Спадання відліків
+Ascending counts==Зростаючий відлік
+Descending labels==Мітки за спаданням
+Ascending labels==Мітки за зростанням
+Vocabulary==Словниковий запас
+search==пошук
+more options==більше опцій
+Date Navigation==Навігація за датою
+Maximum range (in days)==Максимальний діапазон (у днях)
+Show websites favicon==Показати значок веб-сайтів
+Not showing websites favicon can help you save some CPU time and network bandwidth.==Якщо не показувати значок веб-сайтів, ви можете заощадити час ЦП і пропускну здатність мережі.
+Title of Result==Назва результату
+Description and text snippet of the search result==Опис і текстовий фрагмент результату пошуку
+http://url-of-the-search-result.net==http://url-of-the-search-result.net
+Tags==Теги
+keyword==ключове слово
+subject==тема
+keyword2==ключове слово2
+keyword3==ключове слово3
+Max. tags initially displayed==Макс. теги, що відображаються спочатку
+(remaining can then be expanded)==(залишок можна потім розширити)
+42 kbyte==42 кбайт
+Metadata==Метадані
+Parser==Парсер
+Citation==Цитування
+Cache==Кеш
+View via Proxy==Перегляд через проксі
+Ranking: 1.12195955E9==Рейтинг: 1.12195955E9
+For this option URL proxy must be enabled.==Для цього параметра має бути ввімкнено проксі-сервер URL.
+menu: System Administration > Advanced Settings==меню: Системне адміністрування > Додаткові параметри
+Menu: System Administration > Advanced Settings > Debug/Analysis Settings==Меню: Системне адміністрування > Додаткові параметри > Параметри Debug/Analysis
+Add Navigators==Додати навігатори
+append==додавати
+max. items==макс. елементи
+#File: ConfigUser_p.html
+#---------------------------
+Address==Адреса
+First name==Ім’я
+Generic error.==Загальна помилка.
+Last name==Прізвище
+Passwords do not match.==Паролі не збігаються.
+Repeat password==Повтор пароля
+Time used==Часу використано
+Timelimit==Часове обмеження
+Username==Користувач
+#-----------------------------
+
+"Save User"=="Зберегти користувача"
+"Delete User"=="Видалити користувача"
+"ConfigAccountList_p.html"=="ConfigAccountList_p.html"
+User Account Editor==Редактор облікових записів користувачів
+Username too short. Username must be >= 4 Characters.==Ім'я користувача занадто коротке. Ім’я користувача має містити >= 4 символи.
+Username already used (not allowed).==Ім'я користувача вже використано (не дозволено).
+Password==Пароль
+Rights:==права:
+back to user list==повернутися до списку користувачів
+#File: ContentAnalysis_p.html
+#---------------------------
+"Set"=="Виставити"
+#-----------------------------
+
+"Re-Set to default"=="Знову встановити за замовчуванням"
+Content Analysis==Аналіз вмісту
+These are document analysis attributes.==Це атрибути аналізу документів.
+Double Content Detection==Подвійне виявлення вмісту
+Double-Content detection is done using a ranking on a 'unique'-Field, named 'fuzzy_signature_unique_b'.==Виявлення подвійного вмісту виконується за допомогою рейтингу в «унікальному» полі під назвою «fuzzy_signature_unique_b».
+minTokenLen==minTokenLen
+This is the minimum length of a word which shall be considered as element of the signature. Should be either 2 or 3.==Це мінімальна довжина слова, яке вважається елементом підпису. Має бути 2 або 3.
+quantRate==quantRate
+The quantRate is a measurement for the number of words that take part in a signature computation. The higher the number, the less==QuantRate — це показник кількості слів, які беруть участь у обчисленні сигнатури. Чим більше число, тим менше
+words are used for the signature.==для підпису використовуються слова.
+For minTokenLen = 2 the quantRate value should not be below 0.24; for minTokenLen = 3 the quantRate value must be not below 0.5.==Для minTokenLen = 2 значення quantRate не повинно бути нижче 0,24; для minTokenLen = 3 значення quantRate має бути не нижче 0,5.
+#File: CrawlMonitorRemoteStart.html
+#---------------------------
+Accept '?' URLs==URL зі "?"
+Depth==Глибина
+Peer Name==Ім’я вузла
+no==ні
+yes==так
+#-----------------------------
+
+Recently started remote crawls in progress==Виконується нещодавно розпочате віддалене сканування
+Remote crawl start points, crawl is ongoing==Початкові точки віддаленого сканування, сканування триває
+Start Time==Час початку
+Start URL==Початок URL
+Intention/Description==Намір/Description
+Remote crawl start points, finished:==Початкові точки віддаленого сканування, завершено:
+#File: IndexBrowser_p.html
+#---------------------------
+Index Browser==Index Перегляд
+Path==Каталог
+#-----------------------------
+
+"Delete Subpath"=="Видалити підшлях"
+"Re-load load-failure docs (404s etc)"=="Перезавантажити документи про помилку завантаження (404s тощо)"
+"Directory"=="Довідник"
+"Delete Load Errors"=="Видалити помилки завантаження"
+Host/URL==Хост/URL
+Browse Host==Огляд хосту
+Host List==Список хостів
+URLs==URL-адреси
+Count Colors:==Підрахунок кольорів:
+Documents without Errors==Документи без помилок
+Pending in Crawler==Очікує на розгляд у сканері
+Crawler Excludes==Виключено сканер
+Load Errors==Помилки завантаження
+Host Analysis==Аналіз хоста
+Add to blacklist==Додати в чорний список
+stored==зберігається
+linked==пов'язані
+pending==в очікуванні
+excluded==виключено
+failed==не вдалося
+Metadata==Метадані
+link, detected from context==посилання, визначене з контексту
+load & index==завантажити індекс &
+indexed==індексується
+loading==завантаження
+Administration Options==Параметри адміністрування
+Delete all==Видалити все
+from index==з індексу
+#File: IndexDeletion_p.html
+#---------------------------
+hours==годин
+#-----------------------------
+
+"Simulate Deletion"=="Імітація видалення"
+"no actual deletion, generates only a deletion count"=="фактичного видалення немає, створюється лише кількість видалень"
+"Engage Deletion"=="Задіяти видалення"
+"simulate a deletion first to calculate the deletion count"=="спочатку імітуйте видалення, щоб обчислити кількість видалень"
+"engaged"=="займається"
+Index Deletion==Видалення індексу
+Deletions are made concurrently which can cause that recently deleted documents are not yet reflected in the document count.==Видалення виконуються одночасно, що може призвести до того, що нещодавно видалені документи ще не відображатимуться в кількості документів.
+Index deletion will not immediately reduce the storage size on disk because entries are only marked as deleted in a first step.==Видалення індексу не призведе до негайного зменшення розміру сховища на диску, оскільки записи позначаються як видалені лише на першому кроці.
+Delete by URL Matching==Видалити за відповідністю URL
+Delete all documents within a sub-path of the given urls. That means all documents must start with one of the url stubs as given here.==Видалити всі документи в межах підшляху вказаних URL-адрес. Це означає, що всі документи мають починатися з однієї з URL-адрес, наведених тут.
+One URL stub, a list of URL stubs or a regular expression==Один URL заглушки, список URL заглушки або регулярний вираз
+Matching Method==Метод відповідності
+sub-path of given URLs==підшлях заданих URL-адрес
+matching with regular expression==зіставлення з регулярним виразом
+Delete by Age==Видалити за віком
+Delete all documents which are older than a given time period.==Видалити всі документи, які старші за вказаний період часу.
+Time Period==Період часу
+All documents older than==Всі документи старше
+years==років
+months==місяців
+days==днів
+Age Identification==Ідентифікація віку
+load date==дата завантаження
+last-modified==останні зміни
+Delete Collections==Видалити колекції
+Delete all documents which are inside specific collections.==Видалити всі документи, які знаходяться в певних колекціях.
+Not Assigned==Не призначено
+Delete all documents which are not assigned to any collection==Видалити всі документи, які не віднесені до жодної колекції
+Assigned==Призначений
+Delete all documents which are assigned to the following collection(s)==Видалити всі документи, які віднесено до наступних колекцій
+Delete by Solr Query==Видалити за запитом Solr
+This is the most generic option: select a set of documents using a solr query.==Це найбільш загальний варіант: виберіть набір документів за допомогою запиту solr.
+Core==Ядро
+#File: IndexImportJsonList_p.html
+#---------------------------
+File:==Файл:
+Import Process==Процес імпорту
+No import thread is running, you can start a new thread here==Ви можете запустити новий потік, оскільки в даний час немає робочих потоків імпорту.
+Processed:==Оброблені:
+Remaining Time:==Залишилось часу:
+Running Time:==Час роботи:
+Speed:==швидкість:
+Thread:==Потік:
+#-----------------------------
+
+"Import JsonList File"=="Імпорт файлу JsonList"
+"Stop"=="СТІЙ"
+JSON List Index Dump File Import==JSON Імпорт файлу дампа індексу списку
+JsonList File Selection: select an jsonlist file (which may be gz compressed)==Вибір файлу JsonList: виберіть файл jsonlist (який може бути gz-стиснутим)
+or==або
+Url:==Url:
+JsonList File:==Файл JsonList:
+#File: IndexImportWarc_p.html
+#---------------------------
+File:==Файл:
+Import Process==Процес імпорту
+No import thread is running, you can start a new thread here==Ви можете запустити новий потік, оскільки в даний час немає робочих потоків імпорту.
+Processed:==Оброблені:
+Remaining Time:==Залишилось часу:
+Running Time:==Час роботи:
+Speed:==швидкість:
+Thread:==Потік:
+#-----------------------------
+
+"Import Warc File"=="Імпорт файлу Warc"
+"Stop"=="СТІЙ"
+Web Archive File Import==Імпорт файлів веб-архіву
+Warc File Selection: select an warc file (which may be gz compressed)==Вибір файлу Warc: виберіть файл warc (який може бути gz-стиснутим)
+You can download warc archives for example here==Ви можете завантажити архіви warc, наприклад, тут
+or==або
+Url:==Url:
+Collection:==Колекція:
+Warc File:==Файл Warc:
+#File: IndexImportZim_p.html
+#---------------------------
+File:==Файл:
+Import Process==Процес імпорту
+No import thread is running, you can start a new thread here==Ви можете запустити новий потік, оскільки в даний час немає робочих потоків імпорту.
+Processed:==Оброблені:
+Remaining Time:==Залишилось часу:
+Running Time:==Час роботи:
+Speed:==швидкість:
+Thread:==Потік:
+#-----------------------------
+
+"Import ZIM File"=="Імпорт файлу ZIM"
+"Stop"=="СТІЙ"
+ZIM File Import==Імпорт файлу ZIM
+Zim File Selection: select a '.zim' file==Вибір файлу Zim: виберіть файл «.zim».
+You can download ZIM files for example here==Ви можете завантажити файли ZIM, наприклад, тут
+Collection:==Колекція:
+ZIM File:==Файл ZIM:
+#File: IndexReIndexMonitor_p.html
+#---------------------------
+Rejected URLs==Відхилені URL
+Running==Працює
+Status==Стан
+#-----------------------------
+
+"refresh page"=="оновити сторінку"
+"start reindex job now"=="розпочати завдання переіндексації зараз"
+"stop reindexing"=="припинити переіндексацію"
+"Simulate"=="Симулювати"
+"Check only how many documents would be selected for recrawl"=="Перевірте лише кількість документів, які будуть вибрані для повторного сканування"
+"Set defaults"=="Встановити значення за замовчуванням"
+"Reset to default values"=="Відновити значення за замовчуванням"
+"start recrawl job now"=="розпочати завдання повторного сканування зараз"
+"update"=="оновлення"
+"stop recrawl job"=="зупинити повторне сканування"
+"Automatically refreshing"=="Автоматичне оновлення"
+"An error occurred while trying to refresh automatically"=="Під час спроби автоматичного оновлення сталася помилка"
+"URLs added to the crawler queue for recrawl"=="URL-адреси, додані до черги сканера для повторного сканування"
+"URLs rejected for some reason by the crawl stacker or the crawler queue. Please check the logs for more details."=="URL-адреси, які з певної причини відхилено стекером сканування або чергою сканера. Будь ласка, перевірте журнали для отримання додаткової інформації."
+Field Re-Indexing==Переіндексація полів
+In case that an index schema of the embedded/local index has changed, all documents with missing field entries can be indexed again with a reindex job.==Якщо схема індексу вбудованого/local індексу змінилася, усі документи з відсутніми записами полів можна знову проіндексувати за допомогою завдання повторного індексування.
+Documents in current queue==Документи в поточній черзі
+Documents processed==Документи опрацьовано
+current select query==поточний запит на вибір
+Remaining field list==Список полів, що залишилися
+reindex documents containing these fields:==переіндексувати документи, що містять ці поля:
+Field==Поле
+count==розраховувати
+Re-Crawl Index Documents==Повторне сканування індексних документів
+Searches the local index and selects documents to add to the crawler (recrawl the document).==Пошук у локальному індексі та вибір документів для додавання до сканера (повторне сканування документа).
+This runs transparent as background job. Documents are added to the crawler only if no other crawls are active==Це виконується прозоро як фонове завдання. Документи додаються до сканера, лише якщо жодне інше сканування не активне
+and are added in small chunks.==і додаються невеликими шматочками.
+Re-crawl works only with an embedded local Solr index!==Повторне сканування працює лише з вбудованим локальним індексом Solr!
+Solr query==Solr запит
+document(s)==документ(и)
+selected for recrawl.==вибрано для повторного сканування.
+An error occurred when trying to run the selection query.==Під час спроби запустити запит на вибір сталася помилка.
+The Solr index is not connected. Please restart your peer.==Індекс Solr не підключено. Будь ласка, перезапустіть ваш одноранговий пристрій.
+Include failed URLs==Включити невдалі URL-адреси
+Delete URLs==Видалити URL-адреси
+to re-crawl documents selected with the given query.==щоб повторно сканувати документи, вибрані за даним запитом.
+Re-Crawl Query Details==Деталі запиту повторного сканування
+Documents to process==Документи для обробки
+Current Query==Поточний запит
+Edit Solr Query==Редагувати запит Solr
+Include failed urls==Включити невдалі URL-адреси
+Delete urls==Видалити URL-адреси
+Last==Останній
+Re-Crawl job report==Звіт про завдання повторного сканування
+The job terminated early due to an error when requesting the Solr index.==Завдання припинено достроково через помилку під час запиту індексу Solr.
+Shutdown in progress==Триває відключення
+Terminated==Припинено
+Query==Пошукова фраза
+Start time==Час початку
+End time==Час закінчення
+Recrawled URLs==Повторно проскановані URL-адреси
+Malformed URLs==URL-адреси неправильного формату
+Refresh==Оновити
+#File: IndexSchema_p.html
+#---------------------------
+"Set"=="Виставити"
+Comment==Коментар
+#-----------------------------
+
+"API"=="API"
+"active"=="активний"
+"disabled"=="вимкнено"
+"Required for proper operation"=="Необхідний для правильної роботи"
+"reset selection to default"=="скинути вибір до замовчування"
+"reindex Solr"=="переіндексувати Solr"
+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.==Схему solr також можна отримати тут як xml. Натисніть піктограму API, щоб переглянути файл xml. Просто скопіюйте цей xml до solr/conf/schema.xml, щоб налаштувати solr.
+Solr Schema Editor==Solr Редактор схем
+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==Якщо ви використовуєте спеціальну схему Solr, ви можете ввести іншу назву поля в стовпці «Ім’я спеціального поля Solr» назви атрибута за замовчуванням YaCy
+Select a core:==Виберіть ядро:
+Active==Активний
+Attribute==Атрибут
+Custom Solr Field Name==Настроюване ім’я поля Solr
+show active==показати активний
+show all available==показати всі доступні
+show disabled==показ вимкнено
+Reindex documents==Переіндексувати документи
+If you unselected some fields, old documents in the index still contain the unselected fields.==Якщо ви скасували вибір деяких полів, старі документи в індексі все ще містять невибрані поля.
+To physically remove them from the index you need to reindex the documents.==Щоб фізично видалити їх з індексу, потрібно переіндексувати документи.
+Here you can reindex all documents with inactive fields.==Тут ви можете переіндексувати всі документи з неактивними полями.
+#File: IndexShare_p.html
+#---------------------------
+"Set"=="Виставити"
+#-----------------------------
+
+Index Sharing==Спільне використання індексу
+Index:==Індекс:
+distribute ==поширювати
+receive==отримати
+receive grant default:==отримати грант за умовчанням:
+for each remote peer==для кожного віддаленого вузла
+links/minute ==посилання/minute
+words/minute==слова/minute
+#File: QuickCrawlLink_p.html
+#---------------------------
+Title:==Заголовок:
+#-----------------------------
+
+Quickly adding Bookmarks:==Швидке додавання закладок:
+Simply drag and drop the link shown below to your Browsers Toolbar/Link-Bar.==Просто перетягніть наведене нижче посилання на панель інструментів свого браузера/Link-Bar.
+If you click on it while browsing, the currently viewed website will be inserted into the YaCy crawling queue for indexing.==Якщо клацнути його під час перегляду, веб-сайт, який зараз переглядається, буде вставлено в чергу сканування YaCy для індексування.
+Crawl with YaCy==Сканувати за допомогою YaCy
+Link:==Посилання:
+Status:==Статус:
+URL successfully added to Crawler Queue==URL успішно додано до черги сканера
+Malformed URL==Неправильний URL
+#File: TransNews_p.html
+#---------------------------
+"negative vote"=="негативний відгук"
+"positive vote"=="позитивний відгук"
+File:==Файл:
+Originator==Творець
+#-----------------------------
+
+"Publish"=="Опублікувати"
+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 its own local translation.==Віддалений партнер може проголосувати за ваш переклад і додати його до свого локального перекладу.
+English:==англійська:
+existing==існуючі
+Translation:==Переклад:
+Vote on this translation. If you vote positive the translation is added to your local translation list.==Проголосуйте за цей переклад. Якщо ви проголосуєте позитивно, переклад буде додано до вашого локального списку перекладів.
+#File: Vocabulary_p.html
+#---------------------------
+Delete==Видалити
+#-----------------------------
+
+"API"=="API"
+"View"=="Переглянути"
+"Uniform Resource Locator"=="Уніфікований покажчик ресурсів"
+"Standard CSV field delimiter"=="Стандартний роздільник полів CSV"
+"Create"=="Створити"
+"Submit"=="Відправити"
+The information that is presented on this page can also be retrieved as XML==Інформацію, представлену на цій сторінці, також можна отримати як XML
+Click the API icon to see the RDF Ontology definition for this vocabulary.==Натисніть піктограму API, щоб переглянути визначення онтології RDF для цього словника.
+Vocabulary Administration==Адміністрування словникового запасу
+Vocabularies can be used to produce a search navigation. A vocabulary must be created before content is indexed.==Словники можна використовувати для створення пошукової навігації. Перед індексацією вмісту необхідно створити словниковий запас.
+The vocabulary is used to annotate the indexed content with a reference to the object that is denoted by the term of the vocabulary.==Словник використовується для анотації індексованого вмісту з посиланням на об’єкт, який позначається терміном словника.
+The object can be denoted by a url stub that, combined with the term, becomes the url for the object.==Об’єкт можна позначити за допомогою URL-адреси, яка в поєднанні з терміном стає URL-адресою об’єкта.
+Vocabulary Selection==Вибір словника
+Vocabulary Name==Словникова назва
+Vocabulary Production==Виробництво словника
+Please provide a CSV file path or URL.==Укажіть шлях до файлу CSV або URL.
+Empty Vocabulary==Порожній словниковий запас
+Auto-Discover==Автоматичне виявлення
+from file name==від імені файлу
+from page title==із заголовка сторінки
+from page title (split)==із заголовка сторінки (розділено)
+from page author==від автора сторінки
+Objectspace==Об'єктний простір
+It is possible to produce a vocabulary out of the existing search index. This is done using a given 'objectspace' which you can enter as a URL Stub.==З існуючого пошукового індексу можна створити словниковий запас. Це робиться за допомогою заданого «об’єктного простору», який ви можете ввести як URL Stub.
+This stub is used to find all matching URLs. If the remaining path from the matching URLs then denotes a single file, the file name is used as vocabulary term.==Ця заглушка використовується для пошуку всіх відповідних URL-адрес. Якщо шлях, що залишився від відповідних URL-адрес, позначає один файл, назва файлу використовується як словниковий термін.
+This works best with wikis. Try to use a wiki url as objectspace path.==Це найкраще працює з вікі. Спробуйте використати URL-адресу вікі як шлях до простору об’єктів.
+Import from a csv file==Імпортувати з файлу csv
+File Path or URL==Шлях до файлу або URL
+Start line==Стартова лінія
+(first has index 0)==(перший має індекс 0)
+Column for Literals==Стовпець для літералів
+Synonyms==Синоніми
+no Synonyms==немає синонімів
+Auto-Enrich with Synonyms from Stemming Library==Автоматичне збагачення синонімами з Stemming Library
+Read Column==Читайте колонку
+Column for Object Link (optional)==Стовпець для посилання на об’єкт (необов’язково)
+(first has index 0, if unused set -1)==(перший має індекс 0, якщо не використовується встановлено -1)
+Charset of Import File==Кодування файлу імпорту
+Column separator==Розділювач стовпців
+Comma ','==Кома ','
+Semicolon ';'==Крапка з комою ';'
+Vocabulary Editor==Редактор словника
+File==Файл
+[automatically generated, not stored, cannot be edited]==[автоматично створено, не зберігається, не можна редагувати]
+Size==Розмір
+Namespace==Простір імен
+Predicate==Присудок
+Prefix==Префікс
+Is Facet?==Чи є Facet?
+(If checked, this vocabulary is used for search facets. Not feasible for large vocabularies!)==(Якщо позначено, цей словник використовується для аспектів пошуку. Неможливо для великих словників!)
+Match terms from==Зіставте умови від
+Cleartext==Чистий текст
+Linked data/Semantic web annotations==Пов’язані дані/Semantic веб-анотації
+Modify==Змінити
+Literal==Буквальний
+Object Link==Посилання на об’єкт
+add==додати
+clear table (remove all terms)==очистити таблицю (видалити всі умови)
+delete vocabulary==видалити словниковий запас
+#File: api/share.html
+#---------------------------
+File Share==Обміну файлами
+#-----------------------------
+
+"Submit"=="Відправити"
+This form can be used to share a (index) file==Цю форму можна використовувати для спільного використання файлу (індексу).
+Files to process:==Файли для обробки:
+Result for the recently submitted file(s). You can also submit the same form using the servlet share.json to get push confirmations in json format.==Результат для нещодавно надісланих файлів. Ви також можете надіслати ту саму форму за допомогою сервлета share.json, щоб отримати push-підтвердження у форматі json.
+successall==успішний
+false==помилковий
+true==правда
+countsuccess==рахувати успіх
+countfail==countfail
+Item==Пункт
+URL==URL
+Success==Успіх
+Message==повідомлення
+fail==провал
+ok==добре
+If you want to push again files, use this form to pre-define a number of upload forms:==Якщо ви хочете повторно надіслати файли, скористайтеся цією формою, щоб попередньо визначити кілька форм завантаження:
+#File: api/yacydoc.html
+#---------------------------
+Click the API icon to see an example call to the search rss API.==Щиглик API, щоб побачити зразок виклику пошукового API RSS.
+Description==Опис
+Location==Місце
+Subject==Назва
+#-----------------------------
+
+"API"=="API"
+This search result can also be retrieved as XML.==Цей результат пошуку також можна отримати як XML.
+Title==Назва
+Author==Автор
+Publisher==Видавець
+Contributor==Дописувач
+Date==Дата
+Type==Тип
+YaCy Identifier==YaCy Ідентифікатор
+Identifier==Ідентифікатор
+Language==Мова
+Collections==Колекції
+Load Date==Дата завантаження
+Referrer Identifier==Ідентифікатор реферера
+Referrer URL==Реферер URL
+Document size==Розмір документа
+Number of Words==Кількість слів
+Inbound Links (anchors)==Вхідні посилання (якорі)
+Outbound Links (anchors)==Вихідні посилання (якорі)
+Incoming Links (citation)==Вхідні посилання (цитата)
+#File: env/templates/submenuCrawler.template
+#---------------------------
+Parser Configuration==Настройка обробника
+#-----------------------------
+
+Load Web Pages==Завантажити веб-сторінки
+Site Crawling==Сканування сайту
+#File: env/templates/submenuIndexCreate.template
+#---------------------------
+Network Scanner==Сканувач внутрішньої мережі
+#-----------------------------
+
+Advanced Crawler==Розширений сканер
+Crawler/Spider==Гусеничний/Spider
+Crawl Start (Expert)==Початок сканування (експерт)
+Crawling of MediaWikis==Сканування MediaWikis
+Crawling of phpBB3 Forums==Сканування форумів phpBB3
+Network Harvesting==Мережевий збір
+Remote Crawling==Віддалене сканування
+Scraping Proxy==Збирання проксі
+Autocrawl==Автообхід
+#File: processing/domaingraph/applet/index.html
+#---------------------------
+Get the latest Java Plug-in here.==Завантажте останнє доповнення Java тут.
+This browser does not have a Java Plug-in.==Цей переглядач не має доповнення Java.
+#-----------------------------
+
+"Download Java Plug-in"=="Завантажте плагін Java"
+"Processing.org"=="Processing.org"
+domaingraph : Built with Processing==domaingraph : створено за допомогою обробки
+Built with Processing==Створено з обробкою
+#File: yacychat.html
+#---------------------------
+"Search"=="Пошук"
+#-----------------------------
+
+"Attach search results by default"=="Додавати результати пошуку за умовчанням"
+"Attach a file"=="Прикріпити файл"
+"Send"=="Надіслати"
+"Clear chat"=="Очистити чат"
+"Download chat"=="Завантажити чат"
+"Upload chat"=="Завантажити чат"
+"Show system prompt"=="Показати системне повідомлення"
+YaCy Chat==YaCy Чат
+This Chat is private. YaCy does not keep any history — only your browser remembers the current conversation.==Цей чат приватний. YaCy не зберігає жодної історії — лише ваш браузер запам’ятовує поточну розмову.
+Default Dialog Augmentation:==Розширення діалогового вікна за замовчуванням:
+no search, allow attachments==немає пошуку, дозволити вкладення
+use local search==використовувати локальний пошук
+use global search==використовувати глобальний пошук
+User==Користувач
+Attach Search Results==Прикріпити результати пошуку
+Attach PNG/JPG or text (.txt/.md/.tex)==Додайте PNG/JPG або текст (.txt/.md/.tex)
+Clear Chat==Очистити чат
+Download Chat==Завантажити Чат
+Upload Chat==Завантажити чат
+Show System==Показати систему
+#File: yacysearch_location.html
+#---------------------------
+Click the API icon to see the XML.==Натисніть значок API для відображення XML.
+#-----------------------------
+
+"API"=="API"
+"search"=="пошук"
+The information that is presented on this page can also be retrieved as XML==Інформацію, представлену на цій сторінці, також можна отримати як XML
+search==пошук
+#File: yacysearchtrailer.html
+#---------------------------
+Audio==Аудіо
+Images==Зображення
+Location==Місце
+Video==Відео
+"global"=="глобальний"
+"local"=="місцевий"
+"Use the default ranking profile (customizable), ordering results by score."=="Використовуйте профіль рейтингу за замовчуванням (можна налаштувати), упорядковуючи результати за результатами."
+"Use the 'Date' ranking profile, ordering results by default on each document last modification date."=="Використовуйте профіль ранжирування «Дата», упорядковуючи результати за замовчуванням за датою останньої зміни кожного документа."
+"text"=="текст"
+"image"=="зображення"
+"audio"=="аудіо"
+"video"=="відео"
+"app"=="додаток"
+"false"=="помилковий"
+"Extend media search results to pages including such medias (provides generally more results, but eventually less relevant)"=="Розширити результати медіа-пошуку на сторінки, що містять такі медіа-файли (загалом надає більше результатів, але з часом менш релевантні)"
+"true"=="правда"
+"Strictly limit media search results to indexed documents matching exactly the desired content domain."=="Суворо обмежуйте результати медіапошуку індексованими документами, які точно відповідають бажаному домену вмісту."
+"earthsearchlogo"=="earthsearchlogo"
+"Sorted by descending counts"=="Відсортовано за спаданням кількості"
+"Sorted by ascending counts"=="Відсортовано за зростанням числа"
+"Sorted by descending labels"=="Відсортовано за спаданням міток"
+"Sorted by ascending labels"=="Відсортовано за зростанням міток"
+"click to expand facet"=="натисніть, щоб розгорнути фасет"
+Peer-to-Peer==Одноранговий
+Stealth Mode==Режим скритності
+Privacy==Конфіденційність
+Stealth Mode==Режим Stealth
+Context Ranking==Ранжування контексту
+Sort by Date==Сортувати за датою
+Documents==Документи
+Apps==програми
+Extended==Розширений
+Strict==Суворий
+#-----------------------------
+
+#File: AILab.html
+#---------------------------
+"Inference engine setup"=="Налаштування механізму логічного висновку"
+"Model assignment preview"=="Попередній перегляд призначення моделі"
+"Index creation"=="Створення індексу"
+"RAG configuration"=="Конфігурація RAG"
+"Tools configuration"=="Налаштування інструментів"
+"Log report monitor"=="Монітор звітів журналу"
+"Shield definition"=="Налаштування захисту"
+AI Lab Build System==Система побудови AI Lab
+Craft your AI toolkit==Створіть свій набір інструментів ШІ
+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.==Виконайте наведені нижче завдання, щоб увімкнути AI-помічника YaCy: підключіть механізм виведення, завантажте робочі моделі, зв’яжіть їх з індексом, а потім налаштуйте RAG і захист.
+0 / 6 unlocked==0/6 розблоковано
+Mandatory==Обов'язковий
+Needs setup==Потребує налаштування
+Bind an inference engine==Підключити механізм виведення
+Pick your host (Ollama, LM Studio, OpenAI-compatible) and give YaCy a place to send prompts.==Виберіть хост (Ollama, LM Studio або OpenAI-сумісний) і вкажіть YaCy, куди надсилати запити.
+Open engine setup==Відкрити налаштування механізму
+Set hoststub, API keys, and defaults to unlock downloads.==Укажіть hoststub, API-ключі та типові значення, щоб розблокувати завантаження.
+Populate the Production Models Matrix==Заповнити матрицю робочих моделей
+Assign models for chat, search, translation, and more. This is your loadout bench.==Призначте моделі для чату, пошуку, перекладу та інших задач. Це ваша панель налаштування моделей.
+Go to Production Models Matrix==Перейти до матриці робочих моделей
+Deploy at least one model, then assign capabilities (chat, search-query, tooling, vision).==Розгорніть принаймні одну модель, а потім призначте можливості (chat, search-query, tooling, vision).
+Optional==Додатково
+Grow a search index==Розширте пошуковий індекс
+Create a local index for grounding: crawl a site or import a pack to give your AI facts to cite.==Створіть локальний індекс для grounding: проскануйте сайт або імпортуйте пакет, щоб AI міг посилатися на факти.
+Start a crawl==Почати сканування
+Import an index pack==Імпортуйте пакет індексів
+Indexed documents:==Індексовані документи:
+required to unlock (need at least 1000 documents).==потрібно для розблокування (потрібно не менше 1000 документів).
+Wire RAG retrieval==Налаштувати отримання RAG
+Map which production models answer search-query and Q/A pairs so the RAG proxy can mix search with chat.==Укажіть, які робочі моделі відповідають за search-query і пари Q/A, щоб RAG-проксі міг поєднувати пошук із чатом.
+Wire RAG prompts==Налаштувати підказки RAG
+Test in Chat==Перевірити в чаті
+Set the search-query and qapairs columns to connect retrieval to your chat flow.==Заповніть стовпці search-query і qapairs, щоб підключити отримання до потоку чату.
+Enable/Disable Tools==Увімкнути/вимкнути інструменти
+Superpowers for the YaCy Chat==Суперздібності для чату YaCy
+Open tools configuration==Відкрити налаштування інструментів
+Tune descriptions and set maxCallsPerTurn per tool (0 disables a tool).==Налаштуйте описи та встановіть maxCallsPerTurn для кожного інструменту (0 вимикає інструмент).
+Monitor log reports==Моніторити звіти журналу
+Assign a log-report model, then review generated hourly and daily self-enhancement reports.==Призначте модель для log-report, а потім переглядайте згенеровані погодинні та щоденні звіти самоаналізу.
+Open log reports==Відкрити звіти журналу
+Assign log-report model==Призначити модель log-report
+Report generation stays inactive until a production model is assigned to the log-report role.==Генерація звітів залишається неактивною, доки робочу модель не призначено на роль log-report.
+Define a shield==Налаштувати захист
+Add guardrails: access rates, grant or deny non-localhost access. Activate the front page link for chat to complete this quest.==Додайте обмеження: частоту доступу, дозвіл або заборону доступу не з localhost. Активуйте посилання на чат на головній сторінці, щоб завершити це завдання.
+Open shield settings==Відкрити налаштування захисту
+Store your shield directives (system prompts, stop words) as properties, then exercise them in chat.==Зберігайте директиви захисту (системні підказки, стоп-слова) як властивості, а потім перевіряйте їх у чаті.
+#-----------------------------
+
+#File: AIShield_p.html
+#---------------------------
+Wire RAG Retrieval Shield==Налаштувати захист отримання RAG
+Control who can access the chat interface and rate-limit non-localhost clients to protect your peer and LLM backends from overload.==Керуйте доступом до інтерфейсу чату та обмежуйте частоту запитів від клієнтів не з localhost, щоб захистити ваш вузол і LLM-бекенди від перевантаження.
+Overall Load Protection==Загальний захист від навантаження
+Recent access volume across all clients (localhost included). You can enforce global limits here to protect the host.==Обсяг останнього доступу для всіх клієнтів (включаючи локальний хост). Тут можна застосувати глобальні обмеження, щоб захистити хост.
+Requests / minute==Запитів / хв
+Requests / hour==Запитів / год
+Requests / day==Запитів / день
+Limit for all requests, including localhost==Обмеження для всіх запитів, включно з localhost
+Per minute:==За хвилину:
+Per hour:==за годину:
+Per day:==За день:
+Guest Access Control & Rate Limits==Контроль гостьового доступу та обмеження швидкості
+By default only localhost may reach the chat UI. Enable non-localhost access and throttle requests to reduce abuse.==За замовчуванням лише локальний хост може отримати доступ до інтерфейсу користувача чату. Увімкніть нелокальний доступ і регулюйте запити, щоб зменшити зловживання.
+Allow non-localhost clients to access the chat interface==Дозволити клієнтам, які не є локальними, отримувати доступ до інтерфейсу чату
+Requests from non-localhost will be throttled using these caps:==Запити від нелокального хосту будуть обмежені за допомогою цих обмежень:
+Front Page Link==Посилання на першу сторінку
+Expose a shortcut to the chat UI on the search front page if you want users to discover it.==Розмістіть ярлик інтерфейсу користувача чату на головній сторінці пошуку, якщо ви хочете, щоб користувачі могли його знайти.
+Show a link to yacychat.html on the search front page==Показати посилання на yacychat.html на головній сторінці пошуку
+Save Shield Settings==Зберегти налаштування захисту
+#-----------------------------
+
+#File: CrawlCheck_p.html
+#---------------------------
+"Check given urls"=="Перевірте надані URL-адреси"
+Crawl Check==Перевірка сканування
+This pages gives you an analysis about the possible success for a web crawl on given addresses.==На цих сторінках можна проаналізувати можливий успіх веб-сканування за заданими адресами.
+List of possible crawl start URLs==Список можливих URL-адрес початку сканування
+Analysis==Аналіз
+URL==URL
+Access==Доступ
+Robots==Роботи
+Crawl-Delay==Повзання-Затримка
+Sitemap==Карта сайту
+#-----------------------------
+
+#File: IndexExportImportSolr_p.html
+#---------------------------
+"Create Dump"=="Створити дамп"
+"Restore Dump"=="Відновити дамп"
+Solr Index Export/Import==Solr Експорт індексу/Import
+Dump and Restore of Solr Index==Дамп і відновлення індексу Solr
+This feature is available only when a local embedded Solr is active.==Ця функція доступна лише тоді, коли активний локальний вбудований Solr.
+(This may take several minutes. Please be patient and wait until the page reloads.)==(Це може зайняти кілька хвилин. Зачекайте, поки сторінка перезавантажиться.)
+Dump File (full path)==Файл дампа (повний шлях)
+Could not create the Solr dump : no embedded Solr is available.==Не вдалося створити дамп Solr: немає вбудованого Solr.
+An error occurred while trying to create the Solr dump.==Під час спроби створити дамп Solr сталася помилка.
+Successfully restored Solr index from dump file!==Успішно відновлено індекс Solr з файлу дампа!
+Could not restore the Solr dump : no embedded Solr is available.==Не вдалося відновити дамп Solr: немає вбудованого Solr.
+An error occurred while trying to restore the Solr dump.==Сталася помилка під час спроби відновити дамп Solr.
+#-----------------------------
+
+#File: IndexExport_p.html
+#---------------------------
+"Export"=="Експорт"
+Index Export==Експорт індексу
+Loaded URL Export==Завантажено URL Експорт
+Export Path==Шлях експорту
+URL Filter==URL Фільтр
+query==запит
+maximum age (seconds)==максимальний вік (у секундах)
+maximum number of records per chunk==максимальна кількість записів на фрагмент
+if exceeded: several chunks are stored; -1 = unlimited (makes only one chunk)==якщо перевищено: зберігається кілька шматків; -1 = необмежений (робить лише один шматок)
+Export Size==Розмір експорту
+full size, all fields:==повний розмір, усі поля:
+minified; only fields sku, date, title, description, text_t==мінімізоване; лише поля sku, date, title, description, text_t
+Export Format==Формат експорту
+Full URL List:==Повний список URL:
+Plain Text List (URLs only)==Список звичайного тексту (лише URL-адреси)
+HTML (URLs with title)==HTML (URL із заголовком)
+Only Domain:==Тільки домен:
+Plain Text List (domains only)==Список звичайного тексту (лише для доменів)
+HTML (domains as URLs, no title)==HTML (домени як URL-адреси, без назви)
+Only Text:==Тільки текст:
+Fulltext of Search Index Text==Повний текст тексту індексу пошуку
+Import this file by moving it to DATA/PACKS/load==Імпортуйте цей файл, перемістивши його в DATA/PACKS/load
+#-----------------------------
+
+#File: IndexPackDownloader_p.html
+#---------------------------
+YaCy Pack Downloader==YaCy Pack Downloader
+Available Packs==Доступні пакети
+Source==Джерело
+Repo ID==Ідентифікатор репо
+File==Файл
+Process==процес
+#-----------------------------
+
+#File: IndexPackGenerator_p.html
+#---------------------------
+"info"=="інформація"
+"Generate Data Pack"=="Створити пакет даних"
+YaCy Pack Generator==YaCy Генератор пакетів
+Index Pack Generator==Генератор пакетів індексів
+Set a Category (this goes into the filename)==Встановіть категорію (вона входить до імені файлу)
+mix - a mix of document types, for content from wide web crawls==mix - комбінація типів документів для вмісту з широкого веб-сканування
+core - technical documentation, operating systems, computer hardware, open source and free software, manuals, protocol standards==ядро - технічна документація, операційні системи, комп'ютерне обладнання, відкрите та безкоштовне програмне забезпечення, посібники, стандарти протоколів
+scroll - non-technical documents: knowledge, encyclopedia, linguistic corpora, dictionaries, translation memories, texts, non-fiction books, historical books==сувій - нетехнічні документи: знання, енциклопедії, лінгвістичні корпуси, словники, пам'ять перекладів, тексти, науково-популярні книги, історичні книги
+regula - non-technical standards: industry standards, laws, rules, compliance==regula - нетехнічні стандарти: галузеві стандарти, закони, правила, відповідність
+gem - research, papers, university publications, science==перлина - дослідження, статті, університетські публікації, наука
+fiction - fictional documents: movies, stories, series, books (fiction, science-fiction)==fiction - вигадані документи: фільми, оповідання, серіали, книги (художня, науково-фантастична)
+map - geological data, geolocation-data, earth/world information==карта - геологічні дані, геолокаційні дані, земля/world інформація
+echo – micro-content (tweets, toots, short headlines, SMS corpora), podcasts, radio archives, audio lectures, spoken-word datasets, logs, incidents, telemetry==echo – мікроконтент (твіти, звуки, короткі заголовки, корпуси SMS), подкасти, радіоархіви, аудіолекції, набори даних розмовного слова, журнали, інциденти, телеметрія
+spirit – related to non-textual data (possibly only metadata): art, music, game assets, creative-commons media (non-text culture loot)==дух – пов’язаний з нетекстовими даними (можливо, лише метаданими): мистецтво, музика, ігрові ресурси, засоби масової інформації Creative-Commons (нетекстовий культурний лут)
+vault - sensitive data: secrets, leaks, non-public documents, security advisories==сховище – конфіденційні дані: секрети, витоки, непублічні документи, поради щодо безпеки
+Index Collection==Колекція покажчиків
+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.==назва колекції використовується як частина імені файлу для опису вмісту. Виняток: якщо колекція є «користувачем», то ви можете назвати вміст за допомогою слага.
+Slug - describe the content (only if collection is "user")==Slug - опис вмісту (тільки якщо колекція має значення «користувач»)
+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"==Це стане частиною назви файлу, пробіли будуть замінені на «-»; не повинно бути порожнім; має закінчуватися описом мови, напр. "-en"
+URL Filter==URL Фільтр
+Search Query -==Пошуковий запит -
+Export Format==Формат експорту
+This JSON is an elasticsearch index dump format and can be bulk-imported to elasticsearch. Here is an example for opensearch, using docker:==Цей JSON є форматом дампа індексу elasticsearch, і його можна масово імпортувати в elasticsearch. Ось приклад opensearch із використанням докера:
+Start docker container of opensearch:==Запустіть докер-контейнер opensearch:
+Unblock index creation:==Розблокувати створення індексу:
+Create the search index:==Створіть пошуковий індекс:
+Bulk-upload the index file:==Масове завантаження файлу індексу:
+Make a search, get 10 results, search in fields text_t, title, description with boosts:==Зробіть пошук, отримайте 10 результатів, шукайте в полях text_t, title, description з підвищеннями:
+JSON (Rich and full-text Elasticsearch data, one document per line in one flat JSON file)==JSON (Розширені та повнотекстові дані Elasticsearch, один документ на рядок в одному плоскому файлі JSON)
+XML (Rich and full-text Solr data, one document per line in one large xml file,==XML (Розширені та повнотекстові Solr дані, один документ на рядок в одному великому файлі xml,
+can be processed with shell tools, can be imported with DATA/PACKS/load/)==можна обробляти за допомогою інструментів оболонки, можна імпортувати за допомогою DATA/PACKS/load/)
+XML (RSS)==XML (RSS)
+Import this file by moving it to DATA/PACKS/load==Імпортуйте цей файл, перемістивши його в DATA/PACKS/load
+Pack List==Список упаковок
+Pack==упаковка
+Process==процес
+Size (KB)==Розмір (Кб)
+#-----------------------------
+
+#File: IndexPackManager_p.html
+#---------------------------
+YaCy Pack Manager==YaCy Pack Manager
+Pack Folders==Пакуйте папки
+Packs: Hold List==Пакети: Список утримання
+Size (KB)==Розмір (Кб)
+Process==процес
+Packs: Load List==Пакети: список завантажень
+Packs: Loaded List==Пакети: завантажений список
+#-----------------------------
+
+#File: LLMSelection_p.html
+#---------------------------
+"info"=="інформація"
+LLM Selection==LLM Вибір
+Here you can pick models from an LLM model service to select them as production model.==Тут ви можете вибрати моделі зі служби моделювання LLM, щоб вибрати їх як модель виробництва.
+In the "Production Models Matrix" you can then assign each selected model a function inside YaCy==У «Матриці виробничих моделей» ви можете призначити кожній вибраній моделі функцію всередині YaCy
+Service Selection==Вибір послуги
+service==обслуговування
+Ollama==Ollama
+LMStudio==LMStudio
+OpenAI==OpenAI
+Open Router==Відкрийте маршрутизатор
+This makes a preset to the Hoststub value==Це робить попереднім налаштуванням значення Hoststub
+hoststub==hoststub
+you can probably leave this to the default value==можливо, ви можете залишити це значення за замовчуванням
+api_key==api_key
+(not required for Ollama or LMStudio)==(не потрібно для Ollama або LMStudio)
+Services==Послуги
+num_ctx is the context window (in tokens) of the inference service — a per-service==num_ctx — контекстне вікно (у маркерах) служби висновків — для кожної служби
+value, shared by all models on that endpoint. It is the total budget for prompt plus==значення, спільне для всіх моделей на цій кінцевій точці. Це загальний бюджет підказки plus
+generated output; YaCy uses it to size prompts so they leave room to generate. The row for the==згенерований вихід; YaCy використовує його для розміру підказок, щоб вони залишали місце для створення. Ряд для
+service selected above appears here automatically with its stored (or default) window.==Вибрана вище служба автоматично з’являється тут із збереженим (або типовим) вікном.
+This value is advisory: set it to match the window your backend actually serves==Це значення є порадою: установіть його так, щоб воно відповідало вікну, яке фактично обслуговує ваш сервер
+Context Length setting). YaCy does not enforce it on the backend.==налаштування довжини контексту). YaCy не застосовує його на серверній частині.
+num_ctx==num_ctx
+Model Downloads==Завантаження моделей
+Production Models Matrix==Матриця виробничих моделей
+model==модель
+max_tokens==max_tokens
+search-answers==пошук-відповіді
+This model creates answers for search requests==Ця модель створює відповіді на пошукові запити
+chat==чат
+This model is used in the chat interface and as default for the RAG proxy==Ця модель використовується в інтерфейсі чату та за замовчуванням для проксі-сервера RAG
+translation==переклад
+This model can be used to make translations of the web UI==Цю модель можна використовувати для перекладу веб-інтерфейсу користувача
+classification==класифікація
+This model is used to classify prompts to find out what they demand==Ця модель використовується для класифікації підказок, щоб дізнатися, що вони вимагають
+search-query==search-query
+This model produces search queries to YaCy search from prompts in RAG or chat==Ця модель створює пошукові запити для YaCy пошуку з підказок у RAG або чаті
+qa-pairs==qa-пари
+This model can be used to produce query-answer pairs which enhance search from chat prompts==Цю модель можна використовувати для створення пар запитів і відповідей, які покращують пошук із підказок чату
+tldr-shortener==tldr-скоротник
+This model is used to make summaries from web content==Ця модель використовується для створення підсумків із веб-вмісту
+log-report==журнал-звіт
+This model evaluates YaCy runtime logs and creates self-enhancement reports==Ця модель оцінює YaCy журнали виконання та створює звіти про самопокращення
+thinking==мислення
+we detect thinking only to be able to suppress thinking. thinking is not used in YaCy==ми виявляємо мислення лише для того, щоб мати можливість придушити мислення. мислення не використовується в YaCy
+tooling==оснащення
+tooling is required for agentic abilities.==інструменти необхідні для агентських здібностей.
+vision==бачення
+this enables image recognition in the chat==це дозволяє розпізнавати зображення в чаті
+format==формат
+this is required for classification==це потрібно для класифікації
+Actions==Дії
+#-----------------------------
+
+#File: LogReports_p.html
+#---------------------------
+"delete this report"=="видалити цей звіт"
+Log Reports==Журнал звітів
+run report now==запустити звіт зараз
+Generating report from the current-hour log lines — the LLM call can take a while …==Створення звіту з рядків журналу поточної години — виклик LLM може зайняти деякий час …
+seconds elapsed==минуло секунд
+No log lines were found for the current hour.==За поточну годину не знайдено рядків журналу.
+No production model is configured for the log-report role. Assign one in the==Жодна робоча модель не налаштована для ролі звіту журналу. Призначити один в
+No production model is configured for the log-report role. Log report generation stays inactive until a model is assigned in the==Жодна робоча модель не налаштована для ролі звіту журналу. Формування звіту журналу залишається неактивним, доки модель не буде призначено в
+Feeds:==Канали:
+JSON==JSON
+RSS==RSS
+The report directory does not exist yet. Reports will appear here after the scheduler has generated the first completed hourly report.==Каталог звітів ще не існує. Звіти з’являться тут після того, як планувальник згенерує перший готовий погодинний звіт.
+×==×
+Report generation in progress …==Виконується створення звіту …
+the report below is completed live while the model is writing==наведений нижче звіт заповнюється в прямому ефірі, поки модель пише
+No generated log reports were found.==Згенерованих звітів журналу не знайдено.
+#-----------------------------
+
+#File: RAGConfig_p.html
+#---------------------------
+Wire RAG Retrieval==Налаштувати отримання RAG
+Tune how YaCy constructs prompts and search queries for Retrieval Augmented Generation.==Налаштуйте, як YaCy створює підказки та пошукові запити для Retrieval Augmented Generation.
+System Prompt==Системна підказка
+This is sent as the system message for chats. Keep it concise and friendly.==Це надсилається як системне повідомлення для чатів. Будьте стислими та дружніми.
+User Retrieval Prefix==Префікс отримання користувача
+Prepended before attached search snippets in RAG mode to tell the LLM how to use them.==Додається перед вкладеними фрагментами пошуку в режимі RAG, щоб повідомити LLM, як ними користуватися.
+Query Generator Prefix==Префікс генератора запитів
+Prompt given to the model that generates search queries from user requests.==Підказка моделі, яка генерує пошукові запити із запитів користувачів.
+Search Document Max Length==Максимальна довжина документа пошуку
+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.==Максимальна довжина документа віртуального пошуку, який використовується як вкладення RAG та як результат інструмента пошуку. Вміст, що перевищує це обмеження, відсікається. Типове значення: 30000.
+Save RAG Settings==Зберегти налаштування RAG
+#-----------------------------
+
+#File: RankingRWI_p.html
+#---------------------------
+"info"=="інформація"
+"Set as Default Ranking"=="Встановити як рейтинг за замовчуванням"
+"Re-Set to Built-In Ranking"=="Знову встановити вбудований рейтинг"
+RWI Ranking Configuration==RWI Конфігурація рейтингу
+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 attribute 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==Пострейтинг
+#-----------------------------
+
+#File: RankingSolr_p.html
+#---------------------------
+"Set Boost Function"=="Встановити функцію Boost"
+"Re-Set to default"=="Знову встановити за замовчуванням"
+"Set Boost Query"=="Встановити Boost Query"
+"Set Filter Query"=="Встановити запит фільтра"
+"Set Field Boosts"=="Встановити посилення поля"
+Solr Ranking Configuration==Solr Конфігурація рейтингу
+These are ranking attributes for Solr. This ranking applies for internal and remote (P2P or shard) Solr access.==Це атрибути рейтингу для Solr. Цей рейтинг застосовується до внутрішнього та віддаленого (P2P або шард) Solr доступу.
+Select a profile:==Виберіть профіль:
+Boost Function==Функція Boost
+A Boost Function can combine numeric values from the result document to produce a number which is multiplied with the score value from the query result.==Функція Boost може комбінувати числові значення з документа результатів, щоб отримати число, яке множиться на значення балу з результату запиту.
+Example: to order by date, use "recip(ms(NOW,last_modified),3.16e-11,1,1)", to order by crawldepth, use "div(100,add(crawldepth_i,1))".==Приклад: щоб упорядкувати за датою, використовуйте «recip(ms(NOW,last_modified),3.16e-11,1,1)», щоб упорядкувати за глибиною сканування, використовуйте «div(100,add(crawldepth_i,1))».
+Boost Query==Підвищення запиту
+The Boost Query is attached to every query. Use this to statically boost specific content in the index.==Запит Boost додається до кожного запиту. Використовуйте це для статичного підвищення певного вмісту в індексі.
+Example: "fuzzy_signature_unique_b:true^100000.0f" means that documents, identified as 'double' are ranked very bad and appended to the end of all results (because the unique are ranked high).==Приклад: «fuzzy_signature_unique_b:true^100000.0f» означає, що документи, ідентифіковані як «подвійні», оцінюються дуже погано та додаються в кінці всіх результатів (оскільки унікальні мають високий рейтинг).
+Filter Query==Фільтр запиту
+The Filter Query is attached to every query. Use this to statically add a selection criteria to reduce the set of results.==Запит на фільтр додається до кожного запиту. Використовуйте це, щоб статично додати критерії відбору для зменшення набору результатів.
+Example: "http_unique_b:true AND www_unique_b:true" will filter out all results where urls appear also with/without http(s) and/or with/without 'www.' prefix.==Приклад: "http_unique_b:true AND www_unique_b:true" відфільтрує всі результати, де URL-адреси також відображаються з /without http(s) і/or з /without 'www.' префікс.
+Solr Boosts==Solr Посилення
+field not in local index (boost has no effect)==поле не в локальному індексі (підвищення не має ефекту)
+#-----------------------------
+
+#File: RegexTest.html
+#---------------------------
+Regex Test==Тест регулярного виразу
+Test String==Тестовий рядок
+Regular Expression==Регулярний вираз
+Result==Результат
+no match==немає збігу
+match==матч
+#-----------------------------
+
+#File: SearchAccessRate_p.html
+#---------------------------
+"Submit"=="Відправити"
+"Set defaults"=="Встановити значення за замовчуванням"
+"Reset to defaults settings"=="Відновити налаштування за замовчуванням"
+limitations==обмеження
+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==Тут можна налаштувати обмеження на швидкість доступу до цього інтерфейсу однорангового пошуку для неавтентифікованих користувачів і користувачів без прав розширеного пошуку
+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.==Коли користувач з обмеженими правами (неавтентифікований або без розширеного права пошуку) перевищує обмеження, пошук блокується.
+Max searches in 3s==Макс. пошук за 3 с
+Max searches in 1mn==Макс. пошук за 1 хв
+Max searches in 10mn==Макс шукає за 10 хв
+Peer-to-peer search==Одноранговий пошук
+Access rate limitations to the peer-to-peer search mode.==Обмеження швидкості доступу до режиму однорангового пошуку.
+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.==Коли користувач з обмеженими правами (неавтентифікований або без прав розширеного пошуку) перевищує ліміт, область пошуку повертається лише до цього локального однорангового індексу.
+Max searches in 10mn==Макс шукає за 10 хв
+Peer-to-peer search with JavaScript results resorting==Рівноправний пошук із JavaScript результатами пошуку
+Access rate limitations to the peer-to-peer search mode with browser-side JavaScript results resorting enabled==Обмеження швидкості доступу до режиму однорангового пошуку з увімкненим переглядом результатів JavaScript на стороні браузера
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, results resorting becomes only applicable on demand, server-side.==Коли користувач з обмеженими правами (неавтентифікований або без розширеного права пошуку) перевищує обмеження, сортування результатів стає застосовним лише на вимогу на стороні сервера.
+Remote snippet load==Віддалене завантаження фрагмента
+Limitations on snippet loading from remote websites.==Обмеження на завантаження фрагментів із віддалених веб-сайтів.
+When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the snippets fetch strategy falls back to 'CACHEONLY'==Коли користувач з обмеженими правами (неавтентифікований або без прав розширеного пошуку) перевищує ліміт, стратегія отримання фрагментів повертається до «CACHEONLY»
+Max searches in 3s==Макс. пошук за 3 с
+Changes will take effect immediately.==Зміни набудуть чинності негайно.
+#-----------------------------
+
+#File: Settings_Debug.inc
+#---------------------------
+"Extensible Markup Language"=="Розширювана мова розмітки"
+"Distributed Hash Table"=="Розподілена хеш-таблиця"
+"Reverse Word Index"=="Зворотний покажчик слів"
+"Submit"=="Відправити"
+Debug/Analysis Settings==Debug/Analysis Налаштування
+Be careful with these advanced settings, they can deeply affect the search process! You probably don't need to modify them for normal use.==Будьте обережні з цими розширеними налаштуваннями, вони можуть сильно вплинути на процес пошуку! Ймовірно, вам не потрібно змінювати їх для нормального використання.
+Solr communication==Solr спілкування
+Enable remote Solr binary responses==Увімкнути віддалені двійкові відповіді Solr
+When checked (default), responses from remote Solr index instances are transferred using an efficient binary data format.==Якщо позначено (за замовчуванням), відповіді від віддалених екземплярів індексу Solr передаються з використанням ефективного двійкового формату даних.
+When unchecked, responses are transferred as XML,==Якщо не позначено, відповіді передаються як XML,
+which can be captured and parsed by any external XML aware tool for debug/analysis.==які можуть бути захоплені та проаналізовані будь-яким зовнішнім XML інструментом для налагодження/analysis.
+Search data sources==Пошук джерел даних
+By default all data sources are enabled to obtain search results,==За замовчуванням усі джерела даних увімкнено для отримання результатів пошуку,
+but you can here disable one or more ones to check the behavior of the process.==але тут ви можете вимкнути один або декілька, щоб перевірити поведінку процесу.
+Local DHT/RWI==Місцевий DHT/RWI
+Local Solr index==Локальний індекс Solr
+Remote DHT/RWI==Віддалений DHT/RWI
+Remote Solr indexes==Віддалені індекси Solr
+Search testing tweaks==Налаштування тестування пошуку
+Override DHT peers selection by local only==Перевизначити вибір однорангових вузлів DHT лише локальним
+When checked, the remote DHT peers selection is overridden and only the local peer is selected to provide remote DHT search results.==Якщо позначено, вибір віддалених однорангових вузлів DHT перевизначається, і для надання результатів пошуку віддаленого DHT вибирається лише локальний одноранговий вузол.
+Override Solr peers selection by local only==Перевизначити вибір однорангових вузлів Solr лише локальним
+When checked, the remote Solr peers selection is overridden and only this peer is selected to provide remote Solr search results.==Якщо позначено, вибір віддалених Solr однорангових вузлів перевизначається, і лише цей одноранговий вузол вибирається для надання результатів віддаленого Solr пошуку.
+Ranking information==Інформація про рейтинг
+Show search results scores==Показати результати пошуку
+When checked, the raw ranking score value is displayed for each text search result in the HTML results page.==Якщо позначено, необроблене значення оцінки рейтингу відображається для кожного результату текстового пошуку на сторінці результатів HTML.
+Text snippets statistics==Статистика текстових фрагментів
+Enable text snippets statistics==Увімкнути статистику текстових фрагментів
+Changes will take effect immediately.==Зміни набудуть чинності негайно.
+#-----------------------------
+
+#File: Settings_HttpClient.inc
+#---------------------------
+"Transport Layer Security"=="Безпека транспортного рівня"
+"Server Name Indication"=="Індикація імені сервера"
+"Submit"=="Відправити"
+HTTP client settings==HTTP налаштування клієнта
+You can configure here some advanced settings of the clients used by YaCy to handle outgoing HTTP connections.==Тут можна налаштувати деякі додаткові параметри клієнтів, які використовує YaCy для обробки вихідних з’єднань HTTP.
+About Server Name Indication (SNI):==Про індикацію імені сервера (SNI):
+this extension to the TLS 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==це розширення протоколу TLS має бути ввімкнено для завантаження деяких URL-адрес https (для веб-сайтів, розгорнутих із різними сертифікатами та іменами хостів на одній спільній IP адресі), інакше завантаження завершується помилками, такими як
+Received fatal alert: handshake_failure==Отримано фатальне сповіщення: handshake_failure
+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==Але може знадобитися вимкнути його, щоб завантажити деякі URL-адреси https, які обслуговуються старими та неправильно налаштованими веб-серверами, інакше завантаження не вдасться, за винятком
+javax.net.ssl.SSLProtocolException: "handshake alert: unrecognized_name"==javax.net.ssl.SSLProtocolException: "сповіщення про рукостискання: нерозпізнане_ім'я"
+Controlling SNI extension activation can also be done with the JVM option==Контролювати активацію розширення SNI також можна за допомогою опції JVM
+jsse.enableSNIExtension==jsse.enableSNIExtension
+, 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).==, але в цьому випадку потрібне перезавантаження сервера, коли ви хочете змінити налаштування, і його не можна налаштувати для http-клієнта (загального або для віддаленого Solr).
+General HTTP client==Загальний HTTP клієнт
+Configuration settings for the main HTTP client, used notably to crawl websites and communicate with other YaCy peers.==Параметри конфігурації для основного клієнта HTTP, який використовується, зокрема, для сканування веб-сайтів і спілкування з іншими однолітками YaCy.
+Enable SNI extension to TLS==Увімкнути розширення SNI для TLS
+Remote Solr HTTP client==Віддалений клієнт Solr HTTP
+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).==Параметри конфігурації для конкретного клієнта HTTP, призначеного для зв’язку з віддаленими серверами Solr (розташованими на інших вузлах YaCy або зрештою належать цьому, якщо він налаштований на використання віддаленого індексу Solr).
+Changes will take effect immediately.==Зміни набудуть чинності негайно.
+#-----------------------------
+
+#File: Settings_Referrer.inc
+#---------------------------
+"'Referer' section from the standard IETF specification"=="Розділ «Referer» зі стандартної специфікації IETF"
+"Link types section at W3C HTML specification"=="Розділ типів посилань у специфікації W3C HTML"
+"Submit"=="Відправити"
+Referrer Policy Settings==Параметри політики реферера
+When loading pages and navigating through links, a web browser sends some information about the origin of the request,==Під час завантаження сторінок і переходу за посиланнями веб-браузер надсилає деяку інформацію про походження запиту,
+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.==Відвідані веб-сайти можуть обробляти цю інформацію як завгодно, тому це може стати проблемою конфіденційності, наприклад, якщо ви переходите зі сторінки, яка містить пошукові терміни в URL.
+This page offers some configuration settings to instruct your browser how it should fill this referrer information.==Ця сторінка пропонує деякі параметри конфігурації, які вказують вашому браузеру, як він повинен заповнювати цю інформацію про реферера.
+Beware that every browser behaves differently: some settings may be unsupported by your particular browser and therefore ignored.==Майте на увазі, що кожен браузер поводиться по-різному: деякі налаштування можуть не підтримуватися вашим конкретним браузером і тому ігноруватися.
+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.==Якщо ви дійсно стурбовані конфіденційністю, будь ласка, перевірте, що насправді надсилає ваш браузер, використовуючи мережеву консоль вбудованих інструментів розробника або аналізатор мережевого трафіку за вашим вибором.
+Global policy==Глобальна політика
+This referrer policy applies for every page on this peer. It is set by the "meta" HTML tag.==Ця політика реферерів застосовується до кожної сторінки на цьому вузлі. Він встановлюється тегом "meta" HTML.
+Values are sorted by decreasing privacy level.==Значення відсортовані за зменшенням рівня конфіденційності.
+no-referrer==без посилання
+Highest privacy setting: referrer information should never be sent, even when navigating on this peer internal links.==Найвищий рівень конфіденційності: інформацію про реферера ніколи не слід надсилати, навіть під час навігації за внутрішніми посиланнями цього однорангового вузла.
+Be careful with this: some websites might reject requests with no referrer.==Будьте обережні з цим: деякі веб-сайти можуть відхиляти запити без реферера.
+same-origin==того самого походження
+Peer internal links: referrer information should be stripped from any private data and contain only this peer host name.==Внутрішні посилання однорангового вузла: інформацію про реферера слід видалити з будь-яких приватних даних і містити лише це ім’я однорангового вузла.
+External links: referrer information should never be sent.==Зовнішні посилання: ніколи не слід надсилати інформацію про реферера.
+strict-origin==суворого походження
+Peer internal and external links: referrer information should be stripped from any private data and contain only this peer host name.==Внутрішні та зовнішні посилання однорангового вузла: інформацію про реферера слід видалити з будь-яких приватних даних і містити лише це ім’я вузла однорангового вузла.
+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.==Обмеження: коли посилання переходить із захищеного TLS-з’єднання (https) на цьому вузлі до незахищеної цілі (http), інформація про реферера взагалі не надсилається.
+origin==походження
+strict-origin-when-cross-origin==strict-origin-when-cross-origin
+Peer internal links: referrer information should contain full URLs.==Однорангові внутрішні посилання: інформація про реферера має містити повні URL-адреси.
+External links: referrer information should be stripped from any private data and contain only this peer host name.==Зовнішні посилання: інформацію про реферера слід видалити з будь-яких приватних даних і містити лише це ім’я однорангового вузла.
+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.==Обмеження: коли зовнішнє посилання переходить із захищеного з’єднання TLS (https) на цьому вузлі до незахищеної цілі (http), інформація про реферера не повинна надсилатися.
+origin-when-cross-origin==походження-коли-перехресне походження
+no-referrer-when-downgrade==no-referrer-when-downgrade
+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).==Інформація про реферера має містити повні URL-адреси, за винятком випадків, коли посилання переходить із захищеного з’єднання TLS (https) на цьому вузлі до незахищеної цілі (http).
+empty value==пусте значення
+Default browser behavior: it should correspond to "no-referrer-when-downgrade".==Поведінка браузера за замовчуванням: має відповідати "no-referrer-when-downgrade".
+unsafe-url==unsafe-url
+Unsafe setting: referrer information should always contain full URLs.==Небезпечне налаштування: інформація про реферера завжди має містити повні URL-адреси.
+Custom setting: probably manually edited, be sure this value is the desired one.==Спеціальне налаштування: ймовірно, редаговано вручну, переконайтеся, що це значення є потрібним.
+Search results links==Посилання на результати пошуку
+Add the "noreferrer" link type to search results links==Додайте тип посилання "noreferrer" до посилань результатів пошуку
+When checked, this overrides the global referrer policy and adds the standard "noreferrer"==Якщо позначено, це замінює глобальну політику реферера та додає стандартний "noreferrer"
+thus instructing the browser that it should not send any referrer information at all when visiting them.==таким чином інструктуючи браузер, що він не повинен надсилати жодної інформації про реферера під час їх відвідування.
+It is a standard HTML5 attribute value,==Це стандартне значення атрибута HTML5,
+supported by many more browsers than the meta tag: if you want a higher level of privacy but use an old or incompatible browser,==підтримується набагато більшою кількістю браузерів, ніж метатег: якщо ви бажаєте вищого рівня конфіденційності, але використовуєте старий або несумісний браузер,
+this can be a valuable option.==це може бути цінним варіантом.
+Changes will take effect immediately.==Зміни набудуть чинності негайно.
+#-----------------------------
+
+#File: Settings_UrlProxyAccess.inc
+#---------------------------
+"Submit"=="Відправити"
+URL Proxy Settings==Налаштування URL-проксі
+With this settings you can activate or deactivate URL proxy.==За допомогою цих налаштувань можна увімкнути або вимкнути URL-проксі.
+Service call: http://localhost:8090/proxy.html?url=parameter, where parameter is the url of an external web page.==Виклик служби: http://localhost:8090/proxy.html?url=parameter, де параметр — URL-адреса зовнішньої веб-сторінки.
+URL proxy:==URL-проксі:
+Enabled==Увімкнено
+Globally enables or disables URL proxy via http://yourpeer:yourport/proxy.html?url=http://externalurl/==Глобально вмикає або вимикає URL-проксі через http://yourpeer:yourport/proxy.html?url=http://externalurl/
+Show search results via URL proxy:==Показати результати пошуку через URL-проксі:
+Enables or disables URL proxy for all search results. If enabled, all search results will be tunneled through URL proxy.==Вмикає або вимикає URL-проксі для всіх результатів пошуку. Якщо ввімкнено, усі результати пошуку передаватимуться через URL-проксі.
+Alternatively you may add this javascript to your browser favorites/short-cuts, which will reload the current browser address==Крім того, ви можете додати цей JavaScript до вибраного браузера/short-cuts,, що перезавантажить поточну адресу браузера
+via the YaCy proxy servlet.==через проксі-сервлет YaCy.
+or right-click this link and add to favorites:==або клацніть правою кнопкою миші це посилання та додайте до вибраного:
+Restrict URL proxy use:==Обмежити використання проксі URL:
+Define client filter. Default: 127.0.0.1,0:0:0:0:0:0:0:1.==Визначте фільтр клієнта. Типове значення: 127.0.0.1,0:0:0:0:0:0:0:1.
+URL substitution:==URL заміна:
+Define URL substitution rules which allow navigating in proxy environment. Possible values: all, domainlist. Default: domainlist.==Визначте правила заміни URL, які дозволяють навігацію в середовищі проксі. Можливі значення: all, domainlist. За замовчуванням: domainlist.
+#-----------------------------
+
+#File: ToolsConfig_p.html
+#---------------------------
+Tools==Інструменти
+Add superpowers to the YaCy Chat. Tools may be disabled by setting maxCallsPerTurn to 0.==Додайте надздібності до чату YaCy. Інструменти можна вимкнути, встановивши для maxCallsPerTurn значення 0.
+Tool settings were saved.==Налаштування інструменту збережено.
+Basic Tools==Основні інструменти
+maxCallsPerTurn==maxCallsPerTurn
+disable==відключити
+Visualization Tools==Інструменти візуалізації
+Data Retrieval Tools==Інструменти пошуку даних
+Save Tools Configuration==Зберегти конфігурацію інструментів
+#-----------------------------
+
+#File: Trails.html
+#---------------------------
+CyTag Trails==Стежки CyTag
+#-----------------------------
+
+#File: Translator_p.html
+#---------------------------
+"Save translation"=="Зберегти переклад"
+Translation Editor==Редактор перекладу
+Translate untranslated text of the user interface (current language). The modified translation file is stored in DATA/LOCALE directory.==Перекласти неперекладений текст інтерфейсу користувача (поточна мова). Змінений файл перекладу зберігається в каталозі DATA/LOCALE.
+UI Translation==Переклад інтерфейсу користувача
+Source File==Вихідний файл
+view it==переглянути його
+filter untranslated==фільтр неперекладений
+Source Text==Вихідний текст
+#-----------------------------
+
+#File: VFS.html
+#---------------------------
+"File system browser"=="Браузер файлової системи"
+"Root contents"=="Вміст кореня"
+Virtual File System==Віртуальна файлова система
+User storage in the browser cache with file-system-like navigation.==Зберігання даних користувача в кеші браузера з навігацією, подібною до файлової системи.
+New Folder==Нова папка
+Upload File==Завантажити файл
+No files yet. Upload a file or create a folder.==Файлів ще немає. Завантажте файл або створіть папку.
+Preview==Попередній перегляд
+Edit file==Редагувати файл
+Discard==Відкинути
+Save==зберегти
+#-----------------------------
+
+#File: YaCySearchPluginFF.html
+#---------------------------
+"YaCy-Logo"=="YaCy-Логотип"
+YaCy Firefox Search-Plugin Installation:==YaCy Встановлення плагіна пошуку Firefox:
+Simply click on the link shown below to integrate the YaCy Firefox Search-Plugin into your browser.==Просто клацніть посилання нижче, щоб інтегрувати YaCy Firefox Search-Plugin у свій браузер.
+In Mozilla Firefox, you can the Search-Plugin via the search box on the toolbar. In Mozilla (Seamonkey) you can access the Search-Plugin via the Sidebar or the Location Bar.==У Mozilla Firefox доступ до плагіна пошуку можна отримати за допомогою поля пошуку на панелі інструментів. У Mozilla (Seamonkey) ви можете отримати доступ до плагіна пошуку через бічну панель або панель адреси.
+Install the YaCy search plugin.==Установіть плагін пошуку YaCy.
+#-----------------------------
+
+#File: api/citation.html
+#---------------------------
+Similar documents from different hosts:==Схожі документи з різних хостів:
+List of==Список
+Cited==Цитується
+filter cited sentences==фільтр цитованих речень
+filter off==відфільтрувати
+List of other web pages with citations==Список інших веб-сторінок із цитуваннями
+#-----------------------------
+
+#File: api/push_p.html
+#---------------------------
+"Submit"=="Відправити"
+File Upload==Завантаження файлу
+This form can be used to upload a file and assign it to an url.==Цю форму можна використовувати для завантаження файлу та призначення йому URL-адреси.
+Example usage is the direct attachment of a content management system to YaCy to push newly changed files directly to the YaCy indexer.==Прикладом використання є пряме підключення системи керування вмістом до YaCy для надсилання щойно змінених файлів безпосередньо до індексатора YaCy.
+File Count==Кількість файлів
+synchronous==синхронний
+commit==здійснити
+Files to process:==Файли для обробки:
+File Number==Номер файлу
+Data==дані
+URL==URL
+Collection==Колекція
+Last-Modified==Остання зміна
+Content-Type==Тип вмісту
+The following attributes are only used for media type content==Наступні атрибути використовуються лише для медіа-типу вмісту
+Media-Title==Media-Title
+Media-Keywords ()==Медіа-Ключові слова ()
+Result for the recently submitted file(s). You can also submit the same form using the servlet push_p.json to get push confirmations in json format.==Результат для нещодавно надісланих файлів. Ви також можете надіслати ту саму форму за допомогою сервлета push_p.json, щоб отримати push-підтвердження у форматі json.
+count==розраховувати
+successall==успішний
+false==помилковий
+true==правда
+countsuccess==рахувати успіх
+countfail==countfail
+Item==Пункт
+Success==Успіх
+Message==повідомлення
+fail==провал
+ok==добре
+If you want to push again files, use this form to pre-define a number of upload forms:==Якщо ви хочете повторно надіслати файли, скористайтеся цією формою, щоб попередньо визначити кілька форм завантаження:
+#-----------------------------
+
+#File: env/grafics/donate.html
+#---------------------------
+"Donate!"=="Пожертвуйте!"
+Please support our work on YaCy!==Підтримайте нашу роботу на YaCy!
+Github Sponsors==Спонсори Github
+beneficial: 5 €==вигідно: 5 €
+generous: 25 €==щедрий: 25 €
+gracious: 50 €==милостивий: 50 €
+#-----------------------------
+
+#File: env/templates/simpleSearchHeader.template
+#---------------------------
+"Log in to use extended search features"=="Увійдіть, щоб скористатися функціями розширеного пошуку"
+"Search Interfaces"=="Пошукові інтерфейси"
+"Help"=="Довідка"
+"Administration"=="Адміністрація"
+Toggle navigation==Перемкнути навігацію
+Log in==авторизуватися
+Search Interfaces==Пошукові інтерфейси
+==
+Web Search==Пошук в Інтернеті
+File Search==Пошук файлів
+Compare Search==Пошук порівняння
+Chat==Чат
+URL Viewer==URL Переглядач
+Example Calls to the Search API:==Приклади викликів пошуку API:
+API YaCy JSON==API YaCy JSON
+API YaCy RSS/Opensearch==API YaCy RSS/Opensearch
+API Solr RSS/Opensearch==API Solr RSS/Opensearch
+API Solr Default Core / JSON==API Solr Стандартне ядро / JSON
+API Solr Default Core / XML==API Solr Стандартне ядро / XML
+API Solr Webgraph Core / XML==API Solr Webgraph Core / XML
+About This Page==Про цю сторінку
+YaCy Tutorials==YaCy Підручники
+JavaScript information==JavaScript інформація
+external Download YaCy==external Завантажити YaCy
+external Community (Web Forums)==external Спільнота (веб-форуми)
+external Git Repository==external Git Репозиторій
+external Bugtracker==external Bugtracker
+Administration »==Адміністрація »
+#-----------------------------
+
+#File: env/templates/simpleheader.template
+#---------------------------
+"Help"=="Довідка"
+Toggle navigation==Перемкнути навігацію
+Search Interfaces==Пошукові інтерфейси
+Web Search==Пошук в Інтернеті
+File Search==Пошук файлів
+Compare Search==Пошук порівняння
+Chat==Чат
+URL Viewer==URL Переглядач
+Example Calls to the Search API:==Приклади викликів пошуку API:
+API YaCy JSON==API YaCy JSON
+API YaCy RSS/Opensearch==API YaCy RSS/Opensearch
+API Solr RSS/Opensearch==API Solr RSS/Opensearch
+API Solr Default Core / JSON==API Solr Стандартне ядро / JSON
+API Solr Default Core / XML==API Solr Стандартне ядро / XML
+API Solr Webgraph Core / XML==API Solr Webgraph Core / XML
+About This Page==Про цю сторінку
+YaCy Tutorials==YaCy Підручники
+JavaScript information==JavaScript інформація
+external Download YaCy==external Завантажити YaCy
+external Community (Web Forums)==external Спільнота (веб-форуми)
+external Git Repository==external Git Репозиторій
+external Bugtracker==external Bugtracker
+Administration »==Адміністрація »
+#-----------------------------
+
+#File: env/templates/submenuAI.template
+#---------------------------
+AI Lab==AI Lab
+LLM Selection==LLM Вибір
+RAG Config==RAG конфіг
+Tools Config==Конфігурація інструментів
+Log Reports==Журнал звітів
+AI Shield==AI Shield
+Chat==Чат
+#-----------------------------
+
+#File: env/templates/submenuDesign.template
+#---------------------------
+Design==Дизайн
+Appearance==Зовнішній вигляд
+Language==Мова
+Search Page Layout==Макет сторінки пошуку
+#-----------------------------
+
+#File: env/templates/submenuIndexImport.template
+#---------------------------
+Content Export / Import==Експорт/імпорт вмісту
+YaCy Packs==YaCy пакетів
+Pack Generator==Генератор пакетів
+Pack Downloader==Завантажувач пакетів
+Pack Manager==Менеджер пакетів
+Export==Експорт
+Index Export==Експорт індексу
+Solr Dump Export/Import==Solr Дамп Експорт/Import
+Import==Імпорт
+RSS==RSS
+OAI-PMH==OAI-PMH
+WARC==WARC
+ZIM==ЗІМ
+JsonList==JsonList
+Database Reader==Читач бази даних
+phpBB3 Database==База даних phpBB3
+MediaWiki Dump==Дамп MediaWiki
+#-----------------------------
+
+#File: env/templates/submenuMaintenance.template
+#---------------------------
+RAM/Disk Usage & Updates==RAM/Disk Використання & Оновлення
+Performance==Продуктивність
+Web Cache==Веб-кеш
+Download System Update==Завантажте оновлення системи
+#-----------------------------
+
+#File: env/templates/submenuPortalConfiguration.template
+#---------------------------
+Portal Configuration==Конфігурація порталу
+Generic Search Portal==Портал загального пошуку
+Search Box Anywhere==Поле пошуку будь-де
+User Profile==Профіль користувача
+Local robots.txt==Локальний robots.txt
+#-----------------------------
+
+#File: env/templates/submenuRanking.template
+#---------------------------
+Ranking and Heuristics==Ранжування та евристика
+Solr Ranking Config==Solr Конфігурація рейтингу
+RWI Ranking Config==RWI Конфігурація рейтингу
+Heuristics==Евристика
+#-----------------------------
+
+#File: env/templates/submenuSemantic.template
+#---------------------------
+Content Semantic==Семантика змісту
+Automated Annotation==Автоматизоване анотування
+Auto-Annotation Vocabulary Editor==Редактор словника з автоматичними анотаціями
+Knowledge Loader==Завантажувач знань
+#-----------------------------
+
+#File: env/templates/submenuTargetAnalysis.template
+#---------------------------
+Target Analysis==Цільовий аналіз
+Mass Crawl Check==Масова скануюча перевірка
+Regex Test==Тест регулярного виразу
+#-----------------------------
+
+#File: goto_p.html
+#---------------------------
+forwarding==пересилання
+forward to remote peer==пересилати на віддалений одноранговий пристрій
+#-----------------------------
+
+#File: jslicense.html
+#---------------------------
+YaCy JavaScript license information==YaCy JavaScript інформація про ліцензію
+YaCy JavaScript files license information==YaCy JavaScript файли інформації про ліцензію
+Script==Сценарій
+License==Ліцензія
+Source==Джерело
+#-----------------------------
+
+#File: portalsearch/yacy-portalsearch.html
+#---------------------------
+YaCy Bookmarks==YaCy Закладки
+YaCy Portalsearch:==YaCy Пошук на порталі:
+#-----------------------------
+
+#File: proxymsg/urlproxyheader.html
+#---------------------------
+"add bookmark"=="додати закладку"
+YaCy stop proxy==YaCy зупинити проксі
+(Warning: secure target viewed over normal http)==(Попередження: безпечна мета переглядається через звичайний http)
+#-----------------------------
+
+#File: rct_p.html
+#---------------------------
+"retrieve"=="отримати"
+remote crawl fetch test==тест віддаленого сканування
+Retrieve remote crawl url list==Отримати список URL-адрес віддаленого сканування
+Target Peer:==Цільовий аналог:
+select==вибрати
+#-----------------------------
+
+#File: rssTerminal.html
+#---------------------------
+rss terminal==rss термінал
+#-----------------------------
+
+#File: yacysearchpagination.html
+#---------------------------
+"Previous page"=="Попередня сторінка"
+"Next page"=="Наступна сторінка"
+«==«
+»==»
+#-----------------------------
diff --git a/locales/validate-locale-links.py b/locales/validate-locale-links.py
new file mode 100755
index 000000000..c5fa1f145
--- /dev/null
+++ b/locales/validate-locale-links.py
@@ -0,0 +1,163 @@
+#!/usr/bin/env python3
+"""Validate that locale translations preserve technical link targets.
+
+The .lng format is plain text replacement. File names, servlet endpoints,
+paths and URLs inside a source string must therefore remain literal in the
+translation. This script detects translated or damaged targets such as
+Network.html -> Netzwerk.html, servletshare.json, or URLs with inserted spaces.
+"""
+
+from __future__ import annotations
+
+import argparse
+import re
+import sys
+from pathlib import Path
+
+
+TARGET_EXTENSIONS = (
+ "html",
+ "inc",
+ "json",
+ "xml",
+ "rss",
+ "css",
+ "js",
+ "pac",
+)
+
+
+def parse_args() -> argparse.Namespace:
+ parser = argparse.ArgumentParser(
+ description="Validate literal link targets in YaCy .lng locale files.",
+ )
+ parser.add_argument(
+ "--locales",
+ type=Path,
+ default=Path("locales"),
+ help="Locale directory containing .lng files (default: locales).",
+ )
+ parser.add_argument(
+ "--source",
+ type=Path,
+ default=Path("htroot"),
+ help="YaCy htroot directory used to identify valid source targets (default: htroot).",
+ )
+ parser.add_argument(
+ "--include",
+ action="append",
+ default=[],
+ metavar="FILE",
+ help="Only validate this .lng file name. Can be used multiple times.",
+ )
+ parser.add_argument(
+ "--exclude",
+ action="append",
+ default=[],
+ metavar="FILE",
+ help="Skip this .lng file name. Can be used multiple times.",
+ )
+ return parser.parse_args()
+
+
+def collect_known_targets(source_dir: Path, locale_files: list[Path]) -> set[str]:
+ known: set[str] = set()
+
+ if source_dir.exists():
+ suffixes = {f".{ext}" for ext in TARGET_EXTENSIONS}
+ for path in source_dir.rglob("*"):
+ if path.is_file() and path.suffix.lower() in suffixes:
+ relative = path.relative_to(source_dir).as_posix()
+ known.add(relative)
+ known.add(path.name)
+
+ for locale_file in locale_files:
+ for line in locale_file.read_text(encoding="utf-8", errors="ignore").splitlines():
+ if line.startswith("#File:"):
+ target = line[6:].strip()
+ known.add(target)
+ known.add(Path(target).name)
+
+ return known
+
+
+def locale_files(locales_dir: Path, include: list[str], exclude: list[str]) -> list[Path]:
+ include_set = set(include)
+ exclude_set = set(exclude)
+ files = sorted(locales_dir.glob("*.lng"))
+ if include_set:
+ files = [path for path in files if path.name in include_set]
+ if exclude_set:
+ files = [path for path in files if path.name not in exclude_set]
+ return files
+
+
+def main() -> int:
+ args = parse_args()
+ files = locale_files(args.locales, args.include, args.exclude)
+ known_targets = collect_known_targets(args.source, files)
+
+ extensions = "|".join(TARGET_EXTENSIONS)
+ file_token = re.compile(
+ rf"(?(),;]+\.(?:{extensions}))(?![\w./-])",
+ re.IGNORECASE,
+ )
+ url_token = re.compile(r"https?://[^\s\"'<>),]*")
+
+ failures = 0
+ for locale_file in files:
+ current_section: str | None = None
+ missing_key_targets: list[tuple[int, str | None, list[str], str]] = []
+ unknown_value_targets: list[tuple[int, str | None, str, str]] = []
+
+ for line_number, line in enumerate(
+ locale_file.read_text(encoding="utf-8", errors="ignore").splitlines(),
+ 1,
+ ):
+ if line.startswith("#File:"):
+ current_section = line[6:].strip()
+ continue
+ if "==" not in line or line.startswith("#"):
+ continue
+
+ source, target = line.split("==", 1)
+ source_targets = set(file_token.findall(source)) | set(url_token.findall(source))
+ target_targets = set(file_token.findall(target)) | set(url_token.findall(target))
+
+ missing = sorted(token for token in source_targets if token not in target_targets)
+ if missing:
+ missing_key_targets.append((line_number, current_section, missing, line))
+
+ source_file_targets = set(value_token.findall(source))
+ for token in value_token.findall(target):
+ clean = token.strip(".,:;!?")
+ if clean in known_targets or clean in source_file_targets:
+ continue
+ if clean.startswith(("http://", "https://")):
+ continue
+ unknown_value_targets.append((line_number, current_section, clean, line))
+
+ if missing_key_targets or unknown_value_targets:
+ failures += len(missing_key_targets) + len(unknown_value_targets)
+ print(f"\n## {locale_file.name}")
+ for line_number, section, missing, line in missing_key_targets:
+ print(f"{line_number}: missing technical target(s) {missing} in {section}")
+ print(f" {line}")
+ for line_number, section, token, line in unknown_value_targets:
+ print(f"{line_number}: unknown translated/damaged target {token!r} in {section}")
+ print(f" {line}")
+
+ if failures:
+ print(f"\nFAILED: {failures} locale link target issue(s) found.")
+ return 1
+
+ print(f"OK: checked {len(files)} locale file(s), no link target issues found.")
+ return 0
+
+
+if __name__ == "__main__":
+ sys.exit(main())
diff --git a/locales/zh.lng b/locales/zh.lng
index cce1eb96d..5c44280ab 100644
--- a/locales/zh.lng
+++ b/locales/zh.lng
@@ -7,7 +7,7 @@
# first published on http://www.anomic.de
# Frankfurt, Germany, 2005
#
-#
+#
# This file is maintained by lofyer
# This file is written by lofyer
@@ -15,37 +15,27 @@
#File: AccessGrid_p.html
#---------------------------
-YaCy Network Access==YaCy网络访问
Server Access Grid==服务器访问网格
This images shows incoming connections to your YaCy peer and outgoing connections from your peer to other peers and web servers==这幅图显示了到你节点的传入连接,以及从你节点到其他节点或网站服务器的传出连接
#-----------------------------
#File: AccessTracker_p.html
+Path==路径
#---------------------------
-YaCy '#[clientname]#': Access Tracker==YaCy '#[clientname]#': 访问跟踪器
Server Access Overview==服务器访问概况
-This is a list of #[num]# requests to the local http server within the last hour.==最近一小时内有 #[num]# 个到本地的访问请求。
-Showing #[num]# requests==显示 #[num]# 个请求
->Host<==>服务器<
->Path<==>路径<
-Date<==日期<
Access Count During==访问时间
last Second==最近1秒
last Minute==最近1分
last 10 Minutes==最近10分
last Hour==最近1小时
The following hosts are registered as source for brute-force requests to protected pages==以下服务器作为保护页面强制请求的源
-#>Host==>Host
Access Times==访问时间
Server Access Details==服务器访问细节
Local Search Log==本地搜索日志
Local Search Host Tracker==本地搜索服务器跟踪器
Remote Search Log==远端搜索日志
-#Total:==Total:
-Success:==成功:
Remote Search Host Tracker==远端搜索服务器跟踪器
This is a list of searches that had been requested from this' peer search interface==此列表显示来自本节点搜索界面发出请求的搜索
-Showing #[num]# entries from a total of #[total]# requests.==显示 #[num]# 词条,共 #[total]# 个请求。
Requesting Host==请求服务器
Peer Name==节点名称
Offset==偏移量
@@ -56,26 +46,18 @@ Used Time (ms)==消耗时间(毫秒)
URL fetch (ms)==获取地址(毫秒)
Snippet comp (ms)==摘录比较(毫秒)
Query==查询字符
->User Agent<==>用户代理<
Top Search Words (last 7 Days)==热门搜索词汇(最近7天)
Search Word Hashes==搜索字哈希值
-Count==计数
Queries Per Last Hour==查询/小时
Access Dates==访问日期
-This is a list of searches that had been requested from remote peer search interface==此列表显示来自远端节点搜索界面发出请求的搜索.
-This is a list of requests (max. 1000) to the local http server within the last hour==这是最近一小时内本地http服务器的请求列表(最多1000个)
+This is a list of searches that had been requested from remote peer search interface==此列表显示来自远端节点搜索界面发出请求的搜索.
#-----------------------------
#File: Autocrawl_p.html
#---------------------------
->Autocrawler<==>自动爬虫<
-Autocrawler automatically selects and adds tasks to the local crawl queue==自动爬虫自动选择任务并将其添加到本地爬网队列
-This will work best when there are already quite a few domains in the index==如果索引中已经有一些域名,这将会工作得最好
Autocralwer Configuration==自动爬虫配置
You need to restart for some settings to be applied==你需要重新启动才能应用一些设置
Enable Autocrawler:==启用自动爬虫:
-Deep crawl every:==深入爬取:
-Warning: if this is bigger than "Rows to fetch" only shallow crawls will run==警告:如果这大于“取回行”,只有浅爬取将运行
Rows to fetch at once:==一次取回行:
Recrawl only older than # days:==重新爬取只有 # 天以前的时间:
Get hosts by query:==通过查询获取服务器:
@@ -90,16 +72,10 @@ Index media:==索引媒体:
#File: BlacklistCleaner_p.html
#---------------------------
Blacklist Cleaner==黑名单整理
-Here you can remove or edit illegal or double blacklist-entries==在这里你可以删除或者编辑一个非法或者重复的黑名单词条
Check list==校验名单
"Check"=="校验"
-Allow regular expressions in host part of blacklist entries==允许黑名单中服务器部分的正则表达式
The blacklist-cleaner only works for the following blacklist-engines up to now:==此整理目前只对以下黑名单引擎有效:
-Illegal Entries in #[blList]# for==非法词条在 #[blList]#
-Deleted #[delCount]# entries==已删除 #[delCount]# 个词条
-Altered #[alterCount]# entries==已修改 #[alterCount]# 个词条
Two wildcards in host-part==服务器部分中的两个通配符
-Either subdomain or wildcard==子域名或者通配符
Path is invalid Regex==无效正则表达式
Wildcard not on begin or end==通配符未在开头或者结尾处
Host contains illegal chars==服务器名包含非法字符
@@ -116,17 +92,11 @@ Used Blacklist engine:==使用的黑名单引擎:
Import blacklist items from...==导入黑名单词条从...
other YaCy peers:==其他的YaCy 节点s:
"Load new blacklist items"=="载入黑名单词条"
-#URL:==URL:
-plain text file:<==文本文件:<
XML file:==XML文件:
Upload a regular text file which contains one blacklist entry per line.==上传一个每行都有一个黑名单词条的文本文件.
Upload an XML file which contains one or more blacklists.==上传一个包含一个或多个黑名单的XML文件.
-Export blacklist items to==导出黑名单到
Here you can export a blacklist as an XML file. This file will contain additional==你可以导出黑名单到一个XML文件中,此文件含有
-information about which cases a blacklist is activated for==激活黑名单所具备条件的详细信息
"Export list as XML"=="导出名单到XML"
-Here you can export a blacklist as a regular text file with one blacklist entry per line==你可以导出黑名单到一个文本文件中,且每行都仅有一个黑名单词条
-This file will not contain any additional information==此文件不会包含详细信息
"Export list as text"=="导出名单到文本"
#-----------------------------
@@ -136,10 +106,8 @@ Blacklist Test==黑名单测试
Used Blacklist engine:==使用的黑名单引擎:
Test list:==测试黑名单:
"Test"=="测试"
-The tested URL was==此链接
It is blocked for the following cases:==在下列情况下,它会被阻止:
Crawling==爬取中
-#DHT==DHT
News==新闻
Proxy==代理
Search==搜索
@@ -152,46 +120,19 @@ Blacklist Administration==黑名单管理
This function provides an URL filter to the proxy; any blacklisted URL is blocked==提供代理地址过滤;过滤掉自载入时加入进黑名单的地址.
from being loaded. You can define several blacklists and activate them separately.==你可以自定义黑名单并分别激活它们.
You may also provide your blacklist to other peers by sharing them; in return you may==你也可以提供你自己的黑名单列表给其他人;
-collect blacklist entries from other peers==同样,其他人也能将黑名单列表共享给你
Select list to edit:==选择列表进行编辑:
-Add URL pattern==添加地址规则
-Edit list==编辑列表
-The right '*', after the '/', can be replaced by a==在'/'之后的右边'*'可以被替换为
->regular expression<==>正则表达式<
-#(slow)==(慢)
"set"=="收集"
-The right '*'==右边的'*'
-Used Blacklist engine:==使用的黑名单引擎:
Active list:==激活列表:
No blacklist selected==未选中黑名单
-Select list:==选中黑名单:
-not shared::shared==未共享::已共享
-"select"=="选择"
Create new list:==创建:
"create"=="创建"
-Settings for this list==设置
"Save"=="保存"
-Share/don't share this list==共享/不共享此名单
-Delete this list==删除
-Edit this list==编辑
-These are the domain name/path patterns in==这些域名/路径规则来自
Blacklist Pattern==黑名单规则
Edit selected pattern(s)==编辑选中规则
Delete selected pattern(s)==删除选中规则
Move selected pattern(s) to==移动选中规则
-#You can select them here for deletion==你可以从这里选择要删除的项
Add new pattern:==添加新规则:
"Add URL pattern"=="添加地址规则"
-The right '*', after the '/', can be replaced by a regular expression.== 在 '/' 后边的 '*' ,可用正则表达式表示.
-#domain.net/fullpath<==domain.net/绝对路径<
-#>domain.net/*<==>domain.net/*<
-#*.domain.net/*<==*.domain.net/*<
-#*.sub.domain.net/*<==*.sub.domain.net/*<
-#sub.domain.*/*<==sub.domain.*/*<
-#domain.*/*<==domain.*/*<
-#was removed from blacklist==wurde aus Blacklist entfernt
-#was added to the blacklist==wurde zur Blacklist hinzugefügt
-Activate this list for==为以下词条激活此名单
Show entries:==显示词条:
Entries per page:==页面词条:
Edit existing pattern(s):==编辑现有规则:
@@ -199,78 +140,46 @@ Edit existing pattern(s):==编辑现有规则:
#-----------------------------
#File: Blog.html
+Edit==编辑
+No changes have been submitted so far!==未提交任何改变!
#---------------------------
-by==通过
-Comments==评论
->edit==>编辑
->delete==>删除
-Edit<==编辑<
-previous entries==前一个词条
-next entries==下一个词条
-new entry==新词条
-import XML-File==导入XML文件
-export as XML==导出到XML文件
-Comments==评论
Blog-Home==博客主页
Author:==作者:
Subject:==标题:
Text:==文本:
-You can use==你可以用
-Yacy-Wiki Code==YaCy-百科代码
-here.==这儿.
Comments:==评论:
deactivated==无效
->activated==>有效
moderated==改变
"Submit"=="提交"
"Preview"=="预览"
"Discard"=="取消"
->Preview==>预览
-No changes have been submitted so far==未作出任何改变
Access denied==拒绝访问
To edit or create blog-entries you need to be logged in as Admin or User who has Blog rights.==如果编辑或者创建博客内容,你需要登录.
-Are you sure==确定
-that you want to delete==要删除:
Confirm deletion==确定删除
-Yes, delete it.==是, 删除.
-No, leave it.==不, 保留.
Import was successful!==导入成功!
Import failed, maybe the supplied file was no valid blog-backup?==导入失败, 可能提供的文件不是有效的博客备份?
Please select the XML-file you want to import:==请选择你想导入的XML文件:
#-----------------------------
#File: BlogComments.html
+Comments:==评论:
#---------------------------
-by==通过
-Comments==评论
-Login==登录
Blog-Home==博客主页
-delete==删除
-allow==允许
Author:==作者:
Subject:==标题:
-#Text:==Text:
-You can use==你可以用
-Yacy-Wiki Code==YaCy-百科代码
-here.==在这里.
"Submit"=="提交"
"Preview"=="预览"
"Discard"=="取消"
#-----------------------------
#File: Bookmarks.html
+"Save"=="保存"
#---------------------------
start autosearch of new bookmarks==开始自动搜索新书签
This starts a search of new or modified bookmarks since startup==开始搜索自从启动以来新的或修改的书签
Every peer online will be ask for results.==每个在线的节点都会被索要结果。
-To see a list of all APIs, please visit the API wiki page.==要查看所有API的列表,请访问API wiki page。
-To see a list of all APIs==要查看所有API的列表,请访问API wiki page。
-YaCy '#[clientname]#': Bookmarks==YaCy '#[clientname]#': 书签
The bookmarks list can also be retrieved as RSS feed. This can also be done when you select a specific tag.==书签列表也能用作RSS订阅.当你选择某个标签时你也可执行这个操作.
Click the API icon to load the RSS from the current selection.==点击API图标以从当前选择书签中载入RSS.
-To see a list of all APIs, please visit the API wiki page.==获取所有API, 请访问API Wiki.
-
Bookmarks==
书签
-Bookmarks (==书签(
Login==登录
List Bookmarks==显示书签
Add Bookmark==添加书签
@@ -279,25 +188,18 @@ Import XML Bookmarks==导入XML书签
Import HTML Bookmarks==导入HTML书签
"import"=="导入"
Default Tags:==默认标签
-imported==已导入
Edit Bookmark==编辑书签
-#URL:==URL:
Title:==标题:
Description:==描述:
Folder (/folder/subfolder):==目录(/目录/子目录):
Tags (comma separated):==标签(以逗号隔开):
->Public:==>公共的:
yes==是
no==否
Bookmark is a newsfeed==书签是新闻订阅点
"create"=="创建"
-"edit"=="编辑"
File:==文件:
-import as Public==导入为公有
"private bookmark"=="私有书签"
"public bookmark"=="公共书签"
-Tagged with==关键词:
-'Confirm deletion'=='确认删除'
Edit==编辑
Delete==删除
Folders==目录
@@ -306,10 +208,7 @@ Tags==标签
Bookmark List==书签列表
previous page==前一页
next page==后一页
-All==所有
Show==显示
-Bookmarks per page==书签/每页
-#unsorted==默认排序
#-----------------------------
#File: Collage.html
@@ -324,7 +223,6 @@ Public Queue==公共
Websearch Comparison==网页搜索对比
Left Search Engine==左侧引擎
Right Search Engine==右侧引擎
-Query==查询
"Compare"=="比较"
Search Result==结果
#-----------------------------
@@ -344,18 +242,15 @@ Traffic==流量
#-----------------------------
#File: ConfigAccounts_p.html
+Generic error.==一般性错误。
+Password==密码
+Passwords do not match.==密码不匹配。
+Rights:==权限:
+Username==用户名
#---------------------------
Username too short. Username must be >= 4 Characters.==用户名太短。 用户名必须>= 4 个字符.
Username already used (not allowed).==用户名已被使用(不允许).
-Username too short. Username must be ==用户名太短. 用户名必须
User Administration==用户管理
-User created:==用户已创建:
-User changed:==用户已改变:
-Generic error==一般错误
-Passwords do not match==密码不匹配
-Username too short. Username must be >= 4 Characters==用户名太短, 至少为4个字符
-No password is set for the administration account==管理员账户未设置密码
-Please define a password for the admin account==请设置一个管理员密码
#Admin Account
Admin Account==管理员
@@ -371,32 +266,17 @@ Repeat Peer Password:==重复节点密码:
"Define Administrator"=="设置管理员账户"
#Access Rules
->Access Rules<==>访问规则<
-Protection of all pages: if set to on==保护所有页面:如果设置为开启
-access to all pages need authorization==访问所有页面需要授权
-if off, only pages with "_p" extension are protected==如果关闭,只有扩展名为“_p”的页面才受保护
-Set Access Rules==设置访问规则
#User Accounts
User Accounts==用户账户
Select user==选择用户
New user==新用户
-or goto user==或者去用户
->account list<==>账户列表<
-Edit User==编辑用户
-Delete User==删除用户
-Edit current user:==编辑当前用户:
-Username==用户名
-Password==密码
Repeat password==重复密码
First name==名
Last name==姓
Address==地址
-Rights==权限
-==
Timelimit==时限
Time used==已用时
-Save User==保存用户
#-----------------------------
#File: ConfigAppearance_p.html
@@ -404,116 +284,55 @@ Save User==保存用户
Appearance and Integration==外观整合
You can change the appearance of the YaCy interface with skins.==你可以在这里修改YaCy的外观界面.
The selected skin and language also affects the appearance of the search page.==选择的皮肤和语言也会影响到搜索页面的外观.
-If you create a search portal with YaCy then you can==如果你创建YaCy门户,
-change the appearance of the search page here.==那么你能在这里 改变搜索页面的外观.
+change the appearance of the search page here.==在这里改变搜索页面的外观。
Skin Selection==选择皮肤
Select one of the default skins. After selection it might be required to reload the web page while holding the shift key to refresh cached style files.==选择一个默认皮肤。选择后,重新加载网页,可能需要在按住shift键的同时刷新缓存的样式文件。
-Select one of the default skins, download new skins, or create your own skin.==选择一个默认皮肤, 下载新皮肤或者创建属于你自己的皮肤.
Current skin==当前皮肤
Available Skins==可用皮肤
"Use"=="使用"
"Delete"=="删除"
->Skin Color Definition<==>改变皮肤颜色<
The generic skin 'generic_pd' can be configured here with custom colors:==能在这里修改皮肤'generic_pd'的颜色:
->Background<==>背景<
->Text<==>文本<
->Legend<==>说明<
->Table Header<==>标签 头部<
->Table Item<==>标签 词条 1<
->Table Item 2<==>标签 词条 2<
->Table Bottom<==>标签 底部<
->Border Line<==>边界 线<
->Sign 'bad'<==>符号 '坏'<
->Sign 'good'<==>符号 '好'<
->Sign 'other'<==>符号 '其他'<
->Search Headline<==>搜索 标题<
->Search URL==>搜索 地址
-hover==悬浮
"Set Colors"=="设置颜色"
->Skin Download<==>下载皮肤<
-Skins can be installed from download locations==安装下载皮肤
Install new skin from URL==从URL安装皮肤
Use this skin==使用这个皮肤
"Install"=="安装"
Make sure that you only download data from trustworthy sources. The new Skin file==确保你的皮肤文件是从可靠源获得. 如果存在相同文件
might overwrite existing data if a file of the same name exists already.==, 新皮肤会覆盖旧的.
->Unable to get URL:==>无法打开链接:
Error saving the skin.==保存皮肤时出错.
#-----------------------------
#File: ConfigBasic.html
#---------------------------
Your port has changed. Please wait 10 seconds.==你的端口已更改。 请等待10秒。
-Your browser will be redirected to the new location in 5 seconds.==你的浏览器将在5秒内重定向到新的位置。
-The peer port was changed successfully.==节点端口已经成功修改。
-Set by system property==由系统属性设置
-https enabled==https启用
Configure your router for YaCy using UPnP:==使用UPnP为你的路由器配置YaCy:
-on port==在端口
-Access Configuration==访问设置
Basic Configuration==基本设置
Your YaCy Peer needs some basic information to operate properly==你的YaCy节点需要一些基本信息才能有效工作
-Select a language for the interface==选择界面语言
Browser==浏览器
-Use the browser preferred language if available==如果可用就使用浏览器偏好的语言
Use Case: what do you want to do with YaCy:==用法:你想将YaCy当作:
Community-based web search==基于社区的网络搜索
Join and support the global network 'freeworld', search the web with an uncensored user-owned search network==加入并支持全球网络 'freeworld', 自由搜索网络。
Search portal for your own web pages==个人网站的搜索门户
Your YaCy installation behaves independently from other peers and you define your own web index by starting your own web crawl. This can be used to search your own web pages or to define a topic-oriented search portal.==你的YaCy安装独立于其他节点,你可以通过开始自己的网络爬虫来创建自己的网络索引。这可用于搜索你的个人网站或创建专题搜索门户。
-Files may also be shared with the YaCy server, assign a path here:==你也能与YaCy服务器共享内容, 在这里指定路径:
-This path can be accessed at ==可以通过以下链接访问
-Use that path as crawl start point.==将此路径作为索引起点。
Intranet Indexing==内网索引
-Create a search portal for your intranet or web pages or your (shared) file system.==为内网或网页或(共享)文件系统创建搜索门户。
-URLs may be used with http/https/ftp and a local domain name or IP, or with an URL of the form==URL可以是http/https/ftp以及本地域名或IP,也可以是下面形式的URL
-or smb:==或者smb:
Your peer name has not been customized; please set your own peer name==你的节点尚未命名, 请命名它
You may change your peer name==你可以改变你的节点名称
Peer Name:==节点名称:
Your peer can be reached by other peers==外部能访问你的节点
-Your peer cannot be reached from outside==外部不能访问你的节点
-which is not fatal, but would be good for the YaCy network==此举不是强制的,但有利于YaCy网络
-please open your firewall for this port and/or set a virtual server option in your router to allow connections on this port.==请改变你的防火墙或者虚拟机路由设置, 从而让外网能访问这个端口。
-Opening a router port is not a YaCy-specific task;==打开一个路由器端口不是一个YaCy特定的任务;
-you can see instruction videos everywhere in the internet, just search for Open Ports on a <our-router-type> Router and add your router type as search term.==你可以在互联网上的任何地方查看说明视频,只需搜索在<我的路由器类型>路由器打开一个端口并添加你的路由器类型作为搜索词。
-However: if you fail to open a router port, you can nevertheless use YaCy with full functionality, the only function that is missing is on the side of the other YaCy users because they cannot see your peer.==但是:如果你无法打开路由器端口,你仍然可以使用YaCy的全部功能,唯一缺失的功能是对其他YaCy用户而言的,因为他们无法看到你的YaCy节点。
Peer Port:==节点端口:
-Configure your router for YaCy:==设置本机路由:
Configuration was not successful. This may take a moment.==配置失败。这需要花费一些时间。
-Set Configuration==保存设置
What you should do next:==下一步你该做的:
-Your basic configuration is complete! You can now (for example)==配置成功, 你现在可以
-just <==开始<
-start an uncensored search==自由地搜索了
-start your own crawl and contribute to the global index, or create your own private web index==开始你的索引并将其贡献给全球索引, 或者创建你的私有索引
-set a personal peer profile (optional settings)==设置个人节点资料 (可选项)
-monitor at the network page what the other peers are doing==监控网络页面, 以及其他节点的活动
Your Peer name is a default name; please set an individual peer name.==你的节点名称为系统默认,请另外设置一个名称。
-You did not set a user name and/or a password.==你未设置用户名和/或密码。
-Some pages are protected by passwords.==一些页面受密码保护。
-You should set a password at the Accounts Menu to secure your YaCy peer.::==你可以在 账户菜单 设置密码, 从而加强你的YaCy节点安全性。::
-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 recommended.==不开放端口你也能使用你的节点, 但是不推荐。
#-----------------------------
#File: ConfigHeuristics_p.html
+Active==激活
+Comment==注释
#---------------------------
Heuristics Configuration==启发式配置
-A heuristic is an 'experience-based technique that help in problem solving, learning and discovery' (wikipedia).==启发式是一种“基于经验的技术,有助于解决问题,学习和发现”
search-result: shallow crawl on all displayed search results==搜索结果:浅度爬取所有显示的搜索结果
When a search is made then all displayed result links are crawled with a depth-1 crawl.==当进行搜索时,所有显示的结果网址的爬网深度-1。
"Save"=="保存"
"add"=="添加"
->new<==>新建<
->delete<==>删除<
->Comment<==>评论<
->Title<==>标题<
->Active<==>激活<
->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 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.==这意味着:在搜索请求之后,就开始加载结果的每个页面及每个页面上的链接。
@@ -522,31 +341,11 @@ Default is to add the links to the local crawl queue (your peer crawls the linke
add as global crawl job==添加为全球爬取作业
opensearch load external search result list from active systems below==opensearch从下面的活动系统加载外部搜索结果列表
Available/Active Opensearch System==可用/激活Opensearch系统
-Url (format opensearch==Url (格式为opensearch
-Url template syntax==网址模板语法
"reset to default list"=="重置为默认列表"
"discover from index"=="从索引中发现"
-start background task, depending on index size this may run a long time==开始后台任务,这取决于索引的大小,这可能会运行很长一段时间
With the button "discover from index" you can search within the metadata of your local index (Web Structure Index) to find systems which support the Opensearch specification.==使用“从索引发现”按钮,你可以在本地索引(Web结构索引)的元数据中搜索,以查找支持Opensearch规范的系统。
The task is started in the background. It may take some minutes before new entries appear (after refreshing the page).==任务在后台启动。 出现新词条可能需要几分钟时间(在刷新页面之后)。
"switch Solr fields on"=="开关Solr字段"
-('modify Solr Schema')==('修改Solr模式')
-located in defaults/heuristicopensearch.conf to the DATA/SETTINGS directory.==位于DATA / SETTINGS目录的 defaults / heuristicopensearch.conf 中。
-For the discover function the web graph option of the web structure index and the fields target_rel_s, target_protocol_s, target_urlstub_s have to be switched on in the webgraph Solr schema.==对于发现功能,Web结构索引的 web图表选项和字段 target_rel_s,target_protocol_s,target_urlstub_s 必须在webgraph Solr模式。
-20 results are taken from remote system and loaded simultaneously==20个结果从远端系统中获取,并同时加载,立即解析并索引
->copy ==>复制&amp; 粘贴一个示例配置文件<
-When using this heuristic==使用这种启发式时,每个新的搜索请求行都用于调用列出的opensearch系统。
-For the discover function the web graph option of the web structure index and the fields target_rel_s==对于发现功能,Web结构索引的 web图表 i>选项和字段 target_rel_s,target_protocol_s,target_urlstub_s i>必须在 webgraph Solr模式。
-start background task==开始后台任务,这取决于索引的大小,这可能会运行很长一段时间
->copy==>复制&amp; 粘贴一个示例配置文件<
-The search heuristics that can be switched on here are techniques that help the discovery of possible search results based on link guessing, in-search crawling and requests to other search engines.==你可以在这里开启启发式搜索, 通过猜测链接, 嵌套搜索和访问其他搜索引擎, 从而找到更多符合你期望的结果.
-When a search heuristic is used, the resulting links are not used directly as search result but the loaded pages are indexed and stored like other content.==开启启发式搜索时, 搜索结果给出的链接并不是直接搜索的链接, 而是已经缓存在其他服务器上的结果.
-This ensures that blacklists can be used and that the searched word actually appears on the page that was discovered by the heuristic.==这保证了黑名单的有效性, 并且搜索关键字是通过启发式搜索找到的.
-The success of heuristics are marked with an image==启发式搜索找到的结果会被特定图标标记
-heuristic:<name>==启发式:<名称>
-#(redundant)==(redundant)
-(new link)==(新链接)
-below the favicon left from the search result entry:==搜索结果中使用的图标:
The search result was discovered by a heuristic, but the link was already known by YaCy==搜索结果通过启发式搜索, 且链接已知
The search result was discovered by a heuristic, not previously known by YaCy==搜索结果通过启发式搜索, 且链接未知
'site'-operator: instant shallow crawl=='站点'-操作符: 即时浅爬取
@@ -566,7 +365,6 @@ HTCache Configuration==超文本缓存配置
Cache hits==缓存命中率
The path where the cache is stored==缓存存储路径
The current size of the cache==当前缓存容量
->#[actualCacheSize]# MB for #[actualCacheDocCount]# files, #[docSizeAverage]# KB / file in average==>#[actualCacheSize]#MB为#[actualCacheDocCount]#文件, #[docSizeAverage]#平均KB /文件
The maximum size of the cache==缓存最大容量
Compression level==压缩级别
Concurrent access timeout==并行存取超时
@@ -583,99 +381,57 @@ Delete robots.txt Cache==删除robots.txt缓存
#File: ConfigLanguage_p.html
#---------------------------
-Simple Editor==简单编辑器
Download Language File==下载语言文件
-to add untranslated text==用于添加仍未翻译文本
Supported formats are the internal language file (extension .lng) or XLIFF (extension .xlf) format.==支持的格式是内部语言文件(扩展名.lng)或XLIFF(扩展名.xlf)格式.
Language selection==语言选择
You can change the language of the YaCy-webinterface with translation files.==你可以使用翻译文件来改变YaCy操作界面的语言.
-Current language==当前语言
-Author(s) (chronological)==作者(按时间排序)
-Send additions to maintainer==向维护者提交补丁
-Available Languages==可用语言
Install new language from URL==从URL安装新语言
Use this language==使用此语言
"Use"=="使用"
"Delete"=="删除"
"Install"=="安装"
-Unable to get URL:==打开链接失败:
Error saving the language file.==保存语言文件时发生错误.
Make sure that you only download data from trustworthy sources. The new language file==确保你的数据是从可靠源下载. 如果存在相同文件名
might overwrite existing data if a file of the same name exists already.==, 旧文件将被覆盖.
#-----------------------------
#File: ConfigNetwork_p.html
+Accepted Changes.==已接受改变.
+Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==请注意,与严格TLS相反,证书不会针对受信任的证书颁发机构(CA)进行验证,因此允许YaCy节点使用自签名证书。
#---------------------------
Network Configuration==网络设置
No changes were made!==未作出任何改变!
-Accepted Changes==接受改变
-Inapplicable Setting Combination==设置未被应用
-For P2P operation, at least DHT distribution or DHT receive (or both) must be set. You have thus defined a Robinson configuration==关于P2P操作,必须至少勾选DHT分发或DHT接收(或两者)。 因此,你已被确定为漂流配置
Global Search in P2P configuration is only allowed, if index receive is switched on. You have a P2P configuration, but are not allowed to search other peers.==P2P配置中的全局搜索仅在打开接受索引时才被允许。你已有P2P配置,但不被允许搜索其他节点。
#Network and Domain Specification
Network and Domain Specification==确定网络和域
YaCy can operate a computing grid of YaCy peers or as a stand-alone node.==Yacy能够以一群YaCy节点组成的计算网络或作为一个孤立节点运行.
To control that all participants within a web indexing domain have access to the same domain,==要控制Web索引域中的所有参与者都可以访问同一个域,
this network definition must be equal to all members of the same YaCy network.==此网络定义必须与同一YaCy网络的成员相同。
->Network Definition<==>网络定义<
Enter custom URL...==输入自定义网址...
Remote Network Definition URL==远端网络定义地址
Network Nick==网络别名
Long Description==详细描述
Indexing Domain==索引域
-#DHT==DHT
"Change Network"=="改变网络"
#Distributed Computing Network for Domain
Distributed Computing Network for Domain==域内分布式计算网络.
-Enable Peer-to-Peer Mode to participate in the global YaCy network==开启点对点模式从而加入全球搜索网
or if you want your own separate search cluster with or without connection to the global network.==或者不论加不加入全球YaCy网,你都可以打造个人搜索群。
Enable 'Robinson Mode' for a completely independent search engine instance,==开启漂流模式获得完全独立的搜索引擎实例,
without any data exchange between your peer and other peers.==且不会与其他节点有任何数据交换。
#Peer-to-Peer Mode
Peer-to-Peer Mode==P2P模式
->Index Distribution==>索引分发
-This enables automated, DHT-ruled Index Transmission to other peers==自动向其他节点传递服从DHT规则的索引
->enabled==>开启
disabled during crawling==关闭 (在爬取时)
disabled during indexing==关闭 (在索引时)
->Index Receive==>接收索引
-Accept remote Index Transmissions==允许远端索引输入
-This works only if you have a senior peer. The DHT-rules do not work without this function==仅当你是高级节点时有效。 如果没有勾选, 服从DHT规则的索引不会输入
->reject==>拒绝
accept transmitted URLs that match your blacklist==允许 (你黑名单中的地址)
->allow==>允许
deny remote search==拒绝 (远端搜索)
#Robinson Mode
->Robinson Mode==>漂流模式
-If your peer runs in 'Robinson Mode' you run YaCy as a search engine for your own search portal without data exchange to other peers==如果你的节点运行在'漂流模式', 你能在不与其他节点交换数据的情况下进行搜索
-There is no index receive and no index distribution between your peer and any other peer==你不会与其他节点进行索引传递
-In case of Robinson-clustering there can be acceptance of remote crawl requests from peers of that cluster==对于漂流群模式,一样会应答那个群内远端节点的爬取请求
->Private Peer==>私有节点
-Your search engine will not contact any other peer, and will reject every request==你的搜索引擎不会与其他节点联系, 并会拒绝每一个外部请求
->Public Peer==>公共节点
-You are visible to other peers and contact them to distribute your presence==对于其他节点你是可见的, 可以与他们进行通信以分发你的索引
-Your peer does not accept any outside index data, but responds on all remote search requests==你的节点不接受任何外部索引数据, 但是会回应所有外部搜索请求
->Public Cluster==>公共群
-Your peer is part of a public cluster within the YaCy network==你的节点属于YaCy网络内的一个公共群
Index data is not distributed, but remote crawl requests are distributed and accepted==索引数据不会被分发, 但是外部的爬取请求会被分发和接受
-Search requests are spread over all peers of the cluster, and answered from all peers of the cluster==搜索请求在当前群内的所有节点中传播, 并且这些节点同样会作出回应
List of .yacy or .yacyh - domains of the cluster: (comma-separated)==群内.yacy 或者.yacyh 的域名列表: (以逗号隔开)
->Peer Tags==>节点标签
-When you allow access from the YaCy network, your data is recognized using keywords==当你允许YaCy网络的访问时, 你的数据会以关键字形式表示
-Please describe your search portal with some keywords (comma-separated)==请用关键字描述你的搜索门户 (以逗号隔开)
If you leave the field empty, no peer asks your peer. If you fill in a '*', your peer is always asked.==如果此部分留空, 那么你的节点不会被其他节点访问. 如果内容是 '*' 则标示你的节点永远被允许访问.
"Save"=="保存"
#Outgoing communications encryption
Outgoing communications encryption==出色的通信加密
Protocol operations encryption==协议操作加密
-Prefer HTTPS for outgoing connexions to remote peers==更喜欢以HTTPS作为输出连接到远端节点
-When==当
-is enabled on remote peers==在远端节点开启时
-it should be used to encrypt outgoing communications with them (for operations such as network presence, index transfer, remote crawl==它应该被用来加密与它们的传出通信(操作:网络存在、索引传输、远端爬行
-Please note that contrary to strict TLS==请注意,与严格的TLS相反
-certificates are not validated against trusted certificate authorities==证书向受信任的证书颁发机构进行验证
-thus allowing YaCy peers to use self-signed certificates==从而允许YaCy节点使用自签名证书
-Note also that encryption of remote search queries is configured with a dedicated setting in the Config Portal page.==另请注意,请在门户配置页面中设置远端搜索加密功能。
#-----------------------------
#File: ConfigParser_p.html
@@ -684,86 +440,40 @@ Parser Configuration==解析器配置
Content Parser Settings==内容解析器设置
With this settings you can activate or deactivate parsing of additional content-types based on their MIME-types.==此设置能根据文件类型(MIME)开启/关闭额外的内容解析.
For a detailed description of the various MIME-types take a look at==关于MIME的详细描述请参考
-If you want to test a specific parser you can do so using the==如果要测试特定的解析器,可以使用
->File Viewer<==>文件查看器<
->Extension<==>拓展名<
->Mime-Type<==>Mime-类型<
"Submit"=="提交"
-PDF Parser Attributes==PDF解析器属性
-This is an experimental setting which makes it possible to split PDF documents into individual index entries==这是一个实验设置,可以将PDF文档拆分为单独的索引词条
-Every page will become a single index hit and the url is artifically extended with a post/get attribute value containing the page number as value==每个页面都将成为单个索引匹配,并且使用包含页码作为值的post/get属性值人为扩展url
-Split PDF==分割PDF
-Property Name==属性名
#-----------------------------
#File: ConfigPortal_p.html
+"idea"=="主意"
#---------------------------
Integration of a Search Portal==搜索门户设置
If you like to integrate YaCy as portal for your web pages, you may want to change icons and messages on the search page.==如果你想将YaCy作为你的网站搜索门户, 你可能需要在这改变搜索页面的图标和信息。
-The search page may be customized.==搜索页面可以自由定制。
-You can change the 'corporate identity'-images, the greeting line==你可以改变'企业标志'图片,问候语
and a link to a home page that is reached when the 'corporate identity'-images are clicked.==和一个点击'企业标志'图像后转到主页的超链接。
-To change also colours and styles use the Appearance Servlet for different skins and languages.==若要改变颜色和风格,请到外观选项选择你喜欢的皮肤和语言。
-Greeting Line<==问候语<
-URL of Home Page<==主页链接<
-URL of a Small Corporate Image<==企业形象小图地址<
-URL of a Large Corporate Image<==企业形象大图地址<
-Alternative text for Corporate Images<==企业形象代替文字<
-Enable Search for Everyone==对任何人开启搜索
Search is available for everyone==任何人可用搜索
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)
-Show Advanced Search Options on Search Page==在搜索页显示高级搜索选项
-Show Advanced Search Options on index.html ==在index.html显示高级搜索选项?
do not show Advanced Search==不显示高级搜索
Media Search==媒体搜索
->Extended==>拓展
->Strict==>严格
-Control whether media search results are as default strictly limited to indexed documents matching exactly the desired content domain==控制媒体搜索结果是否默认严格限制为与所需内容域完全匹配的索引文档
-(images, videos or applications specific)==(图片,视频或具体应用)
or extended to pages including such medias (provide generally more results, but eventually less relevant).==或扩展到包括此类媒体的网页(通常提供更多结果,但相关性更弱)。
Remote results resorting==远端搜索结果排序
->On demand, server-side==>根据需要, 服务器侧
-Automated, with JavaScript in the browser==自动化, 基于嵌入浏览器的JavaScript代码
Automated results resorting with JavaScript makes the browser load the full result set of each search request.==基于JavaScript的自动结果重新排序,使浏览器加载每个搜索请求的完整结果集。
This may lead to high system loads on the server.==这可能会导致服务器上的系统负载过高。
-Please check the 'Peer-to-peer search with JavaScript results resorting' section in the Local Search access rate configuration page to set up proper limitations on this mode by unauthenticated users.==请查看本地搜索访问率 配置页面中的“使用JavaScript对P2P搜索结果重排”部分,对未经身份验证的用户使用该模式加以适当限制。
Remote search encryption==远端搜索加密
Prefer https for search queries on remote peers.==首选https用于远端节点上的搜索查询。
When SSL/TLS is enabled on remote peers, https should be used to encrypt data exchanged with them when performing peer-to-peer searches.==在远端节点上启用SSL/TLS时,应使用https来加密在执行P2P搜索时与它们交换的数据。
Please note that contrary to strict TLS, certificates are not validated against trusted certificate authorities (CA), thus allowing YaCy peers to use self-signed certificates.==请注意,与严格TLS相反,证书不会针对受信任的证书颁发机构(CA)进行验证,因此允许YaCy节点使用自签名证书。
->Snippet Fetch Strategy==>摘要提取策略
Speed up search results with this option! (use CACHEONLY or FALSE to switch off verification)==使用此选项加速搜索结果!(使用CACHEONLY或FALSE来关闭验证)
-Statistics on text snippets generation can be enabled in the Debug/Analysis Settings page.==可以在调试/分析设置页面中启用文本摘录生成的统计信息。
NOCACHE: no use of web cache, load all snippets online==NOCACHE:不使用网络缓存,在线加载所有网页摘要
IFFRESH: use the cache if the cache exists and is fresh otherwise load online==IFFRESH:如果缓存存在则使用最新的缓存,否则在线加载
IFEXIST: use the cache if the cache exist or load online==IFEXIST:如果缓存存在则使用缓存,或在线加载
If verification fails, delete index reference==如果验证失败,删除索引参考
-CACHEONLY: never go online, use all content from cache.==CACHEONLY:永远不上网,内容只来自缓存。
-If no cache entry exist, consider content nevertheless as available and show result without snippet==如果不存在缓存词条,将内容视为可用,并显示没有摘要的结果
FALSE: no link verification and not snippet generation: all search results are valid without verification==FALSE:没有链接验证且没有摘要生成:所有搜索结果在没有验证情况下有效
-Link Verification<==链接验证<
Greedy Learning Mode==贪心学习模式
-load documents linked in search results,==加载搜索结果中链接的文档,
-will be deactivated automatically when index size==将自动停用当索引大小
- (see==(见
->Heuristics: search-result<==>启发式:搜索结果<
- to use this permanent)==使得它永久性)
Index remote results==索引远端结果
-add remote search results to the local index==将远端搜索结果添加到本地索引
-( default=on, it is recommended to enable this option ! )==(默认=开启,建议启用此选项!)
Limit size of indexed remote results==现在远端索引结果容量
-maximum allowed size in kbytes for each remote search result to be added to the local index==每个远端搜索结果的最大允许大小(以KB为单位)添加到本地索引
-for example, a 1000kbytes limit might be useful if you are running YaCy with a low memory setup==例如,如果运行具有低内存设置的YaCy,则1000KB限制可能很有用
-Default Pop-Up Page<==默认弹出页面<
->Status Page ==>状态页面
->Search Front Page==>搜索首页
->Search Page (small header)==>搜索页面(二级标题)
->Interactive Search Page==>交互搜索页面
Default maximum number of results per page==默认每页最大结果数
-Default index.html Page (by forwarder)==默认index.html页面(通过转发器)
+Default index.html Page (by forwarder)==默认 index.html 页面(通过转发器)
Target for Click on Search Results==点击搜索结果时
"_blank" (new window)=="_blank" (新窗口)
"_self" (same window)=="_self" (同一窗口)
@@ -773,15 +483,7 @@ Special Target as Exception for an URL-Pattern==作为URL模式的异常的特
Pattern:<= 模式:<
Exclude Hosts==排除的服务器
List of hosts that shall be excluded from search results by default but can be included using the site:<host> operator:==默认情况下将被排除在搜索结果之外的服务器列表,但可以使用site:<host>操作符包括进来
-'About' Column<=='关于'栏<
-shown in a column alongside==显示在
-with the search result page==搜索结果页侧栏
-(Headline)==(标题)
(Content)==(内容)
->You have to==>你必须
->set a remote user/password<==>设置一个远端用户/密码<
-to change this options.<==来改变设置。<
-Show Information Links for each Search Result Entry==显示搜索结果的链接信息
"searchresult" (a default custom page name for search results)=="搜索结果" (搜索结果页面名称)
"Change Search Page"=="改变搜索页"
"Set to Default Values"=="设为默认值"
@@ -792,18 +494,14 @@ A third option is the interactive search. Use this code:==交互搜索代码:
#-----------------------------
#File: ConfigProfile_p.html
+Name==名称
#---------------------------
Your Personal Profile==你的个人资料
You can create a personal profile here, which can be seen by other YaCy-members==你可以在这创建个人资料, 而且对其他YaCy节点可见
-or in the public using a FOAF RDF file.==或者在公共场所时使用FOAF RDF 文件.
->Name<==>名字<
Nick Name==昵称
-Homepage (appears on every Supporter Page as long as your peer is online)==首页(显示在每个支持者 页面中, 前提是你的节点在线).
eMail==邮箱
Comment==注释
"Save"=="保存"
-You can use <==在这里你可以用<
-> here.==>.
#-----------------------------
#File: ConfigProperties_p.html
@@ -843,7 +541,6 @@ Integration of a Search Box==搜索框设置
We give information how to integrate a search box on any web page that==如何将一个搜索框集成到任意
calls the normal YaCy search window.==调用YaCy搜索的页面.
Simply use the following code:==使用以下代码:
- MySearch== 我的搜索
"Search"=="搜索"
This would look like:==示例:
This does not use a style sheet file to make the integration into another web page with a different style sheet easier.==在这里并没有使用样式文件, 因为这样会比较容易将其嵌入到不同样式的页面里.
@@ -853,81 +550,32 @@ Replace the word "MySearch" with your own message==用你想显示的信息替
#-----------------------------
#File: ConfigSearchPage_p.html
+Administration »==管理 »
+Images==图片
+Location==位置
+Log in==登录
+Pictures==图片
+Tags==标签
+Toggle navigation==切换导航
#---------------------------
-Search Page<==搜索页<
->Search Result Page Layout Configuration<==>搜索结果页面布局配置<
Below is a generic template of the search result page. Mark the check boxes for features you would like to be displayed.==以下是搜索结果页面的通用模板.选中你希望显示的功能复选框.
-To change colors and styles use the Appearance menu for different skins.==要改变颜色和样式,使用外观菜单以改变皮肤。
-Other portal settings can be adjusted in Generic Search Portal menu.==其他门户网站设置可以在通用搜索门户菜单中调整.
->Page Template<==>页面模板<
->Toggle navigation<==>切换导航<
->Log in<==>登录<
->userName<==>用户名<
->Search Interfaces<==>搜索界面<
-> Administration »<==> 管理 »<
->Tag<==>标签<
->Topics<==>主题<
->Cloud<==>云<
->Location<==>位置<
show search results on map==在地图上显示搜索结果
-Sorted by descending counts==按计数递减排序
-Sorted by ascending counts==按计数递增排序
-Sorted by descending labels==按降序标签排序
-Sorted by ascending labels==按升序标签排序
->Sort by==>排序
->Descending counts<==>降序计数<
->Ascending counts<==>升序计数<
->Descending labels<==>降序标签<
->Ascending labels<==>升序标签<
->Vocabulary <==>词汇<
->search<==>搜索<
->Text<==>文本<
->Images<==>图片<
->Audio<==>音频<
->Video<==>视频<
->Applications<==>应用<
->more options<==>更多选项<
-> Date Navigation<==> 日期导航<
Maximum range (in days)==最大范围 (按照天算)
-Maximum days number in the histogram. Beware that a large value may trigger high CPU loads both on the server and on the browser with large result sets.==直方图中的最大天数. 请注意, 较大的值可能会在服务器和具有大结果集的浏览器上触发高CPU负载.
Show websites favicon==显示网站图标
Not showing websites favicon can help you save some CPU time and network bandwidth.==不显示网站图标可以帮助你节省一些CPU时间和网络带宽。
->Title of Result<==>结果标题<
Description and text snippet of the search result==搜索结果的描述和文本摘录
->Tags<==>标签<
->keyword<==>关键词<
->subject<==>主题<
->keyword2<==>关键词2<
->keyword3<==>关键词3<
Max. tags initially displayed==初始显示的最大标签数
(remaining can then be expanded)==(剩下的可以扩展)
-42 kbyte<==42kb<
->Metadata<==>元数据<
->Parser<==>解析器<
->Citation<==>引用<
->Pictures<==>图片<
->Cache<==>缓存<
->View via Proxy<==>通过代理查看<
For this option URL proxy must be enabled.==对于这个选项,必须启用URL代理。
menu: System Administration > Advanced Settings==菜单:系统管理>高级设置
-Ranking score value, mainly for debug/analysis purpose, configured in Debug/Analysis Settings==排名分数值,主要用于调试/分析目的,在调试/分析设置中配置
->Add Navigators<==>添加导航器<
-Save Settings==保存设置
-Set Default Values==重置默认值
#-----------------------------
#File: ConfigUpdate_p.html
#---------------------------
->System Update<==>系统更新<
->changelog<==>更新日志<
-> and <==>和<
-> RSS feed<==> RSS订阅<
(unsigned)==(未签名)
(signed)==(签名)
-add the following line to==将以下行添加到
Manual System Update==系统手动升级
Current installed Release==当前版本
-Available Releases==可用版本
"Download Release"=="下载更新"
"Check for new Release"=="检查更新"
Downloaded Releases==已下载
@@ -938,13 +586,9 @@ no automated installation on development environments==开发环境中自
Automatic Update==自动更新
check for new releases, download if available and restart with downloaded release==检查更新, 如果可用则重启并使用
"Check + Download + Install Release Now"=="检查 + 下载 + 现在安装"
-Download of release #[downloadedRelease]# finished. Restart Initiated.== 已完成下载 #[downloadedRelease]# . 重启并初始化.
No more recent release found.==无最近更新.
Release will be installed. Please wait.==准备安装更新. 请稍等.
-You installed YaCy with a package manager.==你使用包管理器安装的YaCy.
-To update YaCy, use the package manager:==用包管理器以升级YaCy:
Omitting update because this is a development environment.==因当前为开发环境, 忽略安装升级.
-Omitting update because download of release #[downloadedRelease]# failed.==下载 #[downloadedRelease]# 失败, 忽略安装升级.
Automated System Update==系统自动升级
manual update==手动升级
no automatic look-up, updates can be made manually using this interface (see options above)==无自动检查更新时, 可以使用此功能安装更新(参见上述).
@@ -953,7 +597,6 @@ updates are made within fixed cycles:==每隔一定时间自动检查更新:
Time between lookup==检查周期
hours==小时
Release blacklist==版本黑名单
-regex on release number strings==版本号正则表达式
Release type==版本类型
only main releases==仅主版本号
any release including developer releases==任何版本, 包括测试版
@@ -971,13 +614,10 @@ Last Deploy==最近一次应用更新
#File: ConfigUser_p.html
#---------------------------
User Account Editor==用户账户编辑器
-User created: #[username]#==用户已创建: #[username]#
-User changed: #[username]#==用户已改变: #[username]#
Generic error.==一般性错误。
Passwords do not match.==密码不匹配。
Username too short. Username must be >= 4 Characters.==用户名太短。用户名至少 >= 4 字符。
Username already used (not allowed).==用户名已存在(不允许)。
-Edit current user: #[username]#==编辑当前用户: #[username]#
Username==用户名
Password==密码
Repeat password==重复密码
@@ -987,8 +627,6 @@ Address==地址
Rights:==权限:
Timelimit==时间限制
Time used==已用时间
-Save User==保存用户
-Delete User==删除用户
back to user list==返回用户列表
#-----------------------------
@@ -996,40 +634,23 @@ back to user list==返回用户列表
#---------------------------
Server Connection Tracking==服务器连接跟踪
Up-Bytes==截至字节
-Showing #[numActiveRunning]# active connections from a max. of #[numMax]# allowed incoming connections==正在显示 #[numActiveRunning]# 活动连接,最大允许传入连接 #[numMax]#
-Connection Tracking==连接跟踪
Incoming Connections==进入连接
-Showing #[numActiveRunning]# active, #[numActivePending]# pending connections from a max. of #[numMax]# allowed incoming connections.==显示 #[numActiveRunning]# 活动, #[numActivePending]# 挂起连接, 最大允许 #[numMax]# 个进入连接.
-Protocol==协议
Duration==持续时间
Source IP[:Port]==来源IP[:端口]
Dest. IP[:Port]==目标IP[:端口]
-Command==命令
-Used==使用的
-Close==关闭
-Waiting for new request nr.==等待新请求数.
Outgoing Connections==外出连接
-Showing #[clientActive]# pooled outgoing connections used as:==显示 #[clientActive]# 个外出链接, 用作:
-Duration==持续时间
-#ID==ID
#-----------------------------
#File: ContentAnalysis_p.html
+Content Analysis==内容分析
#---------------------------
-Content Analysis<==内容分析<
These are document analysis attributes.==这些是文档分析属性。
->Double Content Detection<==>重复内容检测<
Double-Content detection is done using a ranking on a 'unique'-Field, named 'fuzzy_signature_unique_b'.==重复内容检测是使用名为'fuzzy_signature_unique_b'的'unique'字段上的排名完成的。
-This field is set during parsing and is influenced by two attributes for the TextProfileSignature class.==此字段在解析期间设置,并受TextProfileSignature类的两个属性影响。
->minTokenLen<==>最小令牌长度<
This is the minimum length of a word which shall be considered as element of the signature. Should be either 2 or 3.==这是一个应被视为签名的元素单词的最小长度。应该是2或3。
->quantRate<==>量化率<
The quantRate is a measurement for the number of words that take part in a signature computation. The higher the number, the less==量化率是参与签名计算的单词数量的度量。
-words are used for the signature==数字越大,用于签名的单词就越少。
For minTokenLen = 2 the quantRate value should not be below 0.24; for minTokenLen = 3 the quantRate value must be not below 0.5.==对于最小令牌长度=2,量化率值不应低于0.24; 对于最小令牌长度=3,量化率值必须不低于0.5。
"Re-Set to default"=="重置为默认"
"Set"=="设置"
-The quantRate is a measurement for the number of words that take part in a signature computation. The higher the number==quantRate是参与签名计算的单词数量的度量。 数字越高,越少
#-----------------------------
#File: ContentIntegrationPHPBB3_p.html
@@ -1039,69 +660,31 @@ It is possible to extract texts directly from mySQL and postgreSQL databases.==
Each extraction is specific to the data that is hosted in the database.==每次解压都针对服务器数据库中的数据.
This interface gives you access to the phpBB3 forums software content.==通过此接口能访问phpBB3论坛软件内容.
If you read from an imported database, here are some hints to get around problems when importing dumps in phpMyAdmin:==如果从使用phpMyAdmin读取数据库内容, 你可能会用到以下建议:
-before importing large database dumps, set==在导入尺寸较大的数据库时,
-in phpmyadmin/config.inc.php and place your dump file in /tmp (Otherwise it is not possible to upload files larger than 2MB)==设置phpmyadmin/config.inc.php的内容, 并将你的数据库文件放到 /tmp 目录下(否则不能上传大于2MB的文件)
deselect the partial import flag==取消部分导入
When an export is started, pack files are generated into DATA/PACKS/load which are automatically fetched by an indexer thread.==导出过程开始时, 在 DATA/PACKS/load 目录下自动生成备份文件, 并且会被索引器自动爬取.
All indexed pack files are then moved to DATA/PACKS/loaded and can be re-cycled when an index is deleted.==所有被索引的备份文件都在 DATA/PACKS/loaded 目录下, 并被索引器循环利用.
-The URL stub==URL根域名
-like https://searchlab.eu==比如链接 https://searchlab.eu
-this must be the path right in front of '/viewtopic.php?'==必须在'/viewtopic.php?'前面
-Type==数据库
-> of database<==> 类型<
-use either 'mysql' or 'pgsql'==使用'mysql'或者'pgsql'
-Host==数据库
-> of the database<==> 服务器名<
-of database service==数据库服务
-usually 3306 for mySQL==MySQL中通常是3306
-Name of the database==服务器
-on the host==数据库
-Table prefix string==table
-for table names==前缀
-User==数据库
-that can access the database==用户名
-Password==给定用户名的
-for the account of that user given above==访问密码
-Posts per file==导出备份中
-in exported packs==每个文件拥有的最多帖子数
-Check database connection==检查数据库连接
-Export Content to Packs==导出到备份
-Import a database dump==导入数据库
-Import Dump==导入
Posts in database==数据库中帖子
first entry==第一个
last entry==最后一个
-Info failed:==错误信息:
-Export successful! Wrote #[files]# files in DATA/PACKS/load==导出成功! #[files]# 已写入到 DATA/PACKS/load 目录
-Export failed:==导出失败:
Import successful!==导入成功!
-Import failed:==导入失败:
#-----------------------------
#File: CookieMonitorIncoming_p.html
#---------------------------
-Incoming Cookies Monitor==进入Cookies监控器
Cookie Monitor: Incoming Cookies==Cookies监控器: 进入Cookies
This is a list of Cookies that a web server has sent to clients of the YaCy Proxy:==Web服务器已向YaCy代理客户端发送的Cookie:
-Showing #[num]# entries from a total of #[total]# Cookies.==显示 #[num]# 个词条, 总共 #[total]# 条Cookies.
Sending Host==发送中的服务器
-Date==日期
Receiving Client==接收中的客户端
->Cookie<==>Cookie<
"Enable Cookie Monitoring"=="开启Cookie监控"
"Disable Cookie Monitoring"=="关闭Cookie监控"
#-----------------------------
#File: CookieMonitorOutgoing_p.html
#---------------------------
-Outgoing Cookies Monitor==外出Cookie监控器
Cookie Monitor: Outgoing Cookies==Cookie监控器: 外出Cookie
This is a list of cookies that browsers using the YaCy proxy sent to webservers:==YaCy代理以通过浏览器向Web服务器发送的Cookie:
-Showing #[num]# entries from a total of #[total]# Cookies.==显示 #[num]# 个词条, 总共 #[total]# 条Cookie.
Receiving Host==接收中的服务器
-Date==日期
Sending Client==发送中的客户端
->Cookie<==>Cookie<
"Enable Cookie Monitoring"=="开启Cookie监控"
"Disable Cookie Monitoring"=="关闭Cookie监控"
#-----------------------------
@@ -1112,88 +695,34 @@ Crawl Check==爬取检查
This pages gives you an analysis about the possible success for a web crawl on given addresses.==通过本页面,你可以分析在特定地址上进行网络爬取的可能性。
List of possible crawl start URLs==可能的起始爬取地址列表
"Check given urls"=="检查给定的网址"
->Analysis<==>分析<
->Access<==>访问<
->Robots<==>机器人<
->Crawl-Delay<==>爬取延时<
->Sitemap<==>网页<
#-----------------------------
#File: Crawler_p.html
+"set"=="收集"
+Name==名称
+Running==运行中
#---------------------------
-YaCy '#[clientname]#': Crawler==YaCy '#[clientname]#': 爬虫
Click on this API button to see an XML with information about the crawler status==单击此API按钮可查看包含有关爬虫状态信息的 XML
->Crawler<==>爬虫<
(Please enable JavaScript to automatically update this page!)==(请启用JavaScript以自动更新此页面!)
->Queues<==>队列<
->Queue<==>队列<
->Size<==>大小<
Local Crawler==本地爬虫
Limit Crawler==受限爬虫
Remote Crawler==远端爬虫
No-Load Crawler==未加载爬虫
->Loader<==>加载器<
Terminate All==全部终止
->Index Size<==>索引大小<
->Database<==>数据库<
->Entries<==>词条数<
Seg- ments==分割
->Documents<==>文档<
->solr search api<==>solr搜索api<
->Webgraph Edges<==>网图边缘<
->Citations<==>引用<
-(reverse link index)==(反向链接索引)
->RWIs<==>反向词<
-(P2P Chunks)==(P2P块)
->Progress<==>进度<
->Indicator<==>指标<
->Level<==>等级<
-Speed / PPM==速度/PPM
-Pages Per Minute==每分钟页数
-Latency Factor==延迟因子
-Max same Host in queue==队列同一服务器最大数量
-"set" =="设置"
->min<==>最小<
->max<==>最大<
-Set PPM to the default minimum value==设置PPM为默认最小值
-Set PPM to the default maximum value==设置PPM为默认最大值
Crawler PPM==爬虫PPM
Postprocessing Progress==后加工进度
->pending:<==>待定:<
->collection=<==>收集=<
->webgraph=<==>网图=<
Traffic (Crawler)==流量 (爬虫)
->Load<==>负荷<
Error with profile management. Please stop YaCy, delete the file DATA/PLASMADB/crawlProfiles0.db==资料管理出错. 请关闭YaCy, 并删除文件 DATA/PLASMADB/crawlProfiles0.db
-and restart. ::==后重启。::
-Error:==错误:
Application not yet initialized. Sorry. Please wait some seconds and repeat==抱歉, 程序未初始化, 请稍候并重复
-ERROR: Crawl filter==错误: 爬取过滤
-does not match with==不匹配
-crawl root==爬取根
-Please try again with different==请使用不同的过滤字再试一次
-filter. ::==. ::
-Crawling of==在爬取
-failed. Reason:==失败. 原因:
-Error with URL input==网址输入错误
-Error with file input==文件输入错误
-started.==已开始.
-pause reason: resource observer: not enough memory space==暂停原因: 资源检测器:没有足够内存空间
-Please wait some seconds,==请稍等几秒钟,
-it may take some seconds until the first result appears there.==在出现第一个搜索结果前需要几秒钟时间.
-If you crawl any un-wanted pages, you can delete them here.==如果你爬取了不需要的页面, 你可以 点这 删除它们.
->Running Crawls==>运行中的爬取
->Name<==>名字<
->Count<==>计数<
->Status<==>状态<
->Running<==>运行中<
"Terminate"=="终止"
"show link structure"=="显示链接结构"
"hide graphic"=="隐藏图形"
->Crawled Pages<==>抓取到的网页<
#-----------------------------
#File: CrawlMonitorRemoteStart.html
+no==否
+yes==是
#---------------------------
Recently started remote crawls in progress==最近启动的远端爬虫
Remote crawl start points, crawl is ongoing==远端爬虫开启点,爬虫运行中
@@ -1207,35 +736,16 @@ Remote crawl start points, finished:==远端爬虫开启点,已完成:
#-----------------------------
#File: CrawlProfileEditor_p.html
+Accept '?' URLs==接受'?'地址
+Crawler Steering==爬取控制
+Depth==深度
+no==否
+yes==是
#---------------------------
Crawl Profile Editor==爬取配置文件编辑器
->Crawl Profile Editor<==>爬取文件编辑<
->Crawler Steering<==>爬虫控制<
->Crawl Scheduler<==>爬取调度器<
->Scheduled Crawls can be modified in this table<==>请在下表中修改已安排的爬取<
Crawl profiles hold information about a crawl process that is currently ongoing.==爬取文件里保存有正在运行的爬取进程信息.
-#Crawl profiles hold information about a specific URL which is internally used to perform the crawl it belongs to.==Crawl Profile enthalten Informationen über eine spezifische URL, welche intern genutzt wird, um nachzuvollziehen, wozu der Crawl gehört.
-#The profiles for remote crawls, indexing via proxy and snippet fetches==Die Profile für Remote Crawl, Indexierung per Proxy und Snippet Abrufe
-#cannot be altered here as they are hard-coded.==können nicht verändert werden, weil sie "hard-coded" sind.
#Crawl Profile List
Crawl Profile List==爬取文件列表
-Crawl Thread<==爬取线程<
->Collections<==>搜集<
->Status<==>状态<
->Depth<==>深度<
-Must Match<==必须匹配<
->Must Not Match<==>必须不符<
->Recrawl if older than<==>重新爬取如果老于<
->Domain Counter Content<==>域计数器内容<
->Max Page Per Domain<==>每个域中拥有最大页面<
->Accept==>接受
-URLs<==地址<
->Fill Proxy Cache<==>填充代理缓存<
->Local Text Indexing<==>本地文本索引<
->Local Media Indexing<==>本地媒体索引<
->Remote Indexing<==>远端索引<
-MaxAge<==最长寿命<
-no::yes==否::是
Running==运行中
"Terminate"=="终结"
Finished==已完成
@@ -1243,30 +753,26 @@ Finished==已完成
"Delete finished crawls"=="删除已完成的爬取进程"
Select the profile to edit==选择要修改的文件
"Edit profile"=="修改文件"
-An error occurred during editing the crawl profile:==修改爬取文件时发生错误:
-Edit Profile==修改文件
"Submit changes"=="提交改变"
#-----------------------------
#File: CrawlResults.html
+Domain==域名
+URLs==地址
#---------------------------
-Crawl Results<==爬取结果<
->Crawl Results Overview<==>爬取结果概况<
These are monitoring pages for the different indexing queues.==这是索引创建队列的监控页面.
-YaCy knows 5 different ways to acquire web indexes. The details of these processes (1-5) are described within the submenu's listed==YaCy使用5种不同的方式来获取网络索引. 详细描述显示在子菜单的进程(1-5)中,
-above which also will show you a table with indexing results so far. The information in these tables is considered as private,==以上列表也会显示目前的索引结果. 表中的信息是私有的,
+YaCy knows 5 different ways to acquire web indexes. The details of these processes (1-5) are described within the submenu's listed==YaCy使用5种不同的方式来获取网络索引. 详细描述显示在子菜单的进程(1-5)中,
+above which also will show you a table with indexing results so far. The information in these tables is considered as private,==以上列表也会显示目前的索引结果. 表中的信息是私有的,
so you need to log-in with your administration password.==所以你需要以管理员账户来查看.
-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==事件(6)是本地回执生成器的监控器, (1)的相反事件. 它也包含一个索引结果监控器, 但不是私有的.
+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==事件(6)是本地回执生成器的监控器, (1)的相反事件. 它也包含一个索引结果监控器, 但不是私有的.
since it shows crawl requests from other peers.==因为它显示了来自其他节点的爬取请求.
Case (7) occurs if pack files are imported==事件(7)发生在导入备份文件时
The image above illustrates the data flow initiated by web index acquisition.==上图解释了由网页索引查询发起的数据流.
Some processes occur double to document the complex index migration structure.==某些进程发生了两次以记录复杂的索引迁移结构.
-(1) Results of Remote Crawl Receipts==(1) 远端爬取回执的结果
+(1) Results of Remote Crawl Receipts==(1) 远端爬取回执的结果
This is the list of web pages that this peer initiated to crawl,==这是此节点发起爬取的网页列表,
but had been crawled by other peers.==但它们早已被 其他 节点爬取了.
This is the 'mirror'-case of process (6).==这是进程(6)的'镜像'事件.
-Use Case: You get entries here, if you start a local crawl on the 'Advanced Crawler' page and check the==用法: 你可在此获得词条, 当你在 '高级爬虫页面 上启动本地爬取并勾选
-'Do Remote Indexing'-flag, and if you checked the 'Accept Remote Crawl Requests'-flag on the 'Remote Crawling' page.=='执行远端索引'-标志时, 这需要你确保在 '远端爬取' 页面中勾选了'接受远端爬取请求'-标志.
Every page that a remote peer indexes upon this peer's request is reported back and can be monitored here.==远端节点根据此节点的请求编制索引的每个页面都会被报告回来,并且可以在此处进行监控.
(2) Results for Result of Search Queries==(2) 搜索查询结果报告页
This index transfer was initiated by your peer by doing a search query.==通过搜索, 此索引转移能被发起.
@@ -1279,7 +785,6 @@ the logic of the Global Distributed Hash Table.==你的节点是最适合存储
Use Case: This list may fill if you check the 'Index Receive'-flag on the 'Index Control' page==用法: 如果你在'索引控制'页面上选中'索引接收'-标志, 则此列表会填写
(4) Results for Proxy Indexing==(4) 代理索引结果
These web pages had been indexed as result of your proxy usage.==以下是由于使用代理而索引的网页.
-No personal or protected page is indexed==不包括私有或受保护网页
such pages are detected by Cookie-Use or POST-Parameters (either in URL or as HTTP protocol)==通过检测cookie用途和提交参数(链接或者HTTP协议)能够识别出此类网页,
and automatically excluded from indexing.==并在索引时自动排除.
Use Case: You must use YaCy as proxy to fill up this table.==用法: 必须把YaCy用作代理才能填充此表格.
@@ -1291,340 +796,176 @@ These web pages had been crawled by your own crawl task.==这些网页按照你
(6) Results for Global Crawling==(6)全球爬取结果
These pages had been indexed by your peer, but the crawl was initiated by a remote peer.==这些网页已被你的节点创建了索引, 但它们是被远端节点爬取的.
This is the 'mirror'-case of process (1).==这是进程(1)的'镜像'事件.
-Use Case: This list may fill if you check the 'Accept Remote Crawl Requests'-flag on the 'Remote Crawling' page==用法: 如果你在 '远端爬取' 页面勾选'接受远端爬取请求'-标记,此列表会填写
The stack is empty.==此栈为空.
-Statistics about #[domains]# domains in this stack:==此栈显示有关 #[domains]# 域的数据:
(7) Results from pack import==(7) 备份导入结果
These records had been imported from pack files in DATA/PACKS/load==这些记录从 DATA/PACKS/load 中的备份文件中导入
-Use Case: place files with dublin core metadata content into DATA/PACKS/load or use an index import method==将包含Dublin核心元数据的文件放在 DATA/PACKS/load 中, 或者使用索引导入方式
-(i.e. MediaWiki import, OAI-PMH retrieval)==(例如 MediaWiki 导入, OAI-PMH 导入)
->Domain==>域名
"delete all"=="全部删除"
-Showing all #[all]# entries in this stack.==显示栈中所有 #[all]# 词条.
-Showing latest #[count]# lines from a stack of #[all]# entries.==显示栈中 #[all]# 词条的最近
"clear list"=="清除列表"
->Executor==>执行者
->Modified==>已修改
->Words==>单词
->Title==>标题
"delete"=="删除"
->Collection==>收集
Blacklist to use==使用的黑名单
"del & blacklist"=="删除并拉黑"
-on the 'Settings'-page in the 'Proxy and Administration Port' field.==在'设置'-页面的'代理和管理端口'字段的上。
#-----------------------------
#File: CrawlStartExpert.html
+Do Remote Indexing==进行远端索引
#---------------------------
-YaCy '#[clientname]#': Crawl Start==YaCy '#[clientname]#': 爬取开启
Click on this API button to see a documentation of the POST request parameter for crawl starts.==单击此API按钮查看爬取启动的POST请求参数的文档。
Expert Crawl Start==高级爬取开启
Start Crawling Job:==开启爬取任务:
You can define URLs as start points for Web page crawling and start crawling here.==你可以在此指定网页爬取起始点的网址和开启爬取。
"Crawling" means that YaCy will download the given website, extract all links in it and then download the content behind these links.== "爬取中"意即YaCy会下载指定的网站, 并提取出其中的链接,接着下载链接中的全部内容。
This is repeated as long as specified under "Crawling Depth".==它将一直重复上述步骤,直到满足指定的"爬取深度"。
-A crawl can also be started using wget and the post arguments for this web page.==也可以使用此网页的wget和post参数开启爬取。
->Crawl Job<==>爬取任务<
A Crawl Job consist of one or more start point, crawl limitations and document freshness rules.==爬取任务由一个或多个起始点、爬取限制和文档更新规则构成。
->Start Point==>起始点
One Start URL or a list of URLs: (must start with http:// https:// ftp:// smb:// file://)==起始网址或网址列表: (必须以http:// https:// ftp:// smb:// file://开头)
Define the start-url(s) here. You can submit more than one URL, each line one URL please.==在此给定起始网址。你可以提交多个网址,请一个网址一行。
Each of these URLs are the root for a crawl start, existing start URLs are always re-loaded.==这些网址中每个都是爬取开始的起点,已存在的起始网址总是会被重新加载。
Other already visited URLs are sorted out as "double", if they are not allowed using the re-crawl option.==对其他已访问过的网址,如果基于重爬选项它们不被允许,则被标记为'重复'。
->From Link-List of URL<==>来自网址的链接列表<
From Sitemap==来自网站地图
From File (enter a path within your local file system)==来自文件 (输入一个本地文件系统路径)
->Crawler Filter==>爬虫过滤器
These are limitations on the crawl stacker. The filters will be applied before a web page is loaded.==这些是爬取堆栈器的限制。这些过滤器将在网页加载前被应用。
->Crawling Depth<==>爬取深度<
This defines how often the Crawler will follow links (of links..) embedded in websites.==此选项决定了爬虫将跟随嵌入网址中链接的深度。
0 means that only the page you enter under "Starting Point" will be added==0代表仅将"起始点"网址添加到索引。
to the index. 2-4 is good for normal indexing. Values over 8 are not useful, since a depth-8 crawl will==2-4是常规索引用的值。超过8的值没有用,因为深度为8的爬取将
index approximately 25.600.000.000 pages, maybe this is the whole WWW.==索引接近256亿个网页,这可能是整个互联网的内容。
also all linked non-parsable documents==包括全部链接中不可解析的文档
->Unlimited crawl depth for URLs matching with<==>对这些匹配的网址不不限制爬取深度<
->Maximum Pages per Domain<==>每个域名下最大网页数<
You can limit the maximum number of pages that are fetched and indexed from a single domain with this option.==使用此选项,你可以限制单个域名下爬取和索引的页面数。
You can combine this limitation with the 'Auto-Dom-Filter', so that the limit is applied to all the domains within==你可以将此设置与'Auto-Dom-Filter'结合起来, 以限制给定深度中所有域名。
the given depth. Domains outside the given depth are then sorted-out anyway.==超出深度范围的域名会被自动忽略。
->Use<==>使用<
-Page-Count<==页面数<
->misc. Constraints<==>其它限制<
A questionmark is usually a hint for a dynamic page. URLs pointing to dynamic content should usually not be crawled.==问号标记常用作动态网页的提示。指向动态内容的地址通常不应该被爬取。
However, there are sometimes web pages with static content that==然而,也有些含有静态网页地址也包含问号标记。
is accessed with URLs containing question marks. If you are unsure, do not check this to avoid crawl loops.==如果你不确定,不要勾选此项以防爬取陷入循环。
Following frames is NOT done by Gxxg1e, but we do by default to have a richer content. 'nofollow' in robots metadata can be overridden; this does not affect obeying of the robots.txt which is never ignored.==以下框架不是Gxxg1e制作的,但我们默认会制作更丰富的内容。robots元数据中的nofollow可被否决;这并不影响对无法忽视的robots.txt的遵守。
-Accept URLs with query-part ('?'): ==接受包含问号标记('?')的地址:
Obey html-robots-noindex:==遵守html-robots-noindex:
Obey html-robots-nofollow:==遵守html-robots-nofollow:
Media Type detection==媒体类型探测
Not loading URLs with unsupported file extension is faster but less accurate.==不加载包含不受支持文件扩展名的网址速度更快,但准确性更低。
Indeed, for some web resources the actual Media Type is not consistent with the URL file extension. Here are some examples:==实际上,对于某些网络资源,实际的媒体类型与网址中文件扩展名不一致。以下是一些例子:
-: the .de extension is unknown, but the actual Media Type of this page is text/html==: 这个.de扩展名未知,但此页面的实际媒体类型为text/html
-: the .com extension is not supported (executable file format), but the actual Media Type of this page is text/html==: 这个.com扩展名不受支持(可执行文件格式),但此页面的实际媒体类型为text/html
-: the .png extension is a supported image format, but the actual Media Type of this page is text/html==: 这个.png扩展名是一种受支持的图像格式,但该页面的实际媒体类型是text/html
Do not load URLs with an unsupported file extension==不加载具有不支持文件拓展名的地址
Always cross check file extension against Content-Type header==始终针对Content-Type标头交叉检查文件扩展名
->Load Filter on URLs<==>对地址加载过滤器<
-The filter is a regular expression.==这个过滤器是一个正则表达式。
-Example: to allow only urls that contain the word 'science', set the must-match filter to '.*science.*'. ==示例:要仅允许包含单词“science”的网址,请将“必须匹配”筛选器设置为'.*science.*'。
You can also use an automatic domain-restriction to fully crawl a single domain.==你还可以使用自动域名限制来完全爬取单个域名。
-Attention: you can test the functionality of your regular expressions using the Regular Expression Tester within YaCy.==注意:你可以使用YaCy中的正则表达式测试仪测试正则表达式的功能。
-> must-match<==>必须匹配<
-Restrict to start domain==限制起始域
-Restrict to sub-path==限制子路经
Use filter==使用过滤器
(must not be empty)==(不能为空)
-> must-not-match<==>必须排除<
->Load Filter on URL origin of links<==>在链接的地址上加载筛选器<
-The filter is a regular expression==这个过滤器是一个正则表达式
Example: to allow loading only links from pages on example.org domain, set the must-match filter to '.*example.org.*'.==示例:为只允许加载域名example.org网页中链接,将“必须匹配”筛选器设置为'.*example.org.*'。
->Load Filter on IPs<==>对IP加载过滤器<
->Must-Match List for Country Codes<==>国家代码必须匹配列表<
Crawls can be restricted to specific countries. This uses the country code that can be computed from==爬取可以限制在特定的国家。它使用的国家代码可以从存放网页的服务器的IP计算得出。
the IP of the server that hosts the page. The filter is not a regular expressions but a list of country codes, separated by comma.==过滤器不是正则表达式,而是国家代码列表,用逗号分隔。
->no country code restriction<==>没有国家代码限制<
->Use filter ==>使用过滤器
->Document Filter==>文档过滤器
These are limitations on index feeder. The filters will be applied after a web page was loaded.==这些是对索引供给器的限制。加载网页后过滤器才会被应用。
->Filter on URLs<==>地址过滤器<
-The filter is a regular expression==这个过滤器是一个正则表达式
that must not match with the URLs to allow that the content of the url is indexed.==匹配那些必须排除的网址,以允许对剩下网址的内容进行索引。
Filter on Content of Document (all visible text, including camel-case-tokenized url and title)==文档内容过滤器 (所有可见文本,包括驼峰大小写标记的网址和标题)
Filter on Document Media Type (aka MIME type)==文档媒体类型过滤器(又名MIME类型)
-that must match with the document Media Type (also known as MIME Type) to allow the URL to be indexed. ==对那些有必须匹配文档媒体类型(也称为MIME类型)的网址进行索引。
-Standard Media Types are described at the IANA registry.==IANA注册表中描述了标准媒体类型。
-Solr query filter on any active indexed field(s)==任何激活索引字段上的Solr查询过滤器
Each parsed document is checked against the given Solr query before being added to the index.==在添加到索引之前,将根据给定的Solr查询检查每个已解析的文档。
-The query must be written in respect to the standard Solr query syntax.==必须按照标准Solr查询语法编写查询。
The embedded local Solr index must be connected to use this kind of filter.==要使用这种过滤器,必须连接嵌入式本地Solr索引。
-You can configure this with the Index Sources & targets page.==你可以使用索引源目标页面对此进行配置。
->Content Filter==>内容过滤器
These are limitations on parts of a document. The filter will be applied after a web page was loaded.==这些是文档部分的限制.加载网页后将应用过滤器.
->Filter div or nav class names<==>div或nav类名过滤器<
->set of CSS class names<==>CSS类名收集<
-comma-separated list of <div> or <nav> element class names which should be filtered out==应过滤掉的<div>元素或<nav>类名的逗号分隔列表
->Clean-Up before Crawl Start==>爬取前清理
Clean up search events cache==清理搜索事件缓存
Check this option to be sure to get fresh search results including newly crawled documents. Beware that it will also interrupt any refreshing/resorting of search results currently requested from browser-side.==选中此选项以确保获得新包括新爬取文档的搜索结果.请注意,它也会中断当前从浏览器端请求的搜索结果的刷新/排序.
->No Deletion<==>不删除<
After a crawl was done in the past, document may become stale and eventually they are also deleted on the target host.==在过去完成爬取后,文档可能会过时,最终它们也会在目标服务器上被删除。
To remove old files from the search index it is not sufficient to just consider them for re-load but it may be necessary==若要从搜索索引中删除旧文件,仅考虑重新加载它们是不够的。
to delete them because they simply do not exist any more. Use this in combination with re-crawl while this time should be longer.==但可能有必要删除它们,因为它们已经不存在了。与重新爬取组合使用,而这一时间应该更长。
Do not delete any document before the crawl is started.==在爬取前不删除任何文档.
->Delete sub-path<==>删除子路径<
For each host in the start url list, delete all documents (in the given subpath) from that host.==对于启动URL列表中的每个服务器,从这些服务器中删除所有文档(在给定的子路径中).
->Delete only old<==>删除旧文件<
Treat documents that are loaded==认为加载于
-ago as stale and delete them before the crawl is started==前的文档是旧文档,在爬取前删除它们.
->Double-Check Rules==>重复检查规则
->No Doubles<==>无重复检查<
A web crawl performs a double-check on all links found in the internet against the internal database. If the same url is found again,==网页爬取参照自身数据库,对所有找到的链接进行重复性检查.如果链接重复,
then the url is treated as double when you check the 'no doubles' option. A url may be loaded again when it has reached a specific age,==并且'无重复'选项打开, 则被以重复链接对待.如果地址存在时间超过一定时间,
to use that check the 're-load' option.==并且'重加载'选项打开,则此地址会被重新读取.
Never load any page that is already known. Only the start-url may be loaded again.==切勿加载任何已知的页面.只有起始地址可能会被重新加载.
->Re-load<==>重加载<
-Treat documents that are loaded==认为加载于
- ago as stale and load them again. If they are younger, they are ignored.==前的文档是旧文档并重新加载它们.如果它们是新文档,不需要重新加载.
->Document Cache==>文档缓存
Store to Web Cache==存储到网页缓存
This option is used by default for proxy prefetch, but is not needed for explicit crawling.==这个选项默认打开, 并用于预爬取, 但对于精确爬取此选项无效.
Policy for usage of Web Cache==网页缓存使用策略
The caching policy states when to use the cache during crawling:==缓存策略即表示爬取时何时使用缓存:
no cache==无缓存
-never use the cache, all content from fresh internet source;==从不使用缓存内容, 全部从因特网资源即时爬取;
if fresh==如果有,更新
-use the cache if the cache exists and is fresh using the proxy-fresh rules;==如果缓存中存在并且是最新则使用代理刷新规则;
if exist==如果有,退出
-use the cache if the cache exist. Do no check freshness. Otherwise use online source;==如果缓存存在则使用缓存. 不检查是否最新. 否则使用最新源;
cache only==仅缓存
-never go online, use all content from cache. If no cache exist, treat content as unavailable==从不检查线上内容, 全部使用缓存内容. 如果缓存存在, 将其视为无效
->Robot Behaviour<==>机器人行为<
Use Special User Agent and robot identification==使用特殊的用户代理和机器人识别
Because YaCy can be used as replacement for commercial search appliances==因为YaCy可以替代商业搜索设备
(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.==因此,你可以在此处选择替代用户代理,它具有不同爬取时间,还可以伪装成另一个用户代理标识,并遵守相应的机器人规则。
->Enrich Vocabulary<==>丰富词汇<
->Scraping Fields<==>刮领域<
You can use class names to enrich the terms of a vocabulary based on the text content that appears on web pages. Please write the names of classes into the matrix.==你可以根据网页上显示的文本内容,使用类名丰富词汇表中的术语。请把类名写进表格。
-add new versions for each crawl==每次爬取添加新版本
->Image Creation<==>生成快照<
->Index Attributes==>索引属性
->Indexing<==>创建索引<
This enables indexing of the webpages the crawler will download. This should be switched on by default, unless you want to crawl only to fill the==这样就可以对爬虫将下载的网页进行索引。
Document Cache without indexing.==默认情况下,应该打开该选项,除非你只想爬取以填充文档缓存而不建立索引。
->index text<==>索引文本<
->index media<==>索引媒体<
->Do Remote Indexing<==>远端索引<
If checked, the crawler will contact other peers and use them as remote indexers for your crawl.==如果选中, 爬虫会联系其他节点, 并将其作为此次爬取的远端索引器.
If you need your crawling results locally, you should switch this off.==如果你仅想爬取本地内容, 请关闭此设置.
Only senior and principal peers can initiate or receive remote crawls.==仅高级节点和主节点能发起或者接收远端爬取.
-A YaCyNews message will be created to inform all peers about a global crawl==YaCy新闻消息中会将这个全球爬取通知其他节点,
so they can omit starting a crawl with the same start point.==然后他们才能以相同起始点进行爬取.
Remote crawl results won't be added to the local index as the remote crawler is disabled on this peer.==远程爬取结果不会添加到本地索引中,因为远程爬取程序在此节点上被禁用。
-You can activate it in the Remote Crawl Configuration page.==你可以在远程爬取配置页面中激活它。
Describe your intention to start this global crawl (optional)==在这填入你要进行全球爬取的目的(可选)
This message will appear in the 'Other Peer Crawl Start' table of other peers.==此消息会显示在其他节点的'其他节点爬取起始列表'中.
->Add Crawl result to collection(s)<==>添加爬取结果到收集<
A crawl result can be tagged with names which are candidates for a collection request.==爬取结果可以标记为收集请求的候选名称。
-These tags can be selected with the GSA interface using the 'site' operator.==这些标签可以通过GSA界面使用“网站”运算进行选择。
-To use this option, the 'collection_sxt'-field must be switched on in the Solr Schema==要使用此选项,必须在Solr模式中打开“collection_sxt”字段
->Time Zone Offset<==>时区偏移<
The time zone is required when the parser detects a date in the crawled web page. Content can be searched with the on: - modifier which==当解析器在已爬取的网页中检测到日期时,需要时区。
requires also a time zone when a query is made. To normalize all given dates, the date is stored in UTC time zone. To get the right offset==可以使用on:-修饰符搜索内容,在进行查询时,该修饰符还需要一个时区。为了规范化所有给定的日期,该日期存储在UTC时区中。
from dates without time zones to UTC, this offset must be given here. The offset is given in minutes;==要获得从没有时区的日期到UTC的正确偏移量,必须在此处给出该偏移量。偏移量以分钟为单位;
Time zone offsets for locations east of UTC must be negative; offsets for zones west of UTC must be positve.==UTC以东位置的时区偏移必须为负值;UTC以西区域的偏移量必须为正值。
-Start New Crawl Job==开始新爬取任务
#-----------------------------
#File: CrawlStartScanner_p.html
+hours==小时
#---------------------------
Network Scanner==网络扫描器
YaCy can scan a network segment for available http, ftp and smb server.==YaCy可以扫描一个网段以查找可用的http、ftp和smb服务器。
You must first select a IP range and then, after this range is scanned,==你须先指定IP范围,此后该范围将被扫描,
it is possible to select servers that had been found for a full-site crawl.==也可以选择已找到的服务器作全站点爬取。
-No servers had been detected in the given IP range #[iprange]#. Please enter a different IP range for another scan.==在给定IP范围内#[iprange]#,未检测到可用服务器,请重新指定IP范围。
-Please wait...==请稍候...
->Scan the network<==>扫描网络<
Scan Range==扫描范围
Scan sub-range with given host==扫描给定服务器的子域
-Full Intranet Scan:==局域网完全扫描:
Do not use intranet scan results, you are not in an intranet environment!==由于你当前不处于局域网环境, 请不要使用局域网扫描结果!
All known hosts in the search index (/31 subnet recommended!)==搜索索引中的所有已知服务器(推荐/31子网!)
->Subnet<==>子网<
->/31 (only the given host(s)) <==>/31 (仅限给定服务器) <
->/24 (254 addresses) <==>/24 (254个地址) <
->/20 (4064 addresses) <==>/20 (4064个地址) <
->/16 (65024 addresses)==>/16 (65024个地址)
->Time-Out<==>超时<
->Scan Cache<==>扫描缓存<
accumulate scan results with access type "granted" into scan cache (do not delete old scan result)==使用"已授权"的缓存以加速扫描(不要删除上次扫描结果)
->Service Type<==>服务类型<
->Scheduler<==>定期扫描<
run only a scan==运行一次扫描
scan and add all sites with granted access automatically. This disables the scan cache accumulation.==扫描并自动添加已授权站点. 此选项会关闭缓存扫描加速.
-Look every==每隔
->minutes<==>分<
->hours<==>时<
->days<==>天<
again and add new sites automatically to indexer.==再次检视, 并自动添加新站点到索引器中.
Sites that do not appear during a scheduled scan period will be excluded from search results.==周期扫描中未上线的站点会被自动排除.
"Scan"=="扫描"
#-----------------------------
#File: CrawlStartSite.html
+Path==路径
#---------------------------
-YaCy '#[clientname]#': Crawl Start==YaCy '#[clientname]#': 爬取开启
Site Crawling==站点爬取
Site Crawler:==站点爬虫:
Download all web pages from a given domain or base URL.==从给定域名或者网址中下载所有网页。
Site Crawl Start==开始爬取站点
->Site<==>站点<
Start URL (must start with http:// https:// ftp:// smb:// file://)==起始地址 (必须以 http:// https:// ftp:// smb:// file://开头)
Link-List of URL==网址列表
Sitemap URL==网站地图地址
->Path<==>路径<
load all files in domain==载入域名下全部文件
load only files in a sub-path of given url==仅载入给定域名子路径中的文件
->Limitation<==>限制<
-not more than <==不超过<
->documents<==>文件<
->Collection<==>收集<
->Start<==>开启<
"Start New Crawl"=="开启新的爬取"
-Hints<==提示<
->Crawl Speed Limitation<==>爬取速度限制<
- No more that four pages are loaded from the same host in one second (not more that 120 document per minute) to limit the load on the target server.==每秒最多从同一服务器中载入4个页面(每分钟不超过120个文件)以减少对目标服务器影响。
->Target Balancer<==>目标平衡器<
A second crawl for a different host increases the throughput to a maximum of 240 documents per minute since the crawler balances the load over all hosts.==因爬虫会平衡全部服务器的负载,对于不同服务器的二次爬取, 生产量会上升到每分钟最多240个文件。
->High Speed Crawling<==>高速爬取<
A 'shallow crawl' which is not limited to a single host (or site)==当目标服务器数量很多时, 不局限于单个服务器(或站点)的'浅爬取'模式
can extend the pages per minute (ppm) rate to unlimited documents per minute when the number of target hosts is high.==会将生产量上升到每分钟无限页面数(ppm)。
-This can be done using the Expert Crawl Start servlet.==可在专家爬虫中开启。
->Scheduler Steering<==>调度器控制<
-The scheduler on crawls can be changed or removed using Automation.==可以使用API控制改变或删除爬虫调度器。
#-----------------------------
#File: DictionaryLoader_p.html
+Action==动作
+Knowledge Loader==知识加载器
+deactivated==无效
#---------------------------
->Knowledge Loader<==>知识加载器<
YaCy can use external libraries to enable or enhance some functions. These libraries are not==你可以使用外部插件来增强一些功能. 考虑到程序大小问题,
included in the main release of YaCy because they would increase the application file too much.==这些插件并未被包含在主程序中.
You can download additional files here.==你可以在这下载扩展文件.
#Geolocalization
->Geolocalization<==>位置定位<
Geolocalization will enable YaCy to present locations from OpenStreetMap according to given search words.==根据关键字, YaCy能从OpenStreetMap获得的位置信息.
->GeoNames<==>位置<
#Suggestions
->Suggestions<==>建议<
#Synonyms
->Synonyms<==>同义词<
-Dictionary Loader==功能扩展
-With this file it is possible to find cities with a population > 1000 all over the world.==使用此文件能够找到全世界平均人口大于1000的城市.
->Download from<==>下载来源<
->Storage location<==>存储位置<
-#>Status<==>Status<
->not loaded<==>未加载<
->loaded<==>已加载<
-:deactivated==:已停用
->Action<==>动作<
->Result<==>结果<
"Load"=="加载"
"Deactivate"=="停用"
"Remove"=="卸载"
"Activate"=="启用"
->loaded and activated dictionary file<==>加载并启用插件<
->loading of dictionary file failed: #[error]#<==>读取插件失败: #[error]#<
->deactivated and removed dictionary file<==>停用并卸载插件<
->cannot remove dictionary file: #[error]#<==>卸载插件失败: #[error]#<
->deactivated dictionary file<==>停用插件<
->cannot deactivate dictionary file: #[error]#<==>停用插件失败: #[error]#<
->activated dictionary file<==>已启用插件<
->cannot activate dictionary file: #[error]#<==>启用插件失败: #[error]#<
-#>OpenGeoDB<==>OpenGeoDB<
->With this file it is possible to find locations in Germany using the location (city) name, a zip code, a car sign or a telephone pre-dial number.<==>使用此插件, 则能通过查询城市名, 邮编, 车牌号或者电话区号得到德国任何地点的位置信息.<
#-----------------------------
#File: Help.html
#---------------------------
->Tutorial==>教学
twitter this video==推特这个视频
-Download from Vimeo==从Vimeo下载
More Tutorials==更多教学
-Please see the tutorials on==请参阅教程
YaCy: Tutorial==YaCy: 教程
-YaCy: Help==YaCy: 帮助
Tutorial==新手教程
-You are using the administration interface of your own search engine==你正在搜索引擎的管理界面
-You can create your own search index with YaCy==你可以用YaCy创建属于自己的搜索索引
-To learn how to do that, watch one of the demonstration videos below==观看以下demo视频以了解更多
#-----------------------------
#File: index.html
+Images==图片
+Search==搜索
#---------------------------
-YaCy '#[clientname]#': Search Page==YaCy '#[clientname]#':搜索页面
->Search<==>搜索<
- Text == 文本
- Images == 图片
- Audio == 音频
- Video == 视频
- Applications== 应用
more options...==更多选项...
->Results per page<==>每页显示结果<
->Resource<==>来源<
->the peer-to-peer network<==>P2P网络<
->only the local index<==>仅本地索引<
->Prefer mask<==>偏好过滤<
Constraints:==限制:
->only index pages<==>仅索引页<
->Media search<==>媒体搜索<
-Extend media search results (images, videos or applications specific) to pages including such medias (provides generally more results, but eventually less relevant).==将媒体搜索结果(特定于图像、视频或应用程序)扩展到包含此类媒体的页面(通常提供更多结果,但最终相关性较低)。
-> Extended==> 拓展
-Strictly limit media search results (images, videos or applications specific) to indexed documents matching exactly the desired content domain.==严格将媒体搜索结果(特定于图像、视频或应用程序)限制为与所需内容域完全匹配的索引文档。
-> Strict==> 严格
->Query Operators<==>查询运算符<
->restrictions<==>限制<
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>的网址
@@ -1635,78 +976,30 @@ only pages with <date> in content==仅内容包含<date>的页面
only pages with a date between <date1> and <date2> in content==内容中只有日期介于<date1>和<date2>之间的页面
only pages with keyword anotation containing <phrase>==仅包含包含<phrase>的关键字注释的页面
only resources from http or https servers==仅限来自http或https服务器的资源
-only resources from ftp servers (they are rare, crawl them yourself==只有来自ftp服务器的资源(它们很少见,请自己抓取)
-only resources from smb servers (Intranet Indexing must be selected)==仅限来自smb服务器的资源(必须选择内网索引)
-only files from a local file system (Intranet Indexing must be selected)==仅来自本地文件系统的文件(必须选择内网索引)
->spatial restrictions<==>空间限制<
only documents having location metadata (geographical coordinates)==仅包含位置元数据(地理坐标)的文档
only documents within a square zone embracing a circle of given radius (in decimal degrees) around the specified latitude and longitude (in decimal degrees)==仅限于包含指定经纬度(十进制度数)周围给定半径(十进制度数)圆圈的正方形区域内的文档
->ranking modifier<==>排名修饰符<
sort by date (latest first)==按日期排序(最新优先)
multiple words shall appear near==多个单词应出现在附近
"" (doublequotes)=="" (双引号)
/language/<lang>==/language/<语言>
-prefer given language (an ISO 639-1 2-letter code)==首选给定语言(ISO 639-1的2字母代码)
->heuristics<==>启发式<
->add search results from external opensearch systems<==>从外部开放搜索系统添加搜索结果<
->Search Navigation<==>搜索导航<
->keyboard shortcuts<==>键盘快捷键<
->Access key<==>访问键<
-> modifier + n<==> 修饰语 + n<
->next result page<==>下页结果<
-> modifier + p<==> 修饰语 + p<
->previous result page<==>上页结果<
->automatic result retrieval<==>自动结果检索<
->browser integration<==>浏览器集成<
after searching, click-open on the default search engine in the upper right search field of your browser and select 'Add "YaCy Search.."'==搜索完成后,单击浏览器右上角搜索字段中默认搜索引擎上的“打开”,然后选择'添加YaCy搜索..'
->search as rss feed<==>作为rss源搜索<
-click on the red icon in the upper right after a search. this works good in combination with the '/date' ranking modifier. See an example.==搜索后点击右上角的红色图标。这与“/date”排名修饰符结合使用效果很好。看一个例子。
->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: IndexBrowser_p.html
+Path==路径
+URLs==地址
#---------------------------
Index Browser==索引浏览器
-Browse the index of #[ucount]# documents.== 浏览来自 #[ucount]# 篇文档的索引.
-Enter a host or an URL for a file list or view a list of==输入服务器或者地址来查看文件列表,它们来自
->all hosts<==>全部服务器<
->only hosts with urls pending in the crawler<==>只是在爬虫中地址待处理的服务器<
-> or <==> 或 <
->only with load errors<==>只有加载错误的服务器<
Host/URL==服务器/地址
Browse Host==浏览服务器
"Delete Subpath"=="删除子路径"
-Browser for==浏览器关于
"Re-load load-failure docs (404s etc)"=="重新加载具有错误的文档(404s 等)"
-Confirm Deletion==确认删除
->Host List<==>服务器列表<
->Count Colors:<==>计数颜色:<
Documents without Errors==没有错误的文档
Pending in Crawler==在爬虫中待处理
-Crawler Excludes<==爬虫排除<
-Load Errors<==加载错误<
-documents stored for host: #[hostsize]#==该服务器储存的文档: #[hostsize]#
-documents stored for subpath: #[subpathloadsize]#==该子路径储存的文档: #[subpathloadsize]#
-unloaded documents detected in subpath: #[subpathdetectedsize]#==子路径中探测到但未加载的文档: #[subpathdetectedsize]#
->Path<==>路径<
->stored<==>储存的<
->linked<==>连接的<
->pending<==>带处理的<
->excluded<==>排除的<
->failed<==>失败的<
-Show Metadata==显示元数据
link, detected from context==从内容中探测到的连接
->indexed<==>索引的<
->loading<==>加载中<
-Outbound Links, outgoing from #[host]# - Host List==出站链接,从#[host]#中传出 - 服务器列表
-Inbound Links, incoming to #[host]# - Host List==入站链接,传入#[host]# - 服务器列表
-'number of documents about this date'=='在这个日期的文件数量'
-"show link structure graph"=="展示连接结构图"
-Host has load error(s)==服务器有加载错误项
Administration Options==管理选项
Delete all==全部删除
->Load Errors<==>加载错误<
from index==来自索引
"Delete Load Errors"=="删除加载错误项"
#-----------------------------
@@ -1714,81 +1007,23 @@ from index==来自索引
#File: IndexControlRWIs_p.html
#---------------------------
Reverse Word Index Administration==反向词索引管理
-The local index currently contains #[wcount]# reverse word indexes==本地索引包含#[wcount]#个反向词索引
RWI Retrieval (= search for a single word)==反向词检索(=搜索单个词)
-Retrieve by Word:<==按单词检索:<
"Show URL Entries for Word"=="显示单词相关的地址"
-Retrieve by Word-Hash==按单词Hash值检索
"Show URL Entries for Word-Hash"=="显示单词Hash值相关的地址"
->Limitations<==>限制<
->Index Reference Size<==>反向词索引大小<
No reference size limitation (this may cause strong CPU load when words are searched that appear very often)==没有索引大小限制(当搜索经常出现的单词时,这可能会导致CPU负载过大)
Limitation of number of references per word:==每个单词的索引数量限制:
(this causes that old references are deleted if that limit is reached)==(这会导致如果达到该限制,旧的索引将被删除)
->Set References Limit<==>设置索引限制<
-Select Segment:==选择分段:
"Generate List"=="生成列表"
-Cleanup==清理
->Index Deletion<==>删除索引<
->Delete Search Index<==>删除搜索索引<
-Stop Crawler and delete Crawl Queues==停止爬虫并删除crawl队列
-Delete HTTP & FTP Cache==删除HTTP & FTP缓存
-Delete robots.txt Cache==删除robots.txt缓存
-Delete cached snippet-fetching failures during search==删除已缓存的错误信息
-"Delete"=="删除"
-No entry for word '#[word]#'==无'#[word]#'的对应词条
-No entry for word hash==无词条对应
-Search result==搜索结果
-total URLs==全部URL
-appearance in==出现在
-in link type==链接类型
-document type==文件类型
-
description
==
描述
-
title
==
标题
-
creator
==
创建者
-
subject
==
主题
-
url
==
URL
-
emphasized
==
高亮
-
image
==
图片
-
audio
==
音频
-
video
==
视频
-
app
==
应用
-index of==索引
->Selection==>选择
Display URL List==显示URL列表
-Number of lines==行数
all lines==全部
"List Selected URLs"=="列出选中URL"
Transfer RWI to other Peer==传递RWI给其他节点
-Transfer by Word-Hash==按字Hash值传递
"Transfer to other peer"=="传递"
-to Peer==指定节点
-
select==
选择
-or enter a hash==或者输入节点的Hash值
-Sequential List of Word-Hashes==字Hash值的顺序列表
No URL entries related to this word hash==无对应入口地址对于字Hash
->#[count]# URL entries related to this word hash==>#[count]# 个入口地址与此字Hash相关
-Resource==资源
Negative Ranking Factors==负向排名因素
Positive Ranking Factors==正向排名因素
Reverse Normalized Weighted Ranking Sum==反向常规加权排名和
-hash==Hash
-dom length==域长度
-ybr==YBR
#url comps
-url length==URL长度
-pos in text==文中位置
-pos of phrase==短语位置
-pos in phrase==在短语中位置
-word distance==字间距离
-
authority
==
权限
-
date
==
日期
-words in title==标题字数
-words in text==内容字数
-local links==本地链接
-remote links==远端链接
-hitcount==命中数
-#props==
unresolved URL Hash==未解析URL Hash值
Word Deletion==删除关键字
Deletion of selected URLs==删除选中URL
@@ -1804,60 +1039,27 @@ Blacklist Extension==黑名单扩展
#-----------------------------
#File: IndexControlURLs_p.html
+"Delete"=="删除"
+Cleanup==清除
+Click the API icon to see an example call to the search rss API.==点击API图标查看调用rss API的示例。
+Delete HTTP & FTP Cache==删除HTTP & FTP 缓存
+Delete robots.txt Cache==删除robots.txt缓存
+Index Deletion==索引删除
+URL Database Administration==地址数据库管理
#---------------------------
-URL Database Administration<==地址数据库管理<
-The local index currently contains #[ucount]# URL references==目前本地索引含有#[ucount]#个地址索引
#URL Retrieval
-URL Retrieval<==地址检索<
-Retrieve by URL:<==按地址检索:<
-Retrieve by URL-Hash==按地址Hash值检索
"Show Details for URL"=="显示地址细节"
"Show Details for URL-Hash"=="显示地址Hash细节"
#Cleanup
->Cleanup<==>清理<
->Index Deletion<==>删除索引<
-> Delete local search index (embedded Solr and old Metadata)<==> 删除本地搜索索引(嵌入 Solr 和旧元数据)<
-> Delete remote solr index<==> 删除远程solr索引<
-> Delete RWI Index (DHT transmission words)<==> 删除反向词索引(DHT传输词)<
-> Delete Citation Index (linking between URLs)<==> 删除引文索引(地址之间的链接)<
-> Delete First-Seen Date Table<==> 删除首次出现日期表<
-> Delete HTTP & FTP Cache<==> 删除HTTP & FTP缓存<
-> Stop Crawler and delete Crawl Queues<==> 停止爬虫并删除爬虫队列<
-> Delete robots.txt Cache<==> 删除robots.txt缓存<
-value="Delete"==value="删除"
->Optimize Solr<==>优化Solr<
-merge to max. segments==合并到最大 个分段
"Optimize Solr"=="优化Solr"
->Reboot Solr Core<==>重启Solr核<
"Shut Down and Re-Start Solr"=="关闭并重启Solr"
-Select Segment:==选择分段:
-"Generate List"=="生成列表"
Statistics about top-domains in URL Database==地址数据库中顶级域数据
Show top==显示全部URL中的
domains from all URLs.==个域.
"Generate Statistics"=="生成数据"
-Statistics about the top-#[domains]# domains in the database:==数据库中头 #[domains]# 个域的数据:
"delete all"=="全部删除"
Domain==域名
URLs==地址
-Sequential List of URL-Hashes==地址Hash顺序列表
-Loaded URL Export==导出已加载地址
-Export File==导出文件
-URL Filter==地址过滤器
-Export Format==导出格式
-Only Domain:==仅域名:
-Full URL List:==完整地址列表:
-Plain Text List (domains only)==文本文件(仅域名)
-HTML (domains as URLs, no title)==HTML (超链接格式的域名, 不包括标题)
-#Full URL List (high IO)==Vollständige URL Liste (hoher IO)
-Plain Text List (URLs only)==文本文件(仅地址)
-HTML (URLs with title)==HTML (带标题的地址)
-#XML (RSS)==XML (RSS)
-"Export URLs"=="导出地址"
-Export to file #[exportfile]# is running .. #[urlcount]# URLs so far==正在导出到 #[exportfile]# .. 已经导出 #[urlcount]# 个URL
-Finished export of #[urlcount]# URLs to file==已完成导出 #[urlcount]# 个地址到文件
-Export to file #[exportfile]# failed:==导出到文件 #[exportfile]# 失败:
-No entry found for URL-hash==未找到合适词条对应地址Hash
"Show Content"=="显示内容"
"Delete URL"=="删除地址"
this may produce unresolved references at other word indexes but they do not harm==这可能和其他关键字产生未解析关联, 但是这并不影响系统性能
@@ -1866,61 +1068,41 @@ delete the reference to this url at every other word where the reference exists
#-----------------------------
#File: IndexCreateLoaderQueue_p.html
+Depth==深度
#---------------------------
Loader Queue==加载器队列
The loader set is empty==该加载器集合为空
-There are #[num]# entries in the loader set:==加载器中有 #[num]# 个词条:
->Initiator<==>发起者<
->Depth<==>深度<
->Status<==>状态<
->URL<==>地址<
#-----------------------------
#File: IndexCreateParserErrors_p.html
+Rejected URLs==被拒绝地址
+Time==时间
#---------------------------
->Rejected URLs<==>被拒绝地址<
-Parser Errors==解析错误
-Rejected URL List:==被拒绝地址列表:
-There are #[num]# entries in the rejected-urls list.==在被拒绝地址列表中有 #[num]# 个词条.
-Showing latest #[num]# entries.==显示最近的 #[num]# 个词条.
"show more"=="更多"
"clear list"=="清除列表"
-There are #[num]# entries in the rejected-queue:==被拒绝队列中有 #[num]# 个词条:
-Executor==执行器
->Time<==>时间<
->URL<==>地址<
Fail-Reason==错误原因
#-----------------------------
#File: IndexCreateQueues_p.html
+Depth==深度
#---------------------------
-Crawl Queue<==爬取队列<
Click on this API button to see an XML with information about the crawler latency and other statistics.==单击此API按钮以查看包含有关爬虫程序延迟和其他统计信息的XML。
This crawler queue is empty==爬取队列为空
Delete Entries:==删除词条:
->Initiator<==>发起者<
->Profile<==>资料<
->Depth<==>深度<
Modified Date==修改日期
Anchor Name==锚点名
->URL<==>地址<
"Delete"=="删除"
->Count<==>计数<
Delta/ms==延迟/ms
->Host<==>服务器<
#-----------------------------
#File: IndexDeletion_p.html
+Index Deletion==索引删除
+hours==小时
#---------------------------
-Index Deletion<==索引删除<
-The search index contains #[doccount]# documents. You can delete them here.==搜索索引包含#[doccount]#篇文档。你可以在这儿删除它们。
Deletions are made concurrently which can cause that recently deleted documents are not yet reflected in the document count.==删除是同步进行的,这可能导致最近删除的文档还没有反映在文档计数中。
Index deletion will not immediately reduce the storage size on disk because entries are only marked as deleted in a first step.==索引删除不会立即减少磁盘上的存储大小,因为条目仅在第一步中被标记为已删除。
-The storage size will later on shrink by itself if new documents are indexed or you can force a shrinking by performing an "Optimize Solr" procedure.==如果新文档被索引,存储大小将在稍后自行缩小,或者你可以通过执行优化Solr过程强制缩小。
-Delete by URL Matching<==通过URL匹配删除<
Delete all documents within a sub-path of the given urls. That means all documents must start with one of the url stubs as given here.==删除给定网址的子路径中的所有文档. 这意味着所有文档必须以此处给出的其中一个url存根开头.
One URL stub, a list of URL stubs or a regular expression==一个URL存根, 一个URL存根列表 或一条正则表达式
-Matching Method<==匹配方法<
sub-path of given URLs==给定URL的子路径
matching with regular expression==与正则表达式匹配
"Simulate Deletion"=="模拟删除"
@@ -1928,72 +1110,31 @@ matching with regular expression==与正则表达式匹配
"Engage Deletion"=="真正删除"
"simulate a deletion first to calculate the deletion count"=="首先请模拟删除以计算删除数量"
"engaged"=="删除了"
-selected #[count]# documents for deletion==选择 #[count]# 篇文档以删除
-deleted #[count]# documents==删除了 #[count]# 篇文档
-Delete by Age<==按年龄删除<
Delete all documents which are older than a given time period.==删除所有超过给定时间段的文档.
-Time Period<==时间段<
All documents older than==所有文件年龄超过
-years<==年<
-months<==月<
-days<==日<
-hours<==小时<
-Age Identification<==年龄识别<
->load date==>加载日期
->last-modified==>上次修改
-Delete Collections<==删除收集<
Delete all documents which are inside specific collections.==删除特定收集中的所有文档.
-Not Assigned<==未分配<
Delete all documents which are not assigned to any collection==删除未分配给任何收集的所有文档
-, separated by ',' (comma) or '|' (vertical bar); or==, 分隔按','(逗号)或'|'(垂直条); 或
->generate the collection list...==>生成收集列表...
-Assigned<==分配的<
Delete all documents which are assigned to the following collection(s)==删除分配给以下收集的所有文档
-Delete by Solr Query<==通过Solr查询删除<
This is the most generic option: select a set of documents using a solr query.==这是最通用的选项: 使用solr查询选择一组文档.
#-----------------------------
#File: IndexExport_p.html
#---------------------------
->Index Export<==>索引导出<
->The local index currently contains==> 本地索引目前包含
-documents.<==文档<
#Loaded URL Export
->Loaded URL Export<==>加载的地址导出<
->Export Path<==>导出路径<
->URL Filter<==>地址过滤器<
->query<==>查询<
->maximum age (seconds, -1 = unlimited)<==>最大年龄(秒, -1=无限制)<
->Export Format<==>导出格式<
->Full Data Records:<==>完整数据记录:<
->Full URL List:<==>完整地址列表:<
->Only Domain:<==>仅仅域名:<
->Only Text:<==>仅仅文本:<
"Export"=="导出"
#Dump and Restore of Solr Index
->Dump and Restore of Solr Index<==>Solr索引的转储和恢复<
-"Create Dump"=="创建转储"
->Dump File<==>转储文件<
-"Restore Dump"=="恢复转储"
#-----------------------------
#File: IndexFederated_p.html
+"Set"=="设置"
#---------------------------
Index Sources & Targets==索引来源&目标
YaCy supports multiple index storage locations.==YaCy支持多地索引储存。
As an internal indexing database a deep-embedded multi-core Solr is used and it is possible to attach also a remote Solr.==内部索引数据库使用了深度嵌入式多核Solr,并且还可以附加远端Solr。
->Solr Search Index<==>Solr搜索索引<
-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 Schema Editor.==Solr存储主搜索索引。它是两个核心的所在地,默认的'collection1'核心用于文档,'webgraph'核心用于网络结构图。可以在模式编辑器中编辑有关已用Solr字段的详细信息。
->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 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 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运行
@@ -2005,10 +1146,6 @@ support peer-to-peer index transmission (DHT RWI index)==支持点对点索引
#---------------------------
MediaWiki Dump Import==MediaWiki转储导入
No import thread is running, you can start a new thread here==当前无运行导入任务, 不过你可以在这开始
-Bad input data:==损坏数据:
-MediaWiki Dump File Selection: select a 'bz2' file==MediaWiki备份文件: 选择一个 'bz2' 文件
-You can import MediaWiki dumps here. An example is the file==你可以在这导入MediaWiki副本副本. 示例
-Dumps must be in XML format and may be compressed in gz or bz2. Place the file in the YaCy folder or in one of its sub-folders.==副本文件必须是XML格式并用bz2压缩的.将其放进YaCy目录或其子目录中.
"Import MediaWiki Dump"=="导入MediaWiki备份"
When the import is started, the following happens:==:开始导入时, 会进行以下工作
The dump is extracted on the fly and wiki entries are translated into Dublin Core data format. The output looks like this:==备份文件即时被解压, 并被译为Dublin核心元数据格式:
@@ -2020,80 +1157,55 @@ You can recycle processed pack files by moving them from /DATA/PACKS/loaded to /
Import Process==导入进程
Thread:==线程:
Processed:==已完成:
-Wiki Entries==百科词条
Speed:==速度:
-articles per second<==文章/秒<
Running Time:==运行时间:
-hours,==小时,
-minutes<==分<
Remaining Time:==剩余时间:
#-----------------------------
#File: IndexImportOAIPMH_p.html
#---------------------------
OAI-PMH Import==OAI-PMH导入
-Results from the import can be monitored in the indexing results for packs==导入结果监控
Single request import==单个导入请求
This will submit only a single request as given here to a OAI-PMH server and imports records into the index==向OAI-PMH服务器提交如下导入请求, 并将返回记录导入索引
"Import OAI-PMH source"=="导入OAI-PMH源"
Source:==源:
Processed:==已处理:
-records<==返回记录<
-#ResumptionToken:==ResumptionToken:
-Import failed:==导入失败:
Import all Records from a server==从服务器导入全部记录
Import all records that follow according to resumption elements into index==根据恢复元素导入服务器记录
"import this source"=="导入此源"
-::or ==::o或
"import from a list"=="从列表导入"
Import started!==已开始导入!
-Bad input data:==损坏数据:
#-----------------------------
#File: IndexImportOAIPMHList_p.html
#---------------------------
-List of #[num]# OAI-PMH Servers==#[num]# 个OAI-PMH服务器
"Load Selected Sources"=="加载选中源"
-OAI-PMH source import list==导入OAI-PMH源
-#OAI Source List==OAI Quellen Liste
->Source<==>源<
Import List==导入列表
-#>Thread<==>Thread<
-#>Source<==>Quelle<
->Processed Chunks<==>已处理 块<
->Imported Records<==>已导入 记录<
->Speed (records/second)==>速度 ==(记录/每秒)
#-----------------------------
#File: IndexImportWarc_p.html
+File:==文件:
#---------------------------
-Warc Import==Warc 导入
Web Archive File Import==Web存档文件导入
No import thread is running, you can start a new thread here==没有正在运行的导入线程,你可以在此处启动新线程
Warc File Selection: select an warc file (which may be gz compressed)==Warc文件选择:选择一个warc文件(可能是gz压缩的)
You can download warc archives for example here==你可以在此处下载warc档案
-Internet Archive==互联网档案
-Import Warc File==导入Warc文件
Import Process==导入流程
Thread:==线程:
Warc File:==Warc文件:
Processed:==处理好的:
-Entries==词条
Speed:==速度:
-pages per second==页/秒
Running Time:==运行时间:
-hours,==小时,
-minutes<==分钟<
Remaining Time:==剩余时间:
#-----------------------------
#File: IndexReIndexMonitor_p.html
+Field Re-Indexing==字段重新索引
+Rejected URLs==被拒绝地址
+Running==运行中
#---------------------------
-Field Re-Indexing<==字段重新索引<
In case that an index schema of the embedded/local index has changed, all documents with missing field entries can be indexed again with a reindex job.==如果嵌入式/本地索引的索引架构发生更改,则可以使用重新索引作业再次索引所有缺少字段条目的文档。
"refresh page"=="刷新页面"
-Documents in current queue<==当前队列中的文档<
-Documents processed<==已处理的文档<
current select query==当前选择查询
"start reindex job now"=="立即开始重新索引作业"
"stop reindexing"=="停止重新索引"
@@ -2101,8 +1213,6 @@ Remaining field list==剩余字段列表
reindex documents containing these fields:==重新索引包含这些字段的文档:
Re-Crawl Index Documents==重新抓取索引文档
Searches the local index and selects documents to add to the crawler (recrawl the document).==搜索本地索引并选择要添加到爬虫的文档(重新爬取文档)。
-This runs transparent as background job.==这作为后台作业透明运行。
-Documents are added to the crawler only if no other crawls are active==仅当没有其他爬取处于活动状态时,才会将文档添加到爬虫中
and are added in small chunks.==并以小块添加。
"start recrawl job now"=="立即开始重新抓取作业"
"stop recrawl job"=="停止重新抓取作业"
@@ -2110,38 +1220,11 @@ Re-Crawl Query Details==重新抓取查询详情
Documents to process==待处理的文档
Current Query==当前查询
Edit Solr Query==编辑Solr查询
-update==更新
to re-crawl documents selected with the given query.==重新抓取使用给定查询选择的文档。
Include failed URLs==包含失败的地址
->Field<==>字段<
->count<==>计数<
Re-crawl works only with an embedded local Solr index!==重新抓取仅适用于嵌入的本地Solr索引!
-Simulate==模拟
-Check only how many documents would be selected for recrawl==仅检查将选择多少文档进行重新抓取
-"Browse metadata of the #[rows]# first selected documents"=="浏览 #[rows]# 个第一个选定文档的元数据"
-document(s)#(/showSelectLink)# selected for recrawl.==document(s)#(/showSelectLink)# selected for recrawl.
->Solr query <==>Solr查询 <
-Set defaults==设置默认值
"Reset to default values"=="重置为默认值"
-Last #(/jobStatus)#Re-Crawl job report==最近的#(/jobStatus)#重新抓取作业报告
-Automatically refreshing==自动刷新
-An error occurred while trying to refresh automatically==尝试自动刷新时出错
The job terminated early due to an error when requesting the Solr index.==由于请求Solr索引时出错,作业提前终止。
->Status<==>状态<
-"Running"=="运行中"
-"Shutdown in progress"=="正在关闭"
-"Terminated"=="已终止"
-Running::Shutdown in progress::Terminated==运行中::正在关闭:已终止
->Query<==>查询<
->Start time<==>开启时间<
->End time<==>结束时间<
-URLs added to the crawler queue for recrawl==添加到爬虫队列以进行重新爬取的地址
->Recrawled URLs<==>已重新爬取的地址<
-URLs rejected for some reason by the crawl stacker or the crawler queue. Please check the logs for more details.==由于某种原因在抓取堆栈器或抓取器队列中被拒绝的地址。请检查日志以获取更多详细信息。
->Rejected URLs<==>已被拒绝的地址<
->Malformed URLs<==>格式错误的地址<
-"#[malformedUrlsDeletedCount]# deleted from the index"=="#[malformedUrlsDeletedCount]# deleted from the index"
-> Refresh<==> 刷新<
#-----------------------------
#File: IndexSchema_p.html
@@ -2149,7 +1232,6 @@ URLs rejected for some reason by the crawl stacker or the crawler queue. Please
Solr Schema Editor==Solr模式编辑器
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==如果您使用自定义 Solr 架构,您可以在YaCy默认属性名称的'自定义Solr字段名称'列中输入不同的字段名称
Select a core:==选择核心:
-the core can be searched at==核心可以在以下位置搜索
Active==激活
Attribute==属性
Custom Solr Field Name==自定义Solr字段名称
@@ -2159,41 +1241,28 @@ show all available==显示全部可用
show disabled==显示未激活
"Set"=="设置"
"reset selection to default"=="将选择值重置为默认值"
->Reindex documents<==>重新索引文档<
If you unselected some fields, old documents in the index still contain the unselected fields.==如果您取消选择某些字段,但索引中的旧文档仍包含取消选择的字段。
To physically remove them from the index you need to reindex the documents.==要从索引中实际删除它们,您需要重新索引文档。
Here you can reindex all documents with inactive fields.==在这里,您可以重新索引所有具有非活动字段的文档。
"reindex Solr"=="重新索引Solr"
-You may monitor progress (or stop the job) under IndexReIndexMonitor_p.html==您可以在IndexReIndexMonitor_p.html下监控进度(或停止工作)
#-----------------------------
#File: IndexShare_p.html
+"Set"=="设置"
#---------------------------
Index Sharing==索引共享
-The local index currently consists of (at least) #[wcount]# reverse word indexes and #[ucount]# URL references==本地索引目前包含(至少) #[wcount]# 反向词索引和 #[ucount]# 地址引用
-Index: ==索引:
distribute ==分发
- receive grant default: == 接受准许默认值:
receive==接受
- for each remote peer == 对每个远端节点
- links/minute == 链接/分钟
- words/minute == 反向词/分钟
-Set==设置
#-----------------------------
#File: Load_MediawikiWiki.html
#---------------------------
-YaCy '#[clientname]#': Configuration of a Wiki Search==YaCy'#[clientname]#':Wiki搜索配置
Integration in MediaWiki==MediaWiki整合
It is possible to insert wiki pages into the YaCy index using a web crawl on that pages.==使用网页爬取, 能将百科网页添加到YaCy主页中.
This guide helps you to crawl your wiki and to insert a search window in your wiki pages.==此向导帮助你爬取你的百科网页并在其中添加一个搜索框.
Retrieval of Wiki Pages==接收百科网页
The following form is a simplified crawl start that uses the proper values for a wiki crawl.==下栏是使用某一值的百科爬取起始点.
-Just insert the front page URL of your wiki.==请填入百科的地址.
-After you started the crawl you may want to get back==爬取开始后,
to this page to read the integration hints below.==你可能需要返回此页面阅读以下提示.
-URL of the wiki main page==百科主页地址
-This is a crawl start point==将作为爬取起始点
"Get content of Wiki: crawl wiki pages"=="获取百科内容: 爬取百科页面"
Inserting a Search Window to MediaWiki==在MediaWiki中添加搜索框
To integrate a search window into a MediaWiki, you must insert some code into the wiki template.==在百科模板中添加以下代码以将搜索框集成到MediaWiki中.
@@ -2203,115 +1272,60 @@ open skins/MonoBook.php==打开skins/MonoBook.php
find the line where the default search window is displayed, there are the following statements:==找到搜索框显示部分代码, 如下:
Remove that code or set it in comments using '<!--' and '-->'==删除以上代码或者用 '<!--' '-->' 将其注释掉
Insert the following code:==插入以下代码:
-Search with YaCy in this Wiki:==在此百科中使用YaCy搜索:
-value="Search"==value="搜索"
Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==用你自己的IP或者服务器名替代代码中给出的IP地址
You may want to change the default text elements in the code snippet==你可以更改代码中的文本元素
To see all options for the search widget, look at the more generic description of search widgets at==搜索框详细设置, 请参见
-the configuration for live search.==搜索栏集成: 即时搜索.
#-----------------------------
#File: Load_PHPBB3.html
#---------------------------
-Configuration of a phpBB3 Search==phpBB3搜索配置
Integration in phpBB3==phpBB3整合
It is possible to insert forum pages into the YaCy index using a database import of forum postings.==导入含有论坛帖子的数据库, 能在YaCy主页显示论坛内容.
This guide helps you to insert a search window in your phpBB3 pages.==此向导能帮助你在你的phpBB3论坛页面中添加搜索框.
Retrieval of phpBB3 Forum Pages using a database export==phpBB3论坛页面需使用数据库导出
Forum posting contain rich information about the topic, the time, the subject and the author.==论坛帖子中含有话题、时间、主题和作者等丰富信息.
This information is in an bad annotated form in web pages delivered by the forum software.==此类信息往往由论坛散播,并且对于搜索引擎来说,它们的标注很费解.
-It is much better to retrieve the forum postings directly from the database.==所以, 直接从数据库中获取帖子内容效果更好.
-This will cause that YaCy is able to offer nice navigation features after searches.==这会使得YaCy在每次搜索后提供较好引导特性.
-YaCy has a phpBB3 extraction feature, please go to the phpBB3 content integration servlet for direct database imports.==YaCy能够解析phpBB3关键字, 参见 phpBB3内容集成 直接导入数据库方法.
Retrieval of phpBB3 Forum Pages using a web crawl==接受phpBB3论坛页面的网页爬取
The following form is a simplified crawl start that uses the proper values for a phpbb3 forum crawl.==下栏是使用某一值的phpBB3论坛爬取起始点.
Just insert the front page URL of your forum. After you started the crawl you may want to get back==将论坛首页填入表格. 开始爬取后,
to this page to read the integration hints below.==你可能需要返回此页面阅读以下提示.
-URL of the phpBB3 forum main page==phpBB3论坛主页
-This is a crawl start point==这是爬取起始点
"Get content of phpBB3: crawl forum pages"=="获取phpBB3内容: 爬取论坛页面"
Inserting a Search Window to phpBB3==在phpBB3中添加搜索框
To integrate a search window into phpBB3, you must insert some code into a forum template.==在论坛模板中添加以下代码以将搜索框集成到phpBB3中.
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, that's right behind the
<div id="search-box">
statement==找到搜索框显示代码部分, 它们在
<div id="search-box">
下面
-Insert the following code right behind the div tag==在div标签后插入以下代码
-YaCy Forum Search==YaCy论坛搜索
-;YaCy Search==;YaCy搜索
Check all appearances of static IPs given in the code snippet and replace it with your own IP, or your host name==用你自己的IP或者服务器名替代代码中给出的IP地址
You may want to change the default text elements in the code snippet==你可以更改代码中的文本元素
To see all options for the search widget, look at the more generic description of search widgets at==搜索框详细设置, 请参见
-the configuration for live search.==der Seite 搜索栏集成: 即时搜索.
#-----------------------------
#File: Load_RSS_p.html
+Description==描述
+hours==小时
#---------------------------
-Configuration of a RSS Search==RSS搜索配置
-Loading of RSS Feeds<==加载RSS饲料<
RSS feeds can be loaded into the YaCy search index.==YaCy能够读取RSS饲料.
This does not load the rss file as such into the index but all the messages inside the RSS feeds as individual documents.==但不是直接读取RSS文件, 而是将RSS饲料中的所有信息分别当作单独的文件来读取.
URL of the RSS feed==RSS饲料地址
->Preview<==>预览<
"Show RSS Items"=="显示RSS词条"
->Indexing<==>创建索引<
Available after successful loading of rss feed in preview==仅在读取rss饲料后有效
"Add All Items to Index (full content of url)"=="将所有词条添加到索引(地址中的全部内容)"
->once<==>一次<
->load this feed once now<==>读取一次此饲料<
->scheduled<==>定时<
->repeat the feed loading every<==>读取此饲料每隔<
->minutes<==>分钟<
->hours<==>小时<
->days<==>天<
->collection<==>收集<
-> automatically.==>.
->List of Scheduled RSS Feed Load Targets<==>定时RSS饲料读取目标列表<
->Title<==>标题<
->URL/Referrer<==>地址/参照网址<
->Recording<==>正在记录<
->Last Load<==>上次读取<
->Next Load<==>将要读取<
->Last Count<==>目前计数<
->All Count<==>全部计数<
->Avg. Update/Day<==>每天平均更新次数<
"Remove Selected Feeds from Scheduler"=="删除选中饲料"
"Remove All Feeds from Scheduler"=="删除所有饲料"
->Available RSS Feed List<==>可用RSS饲料列表<
"Remove Selected Feeds from Feed List"=="删除选中饲料"
"Remove All Feeds from Feed List"=="删除所有饲料"
"Add Selected Feeds to Scheduler"=="添加选中饲料到定时任务"
->new<==>新<
->enqueued<==>已加入队列<
->indexed<==>已索引<
->RSS Feed of==>RSS饲料
->Author<==>作者<
->Description<==>描述<
->Language<==>语言<
->Date<==>日期<
->Time-to-live<==>TTL<
->Docs<==>文件<
->State<==><
-#>URL<==>URL<
"Add Selected Items to Index (full content of url)"=="添加选中词条到索引(地址中全部内容)"
#-----------------------------
#File: Messages_p.html
+Subject==主题
#---------------------------
->Messages==>短消息
-Date==日期
-From==来自
-To==发送至
->Subject==>主题
Action==动作
From:==来自:
To:==发送至:
Date:==日期:
-#Subject:==Betreff:
->view==>查看
reply==回复
->delete==>删除
Compose Message==撰写短消息
Send message to peer==发送消息至节点
"Compose"=="撰写"
@@ -2320,40 +1334,27 @@ inbox==收件箱
#-----------------------------
#File: MessageSend_p.html
+Message:==短消息:
#---------------------------
Send message==发送短消息
-You cannot send a message to==不能发送消息至
The peer does not respond. It was now removed from the peer-list.==远端节点未响应, 将从节点列表中删除.
-The peer ==peer
-is alive and responded:==可用:
-You are allowed to send me a message==你现在可以给我发送消息
-kb and an==kb和一个
-attachment ≤==附件 ≤
Your Message==你的短消息
Subject:==主题:
Text:==内容:
"Enter"=="发送"
"Preview"=="预览"
-You can use==你可以在这使用
-Wiki Code here.==Wiki Code .
Preview message==预览消息
The message has not been sent yet!==短消息未发送!
The peer is alive but cannot respond. Sorry.==节点属于活动状态但是无响应.
Your message has been sent. The target peer responded:==你的短消息已发送. 接收节点返回:
The target peer is alive but did not receive your message. Sorry.==抱歉, 接收节点属于活动状态但是没有接收到你的消息.
Here is a copy of your message, so you can copy it to save it for further attempts:==这是你的消息副本, 可被保存已备用:
-You cannot call this page directly. Instead, use a link on the Network page.==你不能直接使用此页面. 请使用 网络 页面的对应功能.
#-----------------------------
#File: Network.html
#---------------------------
-YaCy Search Network==YaCy搜索网络
-YaCy Network<==YaCy网络<
The information that is presented on this page can also be retrieved as XML.==此页信息也可表示为XML.
Click the API icon to see the XML.==点击API图标查看XML.
-To see a list of all APIs==获取所有API
-please visit the==请访问
-API wiki page==API百科页面
Network Overview==网络一览
Active Principal and Senior Peers==主动 骨干 和 高级 节点
Passive Senior Peers==被动 高级 节点
@@ -2363,113 +1364,41 @@ Network History==网络历史
Count of all Active Peers Per Day in the last week, scale = 1d==过去1周内每天所有主动节点数, 尺度 = 1天
Count of all Active Peers Per Week in the last 30d, scale = 7d==过去30天内每周所有主动节点数, 尺度 = 7天
Count of all Active Peers Per Month in the last 365d, scale = 30d==过去365天中每月所有主动节点数, 尺度 = 30天
-Active Principal and Senior Peers in '#[networkName]#' Network== '#[networkName]#' 网络中的主动骨干高级节点
-Passive Senior Peers in '#[networkName]#' Network== '#[networkName]#' 网络中的被动高级节点
-Junior Peers (a fragment) in '#[networkName]#' Network=='#[networkName]#' 网络中的初级(碎片)节点
Manually contacting Peer==手动联系节点
Active Senior==主动高级
Passive Senior==被动高级
Junior (fragment)==初级(碎片)
->Network<==>网络<
->Online Peers<==>在线节点<
->Number of Documents<==>文件 数目<
-Indexing Speed:==索引速度:
-Pages Per Minute (PPM)==页面/分钟(PPM)
-Query Frequency:==请求频率:
-Queries Per Hour (QPH)==请求/小时(QPH)
->Today<==>今天<
->Last Hour<==>1小时前<
->Last Week<==>最近一周<
->Last Month<==>最近一月<
->Now<==>现在<
->Active<==>活动<
->Passive<==>被动<
->Potential<==>潜在<
->This Peer<==>本机节点<
-no remote #[peertype]# peer for this list known==当前列表中无远端 #[peertype]# 节点.
-Showing #[num]# entries from a total of #[total]# peers.==显示全部 #[total]# 个节点中的 #[num]# 个.
send Message/ show Profile/ edit Wiki/ browse Blog==发送消息(m)/ 显示资料(p)/ 编辑百科(w)/ 浏览博客(b)
Search for a peername (RegExp allowed)==搜索节点名称(允许正则表达式)
"Search"=="搜索"
Name==名称
-Address==地址
-#Hash==Hash
-Type==类型
-Release/ SVN==YaCy版本/ SVN
Last Seen==最后 上线
Location==位置
->URLs for Remote Crawl<==>用于 远端 爬取的URL<
-Offset==偏移
-Send message to peer==发送消息至节点
-View profile of peer==查看节点资料
-Read and edit wiki on peer==查看并编辑百科
-Browse blog of peer==查看博客
"DHT Receive: yes"=="接收DHT: 是"
"DHT receive enabled"=="打开DHT接收"
-"DHT Receive: no; #[peertags]#"=="接收DHT: 否; #[peertags]#"
"DHT Receive: no"=="接收DHT: 否"
"no DHT receive"=="无接收DHT"
"Accept Crawl: no"=="接受爬取: 否"
"no crawl"=="无爬取"
"Accept Crawl: yes"=="接受爬取: 是"
"crawl possible"=="可以爬取"
-Contact: passive==通信: 被动
-Contact: direct==通信: 直接
-Seed download: possible==种子下载: 可用
-runtime:==运行时间:
-Peers==节点
URLs for Remote Crawl==远端 爬取的地址
"The YaCy Network"=="YaCy网络"
Indexing PPM==索引 PPM
-(public local)==(公共/本地)
-(remote)==(远端)
Your Peer:==你的节点:
->Name<==>名称<
->Info<==>信息<
->Version<==>版本<
->Release<==>版本<
->Age<==>年龄(天)<
->UTC<==>时区<
->Uptime<==>运行时间<
->Links<==>链接<
->RWIs<==>反向词索引<
->Sent DHT<==>已发送DHT<
->Received DHT<==>已接受DHT<
->Word Chunks<==>词汇块<
->Sent==>已发送
->Received==>已接受
->DHT Word Chunks<==>DHT词汇块<
-Sent URLs==已发送网址
-Received URLs==已接收网址
-Known Seeds==已知种子
-Sent Words==已发送词语
-Received Words==已接收词语
-Connects per hour==连接/小时
->dark green font<==>深绿色字<
+Sent URLs==已发送 网址
+Received URLs==已接收 网址
+Known Seeds==已知 种子
+Connects per hour==每小时 连接数
senior/principal peers==高级/主要节点
->light green font<==>浅绿色字<
->passive peers<==>被动节点<
->pink font<==>粉色字<
junior peers==初级节点
red point==红点
this peer==本机节点
->grey waves<==>灰色波浪<
->crawling activity<==>爬取活动<
->green radiation<==>绿色辐射圆<
->strong query activity<==>强烈请求活动<
->red lines<==>红线<
->DHT-out<==>DHT输出<
->green lines<==>绿线<
->DHT-in<==>DHT输入<
#-----------------------------
#File: News.html
#---------------------------
Overview==概况
->Incoming News<==>传入的新闻<
->Processed News<==>处理的新闻<
->Outgoing News<==>传出的新闻<
->Published News<==>发布的新闻<
This is the YaCyNews system (currently under testing).==这是YaCy新闻系统(测试中).
The news service is controlled by several entry points:==新闻服务会因为下面的操作产生:
A crawl start with activated remote indexing will automatically create a news entry.==由远端创建索引激活的一次爬取会自动创建一个新闻词条.
@@ -2477,31 +1406,21 @@ Other peers may use this information to prevent double-crawls from the same star
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' (资料)标记出.
-Publishing of added or modified translation for the user interface.==发布用户界面翻译的添加或者修改信息。
-Other peers may include it in their local translation list.==其他节点可能会接受这些翻译。
-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 menus:==上面四个菜单选项分别为:
-Incoming News (#[insize]#): latest news that arrived your peer.==传入的新闻(#[insize]#): 发送至你节点的新闻.
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==你可以使用'创建首页'和'网络'页面的设置隐藏它们.
-Processed News (#[prsize]#): this is simply an archive of incoming news that you removed by processing.==处理的新闻(#[prsize]#): 此页面显示你已删除的传入新闻存档.
-Outgoing News (#[ousize]#): here your can see news entries that you have created. These news are currently broadcasted to other peers.==传出的新闻(#[ousize]#): 此页面显示你节点创建的新闻词条, 正在发布给其他节点.
you can stop the broadcast if you want.==你也可以选择停止发布.
-Published News (#[pusize]#): your news that have been broadcasted sufficiently or that you have removed from the broadcast list.==发布的新闻(#[pusize]#): 显示已经完全发布出去的新闻或者从传出列表中删除的新闻.
Originator==拥有者
Created==创建时间
Category==分类
Received==接收时间
Distributed==已发布
Attributes==属性
-"#(page)#::Process Selected News::Delete Selected News::Abort Publication of Selected News::Delete Selected News#(/page)#"=="#(page)#::处理选中新闻::删除选中新闻::停止发布选中新闻::删除选中新闻#(/page)#"
-"#(page)#::Process All News::Delete All News::Abort Publication of All News::Delete All News#(/page)#"=="#(page)#::处理所有新闻::删除所有新闻::停止发布所有新闻::删除所有新闻#(/page)#"
#-----------------------------
#File: Performance_p.html
+"Save"=="保存"
#---------------------------
Performance Settings==性能设置
Online Caution Settings:==在线警告设置:
@@ -2512,66 +1431,23 @@ Memory reserved for JVM==为proper<==>合适<
->exhausted<==>耗尽<
-Reset state==重置状态
-Manually reset to 'proper' state==手动设置到'合适'状态
Enough memory is available for proper operation.==有足够内存保证正常运行.
Within the last eleven minutes, at least four operations have tried to request memory that would have reduced free space within the minimum required.==在过去的11分钟内,至少有四次操作尝试请求内存,这将减少所需的最低可用空间。
Minimum required==最低要求
-Amount of memory (in Mebibytes) that should at least be free for proper operation==为保证正常运行的最低内存量(以MB为单位)
-Disable DHT-in below.==当低于其值时,关闭DHT输入.
Free space disk==空闲硬盘空间
Steady-state minimum==稳态最小值
-Amount of space (in Mebibytes) that should be kept free as steady state==为保持稳定状态所需的空闲硬盘空间(以MB为单位)
-Disable crawls when free space is below.==当空闲硬盘低于其值时,停止爬取。
Absolute minimum==绝对最小值
-Amount of space (in Mebibytes) that should at least be kept free as hard limit==最小限制空闲硬盘空间(以MB为单位)
-Disable DHT-in when free space is below.==当空闲硬盘低于其值时,关闭DHT输入。
->Autoregulate<==>自动调节<
-when absolute minimum limit has been reached==当达到绝对最小限制值时
The autoregulation task performs the following sequence of operations, stopping once free space disk is over the steady-state value :==自动调节任务执行以下操作序列,一旦硬盘可用空间超过稳态值就停止:
->delete old releases<==>删除旧发行版<
->delete logs<==>删除日志<
->delete robots.txt table<==>删除robots.txt表<
->delete news<==>删除新闻<
->clear HTCACHE<==>清除HTCACHE<
->clear citations<==>清除引用<
->throw away large crawl queues<==>扔掉大爬取队列<
->cut away too large RWIs<==>切除过大的反向词<
Used space disk==已用硬盘空间
Steady-state maximum==稳态最大值
-Maximum amount of space (in Mebibytes) that should be used as steady state==为保持稳定状态最大可用的硬盘空间(以MB为单位)
-Disable crawls when used space is over.==当使用硬盘高于其值时,停止爬取。
Absolute maximum==绝对最大值
-Maximum amount of space (in Mebibytes) that should be used as hard limit==最大限制已用硬盘空间(以MB为单位)
-Disable DHT-in when used space is over.==当已用硬盘空间超过其值时,关闭DHT输入。
when absolute maximum limit has been reached.==当达到绝对最大限制值时。
The autoregulation task performs the following sequence of operations, stopping once used space disk is below the steady-state value:==自动调节任务执行以下操作序列,一旦使用的硬盘空间低于稳态值就停止:
-RAM==内存
-free space==空闲空间
-Accepted change. This will take effect after restart of YaCy==已接受改变. 在YaCy重启后生效
-restart now==立即重启
-Confirm Restart==确定重启
-Use Default Profile:==使用默认配置:
-and use==并使用
-of the defined performance.==中的默认性能设置.
-Save==保存
Changes take effect immediately==改变立即生效
-YaCy Priority Settings==YaCy优先级设置
-YaCy Process Priority==YaCy进程优先级
-#Normal==Normal
-Below normal==低于普通
-Idle==空闲
-"Set new Priority"=="置为新优先级"
-Changes take effect after restart of YaCy==在YaCy重启后生效.
#Online Caution Settings
-Online Caution Settings==在线警告设置
This is the time that the crawler idles when the proxy is accessed, or a local or remote search is done.==这是代理被访问或者搜索完成后的一段爬取空闲时间.
The delay is extended by this time each time the proxy is accessed afterwards.==在访问代理后, 会触发此延时,
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 occurrence==事件触发后的索引延时(毫秒)
@@ -2585,112 +1461,56 @@ Remote Search:==远端搜索:
#---------------------------
Performance of Concurrent Processes==并行进程性能
serverProcessor Objects==服务器处理器对象
->Thread<==>线程<
Queue Size Current==队列大小 当前
Queue Size Maximum==队列大小 最大
Executors: Current Number of Threads==执行者: 当前线程数
Concurrency: Maximum Number of Threads==并发: 最大线程数
->Childs<==>子线程<
Average Block Time Reading==平均 阻塞时间 读取
Average Exec Time==平均 运行时间
Average Block Time Writing==平均 阻塞时间 写入
-Concurrency: Number of Threads==并行: 线程数
Total Cycles==总 循环
Full Description==完整描述
#-----------------------------
#File: PerformanceMemory_p.html
+Delete==删除
#---------------------------
Performance Settings for Memory==内存性能设置
refresh graph==刷新图表
->simulate short memory status<==>模拟短期内存状态<
->use Standard Memory Strategy<==>使用标准内存策略<
-(current==(当前
Memory Usage==内存使用
After Startup==启动后
-After Initializations==初始化后
before GC==GC前
after GC==GC前
->Now==>现在
-before <==未<
Description==描述
maximum memory that the JVM will attempt to use==JVM使用的最大内存
->Available<==>可用<
total available memory including free for the JVM within maximum==当前JVM可用剩余内存
->Total<==>全部<
total memory taken from the OS==操作系统分配内存
->Free<==>空闲<
free memory in the JVM within total amount==JVM空闲内存
->Used<==>已用<
used memory in the JVM within total amount==JVM已用内存
Table RAM Index==Table使用内存
->Size==>大小
->Key==>关键字
->Value==>值
-Chunk Size<==块大小<
-Used Memory<==已用内存<
Object Index Caches==Object索引缓存
Needed Memory==所需内存大小
-Object Read Caches==Object读缓存
->Read Hit Cache<==>命中缓存<
->Read Miss Cache<==>丢失缓存<
->Read Hit<==>读命中<
->Read Miss<==>读丢失<
-Write Unique<==写入<
-Write Double<==写回<
-Deletes<==删除<
-Flushes<==清理<
-Total Mem==全部内存
-MB (hit)==MB (命中)
-MB (miss)==MB (丢失)
-Stop Grow when less than #[objectCacheStopGrow]# MB available left==可用内存低于 #[objectCacheStopGrow]# MB时停止增长
-Start Shrink when less than #[objectCacheStartShrink]# MB availabe left==可用内存低于 #[objectCacheStartShrink]# MB开始减少
Other Caching Structures==其他缓存结构
-Type==类型
->Hit<==>命中<
->Miss<==>丢失<
-Insert<==插入<
-Delete<==删除<
-#DNSCache==DNSCache
-#DNSNoCache==DNSNoCache
-#HashBlacklistedCache==HashBlacklistedCache
-Search Event Cache<==搜索事件缓存<
#-----------------------------
#File: PerformanceQueues_p.html
+Active==激活
+Description==描述
+Total Cycles==总 循环
+milliseconds==毫秒
#---------------------------
Performance Settings of Queues and Processes==队列和进程性能设置
Scheduled tasks overview and waiting time settings:==定时任务一览与等待时间设置:
->Thread<==>线程<
Queue Size==队列大小
->Total==>全部
-Block Time==阻塞时间
-Sleep Time==睡眠时间
-Exec Time==执行时间
-
Idle==
空闲
->Busy==>忙碌
Short Mem Cycles==小内存 周期
->per Cycle==>每周期
->per Busy-Cycle==>每次忙碌周期
->Memory Use==>内存 使用
->Delay between==>延时
->idle loops==>空闲循环
->busy loops==>忙碌循环
Minimum of Required Memory==最小 需要内存
Full Description==完整描述
-Submit New Delay Values==提交新延时值
Changes take effect immediately==改变立即生效
Cache Settings:==缓存设置:
-#RAM Cache==RAM Cache
-
Description==
描述
-URLs in RAM buffer:==缓存中URL:
-This is the size of the URL write buffer. Its purpose is to buffer incoming URLs==这是URL写缓冲的大小.作用是缓冲接收URL,
-in case of search result transmission and during DHT transfer.==以利于结果转移和DHT传递.
-Words in RAM cache:==缓存中关键字
This is the current size of the word caches.==这是当前关键字缓存的大小.
The indexing cache speeds up the indexing process, the DHT cache holds indexes temporary for approval.==此缓存能加速索引进程, 也能用于DHT.
The maximum of this caches can be set below.==此缓存最大值能从下面设置.
-Maximum URLs currently assigned to one cached word:==关键字拥有最大URL数:
+Maximum URLs currently assigned to one cached word:==关键字拥有 最大URL数:
This is the maximum size of URLs assigned to a single word cache entry.==这是单个关键字缓存词条所能分配的最多URL数目.
If this is a big number, it shows that the caching works efficiently.==如果此数值较大, 则表示缓存效率很高.
Maximum age of a word:==关键字最长寿命:
@@ -2701,41 +1521,22 @@ Maximum number of words in cache:==缓存中关键字最大数目:
This is is the number of word indexes that shall be held in the==这是索引时缓存中存在的最大关键字索引数目.
ram cache during indexing. When YaCy is shut down, this cache must be==当YaCy停止时,
flushed to disc; this may last some minutes.==它们会被冲刷到硬盘中, 可能会花费数分钟.
-#Initial space of words in cache:==Anfangs Freiraum im Word Cache:
-#This is is the init size of space for words in cache.==Dies ist die Anfangsgröße von Wörtern im Cache.
-Enter New Cache Size==使用新缓存大小
-Balancer Settings==平衡器设置
-This is the time delta between accessing of the same domain during a crawl.==这是在爬取期间, 访问同一域名的间歇值.
-The crawl balancer tries to avoid that domains are==crawl平衡器能够避免频繁地访问同一域名,
-accessed too often, but if the balancer fails (i.e. if there are only links left from the same domain), then these minimum==如果平衡器失效(比如相同域名下只剩链接了), 则此有此间歇
-delta times are ensured.==提供访问保障.
->Crawler Domain<==>爬虫域名<
->Minimum Access Time Delta<==>最小访问间歇<
->local (intranet) crawls<==>本地(局域网)爬取<
->global (internet) crawls<==>全球(广域网)爬取<
-"Enter New Parameters"=="使用新参数"
Thread Pool Settings:==线程池设置:
maximum Active==最大活动
current Active==当前活动
-Enter new Threadpool Configuration==使用新配置
#-----------------------------
#File: PerformanceSearch_p.html
+Comment==注释
+Time==时间
#---------------------------
-Performance Settings of Search Sequence==搜索时间性能设置
Search Sequence Timing==搜索时间测量
Timing results of latest search request:==最近一次搜索请求时间测量结果:
Query==请求
-Event<==事件<
-Comment<==注释<
-Time<==时间<
Delta (ms)==间隔(毫秒)
Duration (ms)==耗时(毫秒)
Result-Count==结果数目
The network picture below shows how the latest search query was solved by asking corresponding peers in the DHT:==下图显示了通过询问DHT中节点解析的最近搜索请求情况:
-red -> request list alive==红色 -> 活动请求列表
-green -> request has terminated==绿色 -> 已终结请求列表
-grey -> the search target hash order position(s) (more targets if a dht partition is used)<==灰色 -> 搜索目标hash序列位置(如果使用dht会产生更多目标)<
"Search event picture"=="搜索时间图况"
#-----------------------------
@@ -2744,15 +1545,10 @@ grey -> the search target hash order position(s) (more targets if a dht partitio
Indexing with Proxy==代理索引
YaCy can be used to 'scrape' content from pages that pass the integrated caching HTTP proxy.==YaCy能够通过集成缓存HTTP代理进行搜索.
When scraping proxy pages then no personal or protected page is indexed;==当通过代理进行搜索时不会索引私有或者受保护页面;
-# This is the control page for web pages that your peer has indexed during the current application run-time==Dies ist die Kontrollseite für Internetseiten, die Ihr Peer während der aktuellen Sitzung
-# as result of proxy fetch/prefetch.==durch Besuchen einer Seite indexiert.
-# No personal or protected page is indexed==Persönliche Seiten und geschütze Seiten werden nicht indexiert
those pages are detected by properties in the HTTP header (like Cookie-Use, or HTTP Authorization)==通过检测HTTP头部属性(比如cookie用途或者http认证)
or by POST-Parameters (either in URL or as HTTP protocol) and automatically excluded from indexing.==或者提交参数(链接或者http协议)能够检测出此类网页并在索引时排除.
-You have to setup the proxy before use.==您必须在使用前设置代理。
Proxy Auto Config:==自动配置代理:
this controls the proxy auto configuration script for browsers at http://localhost:8090/autoconfig.pac==这会影响浏览器代理自动配置脚本 http://localhost:8090/autoconfig.pac
-.yacy-domains only==仅 .yacy 域名
whether the proxy should only be used for .yacy-Domains==代理是否只对 .yacy 域名有效.
Proxy pre-fetch setting:==代理预读设置:
this is an automated html page loading procedure that takes actual proxy-requested==这是一个自动预读网页的过程
@@ -2775,28 +1571,14 @@ Please note that this setting only take effect for a prefetch depth greater than
Proxy generally==代理杂项设置
Path==路径
The path where the pages are stored (max. length 300)==存储页面的路径(最大300个字符长度)
-Size==大小
The size in MB of the cache.==缓存大小(MB).
"Set proxy profile"=="保存设置"
-The file DATA/PLASMADB/crawlProfiles0.db is missing or corrupted.==文件 DATA/PLASMADB/crawlProfiles0.db 丢失或者损坏.
-Please delete that file and restart.==请删除此文件并重启.
-Pre-fetch is now set to depth==预读深度现为
-Caching is now #(caching)#off::on#(/caching)#.==缓存现已 #(caching)#关闭::打开#(/caching)#.
-Local Text Indexing is now #(indexingLocalText)#off::on==本地文本索引现已 #(indexingLocalText)#关闭::打开
-Local Media Indexing is now #(indexingLocalMedia)#off::on==本地媒体索引现已 #(indexingLocalMedia)#关闭::打开
-Remote Indexing is now #(indexingRemote)#off::on==远端索引现已 #(indexingRemote)#关闭::打开
-Cachepath is now set to '#[return]#'. Please move the old data in the new directory.==缓存路径现为 '#[return]#'. 请将旧文件移至此目录.
-Cachesize is now set to #[return]#MB.==缓存大小现为 #[return]#MB.
Changes will take effect after restart only.==改变仅在重启后生效.
-An error has occurred:==发生错误:
You can see a snapshot of recently indexed pages==你可以在
-on the==
-Page.==页面查看最近索引页面快照.
#-----------------------------
#File: QuickCrawlLink_p.html
#---------------------------
-Quick Crawl Link==快速爬取链接
Quickly adding Bookmarks:==快速添加书签:
Simply drag and drop the link shown below to your Browsers Toolbar/Link-Bar.==仅需拖动以下链接至浏览器工具栏/书签栏.
If you click on it while browsing, the currently viewed website will be inserted into the YaCy crawling queue for indexing.==如果在浏览网页时点击, 当前查看页面会被插入到crawl队列已用于索引
@@ -2806,49 +1588,29 @@ Link:==链接:
Status:==状态:
URL successfully added to Crawler Queue==已成功添加网址到爬虫队列.
Malformed URL==异常链接
-Unable to create new crawling profile for URL:==创建链接爬取信息失败:
-Unable to add URL to crawler queue:==添加链接到爬取队列失败:
#-----------------------------
#File: RankingRWI_p.html
#---------------------------
-RWI 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 attribute 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.==如果将单个值增加1,则参数的影响效果加倍。
->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"=="重置排名设置"
#-----------------------------
#File: RankingSolr_p.html
#---------------------------
-Solr Ranking Configuration<==Solr排名配置<
These are ranking attributes for Solr. This ranking applies for internal and remote (P2P or shard) Solr access.==这些是 Solr 的排名属性。 此排名适用于内部和远端(P2P或分片)的Solr访问。
Select a profile:==选择配置文件:
->Boost Function<==>提升函数<
A Boost Function can combine numeric values from the result document to produce a number which is multiplied with the score value from the query result.==提升函数可以组合结果文档中的数值以生成一个数字,该数字与查询结果中的得分值相乘。
-To see all available fields, see the YaCy Solr Schema and look for numeric values (these are names with suffix '_i').==要查看所有可用字段,请参阅YaCy Solr架构并查找数值(它们都是带有后缀“_i”的名称)。
-To find out which kind of operations are possible, see the Solr Function Query documentation.==要了解可能的操作类型,请参阅Solr函数查询文档。
Example: to order by date, use "recip(ms(NOW,last_modified),3.16e-11,1,1)", to order by crawldepth, use "div(100,add(crawldepth_i,1))".==示例:要按日期排序,使用"recip(ms(NOW,last_modified),3.16e-11,1,1)";要按爬虫深度排序,使用"div(100,add(crawldepth_i,1))"。
-You can boost with vocabularies, use the occurrence counters #[vocabulariesvoccount]# and #[vocabulariesvoclogcount]#.==你可以使用出现次数计数器#[vocabulariesvoccount]#和#[vocabulariesvoclogcount]#来提升词汇量。
->Boost Query<==>提升查询<
The Boost Query is attached to every query. Use this to statically boost specific content in the index.==提升查询附加到每个查询。使用它来静态提升索引中的特定内容。
Example: "fuzzy_signature_unique_b:true^100000.0f" means that documents, identified as 'double' are ranked very bad and appended to the end of all results (because the unique are ranked high).==示例:“fuzzy_signature_unique_b:true^100000.0f”表示被标识为“double”的文档排名很差,并附加到所有结果的末尾(因为唯一的排名很高)。
-To find appropriate fields for this query, see the YaCy Solr Schema and look for boolean values (with suffix '_b') or tags inside string fields (with suffix '_s' or '_sxt').==要为此查询找到适当的字段,请参阅YaCy Solr架构并查找布尔值(带有后缀“_b”)或字符串字段中的标签(带有后缀“_s”或“_sxt”)。
-You can boost with vocabularies, use the field '#[vocabulariesfield]#' with values #[vocabulariesavailable]#. You can also boost on logarithmic occurrence counters of the fields #[vocabulariesvoclogcounts]#.==你可以使用词汇表进行提升,使用值为#[vocabulariesavailable]#的字段'#[vocabulariesfield]#'。你还可以提高字段#[vocabulariesvoclogcounts]#的对数出现计数器。
->Filter Query<==>过滤器查询<
The Filter Query is attached to every query. Use this to statically add a selection criteria to reduce the set of results.==过滤器查询附加到每个查询。使用它静态添加选择标准以减少结果集。
Example: "http_unique_b:true AND www_unique_b:true" will filter out all results where urls appear also with/without http(s) and/or with/without 'www.' prefix.==示例:"http_unique_b:true AND www_unique_b:true"将过滤掉URL包含/不包含http(s) 和/或 包含/不包含“www”的结果。
-To find appropriate fields for this query, see the YaCy Solr Schema. Warning: bad expressions here will cause that you don't have any search result!==要寻找此查询的适当字段,请参阅YaCy Solr架构。警告:此处的错误表达式将导致你没有任何搜索结果!
->Solr Boosts<==>Solr提升<
-This is the set of searchable fields (see YaCy Solr Schema). Entries without a boost value are not searched. Boost values make hits inside the corresponding field more important.==这是一组可搜索字段(请参阅 YaCy Solr架构)。没有提升值的条目不会被搜索。提升值使相应字段内的命中更加重要。
"Set Boost Function"=="设置提升函数"
"Set Boost Query"=="设置提升查询"
"Set Filter Query"=="设置过滤器查询"
@@ -2856,51 +1618,29 @@ This is the set of searchable fields (see YaCy Solr
"Re-Set to default"=="重置为默认值"
#-----------------------------
-#File: RegexTest.html
-#---------------------------
-YaCy '#[clientname]#': Regex Test==YaCy '#[clientname]#':正则表达式测试
->Regex Test<==>正则表达式测试<
->Test String<==>测试字符串<
->Regular Expression<==>正则表达式<
-This is a Java Pattern==这是一种Java模式
->Result<==>结果<
-#-----------------------------
-
#File: RemoteCrawl_p.html
+Last Seen==最后 上线
+Name==名称
+Remote Crawler==远端爬虫
#---------------------------
-Remote Crawl Configuration==远端爬取配置
->Remote Crawler<==>远端爬虫<
The remote crawler is a process that requests urls from other peers.==远端爬虫是一个进程, 该进程可用于处理来自其他节点的地址.
Peers offer remote-crawl urls if the flag 'Do Remote Indexing'==如果选中了'进行远端索引', 则节点在开始爬取时
is switched on when a crawl is started.==能够进行远端爬取.
Remote Crawler Configuration==远端爬虫配置
Your peer cannot accept remote crawls because you need senior or principal peer status for that!==你的节点无法接受远端爬取, 因为你需要高级或骨干节点状态!
->Accept Remote Crawl Requests<==>接受远端爬取请求<
Perform web indexing upon request of another peer.==收到另一节点请求时进行网页索引.
Load with a maximum of==最多帮助爬取
pages per minute==页面/分钟
"Save"=="保存"
-Crawl results will appear in the==爬取会出现在
->Crawl Result Monitor<==>爬取结果监控器<
Peers offering remote crawl URLs==提供远端爬取地址的节点
If the remote crawl option is switched on, then this peer will load URLs from the following remote peers:==如果勾选了远端爬取选项, 则本机节点会帮助爬取来自远端节点提供的链接:
->Name<==>名字<
-URLs for Remote Crawl==来自远端爬取的地址
->Release<==>版本号<
->PPM<==>PPM<
->QPH<==>QPH<
->Last Seen<==>上次 出现<
->UTC Offset<==>UTC 时区<
->Uptime<==>在线时长<
->Links<==>链接<
->Age<==>年龄<
+URLs for Remote Crawl==远程 爬取 地址
#-----------------------------
#File: SearchAccessRate_p.html
#------------------------------
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 Accounts configuration page for details on users' rights).==(有关用户权限详情请参见账户配置页面)。
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.==当具有有限权限的用户(未经验证或没有扩展搜索权限)超过限制时,搜索阻塞。
@@ -2909,71 +1649,27 @@ Max searches in 3s==3秒内最大搜索次数
Max searches in 1mn==1分钟内最大搜索次数
Max searches in 10mn==10分钟内最大搜索次数
Max searches in 10mn==10分钟内最大搜索次数
->Peer-to-peer search<==>P2P搜索<
Access rate limitations to the peer-to-peer search mode.==P2P搜索模式下访问率限制。
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.==当具有有限权限的用户(未经验证或没有扩展搜索权限)超过限制时,搜索范围缩小为本地索引。
Peer-to-peer search with JavaScript results resorting==带有结果排序的P2P搜索
Access rate limitations to the peer-to-peer search mode with browser-side JavaScript results resorting enabled==对启用了浏览器端JavaScript结果重新排序的P2P搜索模式的访问率限制
-(check the 'Remote results resorting' section in the Search Portal configuration page).==(在搜索门户配置页面勾选'远端结果重排序')。
When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, results resorting becomes only applicable on demand, server-side.==当具有有限权限的用户(未经验证或没有扩展搜索权限)超过限制时,搜索结果重排仅可用于服务器侧搜索。
Remote snippet load==远端摘录加载
Limitations on snippet loading from remote websites.==对从远程网站加载摘录的限制。
When a user with limited rights (unauthenticated or without extended search right) exceeds a limit, the snippets fetch strategy falls back to 'CACHEONLY'==当具有有限权限的用户(未经验证或没有扩展搜索权限)超过限制时,摘录获取策略缩小为'CACHEONLY'。
-(check the default Snippet Fetch Strategy on the Search Portal configuration page).==(在搜索门户配置页面勾选默认的摘录获取策略)。
-Submit==提交
-Set defaults==设定为默认值
-Changes will take effect immediately.==改变将会立即生效。
#-----------------------------
#File: ServerScannerList.html
#------------------------------
->URL<==>网址<
->inaccessible<==>不可访问<
-#Network Scanner Monitor==Network Scanner Monitor
-The following servers had been detected:==已检测到以下服务器:
The following servers can be searched:==可以搜索以下服务器:
Available server within the given IP range==指定IP范围内的可用服务器
->Protocol<==>协议<
-#>IP<==>IP<
-#>URL<==>URL<
->Access<==>权限<
->Process<==>状态<
->unknown<==>未知<
->empty<==>空<
->granted<==>已授权<
->denied<==>拒绝<
->not in index<==>未在索引中<
->indexed<==>已被索引<
"Add Selected Servers to Crawler"=="添加选中服务器到爬虫"
#------------------------------
#File: Settings_Crawler.inc
+Changes will take effect immediately.==改变立即生效.
#---------------------------
->Crawler Settings<==>爬虫设置<
-Generic Crawler Settings==普通爬虫设置
->Timeout:<==>超时:<
-Connection timeout in ms==连接超时(毫秒)
-means unlimited.==表示没有限制。
HTTP Crawler Settings:==HTTP 爬虫设置:
-Maximum Filesize==最大文件大小
-FTP Crawler Settings==FTP 爬虫设置
-SMB Crawler Settings==SMB 爬虫设置
-Local File Crawler Settings==本地文件爬虫设置
-Maximum allowed file size in bytes that should be downloaded==允许下载的最大文件大小(字节)
-Larger files will be skipped==超出此限制的文件将被忽略
-Please note that if the crawler uses content compression, this limit is used to check the compressed content size==请注意, 如果爬虫使用内容压缩, 则此限制对压缩后文件大小有效.
-Submit==提交
-Changes will take effect immediately==改变立即生效
-#-----------------------------
-
-#File: Settings_Debug.inc
-#---------------------------
-
-#-----------------------------
-
-#File: Settings_HttpClient.inc
-#---------------------------
-
#-----------------------------
#File: Settings_MessageForwarding.inc
@@ -2983,41 +1679,27 @@ With this settings you can activate or deactivate forwarding of yacy-messages vi
Enable message forwarding==打开消息发送
Enabling/Disabling message forwarding via email.==打开/关闭email发送.
Forwarding Command==发送命令
-The command-line program that should be used to forward the message. ==将用于发送消息的命令行程序.
Forwarding To==发送给
-The recipient email-address. ==收件人email地址.
-e.g.:==比如:
"Submit"=="提交"
Changes will take effect immediately.==改变立即生效.
#-----------------------------
#File: Settings_p.html
+Remote Proxy (optional)==远端代理(可选)
+Seed Upload Settings==种子上传设置
+Server Access Settings==服务器访问设置
#---------------------------
Advanced Settings==高级设置
If you want to restore all settings to the default values,==你如果要恢复所有设置到默认值,
but forgot your administration password, you must stop the proxy,==但是忘记了管理员密码, 则你首先必须停止代理,
delete the file 'DATA/SETTINGS/yacy.conf' in the YaCy application root folder and start YaCy again.==然后删除YaCy应用根目录下的 'DATA/SETTINGS/yacy.conf' 文件,最后再次启动YaCy。
->Server Access Settings<==>服务器访问设置<
->Referrer Policy Settings<==>参考策略设置<
->Crawler Settings<==>爬虫设置<
->Seed Upload Settings<==>种子上传设置<
->Message Forwarding (optional)<==>消息传输(可选)<
->Transparent Proxy Access Settings<==>透明代理访问设置<
->URL/Web Proxy Access Settings<==>网址代理访问设置<
->Remote Proxy (optional)<==>远端代理(可选)<
->Debug/Analysis Settings<==>调试/分析设置<
->HTTP client Settings<==>HTTP客户端设置<
#-----------------------------
#File: Settings_Proxy.inc
#---------------------------
Remote Proxy (optional)==远端代理(可选)
YaCy can use another proxy to connect to the internet. You can enter the address for the remote proxy here:==YaCy能够通过第二代理连接到网络, 在此输入远端代理地址.
-Use remote proxy==使用远端代理
Enables the usage of the remote proxy by yacy==打开以支持远端代理
-Use remote proxy for yacy <-> yacy communication==为YaCy <-> YaCy 通信使用代理
-Specifies if the remote proxy should be used for the communication of this peer to other yacy peers.==选此指定远端代理是否支持YaCy节点间通信.
-Hint: Enabling this option could cause this peer to remain in junior status.==提示: 打开此选项后本地节点会被置为初级节点.
Use remote proxy for HTTPS==为HTTPS使用远端代理
Specifies if YaCy should forward ssl connections to the remote proxy.==选此指定YaCy是否使用SSL代理.
Remote proxy host==远端代理服务器
@@ -3033,24 +1715,11 @@ Changes will take effect immediately.==改变立即生效.
#-----------------------------
#File: Settings_ProxyAccess.inc
+"change"=="改变"
#---------------------------
Proxy Access Settings==代理访问设置
These settings configure the access method to your own http proxy and server.==设定http代理和服务器的访问方式.
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:==可以设置以下四个地址:
-defining a port only==仅指定一个端口
-e.g. 8090==比如 8090
-defining IP address and port==指定IP地址和端口
-e.g. 192.168.0.1:8090==比如 192.168.0.1:8090
-defining host name and port==指定域名和端口
-e.g. home:8090==比如 home:8090
-defining interface name and port==指定网络接口和端口
-e.g. #eth0:8090==z.B. #eth0:8090
-Hint: Dont forget to change your firewall configuration after you have changed the port.==提示: 改变端口后请更改对应防火墙设置.
-Proxy and http-Server Administration Port==代理和http服务器管理端口
-Changes will take effect in 5-10 seconds==改变在5-10秒后生效
Server Access Restrictions==服务器访问限制
You can restrict the access to this proxy/server using a two-stage security barrier:==使用两层安全屏障限制到此代理/服务器的访问:
define an access domain with a list of granted client IP-numbers or with wildcards==定义一个带有授权IP名单或者通配符的访问域
@@ -3061,54 +1730,42 @@ IP-Number Access Domain to a pattern that corresponds to you local intranet.==
The default setting should be right in most cases. If you want, you can also set a proxy account==默认设置适用于大多数情况. 如果需要共享代理,
so that every proxy user must authenticate first, but this is rather unusual.==请先设置需要授权的代理账户.
IP-Number filter==IP地址过滤
-Use ==路径
-The remote path on the FTP server, like==ftp服务器上传路径, 比如
-Missing sub-directories are NOT created automatically.==不会自动创建缺少的子目录.
Username==用户名
Your log-in at the FTP server==ftp服务器用户名
-Password==密码
The password==用户密码
"Submit"=="提交"
#-----------------------------
#File: Settings_Seed_UploadScp.inc
+Password==密码
+Path==路径
#---------------------------
Uploading via SCP:==通过SCP上传:
This is the account for a server where you are able to login via ssh.==设置通过ssh访问服务器的账户.
-#Server==Server
The host where you have an account, like 'my.host.net'==服务器, 比如'my.host.net'
-#Server Port==Server Port
The sshd port of the host, like '22'==ssh端口, 比如'22'
-Path==路径
The remote path on the server, like '~/yacy/seed.txt'. Missing sub-directories are NOT created automatically.==ssh服务器上传路径, 比如'~/yacy/seed.txt'. 不会自动创建缺少的子目录.
Username==用户名
Your log-in at the server==ssh服务器用户名
-Password==密码
The password==用户密码
"Submit"=="提交"
#-----------------------------
@@ -3124,9 +1781,6 @@ Your peer will then upload the seed-bootstrap information periodically,==你的
but only if there have been changes to the seed-list.==前提是种子列表有变更.
Upload Method==上传方式
"Submit"=="提交"
-Retry Uploading==重试上传
-Here you can specify which upload method should be used.==在此指定上传方式.
-Select 'none' to deactivate uploading.==选择'none'关闭上传
The URL that can be used to retrieve the uploaded seed file, like==能够上传种子文件的链接, 比如
#-----------------------------
@@ -3135,64 +1789,45 @@ The URL that can be used to retrieve the uploaded seed file, like==能够上传
Server Access Settings==服务器访问设置
IP-Number filter:==IP地址过滤:
(requires restart)==(要求重启)
-Here you can restrict access to the server.==通过此限制访问服务器的IP。
-By default, the access is not limited,==默认情况下, 不对访问作限制,
because this function is needed to spawn the p2p index-sharing function.==否则会影响p2p索引共享功能。
If you block access to your server (setting anything else than '*'), then you will also be blocked==如果作了访问限制(设置了不是'*'的任何值),
from using other peers' indexes for search service.==你也将在搜索服务中不能使用其他节点的索引。
However, blocking access may be correct in enterprise environments where you only want to index your==然而, 在企业环境中, 如果仅需要索引公司内部网页,
company's own web pages.==作相应限制则是正确的选项。
-Filter have to be entered as IP, IP range or using CIDR notation separated by comma (e.g. 192.168.1.1,2001:db8::ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)==过滤器必须输入使用逗号分隔的IP、IP范围或CIDR符号 (比如 192.168.1.1,2001:db8::ff00:42:8329,192.168.1.10-192.168.1.20,192.168.1.30-40,192.168.2.0/24)
-further details on format see Jetty==关于格式的进一步细节参见Jetty
-InetAddressSet documentation.==InetAddressSet文档。
+further details on format see Jetty==关于格式的进一步细节参见Jetty
staticIP (optional):==静态IP (可选):
-The staticIP can help that your peer can be reached by other peers in case that your==如果你在防火墙或者代理后,
peer is behind a firewall or proxy. You can create a tunnel through the firewall/proxy==静态IP设置能够确保其他节点能够找到你. 你可以创建一个穿过防火墙/代理的通道,
(look out for 'tunneling through https proxy with connect command') and create==(请搜索"通过链接命令创建https代理通道"了解更多)
an access point for incoming connections.==以给输入链接提供访问点。
This access address can be set here (either as IP number or domain name).==在此设置访问地址(IP地址或者域名)。
If the address of outgoing connections is equal to the address of incoming connections,==如果流出链接的地址和流入链接的相同,
you don't need to set anything here, please leave it blank.==请留空此栏.
-ATTENTION: Your current IP is recognized as "#[clientIP]#".==注意: 当前你的为"#[clientIP]#".
If the value you enter here does not match with this IP,==如果你输入的IP与此IP不符,
you will not be able to access the server pages anymore.==那么你就不能访问服务器页面了.
->fileHost:<==>文件服务器:<
Set this to avoid error-messages like 'proxy use not allowed / granted' on accessing your Peer by its hostname.==设置此选项可避免在通过服务器名访问对等服务器时出现‘代理使用不允许/已授权’等错误消息。
-Virtual host for httpdFileServlet access for example http://FILEHOST/ shall access the file servlet and==用于 httpdFileServlet 访问的虚拟主机,
-return the defaultFile at rootPath either way, http://FILEHOST/ denotes the same as http://localhost:<port>/==例如 http://FILEHOST/ 应访问文件服务器并以任一方式返回根路径下的默认文件,对预值'localpeer'而言,http://FILEHOST/ 与 http://localhost:<port>/表示相同,
-for the preconfigured value 'localpeer', the URL is: http://localpeer/.==地址为:http://localpeer/。
+Virtual host for httpdFileServlet access for example http://FILEHOST/ shall access the file servlet and==用于 httpdFileServlet 访问的虚拟主机,例如 http://FILEHOST/ 应访问文件 servlet,并且
+return the defaultFile at rootPath either way, http://FILEHOST/ denotes the same as http://localhost:<port>/==无论哪种方式都返回 rootPath 下的 defaultFile,http://FILEHOST/ 表示与 http://localhost:<port>/ 相同
+for the preconfigured value 'localpeer', the URL is: http://localpeer/.==对于预配置值 'localpeer',URL 为:http://localpeer/.
"Submit"=="提交"
->Server Port Settings<==>服务器端口设置<
->Server port:<==>服务器端口:<
This is the main port for all http communication (default is 8090). A change requires a restart.==这是所有http通信的主端口(默认值为8090)。更改需要重新启动。
->Server ssl port:<==>服务器ssl端口:<
This is the port to connect via https (default is 8443). A change requires a restart.==这是通过https连接的端口(默认为8443)。更改需要重新启动。
->Shutdown port:<==>关机端口:<
This is the local port on the loopback address (127.0.0.1 or :1) to listen for a shutdown signal to stop the YaCy server (-1 disables the shutdown port, recommended default is 8005). A change requires a restart.==这是环地址(127.0.0.1 或:1)上的本地端口,用于侦听关闭信号以停止YaCy服务器(-1禁用关闭端口,推荐默认值为8005)。更改需要重新启动。
->Compression settings<==>压缩设置<
Compress responses with gzip==用gzip压缩响应
When checked (default), HTTP responses can be compressed using gzip.==选中时(默认),可以使用gzip压缩HTTP响应。
The requesting user-agent (a web browser, another YaCy peer or any other tool) uses the header 'Accept-Encoding' to tell whether it accepts gzip compression or not.==请求用户代理(网页浏览器、另一个YaCy节点或任何其他工具)使用标头'Accept-Encoding'来判断它是否接受gzip压缩。
This adds some processing overhead, but can significantly reduce the amount of bytes transmitted over the network.==这增加了一些处理开销,但可以显着减少通过网络传输的字节量。
->Changes need a server restart.<==>需重启服务器才能让改变生效。<
#-----------------------------
#File: Settings_UrlProxyAccess.inc
#---------------------------
URL Proxy Settings<=URL Proxy Settings<
With this settings you can activate or deactivate URL proxy.==With this settings you can activate or deactivate URL proxy.
-Service call: ==Service call:
-, where parameter is the url of an external web page.==, where parameter is the url of an external web page.
->URL proxy:<==>URL proxy:<
->Enabled<==>开启<
-Globally enables or disables URL proxy via ==Globally enables or disables URL proxy via
Show search results via URL proxy:==Show search results via URL proxy:
Enables or disables URL proxy for all search results. If enabled, all search results will be tunneled through URL proxy.==Enables or disables URL proxy for all search results. If enabled, all search results will be tunneled through URL proxy.
Alternatively you may add this javascript to your browser favorites/short-cuts, which will reload the current browser address==Alternatively you may add this javascript to your browser favorites/short-cuts, which will reload the current browser address
via the YaCy proxy servlet.==via the YaCy proxy servlet.
or right-click this link and add to favorites:==or right-click this link and add to favorites:
Restrict URL proxy use:==Restrict URL proxy use:
-Define client filter. Default: ==Define client filter. Default:
URL substitution:==URL substitution:
Define URL substitution rules which allow navigating in proxy environment. Possible values: all, domainlist. Default: domainlist.==Define URL substitution rules which allow navigating in proxy environment. Possible values: all, domainlist. Default: domainlist.
"Submit"=="Submit"
@@ -3200,43 +1835,28 @@ Define URL substitution rules which allow navigating in proxy environment. Possi
#File: SettingsAck_p.html
#---------------------------
-YaCy '#[clientname]#': Settings Acknowledge==YaCy '#[clientname]#': 设置
Settings Receipt:==菜单设置:
No information has been submitted==未提交信息.
Error with submitted information.==提交信息发生错误.
-Nothing changed.==无任何改变.
The user name must be given.==必须给出用户名.
-Your request cannot be processed.==不能响应请求.
The password redundancy check failed. You have probably mistyped your password.==密码冗余检查错误.
-Shutting down. Application will terminate after working off all crawling tasks.==正在关闭 所有crawl任务完成后程序会关闭.
Your administration account setting has been made.==已创建管理账户设置.
-Your new administration account name is #[user]#. The password has been accepted. If you go back to the Settings page, you must log-in again.==新帐户名是 #[user]#. 密码输入正确. 如果返回设置页面, 需要再次输入密码.
Your proxy access setting has been changed.==代理访问设置已改变.
-Your proxy account check has been disabled, since you did not supply a password.==不能进行代理账户检查, 密码不正确.
The new proxy IP filter is set to==代理IP过滤设置为
The proxy port is:==代理端口号:
Port rebinding will be done in a few seconds.==端口在几秒后绑定完成.
-You can reach your YaCy server under the new location==可以通过新位置访问YaCy服务器:
-Your proxy access setting has been changed.==代理访问设置已改变.
-Your server access filter is now set to==服务器访问过滤为
Auto pop-up of the Status page is now disabled==自动弹出状态页面关闭.
Auto pop-up of the Status page is now enabled==自动弹出状态页面打开.
-You are now permanently online.==你现在处于永久在线状态.
-After a short while you should see the effect on the====一会儿可以在
-status page.==Status 页面看到变化.
The Peer Name is:==节点名:
Your static Ip(or DynDns) is:==静态IP(或DynDns)为:
-Seed Settings changed.#(success)#::You are now a principal peer.==seed设置已改变.#(success)#::本地节点已成为主要节点.
Seed Settings changed, but something is wrong.==seed设置已改变, 但是未完全成功.
-Seed Uploading was deactivated automatically.==seed上传自动关闭.
+Seed Uploading was deactivated automatically.==seed上传自动关闭.
Please return to the settings page and modify the data.==请返回设置页面修改参数.
The remote-proxy setting has been changed==远端代理设置已改变.
The new setting is effective immediately, you don't need to re-start.==新设置立即生效.
-The submitted peer name is already used by another peer. Please choose a different name. The Peer name has not been changed.==提交的节点名已存在, 请更改. 节点名未改变.
Your Peer Language is:==节点语言:
The submitted peer name is not well-formed. Please choose a different name. The Peer name has not been changed.
Peer names must not contain characters other than (a-z, A-Z, 0-9, '-', '_') and must not be longer than 80 characters.
-#The new parser settings where changed successfully.==Die neuen Parser Einstellungen wurden erfolgreich gespeichert.
Parsing of the following mime-types was enabled:
Seed Upload method was changed successfully.==seed上传方式改变成功.
You are now a principal peer.==本地节点已成为主要节点.
@@ -3244,189 +1864,98 @@ Seed Upload Method:==seed上传方式:
Seed File URL:==seed文件URL:
Your proxy networking settings have been changed.==代理网络设置已改变.
Transparent Proxy Support is:==透明代理支持:
-Connection Keep-Alive Support is:==连接保持支持:
Your message forwarding settings have been changed.==消息发送设置已改变.
Message Forwarding Support is:==消息发送支持:
Message Forwarding Command:==消息:
Recipient Address:==收件人地址:
-Please return to the settings page and modify the data.==请返回设置页面修改参数.
-You are now event-based online.==你现在处于事件驱动在线.
-After a short while you should see the effect on the==查看变化
-You are now in Cache Mode.==你现在处于Cache模式.
-Only Proxy-cache ist available in this mode.==此模式下仅代理缓存可用.
-After a short while you should see the effect on the==查看变化
-You can now go back to the==现在可返回
-Settings page if you want to make more changes.==设置 页面, 如果需要更改更多参数的话.
-You can reach your YaCy server under the new location==现在可以通过新位置访问YaCy服务器:
#-----------------------------
#File: sharedBlacklist_p.html
+"add"=="添加"
#---------------------------
-Shared Blacklist==共享黑名单
Add Items to Blacklist==添加词条到黑名单
Unable to store the items into the blacklist file:==不能存储词条到黑名单文件:
-#File Error! Wrong Path?==Datei Fehler! Falscher Pfad?
-YaCy-Peer "#[name]#" not found.==YaCy peer"#[name]#" 未找到.
-not found or empty list.==未找到或者列表为空.
-Wrong Invocation! Please invoke with==调用错误! 请使用配合
Blacklist source:==黑名单源:
Blacklist target:==黑名单目的:
Blacklist item==黑名单词条
"select all"=="全部选择"
"deselect all"=="全部反选"
-value="add"==value="添加"
#-----------------------------
#File: Status_p.inc
+Address==地址
+Proxy==代理
#---------------------------
System Status==系统状态
System==系统
-YaCy version==YaCy版本
Unknown==未知
-Uptime:==运行时间:
-Processors:==处理器:
-Load:==负载:
-Threads:==线程:
-peak:==峰值:
-total:==全部:
Protection==保护
-Password is missing==无密码
password-protected==受密码保护
-Unrestricted access from localhost==本地无限制访问
-Address==地址
peer address not assigned==未分配节点地址
-Host:==服务器:
-Public Address:==公共地址:
-YaCy Address:==YaCy地址:
-Proxy==代理
-Transparent ==透明代理
not used==未使用
-broken::connected==断开::连接
broken==已断开
connected==已连接
-Used for YaCy -> YaCy communication:==用于YaCy -> YaCy通信:
-WARNING:==警告:
-You do this on your own risk.==此动作危险.
-If you do this without YaCy running on a desktop-pc or without Java 6 installed, this will possibly break startup.==如果你不是在台式机上或者已安装Java6的机器上运行, 可能会破坏开机程序.
-In this case, you will have to edit the configuration manually in DATA/SETTINGS/yacy.conf==在此情况下, 你需要手动修改配置文件 DATA/SETTINGS/yacy.conf
Remote:==远端:
Tray-Icon==任务栏图标
-Experimental<==实验性的<
Yes==是
No==否
Auto-popup on start-up==启动时自动弹出
-Disabled==关闭
-Enable]==打开]
-Enabled==开启
-Disable]==关闭]
Memory Usage==内存使用
RAM used:==占用内存:
RAM max:==最大内存:
DISK used:==占用硬盘:
-(approx.)==(大约)
DISK free:==可用硬盘:
-on::off==开::关
-Configure==配置
-max:==最大:
-Traffic ==流量
->Reset==>重置
-Proxy:==代理:
-Crawler:==爬虫:
Incoming Connections==流入连接
-Active:==活动:
-Max:==最大:
-Loader Queue==加载器队列
-paused==已暂停
->Queues<==>队列<
Local Crawl==本地爬取
Remote triggered Crawl==远端触发的爬取
Pre-Queueing==预排序
Seed server==种子服务器
-Enabled: Updating to server==开启: 与服务器同步
-Last upload: #[lastUpload]# ago.==最后上传: #[lastUpload]# 以前.
-Enabled: Updating to file==开启: 与文件同步
-YaCy version:==YaCy版本:
-Java version:==Java版本:
->Experimental<==>实验性的<
-Enabled ==重启
#-----------------------------
#File: Status.html
#---------------------------
-Console Status==控制台状态
Log-in as administrator to see full status==登录管理用户以查看完整状态
Welcome to YaCy!==欢迎使用YaCy!
-Your settings are _not_ protected!==你的设置 _未_ 受保护!
-Please open the accounts configuration page immediately==请打开账户设置页面
and set an administration password.==并设置管理密码.
Access is unrestricted from localhost (this includes administration features).==访问权限在localhost不受限制(这包括管理功能)。
-Please check the accounts configuration page to ensure that the settings match the security level you need.==请检查帐户配置页面,确保设置符合你所需的安全级别。
You have not published your peer seed yet. This happens automatically, just wait.==尚未发布你的节点种子. 将会自动发布, 请稍候。
The peer must go online to get a peer address.==节点必须上线以获得节点地址。
You cannot be reached from outside.==外部不能访问你的节点。
A possible reason is that you are behind a firewall, NAT or Router.==很可能是因为你被防火墙, NAT或者路由器阻挡在后面。
-But you can search the internet using the other peers'==但是你依然能在你的搜索页面
global index on your own search page.==通过其他节点的全球索引进行搜索。
"bad"=="坏"
"idea"=="主意"
"good"=="好"
-"Follow YaCy on Twitter"=="在Twitter上关注YaCy"
We encourage you to open your firewall for the port you configured (usually: 8090),==我们推荐你开放防火墙端口(通常是:8090),
or to set up a 'virtual server' in your router settings (often called DMZ).==或者在路由器中建立一个'虚拟服务器'(常叫做DMZ)。
Please be fair, contribute your own index to the global index.==请公平地贡献你的索引给全球索引。
-Free disk space is lower than #[minSpace]#. Crawling has been disabled. Please fix==空闲硬盘空间低于 #[minSpace]#. 爬取已被关闭,
it as soon as possible and restart YaCy.==请尽快修复并重启YaCy.
-Free memory is lower than #[minSpace]#. DHT-in has been disabled. Please fix==空闲内存低于 #[minSpace]#. DHT-in已被关闭,
Crawling is paused! If the crawling was paused automatically, please check your disk space.==爬取暂停! 如果这是自动暂停的,请检查你的硬盘空间。
-Latest public version is==最新版本为
You can download a more recent version of YaCy. Click here to install this update and restart YaCy:==你可以下载最新版本YaCy, 点此进行升级并重启:
-Install YaCy==安装YaCy
-You can download the latest releases here:==你可以在此处下载最新版本:
You are running a server in senior mode and you support the global internet index,==服务器运行在高级模式, 并支持全球索引,
-which you can also search yourself.==你也能进行本地搜索.
You have a principal peer because you publish your seed-list to a public accessible server==你是一个骨干节点, 因为你向公共服务器公布了你的种子列表,
-where it can be retrieved using the URL==可使用此URL进行接收:
-Your Web Page Indexer is idle. You can start your own web crawl here==网页索引器当前空闲. 可以点击这里开始爬取网页
-Your Web Page Indexer is busy. You can monitor your web crawl here==网页索引器当前忙碌. 点击这里查看状态
If you need professional support, please write to==如果你需要专业级支持, 请EMAIL来信
-For community support, please visit our==如果只是社区支持, 请访问我们的
->forum<==>论坛<
#-----------------------------
#File: Steering.html
#---------------------------
-Steering==控制
-Checking peer status...==正在检查节点状态...
-Peer is online again, forwarding to status page...==节点再次上线, 正在传输状态...
-Peer is not online yet, will check again in a few seconds...==节点尚未上线, 几秒后重新检测...
No action submitted==未提交动作
-Go back to the Settings page==将返回设置页面
Your system is not protected by a password==你的系统未受密码保护
-Please go to the User Administration page and set an administration password.==请在用户管理页面设置管理密码.
You don't have the correct access right to perform this task.==无执行此任务权限.
Please log in.==请登录.
-You can now go back to the Settings page if you want to make more changes.==你现在可以返回设置页面进行详细设置.
See you soon!==下次再见!
Just a moment, please!==请稍候.
Application will terminate after working off all scheduled tasks.==程序在所有任务完成后将停止.
Please send us feed-back!==可以给我们一个反馈嘛!
We don't track YaCy users, YaCy does not send 'home-pings', we do not even know how many people use YaCy as their private search engine.==我们不跟踪YAY用户,YaCy不发送“回家Ping”,我们甚至不知道有多少人使用Yyas作为他们的私人搜索引擎。
-Therefore we like to ask you: do you like YaCy?==所以我们想问你:你喜欢YaCy吗?
-Will you use it again... if not, why?==你会再次使用它吗?如果不是,为什么?
-Is it possible that we change a bit to suit your needs==我们有可能改变一下以满足你的需求吗
Please send us feed-back about your experience with an==请向我们发送有关你的体验的回馈
Professional Support==专业级支持
-If you are a professional user and you would like to use YaCy in your company in combination with consulting services by YaCy specialists, please see==如果你是专业用户,并且希望在公司中使用YaCy并获得YaCy专家的咨询服务,请参阅
Then YaCy will restart.==然后YaCy会重新启动.
If you can't reach YaCy's interface after 5 minutes restart failed.==如果5分钟后不能访问此页面说明重启失败.
-Installing release==正在安装
-YaCy will be restarted after installation==YaCy在安装完成后会重新启动
#-----------------------------
#File: Supporter.html
#---------------------------
-Supporter<==参与者<
"Please enter a comment to your link recommendation. (Your Vote is also considered without a comment.)"
Supporter are switched off for users without authorization==未授权用户不属于参与者范畴
"bookmark"=="书签"
@@ -3435,106 +1964,55 @@ Supporter are switched off for users without authorization==未授权用户不
"Give positive vote"=="给予好评"
"negative vote"=="差评"
"Give negative vote"=="给予差评"
-provided by YaCy peers with an URL in their profile. This shows only URLs from peers that are currently online.==由各节点提供. 仅显示所有节点中当前在线链接.
#-----------------------------
#File: Surftips.html
+"Add to bookmarks"=="添加到书签"
+"Give negative vote"=="给予差评"
+"Give positive vote"=="给予好评"
+"bookmark"=="书签"
+"negative vote"=="差评"
+"positive vote"=="好评"
#---------------------------
-Surftips==建议
-Surftips==建议
-Surftips are switched off==建议已关闭
-title="bookmark"==title="书签"
-alt="Add to bookmarks"==alt="添加到书签"
-title="positive vote"==title=="好评"
-alt="Give positive vote"==alt="给予好评"
-title="negative vote"==title=="差评"
-alt="Give negative vote"==alt="给予差评"
-YaCy Supporters<==YaCy参与者<
->a list of home pages of yacy users<==>显示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 authorization==隐藏非认证用户的建议功能
Show surftips to everyone==所有人均可使用建议
#-----------------------------
#File: Automation_p.html
+Comment==注释
+hours==小时
#---------------------------
-: Peer Steering==: 节点控制
The information that is presented on this page can also be retrieved as XML.==The information that is presented on this page can also be retrieved as XML.
Click the API icon to see the XML.==Click the API icon to see the XML.
-To see a list of all APIs, please visit the ==To see a list of all APIs, please visit the
-API wiki page==API wiki page
->Process Scheduler<==>进程调度器<
-This table shows actions that had been issued on the YaCy interface==此表显示YaCy用于
-to change the configuration or to request crawl actions.==改变配置或者处理爬取请求的动作接口函数.
These recorded actions can be used to repeat specific actions and to send them==它们用于重复执行某一指定动作,
to a scheduler for a periodic execution.==或者用于周期执行一系列动作.
->Recorded Actions<==>已记录的动作<
"next page"=="下一页"
"previous page"=="上一页"
- of #[of]#== 共 #[of]#
->Type==>类型
->Comment==>注释
-Call Count<==调用次数<
Recording Date==记录的日期
Last Exec Date==上次执行日期
Next Exec Date==下次执行日期
->Event Trigger<==>事件触发器<
"clone"=="clone"
->Scheduler<==>调度器<
->no event<==>无事件<
->activate event<==>激活事件<
->no repetition<==>不重复<
->activate scheduler<==>激活调度器<
->off<==>关闭<
->run once<==>执行一次<
->run regular<==>定期执行<
->after start-up<==>在启动后<
"Execute Selected Actions"=="执行选中的行为"
"Delete Selected Actions"=="删除选中的行为"
"Delete all Actions which had been created before "=="删除创建于之前的全部行为"
-day<==天<
-days<==天<
-week<==周<
-weeks<==周<
-month<==月<
-months<==月<
-year<==年<
-years<==年<
->Result of API execution==>API执行结果
->minutes<==>分钟<
->hours<==>小时<
-Scheduled actions are executed after the next execution date has arrived within a time frame of #[tfminutes]# minutes.==已安排动作会在 #[tfminutes]# 分钟后执行。
-To see a list of all APIs, please visit the==To see a list of all APIs, please visit the
#-----------------------------
#File: Table_RobotsTxt_p.html
#---------------------------
-Table Viewer==表格查看器
The information that is presented on this page can also be retrieved as XML.==此页信息也可表示为XML.
Click the API icon to see the XML.==点击API图标查看XML.
-To see a list of all APIs, please visit the API wiki page.==查看所有API, 请访问API Wiki.
-API wiki page==API百科页面
-To see a list of all APIs, please visit the==要查看所有API的列表,请访问
->robots.txt table<==>robots.txt列表<
#-----------------------------
#File: Tables_p.html
#---------------------------
-Table Viewer==表查看器
-entries==词条
Table Administration==表格管理
Table Selection==选择表格
Select Table:==选择表格:
-#"Show Table"=="Zeige Tabelle"
show max.==显示最多.
->all<==>全部<
entries,==个词条,
search rows for==搜索内容
"Search"=="搜索"
-Table Editor: showing table==表格编辑器: 显示表格
-#PK==Primärschlüssel
"Edit Selected Row"=="编辑选中行"
"Add a new Row"=="添加新行"
"Delete Selected Rows"=="删除选中行"
@@ -3545,19 +2023,12 @@ Primary Key==主键
#-----------------------------
#File: terminal_p.html
+"WebStructurePicture"=="网页结构图"
#---------------------------
-YaCy Peer Live Monitoring Terminal==YaCy节点实时监控终端
YaCy System Terminal Monitor==YaCy系统终端监控器
-#YaCy System Monitor==YaCy System Monitor
-Search Form==搜索页面
-Crawl Start==开始爬取
-Status Page==状态页面
-Confirm Shutdown==确认关闭
-><Shutdown==><关闭程序
Event Terminal==事件终端
Image Terminal==图形终端
Domain Monitor==域监控器
-"Loading Processing software..."=="正在载入软件..."
This browser does not have a Java Plug-in.==此浏览器没有安装Java插件.
Get the latest Java Plug-in here.==在此获取.
Resource Monitor==资源监控器
@@ -3567,66 +2038,41 @@ Network Monitor==网络监控器
#File: Threaddump_p.html
#---------------------------
YaCy Debugging: Thread Dump==YaCy Debug: 线程Dump
-Threaddump<==线程Dump<
"Single Threaddump"=="单线程Dump"
"Multiple Dump Statistic"=="多个Dump数据"
-#"create Threaddump"=="Threaddump erstellen"
#-----------------------------
#File: TransNews_p.html
+"negative vote"=="差评"
+"positive vote"=="好评"
+Originator==拥有者
#---------------------------
-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 its own local translation.==远端节点可以对你的翻译进行投票并将其添加到他们的本地翻译中。
-entries available==可用的词条
"Publish"=="发布"
-You can check your outgoing messages==你可以检查你的传出消息
->here<==>这儿<
-To edit or add local translations you can use==要编辑或添加本地翻译,你可以用
File:==文件:
Translation:==翻译:
->score==>分数
-negative vote==反对票
-positive vote==赞成票
-Vote on this translation==对这个翻译投票
-If you vote positive the translation is added to your local translation list==如果你投赞成票,翻译将被添加到你的本地翻译列表中
->Originator<==>启动人<
#-----------------------------
#File: Translator_p.html
#---------------------------
Translation Editor==翻译编辑器
-Translate untranslated text of the user interface (current language).==翻译用户界面中未翻译的文本(当前语言)。
UI Translation==界面翻译
-Target Language:==目标语言
-activate a different language==激活另一种语言
Source File==源文件
view it==查看
filter untranslated==列出未翻译项
Source Text==源文
-Translated Text==翻译
-Save translation==保存翻译
-The modified translation file is stored in DATA/LOCALE directory.==修改的翻译文件储存在 DATA/LOCALE 目录下
#-----------------------------
#File: User.html
#---------------------------
User Page==用户页面
-You are not logged in. ==当前未登录.
Username:==用户名:
-Password: Get URL Viewer<==>获取地址查看器<
->URL Metadata<==>地址元数据<
-URL==地址
-#Hash==Hash
-Word Count==字数
-Description==描述
-Size==大小
View as==查看形式
-#Original==Original
Plain Text==文本
Parsed Text==解析文本
Parsed Sentences==解析句子
@@ -3666,247 +2105,122 @@ Invalid URL==无效链接
Unable to download resource content.==无法下载资源内容.
Unable to parse resource content.==无法解析资源内容.
Unsupported protocol.==不支持的协议.
->Original Content from Web<==>网页原始内容<
Parsed Content==解析内容
->Original from Web<==>网页原始内容<
->Original from Cache<==>缓存原始内容<
->Parsed Tokens<==>解析令牌<
#-----------------------------
#File: ViewLog_p.html
#---------------------------
Server Log==服务器日志
-Lines==行
reversed order==倒序排列
"refresh"=="刷新"
#-----------------------------
#File: ViewProfile.html
+Name==名称
+Nick Name==昵称
+eMail==邮箱
#---------------------------
Local Peer Profile:==本地节点资料:
-Remote Peer Profile==远端节点资料
Wrong access of this page==页面权限错误
The requested peer is unknown or a potential peer.==所请求节点未知或者是潜在节点.
The profile can't be fetched.==无法获取资料.
-The peer==节点
-is not online.==当前不在线.
-This is the Profile of==资料
-#Name==Name
-#Nick Name==Nick Name
-#Homepage==Homepage
-#eMail==eMail
-#ICQ==ICQ
-#Jabber==Jabber
-#Yahoo!==Yahoo!
-#MSN==MSN
-#Skype==Skype
Comment==注释
-View this profile as==查看方式
-> or==> 或者
-#vCard==vCard
#-----------------------------
#File: Vocabulary_p.html
+Delete==删除
+The information that is presented on this page can also be retrieved as XML==此页面上显示的信息也可以作为XML检索
#---------------------------
->Vocabulary Administration<==>词汇管理<
-Vocabularies can be used to produce a search navigation.==词汇表可用于生成搜索导航.
-A vocabulary must be created before content is indexed.==必须在索引内容之前创建词汇.
The vocabulary is used to annotate the indexed content with a reference to the object that is denoted by the term of the vocabulary.==词汇用于通过引用由词汇的术语表示的对象来注释索引的内容.
The object can be denoted by a url stub that, combined with the term, becomes the url for the object.==该对象可以用地址存根表示,该存根与该术语一起成为该对象的地址.
->Vocabulary Selection<==>词汇选择<
->Vocabulary Name<==>词汇名<
"View"=="查看"
->Vocabulary Production<==>词汇生成<
- Empty Vocabulary== 空词汇
->Auto-Discover<==>自动发现<
-> from file name==> 来自文件名
-> from page title (split)==> 来自页面标题(拆分)
-> from page title==> 来自页面标题
-> from page author==> 来自页面作者
->Objectspace<==>对象空间<
-It is possible to produce a vocabulary out of the existing search index.==可以从现有搜索索引中生成词汇表.
-This is done using a given 'objectspace' which you can enter as a URL Stub.==这是使用给定的“对象空间”完成的,你可以将其作为地址存根输入.
-This stub is used to find all matching URLs.==此存根用于查找所有匹配的地址.
-If the remaining path from the matching URLs then denotes a single file, the file name is used as vocabulary term.==如果来自匹配地址的剩余路径表示单个文件,则文件名用作词汇表术语.
-This works best with wikis.==这适用于百科.
-Try to use a wiki url as objectspace path.==尝试使用百科地址作为对象空间路径
Import from a csv file==从csv文件导入
->File Path or==>文件路径或者
->Start line<==>起始行<
->Column for Literals<==>文本列<
->Synonyms<==>同义词<
->no Synonyms<==>无同义词<
->Auto-Enrich with Synonyms from Stemming Library<==>使用词干库中的同义词自动丰富<
->Read Column<==>读取列<
->Column for Object Link (optional)<==>对象链接列(可选)<
->Charset of Import File<==>导入文件字符集<
->Column separator<==>列分隔符<
"Create"=="创建"
#-----------------------------
#File: WatchWebStructure_p.html
#---------------------------
->Text<==>文本<
->Pivot Dot<==>枢轴点<
"WebStructurePicture"=="网页结构图"
->Other Dot<==>其他点<
-API wiki page==API 百科页面
-To see a list of all APIs, please visit the==要查看所有API的列表, 请访问
->Host List<==>服务器列表<
-To see a list of all APIs==要查看所有API的列表
The data that is visualized here can also be retrieved in a XML file, which lists the reference relation between the domains.==此页面数据显示域之间的关联关系, 能以XML文件形式查看.
With a GET-property 'about' you get only reference relations about the host that you give in the argument field for 'about'.==使用GET属性'about'仅能获得带有'about'参数的域关联关系.
With a GET-property 'latest' you get a list of references that had been computed during the current run-time of YaCy, and with each next call only an update to the next list of references.==使用GET属性'latest'能获得当前的关联关系列表, 并且每一次调用都只能更新下一级关联关系列表.
Click the API icon to see the XML file.==点击API图标查看XML文件.
-To see a list of all APIs, please visit the API wiki page.==查看所有API, 请访问API Wiki.
Web Structure==网页结构
-host<==服务器<
-depth<==深度<
-nodes<==节点<
-time<==时间<
-size<==大小<
->Background<==>背景<
->Line<==>线<
->Dot<==>点<
->Dot-end<==>末点<
->Color <==>颜色<
"change"=="改变"
#-----------------------------
#File: Wiki.html
+Edit==编辑
#---------------------------
-YaCyWiki page:==YaCyWiki:
-last edited by==最后编辑由
-change date==改变日期
-Edit<==编辑<
-only granted to admin==只授权给管理员
Grant Write Access to==授予写权限
# !!! Do not translate the input buttons because that breaks the function to switch rights !!!
-#"all"=="Allen"
-#"admin"=="Administrator"
Start Page==开始页面
Index==索引
Versions==版本
Author:==作者:
-#Text:==Text:
You can use==你可以在这使用
-Wiki Code here.==wiki代码.
-"edit"=="编辑"
"Submit"=="提交"
"Preview"=="预览"
"Discard"=="取消"
->Preview==>预览
No changes have been submitted so far!==未提交任何改变!
Subject==主题
Change Date==改变日期
Last Author==最后作者
-IO Error reading wiki database:==读取wiki数据库时出现IO错误:
-Select versions of page==选择页面版本
Compare version from==原始版本
"Show"=="显示"
with version from==对比版本
-"current"=="当前"
"Compare"=="对比"
-Return to==返回
Changes will be published as announcement on YaCyNews==改变会被发布在YaCy新闻中.
#-----------------------------
#File: WikiHelp.html
#---------------------------
-to embed this video:==嵌入此视频:
-Text will be displayed underlined.==文本要显示下划线 span>.
Code==代码
This tag displays a Youtube or Vimeo video with the id specified and fixed width 425 pixels and height 350 pixels.==这个标签显示一个425像素和350像素的Youtube或Vimeo视频.
-i.e. use==比如用
-Wiki Help==Wiki帮助
Wiki-Code==Wiki代码
This table contains a short description of the tags that can be used in the Wiki and several other servlets==此表列出了用于Wiki和几个插件代码标签简述,
of YaCy. For a more detailed description visit the==详情请见
-#YaCy Wiki==YaCy Wiki
Description==描述
-#=headline===headline
-These tags create headlines. If a page has three or more headlines, a table of content will be created automatically.==此标记标识标题内容. 如果页面有多于三个标题, 则会自动创建一个表格.
-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 emphasizes it more strongly (i.e. bold) and the last tags create a combination of both.==第二对用粗体表示, 第三对为两者的联合.
-Text will be displayed struck through.==文本内容以删除线表示.
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.==此标记用于有序列表.
-#something<==something<
-#another thing==another thing
-#and yet another==and yet another
-#something else==something else
These tags create an unnumbered list.==用于创建无序列表.
-#word==word
-#:definition==:definition
These tags create a definition list.==用于创建定义列表.
This tag creates a horizontal line.==创建水平线.
-#pagename==pagename
-#description]]==description]]
This tag creates links to other pages of the wiki.==创建到其他wiki页面的链接.
This tag displays an image, it can be aligned left, right or center.==显示图片, 可设置左对齐, 右对齐和居中.
These tags create a table, whereas the first marks the beginning of the table, the second starts==用于创建表格, 第一个标记为表格开头, 第二个为换行,
a new line, the third and fourth each create a new cell in the line. The last displayed tag==第三个与第四个创建列.
closes the table.==最后一个为表格结尾.
-#The escape tags will cause all tags in the text between the starting and the closing tag to not be treated as wiki-code.==Durch diesen Tag wird der Text, der zwischen den Klammern steht, nicht interpretiert und unformatiert als normaler Text ausgegeben.
A text between these tags will keep all the spaces and linebreaks in it. Great for ASCII-art and program code.==此标记之间的文本会保留所有空格和换行, 主要用于ASCII艺术图片和编程代码.
If a line starts with a space, it will be displayed in a non-proportional font.==如果一行以空格开头, 则会以非比例形式显示.
-url description==URL描述
This tag creates links to external websites.==此标记创建外部网站链接.
-alt text==文本备案
#-----------------------------
#File: yacyinteractive.html
#---------------------------
YaCy Interactive Search==YaCy交互搜索
-This search result can also be retrieved as RSS/opensearch output.==此搜索结果能以RSS/opensearch被形式检索。
-The query format is similar to SRU.==请求的格式与SRU相似。
Click the API icon to see an example call to the search rss API.==点击API图标查看调用rss API的示例。
-To see a list of all APIs, please visit the API wiki page.==查看所有API, 请访问API百科页面。
->loading from local index...<==>从本地索引加载...<
"Search"=="搜索"
"Search..."=="搜索中..."
#-----------------------------
#File: yacysearch_location.html
#---------------------------
-YaCy '#[clientname]#': Location Search==YaCy '#[clientname]#':位置搜索
The information that is presented on this page can also be retrieved as XML==此页面上显示的信息也可以作为XML检索
Click the API icon to see the XML.==单击 API 图标以查看 XML。
-To see a list of all APIs, please visit the API wiki page.==要查看所有 API 的列表,请访问API wiki页面。
->search<==>搜索<
#-----------------------------
#File: yacysearch.html
+Show==显示
#---------------------------
# Do not translate id="search" and rel="search" which only have technical html semantics
-Search Page==搜索页面
-This search result can also be retrieved as RSS/opensearch output.==此搜索结果能以RSS/opensearch形式表示.
Click the RSS icon to see this search result as RSS message stream.==单击 RSS 图标可将此搜索结果视为 RSS 消息流。
Use the RSS search result format to add static searches to your RSS reader, if you use one.==使用 RSS 搜索结果格式将静态搜索添加到你的 RSS 阅读器(如果你使用的话)。
->search<==>搜索<
-"search again"=="再次搜索"
-innerHTML = 'search'==innerHTML = '搜索'
-Illegal URL mask:==非法网址掩码:
-(not a valid regular expression), mask ignored.==(不是一个有效的正则表达式),掩码忽略.
-Illegal prefer mask:==Illegal prefer mask:
Did you mean:==你想搜:
-The following words are stop-words and had been excluded from the search:==以下关键字是休止符, 已从搜索中排除:
No Results.==未找到.
-length of search words must be at least 1 character==搜索文本最少一个字符
-Searching the web with this peer is disabled for unauthorized users. Please==对于未经授权的用户,将禁用使用此节点搜索Web。 请
->log in<==>登录<
-as administrator to use the search function==作为管理员使用搜索功能
Location -- click on map to enlarge==位置 -- 点击地图放大
-Map (c) by <==Map (c) by <
-and contributors, CC-BY-SA==and contributors, CC-BY-SA
->Media<==>媒体<
-> of==> 共
-> local,==> 本地,
-remote from==远端 来自
-YaCy peers).==YaCy 节点).
#-----------------------------
#File: yacysearchitem.html
@@ -3919,7 +2233,6 @@ Pictures==图片
#File: YaCySearchPluginFF.html
#---------------------------
-#[clientname]#: Firefox Search Plugin==#[clientname]#: Firefox搜索插件
YaCy Firefox Search-Plugin Installation:==YaCy Firefox 搜索插件安装:
Simply click on the link shown below to integrate the YaCy Firefox Search-Plugin into your browser.==只需点击下面显示的链接,即可将YaCy Firefox搜索插件集成到浏览器中。
In Mozilla Firefox, you can the Search-Plugin via the search box on the toolbar. In Mozilla (Seamonkey) you can access the Search-Plugin via the Sidebar or the Location Bar.==在Mozilla Firefox中,你可以通过工具栏上的搜索框打开搜索插件。 在Mozilla(Seamonkey)中,你可以通过侧栏或位置栏访问搜索插件。
@@ -3927,87 +2240,41 @@ Install the YaCy search plugin.==安装YaCy搜索插件。
#-----------------------------
#File: yacysearchtrailer.html
+Location==位置
#---------------------------
-show search results for "#[query]#" on map==在地图上显示 "#[query]#" 的搜索结果
-Your search is done using peers in the YaCy P2P network.==你的搜索是靠YaCy P2P网络中的节点完成的。
-You can switch to 'Stealth Mode' which will switch off P2P, giving you full privacy. Expect less results then, because then only your own search index is used.==你可以切换到'隐形模式',这将关闭P2P,给你完全的隐私。期待较少的结果,因为那时只有你自己的搜索索引被使用。
-Your search is done using only your own peer, locally.==你的搜索是靠在本地的YaCy节点完成的。
-You can switch to 'Peer-to-Peer Mode' which will cause that your search is done using the other peers in the YaCy network.==你可以切换到'P2P',这将让你的搜索使用YaCy网络中的YaCy节点。
->Provider==>提供者
->Name Space==>命名空间
->Author==>作者
->Filetype==>文件类型
->Language==>语言
->Peer-to-Peer<==>P2P<
Stealth Mode==隐身 模式
Privacy==隐私
Context Ranking==按内容排名
Sort by Date==按日期排序
Documents==文件
Images==图片
->Documents==>文件
->Images==>图片
#-----------------------------
#File: api/citation.html
#---------------------------
-Document Citations for==文档引用
List of other web pages with citations==其他网页与引文列表
Similar documents from different hosts:==来自不同服务器的类似文件:
#-----------------------------
#File: api/table_p.html
#---------------------------
-Table Viewer==查看表格
"Edit Table"=="编辑表格"
#-----------------------------
-#File: api/yacydoc.html
-#---------------------------
->Title<==>标题<
->Author<==>作者<
->Description<==>描述<
->Subject<==>主题<
->Publisher<==>发布者<
->Contributor<==>贡献者<
->Date<==>日期<
->Type<==>类型<
->Identifier<==>标识符<
->Language<==>语言<
->Load Date<==>加载日期<
->Referrer Identifier<==>关联标识符<
-#>Referrer URL<==>Referrer URL<
->Document size<==>文件大小<
->Number of Words<==>关键字数目<
-#-----------------------------
-
-### Subdirectory env/templates ###
#File: env/templates/header.template
+"Search"=="搜索"
+Search==搜索
+Toggle navigation==切换导航
#---------------------------
-> Administration<==> 管理<
"Search..."=="搜索..."
-Re-Start<==重启<
-Shutdown<==关闭<
Forum==论坛
Help==帮助
About This Page==关于此页面
JavaScript information==JavaScript信息
-external==外部
- YaCy Tutorials== YaCy教程
- Download YaCy== 下载YaCy
- Community (Web Forums)== 社区(网页论坛)
- Git Repository== Git库
-> Sponsor<==> 赞助<
-YaCy is free software, so we need the help of many to support the development.==YaCy是免费开源软件,所以我们需要很多人的帮助来支持开发。
-You can help by joining a sponsoring plan:==你 可以通过加入赞助计划来提供帮助:
-become a Github Sponsor==成为Github赞助商
-become a YaCy Patreon==成为YaCy赞助商
Please help! We need financial help to move on with the development!==请帮忙!我们需要资金帮助才能继续发展!
-> Search<==>搜索<
### FIRST STEPS ###
First Steps==第一步
Use Case & Account==用法&账户
-Load Web Pages, Crawler==加载网页,爬虫
RAM/Disk Usage & Updates==内存/硬盘使用&更新
### MONITORING ###
Monitoring==监控
@@ -4018,16 +2285,12 @@ Network Access==网络访问
Crawler Monitor==爬虫监控
### Production ###
Production==生产
-Advanced Crawler==高级爬虫
-Index Export/Import==索引导出/导入
Content Semantic==内容语义
Target Analysis==目标分析
### Administration ###
->Administration<==>管理<
Index Administration==索引管理
System Administration==系统管理
Filter & Blacklists==过滤&黑名单
-Process Scheduler==进程调度器
### Search Portal Integration ###
Search Portal Integration==搜索门户整合
Portal Configuration==门户配置
@@ -4035,44 +2298,24 @@ Portal Design==门户设计
Ranking and Heuristics==排名和启发
#-----------------------------
-#File: env/templates/metas.template
-#---------------------------
-English, Englisch==English, Englisch
-#-----------------------------
-
#File: env/templates/simpleheader.template
+Compare Search==比较搜索
+File Search==文件搜索
+JavaScript information==JavaScript信息
+URL Viewer==网址查看器
+Web Search==网页搜索
+YaCy Tutorials==YaCy教程
#---------------------------
-Project Wiki==项目百科
-Search Interface==搜索界面
About This Page==关于此页
-Bugtracker==Bug追踪器
-Git Repository==Git存储库
-Community (Web Forums)==社区(网络论坛)
-Download YaCy==下载YaCy
-Google Appliance API==Google设备API
->Web Search<==>网页搜索<
->File Search<==>文件搜索<
->Compare Search<==>比较搜索<
->Index Browser<==>索引浏览器<
->URL Viewer<==>地址查看器<
Example Calls to the Search API:==调用搜索API的示例:
Administration »==管理 »
-Search Interfaces==搜索界面
Toggle navigation==切换导航
-Solr Default Core==Solr默认核心
-Solr Webgraph Core==Solr网页图形核心
-Administration ==管理
-Administration==管理
-#Administration<==Administration<
->Search Network<==>搜索网络<
-#Peer Owner Profile==节点所有者资料
-Help / YaCy Wiki==帮助 / YaCy Wiki
#-----------------------------
#File: env/templates/simpleSearchHeader.template
+Toggle navigation==切换导航
#---------------------------
Log in==登录
-Search Interfaces==搜索界面
Web Search==网页搜索
File Search==文件搜索
Compare Search==比较搜索
@@ -4081,11 +2324,6 @@ Example Calls to the Search API:==调用搜索API的例子:
About This Page==关于此页面
YaCy Tutorials==YaCy教程
JavaScript information==JavaScript信息
-external==外部
- Download YaCy== 下载YaCy
- Community (Web Forums)== 社区(网页论坛)
- Git Repository== Git库
- Bugtracker== Bug追踪器
Administration »==管理 »
#-----------------------------
@@ -4096,12 +2334,9 @@ Server Access==服务器访问
Access Grid==访问网格
Incoming Requests Overview==传入请求概况
Incoming Requests Details==传入请求详情
-All Connections<==全部连接<
-Local Search<==本地搜索<
Log==日志
Host Tracker==服务器跟踪器
Access Rate Limitations==访问率限制
-Remote Search<==远端搜索<
Cookie Menu==Cookie菜单
Incoming Cookies==传入 Cookies
Outgoing Cookies==传出 Cookies
@@ -4109,40 +2344,20 @@ Outgoing Cookies==传出 Cookies
#File: env/templates/submenuBlacklist.template
#---------------------------
-Content Control==内容控制
Filter & Blacklists==过滤 & 黑名单
Blacklist Administration==黑名单管理
Blacklist Cleaner==黑名单整理
Blacklist Test==黑名单测试
Import/Export==导入/导出
-Index Cleaner==索引整理
#-----------------------------
#File: env/templates/submenuComputation.template
+Memory Usage==内存使用
+Overview==概况
+Server Log==服务器日志
#---------------------------
->Application Status<==>应用程序状态<
->Status<==>状态<
System==系统
Thread Dump==线程转储
->Processes<==>流程<
->Server Log<==>服务器日志<
->Concurrent Indexing<==>并发索引<
->Memory Usage<==>内存使用<
->Search Sequence<==>搜索序列<
->Messages<==>消息<
->Overview<==>概况<
->Incoming News<==>传入的新闻<
->Processed News<==>处理的新闻<
->Outgoing News<==>传出的新闻<
->Published News<==>发布的新闻<
->Community Data<==>社区数据<
->Surftips<==>上网技巧<
->Local Peer Wiki<==>本地节点百科 <
-UI Translations==用户界面翻译
->Published==>已发布的
->Processed==>加工的
->Outgoing==>传出的
->Incoming==>传入的
#-----------------------------
#File: env/templates/submenuConfig.template
@@ -4151,44 +2366,21 @@ System Administration==系统管理
Viewer and administration for database tables==数据库表的查看与管理
Performance Settings of Busy Queues==繁忙队列的性能设置
#UNUSED HERE
-#Peer Administration Console==节点控制台
-Status==状态
->Accounts==>账户
-Network Configuration==网络设置
->Heuristics<==>触发式<
-Dictionary Loader==功能扩展
-System Update==系统升级
->Performance==>性能
Advanced Settings==高级设置
-Parser Configuration==解析配置
-Local robots.txt==本地robots.txt
Advanced Properties==高级设置
#-----------------------------
#File: env/templates/submenuCrawlMonitor.template
+Overview==概况
#---------------------------
-Overview==概况
-Receipts==回执
-Queries==查询
-DHT Transfer==DHT 传输
-Proxy Use==代理使用
-Local Crawling==本地爬取
-Global Crawling==全球爬取
-Pack Import==代理导入
Crawl Results==爬取结果
-Crawler<==爬虫<
Global==全球
robots.txt Monitor==robots.txt监控器
Remote==远端
No-Load==空载
Processing Monitor==进程监控
-Crawler Queues==爬虫队列
-Loader<==加载器<
Rejected URLs==被拒绝地址
->Queues<==>队列<
-Local<==本地<
Crawler Steering==爬取控制
-Scheduler and Profile Editor<==调度器与资料编辑器<
#-----------------------------
#File: env/templates/submenuCrawler.template
@@ -4200,14 +2392,8 @@ Parser Configuration==解析器配置
#File: env/templates/submenuDesign.template
#---------------------------
->Language<==>语言<
Search Page Layout==搜索页面布局
Design==设计
->Appearance<==>外观<
-Customization==自定义
->Appearance==>外观
-User Profile==用户资料
->Language==>语言
#-----------------------------
#File: env/templates/submenuIndexControl.template
@@ -4220,52 +2406,16 @@ Solr Schema Editor==Solr模式编辑器
Field Re-Indexing==字段重新索引
Reverse Word Index==反向词索引
Content Analysis==内容分析
-Reverse Word Index Administration==详细关键字索引管理
-URL References Database==地址关联关系数据库
-URL Viewer==地址浏览
#-----------------------------
#File: env/templates/submenuIndexCreate.template
#---------------------------
-Crawler/Spider<==爬虫/蜘蛛<
Crawl Start (Expert)==爬取开始(专家模式)
Network Scanner==网络扫描仪
Crawling of MediaWikis==MediaWikis爬取
Remote Crawling==远端爬取
Scraping Proxy==收割代理
->Autocrawl<==>自动爬取<
Advanced Crawler==高级爬虫
->Crawling of phpBB3 Forums<==>phpBB3论坛爬取<
-Start a Web Crawl==开启网页爬取
-Crawler Queues==爬虫队列
-Index Creation==索引创建
-Full Site Crawl==全站爬取
-Sitemap Loader==网站地图加载
-Crawl Start (Expert)==开始爬取 (专家模式)
-Network Scanner==网络 扫描仪
-Crawling of==正在爬取
->phpBB3 Forums<==>phpBB3论坛<
-Content Import<==导入内容<
-Network Harvesting<==网络采集<
-Remote Crawling==远端 爬取
-Scraping Proxy==收割 代理
-Database Reader<==数据库读取<
-for phpBB3 Forums==对于phpBB3论坛
-Dump Reader for==Dump阅读器为
-#-----------------------------
-
-#File: env/templates/submenuIndexImport.template
-#---------------------------
->Content Export / Import<==>内容导出/导入<
->Export<==>导出<
->Internal Index Export<==>内部索引导出<
->Import<==>导入<
-RSS Feed Importer==RSS订阅导入器
-OAI-PMH Importer==OAI-PMH导入器
->Warc Importer<==>Warc导入器<
->Database Reader<==>数据库阅读器<
-Database Reader for phpBB3 Forums==phpBB3论坛的数据库阅读器
-Dump Reader for MediaWiki dumps==MediaWiki转储阅读器
#-----------------------------
#File: env/templates/submenuMaintenance.template
@@ -4273,8 +2423,6 @@ Dump Reader for MediaWiki dumps==MediaWiki转储阅读器
RAM/Disk Usage & Updates==内存/硬盘 使用 & 更新
Web Cache==网页缓存
Download System Update==下载系统更新
->Performance<==>性能<
-RAM/Disk Usage==内存/硬盘 使用
#-----------------------------
#File: env/templates/submenuPortalConfiguration.template
@@ -4291,13 +2439,11 @@ Search Box Anywhere==随处搜索框
Publication==发布
Wiki==百科
Blog==博客
-File Hosting==文件共享
#-----------------------------
#File: env/templates/submenuRanking.template
#---------------------------
Solr Ranking Config==Solr排名配置
->Heuristics<==>启发式<
Ranking and Heuristics==排名与启发式
RWI Ranking Config==反向词排名配置
#-----------------------------
@@ -4305,11 +2451,8 @@ RWI Ranking Config==反向词排名配置
#File: env/templates/submenuSemantic.template
#---------------------------
Content Semantic==内容语义
->Automated Annotation<==>自动注释<
Auto-Annotation Vocabulary Editor==自动注释词汇编辑器
Knowledge Loader==知识加载器
->Augmented Content<==>增强内容<
-Augmented Browsing==增强浏览
#-----------------------------
#File: env/templates/submenuTargetAnalysis.template
@@ -4322,10 +2465,7 @@ Regex Test==正则表达式测试
#File: env/templates/submenuUseCaseAccount.template
#---------------------------
Use Case & Accounts==用法 & 账户
-Use Case ==用法
-Use Case==用法
Basic Configuration==基本设置
->Accounts<==>账户<
Network Configuration==网络设置
#-----------------------------
@@ -4338,27 +2478,11 @@ Image Collage==图像拼贴
#-----------------------------
### Subdirectory js ###
-#File: js/Crawler.js
-#---------------------------
-"Continue this queue"=="继续队列"
-"Pause this queue"=="暂停队列"
-#-----------------------------
-
-#File: js/yacyinteractive.js
-#---------------------------
->total results==>全部结果
- topwords:== 顶部:
->Name==>名称
->Size==>大小
->Date==>日期
-#-----------------------------
-
-### Subdirectory proxymsg ###
#File: proxymsg/authfail.inc
+Password==密码
+Username==用户名
#---------------------------
Your Username/Password is wrong.==用户名/密码输入错误.
-Username==用户名
-Password==密码
"login"=="登录"
#-----------------------------
@@ -4370,20 +2494,62 @@ unspecified error==未定义错误
not-yet-assigned error==未定义错误
You don't have an active internet connection. Please go online.==无网络链接, 请上线.
Could not load resource. The file is not available.==无效文件, 加载资源失败.
-Exception occurred==异常发生
-Generated #[date]# by==生成日期 #[date]# 由
#-----------------------------
#File: proxymsg/proxylimits.inc
#---------------------------
Your Account is disabled for surfing.==你的账户没有浏览权限.
-Your Timelimit (#[timelimit]# Minutes per Day) is reached.==你的账户时限(#[timelimit]# 分钟每天)已到.
#-----------------------------
#File: proxymsg/unknownHost.inc
#---------------------------
-The server==服务器
-could not be found.==未找到.
Did you mean:==是不是:
#-----------------------------
+#File: IndexImportJsonList_p.html
+#---------------------------
+File:==文件:
+Remaining Time:==剩余时间:
+Running Time:==运行时间:
+Speed:==速度:
+Thread:==线程:
+#-----------------------------
+
+#File: IndexImportZim_p.html
+#---------------------------
+File:==文件:
+Remaining Time:==剩余时间:
+Running Time:==运行时间:
+Speed:==速度:
+Thread:==线程:
+#-----------------------------
+
+#File: RegexTest.html
+#---------------------------
+Regex Test==正则表达式测试
+#-----------------------------
+
+#File: api/share.html
+#---------------------------
+File Share==文件共享
+#-----------------------------
+
+#File: api/yacydoc.html
+#---------------------------
+Click the API icon to see an example call to the search rss API.==点击API图标查看调用rss API的示例。
+Description==描述
+Location==位置
+Subject==主题
+#-----------------------------
+
+#File: processing/domaingraph/applet/index.html
+#---------------------------
+Get the latest Java Plug-in here.==在此获取.
+This browser does not have a Java Plug-in.==此浏览器没有安装Java插件.
+#-----------------------------
+
+#File: yacychat.html
+#---------------------------
+"Search"=="搜索"
+User==用户
+#-----------------------------
--
cgit v1.2.3