added deleted files from commit 254f12d60b which are still needed and had been linked outside of yacy/ui
Some checks failed
CI Script to build on self-hosted server / build (push) Has been cancelled

This commit is contained in:
Michael Peter Christen 2024-07-24 15:57:51 +02:00
parent 910a496c9f
commit d181b9e89b
28 changed files with 666 additions and 1207 deletions

View File

@ -55,7 +55,7 @@
<!-- defining all needed directory names for packing search widget-->
<property name="jquery" location="htroot/jquery/"/>
<property name="portalsearch" location="htroot/portalsearch/"/>
<property name="img-2" location="htroot/yacy/ui/img-2"/>
<property name="img-2" location="htroot/env/grafics"/>
<target name="install-ivy" description="--> install ivy">
<local name="ivy.download.dir"/><property name="ivy.download.dir" value="${basedir}/ivy" />
@ -389,7 +389,7 @@
<tarfileset dir="${jquery}" prefix="yacy/jquery/">
<include name="**/*"/>
</tarfileset>
<tarfileset dir="${img-2}" prefix="yacy/ui/img-2/">
<tarfileset dir="${img-2}" prefix="env/grafics">
<include name="magnify.png"/>
<include name="cancel_round.png"/>
<include name="stop.png"/>

View File

@ -2,14 +2,14 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>YaCy '#[clientname]#': Appearance and Integration</title>
<link rel="stylesheet" media="screen" type="text/css" href="yacy/ui/css/colorpicker.css" />
<link rel="stylesheet" media="screen" type="text/css" href="env/styles/colorpicker.css" />
#%env/templates/metas.template%#
</head>
<body id="ConfigSkins">
#%env/templates/header.template%#
#%env/templates/submenuDesign.template%#
<script type="text/javascript" src="yacy/ui/js/jquery.colorpicker.js"></script>
<script type="text/javascript" src="js/jquery.colorpicker.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#color_background, #color_text, #color_legend, #color_tableheader, #color_tableitem, #color_tableitem2, #color_tablebottom, #color_borderline, #color_signbad, #color_signgood, #color_signother, #color_searchheadline, #color_searchurl, #color_searchurlhover').ColorPicker({

View File

@ -6,7 +6,7 @@
<link rel="stylesheet" type="text/css" media="screen" href="env/highslide.css" />
<script type="text/javascript" src="js/yacysearch.js"></script>
<script type="text/javascript" src="js/highslide/highslide.js"></script>
<script type="text/javascript" src="yacy/ui/js/jquery.tagcloud.js"></script>
<script type="text/javascript" src="js/jquery.tagcloud.js"></script>
</head>
<body id="ConfigSearchPage" >

View File

@ -85,7 +85,7 @@
<li>Insert the following code:
<pre>
&lt;p&gt;Search with YaCy in this Wiki:&lt;/p&gt;
&lt;script src="#[address]#/yacy/ui/js/jquery-1.3.2.min.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;script src="#[address]#/js/jquery-1.3.2.min.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;script&gt;
$(document).ready(function() {
yconf = {
@ -96,7 +96,7 @@
width : 500,
height : 600
};
$.getScript(yconf.url+'/yacy/ui/js/yacyui-portalsearch.js', function(){});
$.getScript(yconf.url+'/js/yacyui-portalsearch.js', function(){});
});
&lt;/script&gt;
&lt;div id="yacylivesearch"&gt;

View File

@ -77,7 +77,7 @@
<li>find the line where the default search window is displayed, thats right behind the <pre>&lt;div id="search-box"&gt;</pre> statement</li>
<li>Insert the following code right behind the div tag:
<pre>
&lt;script src="#[address]#/yacy/ui/js/jquery-1.3.2.min.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;script src="#[address]#/js/jquery-1.3.2.min.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;script&gt;
$(document).ready(function() {
yconf = {
@ -87,7 +87,7 @@
height : 600,
position : ['top',30]
};
$.getScript(yconf.url+'/yacy/ui/js/yacyui-portalsearch.js', function(){return false;});
$.getScript(yconf.url+'/js/yacyui-portalsearch.js', function(){return false;});
});
&lt;/script&gt;
&lt;div id="yacylivesearch"&gt;

View File

@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>YaCy '#[clientname]#': Web Structure</title>
<link rel="stylesheet" media="screen" type="text/css" href="yacy/ui/css/colorpicker.css" />
<link rel="stylesheet" media="screen" type="text/css" href="env/styles/colorpicker.css" />
#%env/templates/metas.template%#
<script type="text/javascript" src="js/WatchWebStructure.js"></script>
<style type="text/css">
@ -33,7 +33,7 @@
#%env/templates/header.template%#
#%env/templates/submenuWebStructure.template%#
<script type="text/javascript" src="yacy/ui/js/jquery.colorpicker.js"></script>
<script type="text/javascript" src="js/jquery.colorpicker.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#colorback, #colortext, #colorline, #colordot0, #colordota, #colorlineend').ColorPicker({

BIN
htroot/env/grafics/cancel_round.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
htroot/env/grafics/loading2.gif vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
htroot/env/grafics/magnify.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 552 B

BIN
htroot/env/grafics/stop.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
htroot/env/grafics/yacy-logo.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

161
htroot/env/styles/colorpicker.css vendored Normal file
View File

@ -0,0 +1,161 @@
.colorpicker {
width: 356px;
height: 176px;
overflow: hidden;
position: absolute;
background: url(../colorpicker_images/colorpicker_background.png);
font-family: Arial, Helvetica, sans-serif;
display: none;
}
.colorpicker_color {
width: 150px;
height: 150px;
left: 14px;
top: 13px;
position: absolute;
background: #f00;
overflow: hidden;
cursor: crosshair;
}
.colorpicker_color div {
position: absolute;
top: 0;
left: 0;
width: 150px;
height: 150px;
background: url(../colorpicker_images/colorpicker_overlay.png);
}
.colorpicker_color div div {
position: absolute;
top: 0;
left: 0;
width: 11px;
height: 11px;
overflow: hidden;
background: url(../colorpicker_images/colorpicker_select.gif);
margin: -5px 0 0 -5px;
}
.colorpicker_hue {
position: absolute;
top: 13px;
left: 171px;
width: 35px;
height: 150px;
cursor: n-resize;
}
.colorpicker_hue div {
position: absolute;
width: 35px;
height: 9px;
overflow: hidden;
background: url(../colorpicker_images/colorpicker_indic.gif) left top;
margin: -4px 0 0 0;
left: 0px;
}
.colorpicker_new_color {
position: absolute;
width: 60px;
height: 30px;
left: 213px;
top: 13px;
background: #f00;
}
.colorpicker_current_color {
position: absolute;
width: 60px;
height: 30px;
left: 283px;
top: 13px;
background: #f00;
}
.colorpicker input {
background-color: transparent;
border: 1px solid transparent;
position: absolute;
font-size: 10px;
font-family: Arial, Helvetica, sans-serif;
color: #898989;
top: 4px;
right: 11px;
text-align: right;
margin: 0;
padding: 0;
height: 11px;
}
.colorpicker_hex {
position: absolute;
width: 72px;
height: 22px;
background: url(../colorpicker_images/colorpicker_hex.png) top;
left: 212px;
top: 142px;
}
.colorpicker_hex input {
right: 6px;
}
.colorpicker_field {
height: 22px;
width: 62px;
background-position: top;
position: absolute;
}
.colorpicker_field span {
position: absolute;
width: 12px;
height: 22px;
overflow: hidden;
top: 0;
right: 0;
cursor: n-resize;
}
.colorpicker_rgb_r {
background-image: url(../colorpicker_images/colorpicker_rgb_r.png);
top: 52px;
left: 212px;
}
.colorpicker_rgb_g {
background-image: url(../colorpicker_images/colorpicker_rgb_g.png);
top: 82px;
left: 212px;
}
.colorpicker_rgb_b {
background-image: url(../colorpicker_images/colorpicker_rgb_b.png);
top: 112px;
left: 212px;
}
.colorpicker_hsb_h {
background-image: url(../colorpicker_images/colorpicker_hsb_h.png);
top: 52px;
left: 282px;
}
.colorpicker_hsb_s {
background-image: url(../colorpicker_images/colorpicker_hsb_s.png);
top: 82px;
left: 282px;
}
.colorpicker_hsb_b {
background-image: url(../colorpicker_images/colorpicker_hsb_b.png);
top: 112px;
left: 282px;
}
.colorpicker_submit {
position: absolute;
width: 22px;
height: 22px;
background: url(../colorpicker_images/colorpicker_submit.png) top;
left: 322px;
top: 142px;
overflow: hidden;
}
.colorpicker_focus {
background-position: center;
}
.colorpicker_hex.colorpicker_focus {
background-position: bottom;
}
.colorpicker_submit.colorpicker_focus {
background-position: bottom;
}
.colorpicker_slider {
background-position: bottom;
}

19
htroot/js/jquery-1.3.2.min.js vendored Normal file

File diff suppressed because one or more lines are too long

12
htroot/js/jquery.dimensions.min.js vendored Normal file
View File

@ -0,0 +1,12 @@
/* Copyright (c) 2007 Paul Bakaus (paul.bakaus@googlemail.com) and Brandon Aaron (brandon.aaron@gmail.com || http://brandonaaron.net)
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
*
* $LastChangedDate: 2007-12-20 08:43:48 -0600 (Thu, 20 Dec 2007) $
* $Rev: 4257 $
*
* Version: 1.2
*
* Requires: jQuery 1.2+
*/
(function($){$.dimensions={version:'1.2'};$.each(['Height','Width'],function(i,name){$.fn['inner'+name]=function(){if(!this[0])return;var torl=name=='Height'?'Top':'Left',borr=name=='Height'?'Bottom':'Right';return this.is(':visible')?this[0]['client'+name]:num(this,name.toLowerCase())+num(this,'padding'+torl)+num(this,'padding'+borr);};$.fn['outer'+name]=function(options){if(!this[0])return;var torl=name=='Height'?'Top':'Left',borr=name=='Height'?'Bottom':'Right';options=$.extend({margin:false},options||{});var val=this.is(':visible')?this[0]['offset'+name]:num(this,name.toLowerCase())+num(this,'border'+torl+'Width')+num(this,'border'+borr+'Width')+num(this,'padding'+torl)+num(this,'padding'+borr);return val+(options.margin?(num(this,'margin'+torl)+num(this,'margin'+borr)):0);};});$.each(['Left','Top'],function(i,name){$.fn['scroll'+name]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(name=='Left'?val:$(window)['scrollLeft'](),name=='Top'?val:$(window)['scrollTop']()):this['scroll'+name]=val;}):this[0]==window||this[0]==document?self[(name=='Left'?'pageXOffset':'pageYOffset')]||$.boxModel&&document.documentElement['scroll'+name]||document.body['scroll'+name]:this[0]['scroll'+name];};});$.fn.extend({position:function(){var left=0,top=0,elem=this[0],offset,parentOffset,offsetParent,results;if(elem){offsetParent=this.offsetParent();offset=this.offset();parentOffset=offsetParent.offset();offset.top-=num(elem,'marginTop');offset.left-=num(elem,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&$.css(offsetParent,'position')=='static'))offsetParent=offsetParent.offsetParent;return $(offsetParent);}});function num(el,prop){return parseInt($.curCSS(el.jquery?el[0]:el,prop,true))||0;};})(jQuery);

View File

@ -0,0 +1,92 @@
/*!
* jquery.tagcloud.js
* A Simple Tag Cloud Plugin for JQuery
*
* https://github.com/addywaddy/jquery.tagcloud.js
* created by Adam Groves
*/
(function($) {
/*global jQuery*/
"use strict";
var compareWeights = function(a, b)
{
return a - b;
};
// Converts hex to an RGB array
var toRGB = function(code) {
if (code.length === 4) {
code = code.replace(/(\w)(\w)(\w)/gi, "\$1\$1\$2\$2\$3\$3");
}
var hex = /(\w{2})(\w{2})(\w{2})/.exec(code);
return [parseInt(hex[1], 16), parseInt(hex[2], 16), parseInt(hex[3], 16)];
};
// Converts an RGB array to hex
var toHex = function(ary) {
return "#" + jQuery.map(ary, function(i) {
var hex = i.toString(16);
hex = (hex.length === 1) ? "0" + hex : hex;
return hex;
}).join("");
};
var colorIncrement = function(color, range) {
return jQuery.map(toRGB(color.end), function(n, i) {
return (n - toRGB(color.start)[i])/range;
});
};
var tagColor = function(color, increment, weighting) {
var rgb = jQuery.map(toRGB(color.start), function(n, i) {
var ref = Math.round(n + (increment[i] * weighting));
if (ref > 255) {
ref = 255;
} else {
if (ref < 0) {
ref = 0;
}
}
return ref;
});
return toHex(rgb);
};
$.fn.tagcloud = function(options) {
var opts = $.extend({}, $.fn.tagcloud.defaults, options);
var tagWeights = this.map(function(){
return $(this).attr("rel");
});
tagWeights = jQuery.makeArray(tagWeights).sort(compareWeights);
var lowest = tagWeights[0];
var highest = tagWeights.pop();
var range = highest - lowest;
if(range === 0) {range = 1;}
// Sizes
var fontIncr, colorIncr;
if (opts.size) {
fontIncr = (opts.size.end - opts.size.start)/range;
}
// Colors
if (opts.color) {
colorIncr = colorIncrement (opts.color, range);
}
return this.each(function() {
var weighting = $(this).attr("rel") - lowest;
if (opts.size) {
$(this).css({"font-size": opts.size.start + (weighting * fontIncr) + opts.size.unit});
}
if (opts.color) {
$(this).css({"color": tagColor(opts.color, colorIncr, weighting)});
}
});
};
$.fn.tagcloud.defaults = {
size: {start: 14, end: 18, unit: "pt"}
};
})(jQuery);

View File

@ -0,0 +1,334 @@
function statuscheck() {
if(load_status < 4) {
return;
} else {
window.clearInterval(loading);
yrun();
}
}
function openNavigator(modifier) {
var query = $("#yquery").getValue() + " " +modifier;
$("#yquery").setValue(query);
$("#yquery").trigger('keyup');
}
$(document).ready(function() {
$.ajaxSetup({
timeout: 5000,
cache: true
})
// apply default properties
ycurr = '';
startRecord = 0;
maximumRecords = 10;
submit = false;
yconf = $.extend({
url : 'is a mandatory property - no default',
'global' : false,
theme : 'start',
title : 'YaCy P2P Web Search',
logo : yconf.url + '/yacy/ui/img/yacy-logo.png',
link : 'http://yacy.net',
width : 640,
height : 640,
position : [150,50],
modal : false,
resizable: true,
show : '',
hide : '',
load_js : true,
load_css : true
}, yconf);
$('<div id="ypopup" class="classic"></div>').appendTo("#yacylivesearch");
if(yconf.load_css) {
var style1 = yconf.url + '/yacy/ui/css/yacyui-portalsearch.css';
var style2 = yconf.url + '/yacy/ui/css/themes/'+yconf.theme+'/ui.core.css';
var style3 = yconf.url + '/yacy/ui/css/themes/'+yconf.theme+'/ui.dialog.css';
var style4 = yconf.url + '/yacy/ui/css/themes/'+yconf.theme+'/ui.theme.css';
var style5 = yconf.url + '/yacy/ui/css/themes/'+yconf.theme+'/ui.resizable.css';
var style6 = yconf.url + '/yacy/ui/css/themes/'+yconf.theme+'/ui.accordion.css';
var head = document.getElementsByTagName('head')[0];
$(document.createElement('link'))
.attr({type:'text/css', href: style1, rel:'stylesheet', media:'screen'})
.appendTo(head);
$(document.createElement('link'))
.attr({type:'text/css', href: style2, rel:'stylesheet', media:'screen'})
.appendTo(head);
$(document.createElement('link'))
.attr({type:'text/css', href: style3, rel:'stylesheet', media:'screen'})
.appendTo(head);
$(document.createElement('link'))
.attr({type:'text/css', href: style4, rel:'stylesheet', media:'screen'})
.appendTo(head);
$(document.createElement('link'))
.attr({type:'text/css', href: style5, rel:'stylesheet', media:'screen'})
.appendTo(head);
$(document.createElement('link'))
.attr({type:'text/css', href: style6, rel:'stylesheet', media:'screen'})
.appendTo(head);
}
load_status = 0;
loading = window.setInterval("statuscheck()", 200);
if(yconf.load_js) {
var script1 = yconf.url + '/yacy/ui/js/jquery.query.js';
var script2 = yconf.url + '/yacy/ui/js/jquery.form.js';
var script3 = yconf.url + '/yacy/ui/js/jquery.field.min.js';
var script4 = yconf.url + '/yacy/ui/js/jquery-ui-1.7.2.min.js';
$.getScript(script1, function(){ load_status++; });
$.getScript(script2, function(){ load_status++; });
$.getScript(script3, function(){ load_status++; });
$.getScript(script4, function(){ load_status++; });
} else {
yrun();
}
});
function yrun() {
$.extend($.ui.accordion.defaults, {
autoHeight: false,
clearStyle: true,
collapsible: true,
header: "h3"
});
maximumRecords = parseInt($("#ysearch input[name='maximumRecords']").getValue());
$("#ypopup").dialog({
autoOpen: false,
height: yconf.height,
width: yconf.width,
minWidth: yconf.width,
position: yconf.position,
modal: yconf.modal,
resizable: yconf.resizable,
title: yconf.title,
show: yconf.show,
hide: yconf.hide,
close: function(event, ui) {
$("#yquery").setValue('');
},
drag: function(event, ui) {
var position = $(".ui-dialog").position();
var left = $(".ui-dialog").width()+5+position.left;
$("#yside").dialog('option', 'position', [left,position.top+32]);
},
dragStop: function(event, ui) {
var position = $(".ui-dialog").position();
var left = $(".ui-dialog").width()+5+position.left;
$("#yside").dialog('option', 'position', [left,position.top+32]);
},
resizeStop: function(event, ui) {
var position = $(".ui-dialog").position();
var height = $(".ui-dialog").height()-55;
var left = $(".ui-dialog").width()+5+position.left;
$("#yside").dialog('option', 'height', height);
$("#yside").dialog('option', 'position', [left,position.top+32]);
},
close: function(event, ui) {
$("#yside").dialog('destroy');
$('#yside').remove();
},
open: function(event, ui) {
$('<div id="yside" style="padding:0px;"></div>').insertAfter(".ui-dialog-content");
var position = $(".ui-dialog").position();
$("#yside").dialog({
title: 'Navigation',
autoOpen: false,
draggable: false,
resizable: false,
width: 220,
height: $(".ui-dialog").height()-55,
minHeight: $(".ui-dialog").height()-55,
show: 'slide',
hide: 'slide',
position : [position.left+$(".ui-dialog").width()+5,position.top+32],
open: function(event, ui) {
$('div.ui-widget-shadow').remove();
$('ypopup').dialog( 'moveToTop' );
}
});
$('.ui-widget-shadow').remove();
$('div[aria-labelledby="ui-dialog-title-yside"] div.ui-dialog-titlebar').remove();
$("#ypopup").bind("scroll", function(e){
p1 = $("#ypopup h3 :last").position().top;
if(p1-$("#ypopup").dialog( "option", "height" ) < 0) {
startRecord = startRecord + maximumRecords;
yacysearch(submit, false);
}
});
}
});
$('#ysearch').keyup(function(e) {
if(e.which == 27) { // ESC
$("#ypopup").dialog('close');
$("#yquery").setValue("");
} else if(e.which == 39) { // Right
startRecord = startRecord + maximumRecords;
yacysearch(submit, false);
}
if(ycurr == $("#yquery").getValue()) {
return false;
}
if ($("#yquery").getValue() == '') {
if($("#ypopup").dialog('isOpen'))
$("#ypopup").dialog('close');
} else {
ycurr = $("#yquery").getValue();
if(!submit) yacysearch(false, true);
else submit = false;
}
return false;
});
$('#ysearch').submit(function() {
submit = true;
ycurr = $("#yquery").getValue();
if (!$("#ypopup").dialog('isOpen'))
$("#ypopup").dialog('open');
else
if ($("#yside").dialog('isOpen'))
$("#yside").dialog('close');
$("#yquery").focus();
yacysearch(yconf.global, true);
return false;
});
}
function yacysearch(global, clear) {
var url = yconf.url + '/yacysearch.json?callback=?'
if(clear) {
$('#ypopup').empty();
var loading = "<div class='yloading'><h3 class='linktitle'><em>Loading: "+yconf.url+"</em><br/>";
var loadimg = "<img src='"+yconf.url+"/yacy/ui/img/loading2.gif' align='absmiddle'/></h3></div>";
$('#ypopup').append(loading+loadimg);
if (!$("#ypopup").dialog('isOpen'))
$("#ypopup").dialog('open');
else
if ($("#yside").dialog('isOpen'))
$("#yside").dialog('close');
$("#yquery").focus();
}
var param = [];
$("#ysearch input").each(function(i){
var item = { name : $(this).attr('name'), value : $(this).attr('value') };
if(item.name == 'resource') {
if(item.value == 'global') global = true;
if(global) item.value = 'global';
}
if(item.name == 'query' || item.name == 'search') {
if(item.value != ycurr)
ycurr = item.value;
}
param[i] = item;
});
param[param.length] = { name : 'startRecord', value : startRecord };
$.ajaxSetup({
timeout: 10000,
error: function() {if (clear) $('#ypopup').empty();}
});
$.getJSON(url, param,
function(json, status) {
if (json[0]) data = json[0];
else data = json;
var searchTerms = data.channels[0].searchTerms.replace(/\+/g," ");
if(ycurr != searchTerms)
return false;
if(clear)
$('#ypopup').empty();
var total = data.channels[0].totalResults.replace(/[,.]/,"");
if(global) var result = 'global';
else var result = 'local';
var count = 0;
$.each (
data.channels[0].items,
function(i,item) {
if (item) {
var favicon = "<img src='"+item.faviconUrl+"' class='favicon'/>";
var title = "<h3 class='linktitle'>"+favicon+"<a href='"+item.link+"' target='_blank'>"+item.title+"</a></h3>";
var url = "<p class='url'><a href='"+item.link+"' target='_blank'>"+item.link+"</a></p>"
var desc = "<p class='desc'>"+item.description+"</p>";
var date = "<p class='date'>"+item.pubDate.substring(0,16);
var size = " | "+item.sizename+"</p>";
$(title+desc+url+date+size).appendTo("#ypopup");
}
count++;
}
);
if(clear) {
$('#yside').empty();
var yglobal = "local";
if(global)
yglobal = "global";
$('<div id="ylogo" style="margin0px; padding:0px;"></div>').appendTo('#yside');
$('<h3 style="padding-left:25px;">'+yconf.title+'</h3>').appendTo('#ylogo');
var ylogo = "<a href='"+yconf.link+"' target='_blank'><img src='"+yconf.logo+"' alt='"+yconf.logo+"' title='"+yconf.logo+"' /></a>";
var ymsg= "Total "+yglobal+" results: "+total;
$("<div class='ymsg'><table><tr><td width='55px'>"+ylogo+"</td><td id='yresult'>"+ymsg+"</td></tr></div").appendTo('#ylogo');
$('#ylogo').accordion({
collapsible: false
});
$.each (
data.channels[0].navigation,
function(i,facet) {
if (facet) {
var acc = '#ynav'+i;
$(acc).accordion('destroy');
$('<div id="ynav'+i+'" style="margin0px; padding:0px;"></div>').appendTo('#yside');
var id = "#y"+facet.facetname;
$('<h3 style="padding-left:25px;">'+facet.displayname+'</h3>').appendTo(acc);
$('<div id="y'+facet.facetname+'"></div>').appendTo(acc);
$("<ul class='nav'></ul>").appendTo(id);
$.each (
facet.elements,
function(j,element) {
var mod = element.modifier.replace(/'/g,"%27");
$("<li><a href='javascript:openNavigator(\""+mod+"\")'>"+element.name+" ("+element.count+")</a></li>").appendTo(id+" .nav");
}
)
$(acc).accordion({});
}
}
);
if(count>0) {
autoOpenSidebar();
if ($("#ypopup").dialog('isOpen')) {
if($("#ypopup h3 :last").position().top < $("#ypopup").dialog( "option", "height" )) {
startRecord = startRecord + maximumRecords;
yacysearch(submit, false);
}
}
}
}
}
);
function autoOpenSidebar() {
window.setTimeout(function() {
if( $("#yquery").getValue() == ycurr) {
$("#yside").dialog('open');
$('#ynav1').accordion('activate', false);
$("#yquery").focus();
}
} , 1500);
}
}

View File

@ -209,19 +209,19 @@
<td><a href="portalsearch/yacy-portalsearch.js">yacy-portalsearch.js</a></td>
</tr>
<tr>
<td><a href="yacy/ui/js/jquery.colorpicker.js">jquery.colorpicker.js</a></td>
<td><a href="js/jquery.colorpicker.js">jquery.colorpicker.js</a></td>
<td><a href="http://www.jclark.com/xml/copying.txt">Expat</a></td>
<td><a href="yacy/ui/js/jquery.colorpicker.js">jquery.colorpicker.js</a></td>
<td><a href="js/jquery.colorpicker.js">jquery.colorpicker.js</a></td>
</tr>
<tr>
<td><a href="yacy/ui/js/jquery.dimensions.min.js">jquery.dimensions.min.js</a></td>
<td><a href="js/jquery.dimensions.min.js">jquery.dimensions.min.js</a></td>
<td><a href="http://www.jclark.com/xml/copying.txt">Expat</a></td>
<td><a href="https://raw.githubusercontent.com/johnantoni/jquery.dimensions/master/jquery.dimensions.js">jquery.dimensions.js</a></td>
</tr>
<tr>
<td><a href="yacy/ui/js/jquery.tagcloud.js">jquery.tagcloud.js</a></td>
<td><a href="js/jquery.tagcloud.js">jquery.tagcloud.js</a></td>
<td><a href="http://www.jclark.com/xml/copying.txt">Expat</a></td>
<td><a href="yacy/ui/js/jquery.tagcloud.js">jquery.tagcloud.js</a></td>
<td><a href="js/jquery.tagcloud.js">jquery.tagcloud.js</a></td>
</tr>
</table>
</body>

View File

@ -46,7 +46,7 @@
#ysearch .fancy {
height:18px;
background: white;
background-image: url(../yacy/ui/img-2/magnify.png);
background-image: url(../env/grafics/magnify.png);
background-repeat: no-repeat;
background-position: 2px 1px;
padding-left: 20px;

View File

@ -49,7 +49,7 @@ $(document).ready(function() {
'global' : false,
theme : 'start',
title : 'YaCy Search Widget',
logo : yconf.url + '/yacy/ui/img/yacy-logo.png',
logo : yconf.url + '/env/grafics/yacy-logo.png',
link : 'https://yacy.net',
width : 640,
height : 640,
@ -242,7 +242,7 @@ function yacysearch(clear) {
if(clear) {
$('#ypopup').empty();
var loading = "<div class='yloading'><h3 class='linktitle'><em>Loading: "+yconf.url+"</em><br/>";
var loadimg = "<img src='"+yconf.url+"/yacy/ui/img/loading2.gif' align='absmiddle'/></h3></div>";
var loadimg = "<img src='"+yconf.url+"/env/grafics/loading2.gif' align='absmiddle'/></h3></div>";
$('#ypopup').append(loading+loadimg);
if (!$("#ypopup").dialog('isOpen'))
@ -292,7 +292,7 @@ function yacysearch(clear) {
err = 'Request Time out.';
};
if (clear) $('#ypopup').empty();
var favicon = "<img src='"+yconf.url+"/yacy/ui/img-2/stop.png' class='favicon'/>";
var favicon = "<img src='"+yconf.url+"/env/grafics/stop.png' class='favicon'/>";
var title = "<h3 class='linktitle'>"+favicon+" "+err+"</h3>";
var url = "<p class='url'><a href=''>Current search terms: "+portalsearch.ycurr+"</a></p>"
$(title+url).appendTo("#ypopup");
@ -340,7 +340,7 @@ function yacysearch(clear) {
if(count == 0) {
if (clear) $('#ypopup').empty();
var favicon = "<img src='"+yconf.url+"/yacy/ui/img-2/stop.png' class='favicon'/>";
var favicon = "<img src='"+yconf.url+"/env/grafics/stop.png' class='favicon'/>";
var title = "<h3 class='linktitle'>"+favicon+"No search results!</h3>";
var url = "<p class='url'><a href=''>Current search terms: "+searchTerms+"</a></p>"
var desc = "<p class='desc'>You could restate your search, release some navigators or switch to global search...</p>";

View File

@ -4060,135 +4060,21 @@ PLEASE REPLACE THIS PAGE BY PUTTING A FILE index.html INTO THE PATH==BITTE ERSET
>Date==>Datum
#-----------------------------
#File: yacy/ui/js/jquery-flexigrid.js
#File: js/jquery-flexigrid.js
#---------------------------
'Displaying {from} to {to} of {total} items'=='Zeige {from} bis {to} von {total} Elementen'
'Processing, please wait ...'=='In Bearbeitung. Bitte warten ...'
'No items'=='Keine Elemente'
#-----------------------------
#File: yacy/ui/js/jquery-ui-1.7.2.min.js
#File: js/jquery-ui-1.7.2.min.js
#---------------------------
Loading&#8230;==Lade&#8230;
#-----------------------------
#File: yacy/ui/js/jquery.ui.all.min.js
#File: js/jquery.ui.all.min.js
#---------------------------
Loading&#8230;==Lade&#8230;
#-----------------------------
#File: yacy/ui/index.html
#---------------------------
About YaCy-UI==Über YaCy-UI
Admin Console==Admin Konsole
"Bookmarks"=="Lesezeichen"
>Bookmarks==>Lesezeichen
#Server Log==Server Log
#-----------------------------
#File: yacy/ui/yacyui-admin.html
#---------------------------
Peer Control==Peer
"Login"=="Login"
#Login==Anmelden
Themes==Aussehen
Messages==Nachrichten
Re-Start==Neustart
Shutdown==Beenden
Web Indexing==Web Indexierung
Crawl Start==Crawl starten
Monitoring==Überwachung
YaCy Network==YaCy Netzwerk
>Settings==>Einstellungen
"Basic Settings"=="Grundkonfiguration"
Basic== Basis
Accounts==Konten
"Network"=="Netzwerk"
Network== Netzwerk
"Advanced Settings"=="Erweiterte Einstellungen"
Advanced== Erweitert
"Update Settings"=="System Aktualisierung"
Update== Aktualisierung
>YaCy Project==>YaCy Projekt
"YaCy Project Home"=="YaCy Projekt Homepage"
Project== Projekt
"YaCy Statistics"=="YaCy Statistiken"
Statistics== Statistiken
"YaCy Forum"=="YaCy Forum"
#Forum==Forum
"Help"=="Hilfe"
#"YaCy Wiki"=="YaCy Wiki"
#Wiki==Wiki
#-----------------------------
#File: yacy/ui/yacyui-bookmarks.html
#---------------------------
'Add'=='Hinzufügen'
'Crawl'=='Crawlen'
'Edit'=='Bearbeiten'
'Delete'=='Löschen'
'Rename'=='Umbenennen'
'Help'=='Hilfe'
#"public bookmark"=="öffentliches Lesezeichen"
#"private bookmark"=="privates Lesezeichen"
#"delete bookmark"=="Lesezeichen löschen"
"YaCy Bookmarks"=="YaCy Lesezeichen"
#>Title==>Titel
#>Tags==>Tags
#>Date==>Datum
#'Hash'=='Hash'
'Public'=='Öffentlich'
'Title'=='Titel'
#'Tags'=='Tags'
'Folders'=='Ordner'
'Date'=='Datum'
#-----------------------------
#File: yacy/ui/sidebar/sidebar_1.html
#---------------------------
YaCy P2P Websearch==YaCy P2P Websuche
"Search"=="Suchen"
>Text==>Text
>Images==>Bilder
>Audio==>Audio
>Video==>Videos
>Applications==>Anwendungen
Search term:==Suchbegriff:
"help"=="Hilfe"
Resource/Network:==Ressource/Netzwerk:
freeworld==freeworld
local peer==lokaler Peer
>bookmarks==>Lesezeichen
sciencenet==ScienceNet
>Language:==>Sprache:
any language==jede Sprache
Bookmark Folders==Lesezeichen Ordner
#-----------------------------
#File: yacy/ui/sidebar/sidebar_2.html
#---------------------------
Bookmark Tags<==Lesezeichen Tags<
Search Options==Suchoptionen
Constraint:==Einschränkungen:
all pages==alle Seiten
index pages==Index Seiten
URL mask:==URL Filter:
Prefer mask:==Vorzugsmaske:
Bookmark TagCloud==Lesezeichen TagWolke
Topwords<==Top Wörter<
alt="help"==alt="Hilfe"
title="help"==title="Hilfe"
#-----------------------------
#File: yacy/ui/yacyui-welcome.html
#---------------------------
>Overview==>Übersicht
YaCy-UI is going to be a JavaScript based client for YaCy based on the existing XML and JSON API.==YaCy-UI wird ein in JavaScript geschriebener Client für YaCy, der auf der existierenden XML und JSON API aufbaut.
YaCy-UI is at most alpha status, as there is still problems with retriving the search results.==YaCy-UI ist bestenfalls im Alpha Stadium, da es immer noch Probleme beim Abholen der Suchergebnisse gibt.
I am currently changing the backend to a more application friendly format and getting good results with it (I will check that in some time after the stable release 0.7).==Ich ändere gerade das Backend in ein andwendungsfreundlicheres Format und bekomme gute Ergebnisse damit (Ich werde die Änderungen einige Zeit nach der Veröffentlichung der stabilen Version 0.7 einchecken).
For now have a look at the bookmarks, performance has increased significantly, due to the use of JSON and Flexigrid!==Aktuell können Sie sich die Lesezeichen ansehen - Die Performance hat sich signifikant gebessert durch die Verwendung von JSON und Flexigrid!
#-----------------------------
# EOF

View File

@ -1703,110 +1703,18 @@ Did you mean:==Quizás quizo decir:
>Date==>Fecha
#-----------------------------
#File: yacy/ui/js/jquery-flexigrid.js
#File: js/jquery-flexigrid.js
#---------------------------
#-----------------------------
#File: yacy/ui/js/jquery-ui-1.7.2.min.js
#File: js/jquery-ui-1.7.2.min.js
#---------------------------
Loading&#8230;==Cargando&#8230;
#-----------------------------
#File: yacy/ui/js/jquery.ui.all.min.js
#File: js/jquery.ui.all.min.js
#---------------------------
Loading&#8230;==Cargando&#8230;
#-----------------------------
#File: yacy/ui/index.html
#---------------------------
About YaCy-UI==Acerca de YaCy-UI
Admin Console==Consola de Administración
Server Log==Log del servidor
#-----------------------------
#File: yacy/ui/yacyui-admin.html
#---------------------------
"Login"=="Iniciar Sesión"
Login==Iniciar Sesión
Themes==Temas
Messages==Mensajes
Re-Start==Re-Iniciar
Shutdown==Cerrar
Web Indexing==Indexación web
Monitoring==Monitoreo
YaCy Network==Red de YaCy
>Settings==>Configuraciones
"Basic Settings"=="Configuraciones Básicas"
Basic== Básico
Accounts==Cuentas
"Network"=="Red"
Network== Red
"Advanced Settings"=="Configuraciones Avanzadas"
Advanced== Avanzado
"Update Settings"=="Configuración de Actualizaciones"
Update== Actualizar
>YaCy Project==>Proyecto YaCy
"YaCy Project Home"=="Sito del Proyecto YaCy"
Project== Proyecto
"YaCy Statistics"=="Estadísticas de YaCy"
Statistics== Estadísticas
"YaCy Forum"=="Forum de YaCy"
Forum==Forum
"Help"=="Ayuda"
"YaCy Wiki"=="Wiki de YaCy"
Wiki==Wiki
#-----------------------------
#File: yacy/ui/yacyui-bookmarks.html
#---------------------------
'Add'=='Agregar'
'Crawl'=='Crawl'
'Edit'=='Modificar'
'Delete'=='Eliminar'
'Rename'=='Renombrar'
'Help'=='Ayuda
"YaCy Bookmarks"=="Marcadores de YaCy"
>Title==>Título
>Tags==>Tag
>Date==>Fecha
'Hash'=='Hash'
'Title'=='Título'
'Tags'=='Tag'
'Folders'=='Directorios'
'Date'=='Fecha'
#-----------------------------
#File: yacy/ui/sidebar/sidebar_1.html
#---------------------------
YaCy P2P Websearch==YaCy P2P Websearch
"Search"=="Búscar"
>Text==>Texto
>Images==>Imágenes
>Audio==>Audio
>Video==>Vídeo
>Applications==>Aplicaciones
"help"=="Ayuda"
Resource/Network:==Recurso/Red:
freeworld==mundolibre
sciencenet==reddeciencia
>Language:==>Idioma:
any language==cualquier idioma
#-----------------------------
#File: yacy/ui/sidebar/sidebar_2.html
#---------------------------
Search Options==Opciones de Búsqueda
all pages==todas las páginas
index pages==índice de páginas
URL mask:==Máscara de URL:
alt="help"==alt="ayuda"
title="help"==title="ayuda"
#-----------------------------
#File: yacy/ui/yacyui-welcome.html
#---------------------------
>Overview==>Resumen
#YaCy-UI is going to be a JavaScript based client for YaCy based on the existing XML and JSON API.==YaCy-UI è un client YaCy scritto in JavaScript basato sulle API XML già esistenti e su chiamate JSON.
#-----------------------------
# EOF

View File

@ -1682,110 +1682,18 @@ Did you mean:==Forse intendevi cercare:
>Date==>Data
#-----------------------------
#File: yacy/ui/js/jquery-flexigrid.js
#File: js/jquery-flexigrid.js
#---------------------------
#-----------------------------
#File: yacy/ui/js/jquery-ui-1.7.2.min.js
#File: js/jquery-ui-1.7.2.min.js
#---------------------------
Loading&#8230;==Caricamento in corso&#8230;
#-----------------------------
#File: yacy/ui/js/jquery.ui.all.min.js
#File: js/jquery.ui.all.min.js
#---------------------------
Loading&#8230;==Caricamento in corso&#8230;
#-----------------------------
#File: yacy/ui/index.html
#---------------------------
About YaCy-UI==Informazioni su YaCy-UI
Admin Console==Console amministrazione
Server Log==Log del server
#-----------------------------
#File: yacy/ui/yacyui-admin.html
#---------------------------
"Login"=="Login"
Login==Login
Themes==Temi grafici
Messages==Messaggi
Re-Start==Riavvio
Shutdown==Arresto
Web Indexing==Indicizzazione web
Monitoring==Monitoraggio
YaCy Network==Rete YaCy
>Settings==>Impostazioni
"Basic Settings"=="Impostazioni di base"
Basic== di base
Accounts==Account
"Network"=="Rete"
Network== Rete
"Advanced Settings"=="Impostazioni avanzate"
Advanced== Avanzate
"Update Settings"=="Aggiornamento del sistema"
Update== Aggiornamento
>YaCy Project==>Progetto YaCy
"YaCy Project Home"=="Sito del Progetto YaCy"
Project== Progetto
"YaCy Statistics"=="Statistiche su YaCy"
Statistics== Statistiche
"YaCy Forum"=="Forum di YaCy"
Forum==Forum
"Help"=="Aiuto"
"YaCy Wiki"=="Wiki di YaCy"
Wiki==Wiki
#-----------------------------
#File: yacy/ui/yacyui-bookmarks.html
#---------------------------
'Add'=='Aggiungi'
'Crawl'=='Crawl'
'Edit'=='Modifica'
'Delete'=='Elimina'
'Rename'=='Rinomina'
'Help'=='Aiuto'
"YaCy Bookmarks"=="YaCy Bookmarks"
>Title==>Titolo
>Tags==>Tag
>Date==>Data
'Hash'=='Hash'
'Title'=='Titolo'
'Tags'=='Tag'
'Folders'=='Directory'
'Date'=='Data'
#-----------------------------
#File: yacy/ui/sidebar/sidebar_1.html
#---------------------------
YaCy P2P Websearch==YaCy ricerca web P2P
"Search"=="Cerca"
>Text==>Testo
>Images==>Immagini
>Audio==>Audio
>Video==>Filmati
>Applications==>Programmi
"help"=="Aiuto"
Resource/Network:==Risorsa/rete:
freeworld==freeworld
sciencenet==ScienceNet
>Language:==>Lingua:
any language==qualsiasi lingua
#-----------------------------
#File: yacy/ui/sidebar/sidebar_2.html
#---------------------------
Search Options==Opzioni di ricerca
all pages==tutte le pagine
index pages==indice pagine
URL mask:==Filtro URL:
alt="help"==alt="Aiuto"
title="help"==title="Aiuto"
#-----------------------------
#File: yacy/ui/yacyui-welcome.html
#---------------------------
>Overview==>Panoramica
#YaCy-UI is going to be a JavaScript based client for YaCy based on the existing XML and JSON API.==YaCy-UI è un client YaCy scritto in JavaScript basato sulle API XML già esistenti e su chiamate JSON.
#-----------------------------
# EOF

View File

@ -1848,135 +1848,21 @@ YaCy: Default Page for Individual Peer Content==YaCy: 個別のピアのコン
>Date==>日時
#-----------------------------
#File: yacy/ui/js/jquery-flexigrid.js
#File: js/jquery-flexigrid.js
#---------------------------
'Displaying {from} to {to} of {total} items'=='{total} の内の {from} から {to} までの項目を表示しています'
'Processing, please wait ...'=='処理しています, どうぞお待ち下さい...'
'No items'=='項目がありません'
#-----------------------------
#File: yacy/ui/js/jquery-ui-1.7.2.min.js
#File: js/jquery-ui-1.7.2.min.js
#---------------------------
Loading&#8230;==読み込み&#8230;
#-----------------------------
#File: yacy/ui/js/jquery.ui.all.min.js
#File: js/jquery.ui.all.min.js
#---------------------------
Loading&#8230;==読み込み&#8230;
#-----------------------------
#File: yacy/ui/index.html
#---------------------------
About YaCy-UI==YaCy-UIについて
Admin Console==管理コンソール
"Bookmarks"=="ブックマーク"
>Bookmarks==>ブックマーク
#Server Log==サーヴァー ログ
#-----------------------------
#File: yacy/ui/yacyui-admin.html
#---------------------------
Peer Control==ピアの制御
"Login"=="ログイン"
#Login==ログイン
Themes==テーマ
Messages==メッセージ
Re-Start==再起動
Shutdown==シャットダウン
Web Indexing==ウェブの索引付け
Crawl Start==クロールの開始
Monitoring==モニタリング
YaCy Network==YaCy ネットワーク
>Settings==>設定
"Basic Settings"=="基本的な設定"
Basic== 基本的な
Accounts==アカウント
"Network"=="ネットワーク"
Network== ネットワーク
"Advanced Settings"=="高度な設定"
Advanced== 高度な
"Update Settings"=="更新の設定"
Update== 更新
>YaCy Project==>YaCy プロジェクト
"YaCy Project Home"=="YaCy プロジェクトのホーム"
Project== プロジェクト
"YaCy Statistics"=="YaCyの統計情報"
Statistics== 統計情報
"YaCy Forum"=="YaCy フォーラム"
#Forum==フォーラム
"Help"=="ヘルプ"
#"YaCy Wiki"=="YaCy ウィキ"
#Wiki==ウィキ
#-----------------------------
#File: yacy/ui/yacyui-bookmarks.html
#---------------------------
'Add'=='追加する'
'Crawl'=='クロールする'
'Edit'=='編集する'
'Delete'=='削除する'
'Rename'=='名前を変更する'
'Help'=='ヘルプ'
#"public bookmark"=="パブリック ブックマーク"
#"private bookmark"=="プライヴェート ブックマーク"
#"delete bookmark"=="ブックマークを削除する"
"YaCy Bookmarks"=="YaCy ブックマーク"
#>Title==>題名
#>Tags==>タグ
#>Date==>日時
#'Hash'=='ハッシュ'
'Public'=='パブリック'
'Title'=='題名'
#'Tags'=='タグ'
'Folders'=='フォルダー'
'Date'=='日時'
#-----------------------------
#File: yacy/ui/sidebar/sidebar_1.html
#---------------------------
YaCy P2P Websearch==YaCy P2P ウェブ検索
"Search"=="検索"
>Text==>テキスト
>Images==>画像
>Audio==>音声
>Video==>動画
>Applications==>アプリケーション
Search term:==検索用語:
"help"=="ヘルプ"
Resource/Network:==リソース/ネットワーク:
freeworld==フリーワールド
local peer==ローカル ピア
>bookmarks==>ブックマーク
sciencenet==sciencenet
>Language:==>言語:
any language==全ての言語
Bookmark Folders==ブックマーク フォルダー
#-----------------------------
#File: yacy/ui/sidebar/sidebar_2.html
#---------------------------
Bookmark Tags<==ブックマーク タグ<
Search Options==検索オプション
Constraint:==制約:
all pages==全てのページ
index pages==索引のページ
URL mask:==URL マスク:
Prefer mask:==プリファー マスク:
Bookmark TagCloud==ブックマーク タグ クラウド
Topwords<==トップワード<
alt="help"==alt="ヘルプ"
title="help"==title="ヘルプ"
#-----------------------------
#File: yacy/ui/yacyui-welcome.html
#---------------------------
>Overview==>概要
YaCy-UI is going to be a JavaScript based client for YaCy based on the existing XML and JSON API.==YaCy-UIは既存のXMLとJSON APIに基づくYaCyの為のJavaScriptを基にしたクライアントになるでしょう.
YaCy-UI is at most alpha status, as there is still problems with retriving the search results.==まだ検索結果の取得に於ける問題がある事により、YaCy-UIは最高でもアルファ状態です.
I am currently changing the backend to a more application friendly format and getting good results with it (I will check that in some time after the stable release 0.7).==私は現在バックエンドをアプリケーションによりフレンドリーな形式に変更しつつあり、それで良い結果を得つつあります(私は安定版リリース 0.7の後のいつかに確認します).
For now have a look at the bookmarks, performance has increased significantly, due to the use of JSON and Flexigrid!==今のところはブックマークを見て下さい, JSONとFlexigridの使用によってパフォーマンスが顕著に増加しました!
#-----------------------------
# EOF

View File

@ -10923,27 +10923,7 @@
</body>
</file>
<file original="yacy/ui/index.html" source-language="en" datatype="html">
<body>
<trans-unit id="eea09b50" xml:space="preserve" approved="no" translate="yes">
<source>About YaCy-UI</source>
</trans-unit>
<trans-unit id="75a58d46" xml:space="preserve" approved="no" translate="yes">
<source>Admin Console</source>
</trans-unit>
<trans-unit id="f164d787" xml:space="preserve" approved="no" translate="yes">
<source>"Bookmarks"</source>
</trans-unit>
<trans-unit id="1aa8875f" xml:space="preserve" approved="no" translate="yes">
<source>&gt;Bookmarks</source>
</trans-unit>
<trans-unit id="9e468e7" xml:space="preserve" approved="no" translate="yes">
<source>Server Log</source>
</trans-unit>
</body>
</file>
<file original="yacy/ui/js/jquery-flexigrid.js" source-language="en" datatype="html">
<file original="js/jquery-flexigrid.js" source-language="en" datatype="html">
<body>
<trans-unit id="aae695d9" xml:space="preserve" approved="no" translate="yes">
<source>'Displaying {from} to {to} of {total} items'</source>
@ -10957,7 +10937,7 @@
</body>
</file>
<file original="yacy/ui/js/jquery-ui-1.7.2.min.js" source-language="en" datatype="html">
<file original="js/jquery-ui-1.7.2.min.js" source-language="en" datatype="html">
<body>
<trans-unit id="58805d0b" xml:space="preserve" approved="no" translate="yes">
<source>Loading&amp;#8230;</source>
@ -10965,7 +10945,7 @@
</body>
</file>
<file original="yacy/ui/js/jquery.ui.all.min.js" source-language="en" datatype="html">
<file original="js/jquery.ui.all.min.js" source-language="en" datatype="html">
<body>
<trans-unit id="58805d0b" xml:space="preserve" approved="no" translate="yes">
<source>Loading&amp;#8230;</source>
@ -10973,240 +10953,6 @@
</body>
</file>
<file original="yacy/ui/sidebar/sidebar_1.html" source-language="en" datatype="html">
<body>
<trans-unit id="28301008" xml:space="preserve" approved="no" translate="yes">
<source>YaCy P2P Websearch</source>
</trans-unit>
<trans-unit id="a472dcf8" xml:space="preserve" approved="no" translate="yes">
<source>"Search"</source>
</trans-unit>
<trans-unit id="3916a8b" xml:space="preserve" approved="no" translate="yes">
<source>&gt;Text</source>
</trans-unit>
<trans-unit id="5281c856" xml:space="preserve" approved="no" translate="yes">
<source>&gt;Images</source>
</trans-unit>
<trans-unit id="6d972238" xml:space="preserve" approved="no" translate="yes">
<source>&gt;Audio</source>
</trans-unit>
<trans-unit id="6eb99add" xml:space="preserve" approved="no" translate="yes">
<source>&gt;Video</source>
</trans-unit>
<trans-unit id="5638c81" xml:space="preserve" approved="no" translate="yes">
<source>&gt;Applications</source>
</trans-unit>
<trans-unit id="b9ea38f6" xml:space="preserve" approved="no" translate="yes">
<source>Search term:</source>
</trans-unit>
<trans-unit id="3fedde1f" xml:space="preserve" approved="no" translate="yes">
<source>"help"</source>
</trans-unit>
<trans-unit id="10cddcad" xml:space="preserve" approved="no" translate="yes">
<source>Resource/Network:</source>
</trans-unit>
<trans-unit id="e77a28a6" xml:space="preserve" approved="no" translate="yes">
<source>freeworld</source>
</trans-unit>
<trans-unit id="4a3b6cf7" xml:space="preserve" approved="no" translate="yes">
<source>local peer</source>
</trans-unit>
<trans-unit id="a336677f" xml:space="preserve" approved="no" translate="yes">
<source>&gt;bookmarks</source>
</trans-unit>
<trans-unit id="4efd44b9" xml:space="preserve" approved="no" translate="yes">
<source>sciencenet</source>
</trans-unit>
<trans-unit id="fbbb5d44" xml:space="preserve" approved="no" translate="yes">
<source>&gt;Language:</source>
</trans-unit>
<trans-unit id="83ab630c" xml:space="preserve" approved="no" translate="yes">
<source>any language</source>
</trans-unit>
<trans-unit id="66eaf8db" xml:space="preserve" approved="no" translate="yes">
<source>Bookmark Folders</source>
</trans-unit>
</body>
</file>
<file original="yacy/ui/sidebar/sidebar_2.html" source-language="en" datatype="html">
<body>
<trans-unit id="2b7a3d9" xml:space="preserve" approved="no" translate="yes">
<source>Bookmark Tags&lt;</source>
</trans-unit>
<trans-unit id="55d9c426" xml:space="preserve" approved="no" translate="yes">
<source>Search Options</source>
</trans-unit>
<trans-unit id="3a54ddd" xml:space="preserve" approved="no" translate="yes">
<source>Constraint:</source>
</trans-unit>
<trans-unit id="8f010085" xml:space="preserve" approved="no" translate="yes">
<source>all pages</source>
</trans-unit>
<trans-unit id="f8ccc6f6" xml:space="preserve" approved="no" translate="yes">
<source>index pages</source>
</trans-unit>
<trans-unit id="71fbbcbd" xml:space="preserve" approved="no" translate="yes">
<source>URL mask:</source>
</trans-unit>
<trans-unit id="f0bf24de" xml:space="preserve" approved="no" translate="yes">
<source>Prefer mask:</source>
</trans-unit>
<trans-unit id="35d73a65" xml:space="preserve" approved="no" translate="yes">
<source>Bookmark TagCloud</source>
</trans-unit>
<trans-unit id="a7330828" xml:space="preserve" approved="no" translate="yes">
<source>Topwords&lt;</source>
</trans-unit>
<trans-unit id="98502d3" xml:space="preserve" approved="no" translate="yes">
<source>alt="help"</source>
</trans-unit>
<trans-unit id="a3130744" xml:space="preserve" approved="no" translate="yes">
<source>title="help"</source>
</trans-unit>
</body>
</file>
<file original="yacy/ui/yacyui-admin.html" source-language="en" datatype="html">
<body>
<trans-unit id="2546dc9f" xml:space="preserve" approved="no" translate="yes">
<source>Peer Control</source>
</trans-unit>
<trans-unit id="8e90c89b" xml:space="preserve" approved="no" translate="yes">
<source>"Login"</source>
</trans-unit>
<trans-unit id="95402fea" xml:space="preserve" approved="no" translate="yes">
<source>Themes</source>
</trans-unit>
<trans-unit id="e84f656c" xml:space="preserve" approved="no" translate="yes">
<source>Messages</source>
</trans-unit>
<trans-unit id="7687a848" xml:space="preserve" approved="no" translate="yes">
<source>Re-Start</source>
</trans-unit>
<trans-unit id="f9c26a76" xml:space="preserve" approved="no" translate="yes">
<source>Shutdown</source>
</trans-unit>
<trans-unit id="72d4315c" xml:space="preserve" approved="no" translate="yes">
<source>Web Indexing</source>
</trans-unit>
<trans-unit id="c4acfae9" xml:space="preserve" approved="no" translate="yes">
<source>Crawl Start</source>
</trans-unit>
<trans-unit id="e5368068" xml:space="preserve" approved="no" translate="yes">
<source>Monitoring</source>
</trans-unit>
<trans-unit id="e83ad9ac" xml:space="preserve" approved="no" translate="yes">
<source>YaCy Network</source>
</trans-unit>
<trans-unit id="41f00281" xml:space="preserve" approved="no" translate="yes">
<source>&gt;Settings</source>
</trans-unit>
<trans-unit id="f1992e4b" xml:space="preserve" approved="no" translate="yes">
<source>"Basic Settings"</source>
</trans-unit>
<trans-unit id="132b81a5" xml:space="preserve" approved="no" translate="yes">
<source> Basic</source>
</trans-unit>
<trans-unit id="84782006" xml:space="preserve" approved="no" translate="yes">
<source>Accounts</source>
</trans-unit>
<trans-unit id="33b0df6" xml:space="preserve" approved="no" translate="yes">
<source>"Network"</source>
</trans-unit>
<trans-unit id="780485e5" xml:space="preserve" approved="no" translate="yes">
<source> Network</source>
</trans-unit>
<trans-unit id="993ee983" xml:space="preserve" approved="no" translate="yes">
<source>"Advanced Settings"</source>
</trans-unit>
<trans-unit id="f69b34b" xml:space="preserve" approved="no" translate="yes">
<source> Advanced</source>
</trans-unit>
<trans-unit id="1c735dea" xml:space="preserve" approved="no" translate="yes">
<source>"Update Settings"</source>
</trans-unit>
<trans-unit id="737d3a32" xml:space="preserve" approved="no" translate="yes">
<source> Update</source>
</trans-unit>
<trans-unit id="2ba55dd5" xml:space="preserve" approved="no" translate="yes">
<source>&gt;YaCy Project</source>
</trans-unit>
<trans-unit id="7f1e03dc" xml:space="preserve" approved="no" translate="yes">
<source>"YaCy Project Home"</source>
</trans-unit>
<trans-unit id="f7b376d0" xml:space="preserve" approved="no" translate="yes">
<source> Project</source>
</trans-unit>
<trans-unit id="5ad1a681" xml:space="preserve" approved="no" translate="yes">
<source>"YaCy Forum"</source>
</trans-unit>
<trans-unit id="3e2aedff" xml:space="preserve" approved="no" translate="yes">
<source>"Help"</source>
</trans-unit>
</body>
</file>
<file original="yacy/ui/yacyui-bookmarks.html" source-language="en" datatype="html">
<body>
<trans-unit id="244a46d" xml:space="preserve" approved="no" translate="yes">
<source>'Add'</source>
</trans-unit>
<trans-unit id="87dc13e7" xml:space="preserve" approved="no" translate="yes">
<source>'Crawl'</source>
</trans-unit>
<trans-unit id="46886376" xml:space="preserve" approved="no" translate="yes">
<source>'Edit'</source>
</trans-unit>
<trans-unit id="92f09db5" xml:space="preserve" approved="no" translate="yes">
<source>'Delete'</source>
</trans-unit>
<trans-unit id="77a21e82" xml:space="preserve" approved="no" translate="yes">
<source>'Rename'</source>
</trans-unit>
<trans-unit id="46b3291f" xml:space="preserve" approved="no" translate="yes">
<source>'Help'</source>
</trans-unit>
<trans-unit id="9e8e1d25" xml:space="preserve" approved="no" translate="yes">
<source>"YaCy Bookmarks"</source>
</trans-unit>
<trans-unit id="287f08b7" xml:space="preserve" approved="no" translate="yes">
<source>'Public'</source>
</trans-unit>
<trans-unit id="a4681bd6" xml:space="preserve" approved="no" translate="yes">
<source>'Title'</source>
</trans-unit>
<trans-unit id="475a5f47" xml:space="preserve" approved="no" translate="yes">
<source>'Tags'</source>
</trans-unit>
<trans-unit id="abcf1449" xml:space="preserve" approved="no" translate="yes">
<source>'Folders'</source>
</trans-unit>
<trans-unit id="46791652" xml:space="preserve" approved="no" translate="yes">
<source>'Date'</source>
</trans-unit>
</body>
</file>
<file original="yacy/ui/yacyui-welcome.html" source-language="en" datatype="html">
<body>
<trans-unit id="c0633d7" xml:space="preserve" approved="no" translate="yes">
<source>&gt;Overview</source>
</trans-unit>
<trans-unit id="7114de08" xml:space="preserve" approved="no" translate="yes">
<source>YaCy-UI is going to be a JavaScript based client for YaCy based on the existing XML and JSON API.</source>
</trans-unit>
<trans-unit id="7b434082" xml:space="preserve" approved="no" translate="yes">
<source>YaCy-UI is at most alpha status, as there is still problems with retriving the search results.</source>
</trans-unit>
<trans-unit id="98436844" xml:space="preserve" approved="no" translate="yes">
<source>I am currently changing the backend to a more application friendly format and getting good results with it (I will check that in some time after the stable release 0.7).</source>
</trans-unit>
<trans-unit id="af668bc4" xml:space="preserve" approved="no" translate="yes">
<source>For now have a look at the bookmarks, performance has increased significantly, due to the use of JSON and Flexigrid!</source>
</trans-unit>
</body>
</file>
<file original="yacyinteractive.html" source-language="en" datatype="html">
<body>

View File

@ -4427,137 +4427,23 @@ THIS IS A DEMONSTRATION PAGE FOR YOUR OWN INDIVIDUAL WEB SERVER!==Это дем
>Date==>Дата
#-----------------------------
#File: yacy/ui/js/jquery-flexigrid.js
#File: js/jquery-flexigrid.js
#---------------------------
'Displaying {from} to {to} of {total} items'=='Показываю {from} от {to} из {total} элементов'
'Processing, please wait ...'=='Обработка, пожалуйста, подождите ...'
'No items'=='Нет обьектов'
#-----------------------------
#File: yacy/ui/js/jquery-ui-1.7.2.min.js
#File: js/jquery-ui-1.7.2.min.js
#---------------------------
Loading&#8230;==Загрузка&#8230;
#-----------------------------
#File: yacy/ui/js/jquery.ui.all.min.js
#File: js/jquery.ui.all.min.js
#---------------------------
Loading&#8230;==Загрузка&#8230;
#-----------------------------
#File: yacy/ui/index.html
#---------------------------
About YaCy-UI==О YaCy
Admin Console==Консоль администратора
"Bookmarks"=="Закладки"
>Bookmarks==>Закладки
Server Log==Лог сервера
#-----------------------------
#File: yacy/ui/yacyui-admin.html
#---------------------------
Peer Control==Управление узлами
"Login"=="Логин"
#Login==Логин
Themes==Темы
Messages==Сообщения
Re-Start==Перезапуск
Shutdown==Выключение
Web Indexing==Вэб-индексирование
Crawl Start==Запуск индексатора
Monitoring==Мониторинг
YaCy Network==Сеть YaCy
>Settings==>Настройки
"Basic Settings"=="Основные настройки"
Basic== Основные
Accounts==Учётные записи
"Network"=="Сеть"
Network== Сеть
"Advanced Settings"=="Расширенные настройки"
Advanced== Расширенные
"Update Settings"=="Настройки обновления"
Update== Расширенные
>YaCy Project==>Проект YaCy
"YaCy Project Home"=="Домашняя страница YaCy"
Project== Проект
"YaCy Statistics"=="YaCy Статистика"
Statistics== Статистика
"YaCy Forum"=="Форум YaCy"
#Forum==Форум
"Help"=="Помощь"
#"YaCy Wiki"=="YaCy Wiki"
#Wiki==Wiki
#-----------------------------
#File: yacy/ui/yacyui-bookmarks.html
#---------------------------
'Add'=='Добавить'
'Crawl'=='Индексатор'
'Edit'=='Изменить'
'Delete'=='Удалить'
'Rename'=='Переименовать'
'Help'=='Переименовать'
#"public bookmark"=="публичная закладка"
#"private bookmark"=="личная закладка"
#"delete bookmark"=="удалить закладку"
"YaCy Bookmarks"=="YaCy Закладки"
#>Title==>Заголовок
>Tags<==>Тэги<
#>Date==>Дата
#'Hash'=='Хэш'
'Public'=='Общий'
'Title'=='Заголовок'
'Tags'=='Тэги'
'Folders'=='Папки'
'Date'=='Дата'
#-----------------------------
#File: yacy/ui/sidebar/sidebar_1.html
#---------------------------
YaCy P2P Websearch==YaCy P2P Поиск
"Search"=="Поиск"
>Text==>Текст
>Images==>Изображения
>Audio==>Аудио
>Video==>Видео
>Applications==>Приложения
Search term:==Условия поиска:
"help"=="Помощь"
Resource/Network:==Ресурс/Сеть:
freeworld==freeworld
local peer==локальный узел
>bookmarks==>закладки
sciencenet==ScienceNet
>Language:==>Язык:
any language==любой язык
Bookmark Folders==Папки закладок
#-----------------------------
#File: yacy/ui/sidebar/sidebar_2.html
#---------------------------
Bookmark Tags<==Закладки и тэги<
Search Options==Опции поиска
Constraint:==Ограничение:
all pages==все страницы
index pages==проиндексированные страницы
URL mask:==фильтр URL-адресов:
Prefer mask:==Предпочтительный фильтр:
Bookmark TagCloud==Облако тэгов
Topwords<==Top Wörter<
alt="help"==alt="Помощь"
title="help"==title="Помощь"
#-----------------------------
#File: yacy/ui/yacyui-welcome.html
#---------------------------
>Overview==>Обзор
#YaCy-UI is going to be a JavaScript based client for YaCy based on the existing XML and JSON API.==YaCy-UI wird ein in JavaScript geschriebener Client für YaCy, der auf der existierenden XML und JSON API aufbaut.
#YaCy-UI is at most alpha status, as there is still problems with retriving the search results.==YaCy-UI ist bestenfalls im Alpha Stadium, da es immer noch Probleme beim Abholen der Suchergebnisse gibt.
#I am currently changing the backend to a more application friendly format and getting good results with it (I will check that in some time after the stable release 0.7).==Ich ändere gerade das Backend in ein andwendungsfreundlicheres Format und bekomme gute Ergebnisse damit (Ich werde die Änderungen einige Zeit nach der Veröffentlichung der stabilen Version 0.7 einchecken).
#For now have a look at the bookmarks, performance has increased significantly, due to the use of JSON and Flexigrid!==Aktuell können Sie sich die Lesezeichen ansehen - Die Performance hat sich signifikant gebessert durch die Verwendung von JSON und Flexigrid!
#-----------------------------
#File: api/citation.html
#---------------------------
Document Citations for==Цитаты документа для

View File

@ -4073,134 +4073,21 @@ PLEASE REPLACE THIS PAGE BY PUTTING A FILE index.html INTO THE PATH==LÜTFEN BU
>Date==>Tarih
#-----------------------------
#Dosya: yacy/ui/js/jquery-flexigrid.js
#Dosya: js/jquery-flexigrid.js
#---------------------------
'Displaying {from} to {to} of {total} items'=='{total} öğeden {from} ile {to} arasını göster'
'Processing, please wait ...'=='İşleniyor, lütfen bekleyin ...'
'No items'=='Öğe bulunamadı'
#-----------------------------
#Dosya: yacy/ui/js/jquery-ui-1.7.2.min.js
#Dosya: js/jquery-ui-1.7.2.min.js
#---------------------------
Loading&#8230;==Yükleniyor&#8230;
#-----------------------------
#Dosya: yacy/ui/js/jquery.ui.all.min.js
#Dosya: js/jquery.ui.all.min.js
#---------------------------
Loading&#8230;==Yükleniyor&#8230;
#-----------------------------
#Dosya: yacy/ui/index.html
#---------------------------
About YaCy-UI==YaCy-UI Hakkında
Admin Console==Yönetici Konsolu
"Bookmarks"=="Yer İmleri"
>Bookmarks==>Yer İmleri
#Server Log==Sunucu Günlüğü
#-----------------------------
#Dosya: yacy/ui/yacyui-admin.html
#---------------------------
Peer Control==Peer Kontrolü
"Login"=="Giriş"
#Login==Giriş
Themes==Temalar
Messages==Mesajlar
Re-Start==Yeniden Başlat
Shutdown==Kapat
Web Indexing==Web İndeksleme
Crawl Start==Crawl Başlat
Monitoring==İzleme
YaCy Network==YaCy Ağı
>Settings==>Ayarlar
"Basic Settings"=="Temel Ayarlar"
Basic==Temel
Accounts==Hesaplar
"Network"=="Ağ"
Network==Ağ
"Advanced Settings"=="Gelişmiş Ayarlar"
Advanced==Gelişmiş
"Update Settings"=="Sistem Güncelleme"
Update==Güncelleme
>YaCy Project==>YaCy Projesi
"YaCy Project Home"=="YaCy Proje Ana Sayfa"
Project==Proje
"YaCy Statistics"=="YaCy İstatistikleri"
Statistics==İstatistikler
"YaCy Forum"=="YaCy Forum"
#Forum==Forum
"Help"=="Yardım"
#"YaCy Wiki"=="YaCy Wiki"
#Wiki==Wiki
#-----------------------------
#Dosya: yacy/ui/yacyui-bookmarks.html
#---------------------------
'Add'=='Ekle'
'Crawl'=='Crawl'
'Edit'=='Düzenle'
'Delete'=='Sil'
'Rename'=='Yeniden Adlandır'
'Help'=='Yardım'
#"public bookmark"=="genel yer imi"
#"private bookmark"=="özel yer imi"
#"delete bookmark"=="yer imini sil"
"YaCy Bookmarks"=="YaCy Yer İmleri"
#>Title==>Başlık
#>Tags==>Etiketler
#>Date==>Tarih
#'Hash'=='Hash'
'Public'=='Genel'
'Title'=='Başlık'
#'Tags'=='Etiketler'
'Folders'=='Klasörler'
'Date'=='Tarih'
#-----------------------------
#Dosya: yacy/ui/sidebar/sidebar_1.html
#---------------------------
YaCy P2P Websearch==YaCy P2P Web Arama
"Search"=="Ara"
>Text==>Metin
>Images==>Resimler
>Audio==>Ses
>Video==>Videolar
>Applications==>Uygulamalar
Search term:==Arama terimi:
"help"=="Yardım"
Resource/Network:==Kaynak/Ağ:
freeworld==freeworld
local peer==yerel peer
>bookmarks==>Yer İmleri
sciencenet==ScienceNet
>Language:==>Dil:
any language==herhangi bir dil
Bookmark Folders==Yer İmi Klasörleri
#-----------------------------
#Dosya: yacy/ui/sidebar/sidebar_2.html
#---------------------------
Bookmark Tags<==Yer İmi Etiketleri<
Search Options==Arama Seçenekleri
Constraint:==Kısıtlama:
all pages==tüm sayfalar
index pages==index sayfalar
URL mask:==URL maskesi:
Prefer mask:==Tercih maskesi:
Bookmark TagCloud==Yer İmi Etiket Bulutu
Topwords<==En Çok Kullanılan Kelimeler<
alt="help"==alt="Yardım"
title="help"==title="Yardım"
#File: yacy/ui/yacyui-welcome.html
#---------------------------
>Overview==>Übersicht
YaCy-UI is going to be a JavaScript based client for YaCy based on the existing XML and JSON API.==YaCy-UI wird ein in JavaScript geschriebener Client für YaCy, der auf der existierenden XML und JSON API aufbaut.
YaCy-UI is at most alpha status, as there is still problems with retriving the search results.==YaCy-UI ist bestenfalls im Alpha Stadium, da es immer noch Probleme beim Abholen der Suchergebnisse gibt.
I am currently changing the backend to a more application friendly format and getting good results with it (I will check that in some time after the stable release 0.7).==Ich ändere gerade das Backend in ein andwendungsfreundlicheres Format und bekomme gute Ergebnisse damit (Ich werde die Änderungen einige Zeit nach der Veröffentlichung der stabilen Version 0.7 einchecken).
For now have a look at the bookmarks, performance has increased significantly, due to the use of JSON and Flexigrid!==Aktuell können Sie sich die Lesezeichen ansehen - Die Performance hat sich signifikant gebessert durch die Verwendung von JSON und Flexigrid!
#-----------------------------
# EOF

View File

@ -3780,187 +3780,23 @@ and set upload/download accounts to author and access content on this peer==та
loading from local index==Завантаження з місцевого індексу
#-----------------------------
#File: yacy/ui/js/jquery-flexigrid.js
#File: js/jquery-flexigrid.js
#---------------------------
'Displaying {from} to {to} of {total} items'=='Показано {from} до {to} з {total} записів'
'Processing, please wait ...'=='В обробці. Будь-ласка, зачекайте ...'
'No items'=='Результати відсутні'
#-----------------------------
#File: yacy/ui/js/jquery-ui-1.7.2.min.js
#File: js/jquery-ui-1.7.2.min.js
#---------------------------
Loading&#8230;==Завантаження&#8230;
#-----------------------------
#File: yacy/ui/js/jquery.ui.all.min.js
#File: js/jquery.ui.all.min.js
#---------------------------
Loading&#8230;==Завантаження&#8230;
#-----------------------------
#File: yacy/ui/index.html
#---------------------------
About YaCy-UI==Про YaCy-UI
Admin Console==Адмін. консоль
"Bookmarks"=="Закладки"
>Bookmarks==>Закладки
Server Log==Журнал сервера
This dialog lets you rename (edit) tag names.==Дозволяє редагувати імена ключів.
You can also add a new tag to all bookmarks tagged with old tag.==Можна також додати новий ключ до всіх закладок позначених старим.
Old Tag:==Старий ключ:
New Tag:==Новий ключ:
YaCy Bookmark Edit Tags==Зміна ключів закладок YaCy
This dialog lets you add tags or folders to the selected bookmarks.==Це вікно дозволяє додавати ключі чи папки до вибраних закладок.
Tag Name:==Ім’я ключа:
YaCy Bookmark Add Tags==Додавання ключів закладок YaCy
Add or edit bookmark==Додати чи змінити закладку
Title:==Заголовок:
Description:==Опис:
Folder (/folder/subfolder):==Папка (/папка/підпапка):
Tags (comma separated):==Ключі (через кому):
Public:==Загальна:
>yes<==>так<
>no<==>ні<
YaCy Bookmarks==Закладки YaCy
This dialog lets you select an alternate theme/skin for YaCy-UI==Це вікно дозволяє вибрати
Base Theme==Основна тема
Custom Theme==Змінена тема
>You can==Ви можете
download</a> ready made themes or==завантажити</a> готові теми або
create</a>==створити</a>
your own custom theme. Themes are installed into==свою власну тему. Теми встановлені в
YaCy - Peer-to-Peer Search Network==YaCy - однорангова пошукова мережа
Select YaCy-UI Theme==Вибір теми YaCy-UI
#>Cancel<==>Відхилити<
#>Edit<==>Змінити<
#>Add<==>Додати<
#-----------------------------
#File: yacy/ui/yacyui-admin.html
#---------------------------
Peer Control==Вузол
"Login"=="Ввійти"
Login==Ввійти
Themes==Вигляд
Messages==Повідомлення
Re-Start==Перезапуск
Shutdown==Зупинка
Web Indexing==Індексування веб
Crawl Start==Запуск сканування
Monitoring==Спостереження
YaCy Network==Мережа YaCy
>Settings==>Налаштування
"Basic Settings"=="Прості налаштування"
Basic==Основні
Accounts==Облікові записи
"Network"=="Мережа"
Network==Мережа
"Advanced Settings"=="Розширені налаштування"
Advanced==Розширені
"Update Settings"=="Оновлення системи"
Update==Оновлення
>YaCy Project==>Проект YaCy
"YaCy Project Home"=="Домашня сторінка YaCy"
Project==Проект
"YaCy Statistics"=="Статистика YaCy"
Statistics==Статистика
"YaCy Forum"=="Форум YaCy"
Forum==Форум
"Help"=="Допомога"
#"YaCy Wiki"=="YaCy Wiki"
#Wiki==Wiki
#-----------------------------
#File: yacy/ui/yacyui-bookmarks.html
#---------------------------
'Add'=='Додати'
'Crawl'=='Сканувати'
'Edit'=='Редагувати'
'Delete'=='Видалити'
'Rename'=='Перейменувати'
'Help'=='Допомога'
#"public bookmark"=="загальна закладка"
#"private bookmark"=="власна закладка"
#"delete bookmark"=="видалити закладку"
YaCy Bookmarks==Закладки YaCy
#>Title==>Заголовок
#>Tags==>Ключі
#>Date==>Дата
'Hash'=='Контр.сума'
'Public'=='Загальна'
'Title'=='Заголовок'
'Tags'=='Ключі'
'Folders'=='Папки'
'Date'=='Дата'
#-----------------------------
#File: yacy/ui/sidebar/sidebar_1.html
#---------------------------
YaCy P2P Websearch==YaCy P2P Веб-Пошук
"Search"=="Пошук"
>Text==>Текст
>Images==>Картинки
>Audio==>Звук
>Video==>Відео
>Applications==>Додатки
#вираз
#умова
#Критерій пошуку
Search term:==Пошуковий вираз:
"help"=="Допомога"
#Засіб
#Ресурс
Resource/Network:==Джерело/Мережа:
freeworld==ВільнийСвіт
local peer==Місцевий вузол
>bookmarks==>Закладки
sciencenet==ScienceNet
>Language:==>Мова:
any language==всі мови
Bookmark Folders==Папки закладок
#-----------------------------
#File: yacy/ui/sidebar/sidebar_2.html
#---------------------------
Bookmark Tags<==Ключі закладок<
Search Options==Настроки пошуку
Constraint:==Обмеження:
all pages==всі сторінки
index pages==індексні сторінки
URL mask:==Фільтр URL:
Prefer mask:==Бажана маска:
Bookmark TagCloud==Хмара ключів закладок
Topwords<==Верхні слова<
alt="help"==alt="Допомога"
title="help"==title="Допомога"
#-----------------------------
#File: yacy/ui/yacyui-view-log.html
#---------------------------
'Debug'=='Відладка'
'Info'=='Інфо'
'System'=='Система'
'Warning'=='Попередження'
'Error'=='Помилка'
'Help'=='Допомога'
='Info'==='Інфо'
#-----------------------------
#File: yacy/ui/yacyui-welcome.html
#---------------------------
>Overview==>Огляд
YaCy-UI is going to be a JavaScript based client for YaCy based on the existing XML and JSON API.==YaCy-UI - написаний на JavaScript клієнт для YaCy, який грунтується на існуючих XML і JSON API.
YaCy-UI is at most alpha status, as there is still problems with retriving the search results.==YaCy-UI, в кращому випадку, в стадії альфа, оскільки ще є проблеми при отриманні результатів пошуку.
I am currently changing the backend to a more application friendly format and getting good results with it (I will check that in some time after the stable release 0.7).==Я зараз змінюю керування на зручніший формат і отримую гарні результати (я перевірю зміни ще деякий час після виходу стабільного випуску 0.7).
For now have a look at the bookmarks, performance has increased significantly, due to the use of JSON and Flexigrid!==В даний час ви можете переглянути закладки - продуктивність значно покращилась за рахунок використання JSON і Flexigrid!
>Change Log<==>Журнал змін<
>Bug Tracker<==>Помилки<
Please report bugs in the official==Будь-ласка, повідомляйте про помилки на офіційному
YaCy-Forum</a> - thanks==форумі YaCy</a> - дякую
#-----------------------------
#File: AccessGrid_p.html
#---------------------------

View File

@ -4492,123 +4492,21 @@ could not be found.==未找到.
Did you mean:==是不是:
#-----------------------------
### Subdirectory yacy ###
#File: yacy/ui/index.html
#---------------------------
About YaCy-UI==关于YaCy-UI
Admin Console==管理控制台
"Bookmarks"=="书签"
>Bookmarks==>书签
Server Log==服务器日志
#-----------------------------
#File: yacy/ui/js/jquery-flexigrid.js
#File: js/jquery-flexigrid.js
#---------------------------
'Displaying {from} to {to} of {total} items'=='显示 {from} 到 {to}, 总共 {total} 个词条'
'Processing, please wait ...'=='正在处理, 请稍候...'
'No items'=='无词条'
#-----------------------------
#File: yacy/ui/js/jquery-ui-1.7.2.min.js
#File: js/jquery-ui-1.7.2.min.js
#---------------------------
Loading&#8230;==正在加载&#8230;
#-----------------------------
#File: yacy/ui/js/jquery.ui.all.min.js
#File: js/jquery.ui.all.min.js
#---------------------------
Loading&#8230;==正在加载&#8230;
#-----------------------------
#File: yacy/ui/sidebar/sidebar_1.html
#---------------------------
YaCy P2P Websearch==YaCy P2P搜索
"Search"=="搜索"
>Text==>文本
>Images==>图片
>Audio==>音频
>Video==>视频
>Applications==>应用
Search term:==搜索词条:
# do not translate class="help" which only has technical html semantics
alt="help"==alt="帮助"
title="help"==title="帮助"
Resource/Network:==资源/网络:
freeworld==自由世界
local peer==本地节点
>bookmarks==>书签
sciencenet==ScienceNet
>Language:==>语言:
any language==任意语言
Bookmark Folders==书签目录
#-----------------------------
#File: yacy/ui/sidebar/sidebar_2.html
#---------------------------
Bookmark Tags<==标签<
Search Options==搜索设置
Constraint:==约束:
all pages==所有页面
index pages==索引页面
URL mask:==URL过滤:
Prefer mask:==首选过滤:
Bookmark TagCloud==标签云
Topwords<==顶部<
alt="help"==alt="帮助"
title="help"==title="帮助"
#-----------------------------
#File: yacy/ui/yacyui-admin.html
#---------------------------
Peer Control==节点控制
"Login"=="登录"
Themes==主题
Messages==消息
Re-Start==重启
Shutdown==关闭
Web Indexing==网页索引
Crawl Start==开始爬取
Monitoring==监控
YaCy Network==YaCy网络
>Settings==>设置
"Basic Settings"=="基本设置"
Basic== 基本
Accounts==账户
"Network"=="网络"
Network== 网络
"Advanced Settings"=="高级设置"
Advanced== 高级
"Update Settings"=="升级设置"
Update== 升级
>YaCy Project==>YaCy项目
"YaCy Project Home"=="YaCy项目主页"
Project== 项目
"YaCy Forum"=="YaCy论坛"
"Help"=="帮助"
#-----------------------------
#File: yacy/ui/yacyui-bookmarks.html
#---------------------------
'Add'=='添加'
'Crawl'=='爬取'
'Edit'=='编辑'
'Delete'=='删除'
'Rename'=='重命名'
'Help'=='帮助'
"YaCy Bookmarks"=="YaCy书签"
'Public'=='公有'
'Title'=='题目'
'Tags'=='标签'
'Folders'=='目录'
'Date'=='日期'
#-----------------------------
#File: yacy/ui/yacyui-welcome.html
#---------------------------
>Overview==>概况
YaCy-UI is going to be a JavaScript based client for YaCy based on the existing XML and JSON API.==YaCy-UI 是基于JavaScript的YaCy客户端, 它使用当前的XML和JSON API.
YaCy-UI is at most alpha status, as there is still problems with retriving the search results.==YaCy-UI 尚在测试阶段, 所以在搜索时会有部分问题出现.
I am currently changing the backend to a more application friendly format and getting good results with it (I will check that in some time after the stable release 0.7).==目前我正在修改程序后台, 以让其更加友善和搜索到更合适的结果(我会在稳定版0.7后改善此类问题).
For now have a look at the bookmarks, performance has increased significantly, due to the use of JSON and Flexigrid!==就目前来说, 由于使用JSON和Flexigrid, 性能已获得显著提升!
#-----------------------------
# EOF