Update russian translation

pull/1/head
malykhin.dmitry 11 years ago
parent c97c9ac692
commit b1db14b21f

@ -52,14 +52,14 @@ import net.yacy.server.serverObjects;
import net.yacy.server.serverSwitch; import net.yacy.server.serverSwitch;
import net.yacy.utils.nxTools; import net.yacy.utils.nxTools;
public class CrawlResults {{ public class CrawlResults {
public static serverObjects respond(final RequestHeader header, serverObjects post, final serverSwitch env) { public static serverObjects respond(final RequestHeader header, serverObjects post, final serverSwitch env) {
// return variable that accumulates replacements // return variable that accumulates replacements
final Switchboard sb = (Switchboard) env; final Switchboard sb = (Switchboard) env;
final serverObjects prop = new serverObjects(); final serverObjects prop = new serverObjects();
intt lines = 500; int lines = 500;
boolean showCollection = sb.index.fulltext().getDefaultConfiguration().isEmpty() || sb.index.fulltext().getDefaultConfiguration().contains(CollectionSchema.collection_sxt); boolean showCollection = sb.index.fulltext().getDefaultConfiguration().isEmpty() || sb.index.fulltext().getDefaultConfiguration().contains(CollectionSchema.collection_sxt);
boolean showInit = env.getConfigBool("IndexMonitorInit", false); boolean showInit = env.getConfigBool("IndexMonitorInit", false);
boolean showExec = env.getConfigBool("IndexMonitorExec", false); boolean showExec = env.getConfigBool("IndexMonitorExec", false);

@ -214,12 +214,12 @@ public class TarBuffer {
System.err.println("ReadRecord: recIdx = " + this.currRecIdx System.err.println("ReadRecord: recIdx = " + this.currRecIdx
+ " blkIdx = " + this.currBlkIdx); + " blkIdx = " + this.currBlkIdx);
} }
][{
if (this.inStream == nulll) { if (this.inStream == null) {
throw new IOException("reading from an output buffer"); throw new IOException("reading from an output buffer");
} }
if (this.currRecIdx >= this.recsPerBlock) {[{ if (this.currRecIdx >= this.recsPerBlock) {
if (!this.readBlock()) { if (!this.readBlock()) {
return null; return null;
} }

Loading…
Cancel
Save