fix links and translates

This commit is contained in:
badkaktus 2019-10-15 14:54:22 +03:00
parent a94985e71b
commit eab45ab388
10 changed files with 28 additions and 27 deletions

4
public/defer generated
View File

@ -14,7 +14,7 @@
if (e.key == "ArrowRight") { if (e.key == "ArrowRight") {
window.location.href = 'функции-коллекции-(collection-functions)'; window.location.href = 'collection-functions';
} }
} }
@ -204,7 +204,7 @@
<p class="next"> <p class="next">
Следующий пример: <a href="функции-коллекции-(collection-functions)">Функции коллекции (Collection Functions)</a>. Следующий пример: <a href="collection-functions">Функции коллекции (Collection Functions)</a>.
</p> </p>
<p class="footer"> <p class="footer">

6
public/epoch generated
View File

@ -9,12 +9,12 @@
onkeydown = (e) => { onkeydown = (e) => {
if (e.key == "ArrowLeft") { if (e.key == "ArrowLeft") {
window.location.href = 'время-(time)'; window.location.href = 'time';
} }
if (e.key == "ArrowRight") { if (e.key == "ArrowRight") {
window.location.href = 'форматирование-времени-(time-formatting-parsing)'; window.location.href = 'time-formatting-parsing';
} }
} }
@ -167,7 +167,7 @@ Unixtime в соответствующее <code>время</code>.</p>
<p class="next"> <p class="next">
Следующий пример: <a href="форматирование-времени-(time-formatting-parsing)">Форматирование времени (Time Formatting / Parsing)</a>. Следующий пример: <a href="time-formatting-parsing">Форматирование времени (Time Formatting / Parsing)</a>.
</p> </p>
<p class="footer"> <p class="footer">

19
public/hello-world generated
View File

@ -10,7 +10,7 @@
if (e.key == "ArrowRight") { if (e.key == "ArrowRight") {
window.location.href = 'типы-данных-(values)'; window.location.href = 'values';
} }
} }
@ -67,8 +67,8 @@
<tr> <tr>
<td class="docs"> <td class="docs">
<p>To run the program, put the code in <code>hello-world.go</code> and <p>Для запуска программы, добавьте код в файл
use <code>go run</code>.</p> <code>hello-world.go</code> и выполните <code>go run</code>.</p>
</td> </td>
<td class="code leading"> <td class="code leading">
@ -82,8 +82,9 @@ use <code>go run</code>.</p>
<tr> <tr>
<td class="docs"> <td class="docs">
<p>Sometimes we&rsquo;ll want to build our programs into <p>Иногда необходимо собрать программу в бинарный
binaries. We can do this using <code>go build</code>.</p> файл. Мы можем сделать это с помощью команды
<code>go build</code>.</p>
</td> </td>
<td class="code leading"> <td class="code leading">
@ -98,7 +99,7 @@ binaries. We can do this using <code>go build</code>.</p>
<tr> <tr>
<td class="docs"> <td class="docs">
<p>We can then execute the built binary directly.</p> <p>Мы можем выполнить бинарный файл напрямую.</p>
</td> </td>
<td class="code leading"> <td class="code leading">
@ -112,8 +113,8 @@ binaries. We can do this using <code>go build</code>.</p>
<tr> <tr>
<td class="docs"> <td class="docs">
<p>Now that we can run and build basic Go programs, let&rsquo;s <p>Теперь когда мы можем запускать и собирать Go-программы,
learn more about the language.</p> давайте узнаем больше об этом языке.</p>
</td> </td>
<td class="code empty"> <td class="code empty">
@ -126,7 +127,7 @@ learn more about the language.</p>
<p class="next"> <p class="next">
Следующий пример: <a href="типы-данных-(values)">Типы данных (Values)</a>. Следующий пример: <a href="values">Типы данных (Values)</a>.
</p> </p>
<p class="footer"> <p class="footer">

2
public/if-else generated
View File

@ -9,7 +9,7 @@
onkeydown = (e) => { onkeydown = (e) => {
if (e.key == "ArrowLeft") { if (e.key == "ArrowLeft") {
window.location.href = 'цикл-for'; window.location.href = 'for';
} }

2
public/json generated
View File

@ -9,7 +9,7 @@
onkeydown = (e) => { onkeydown = (e) => {
if (e.key == "ArrowLeft") { if (e.key == "ArrowLeft") {
window.location.href = 'регулярные-выражения-(regular-expressions)'; window.location.href = 'regular-expressions';
} }

2
public/panic generated
View File

@ -9,7 +9,7 @@
onkeydown = (e) => { onkeydown = (e) => {
if (e.key == "ArrowLeft") { if (e.key == "ArrowLeft") {
window.location.href = 'сортировка-через-функции-(sorting-by-functions)'; window.location.href = 'sorting-by-functions';
} }

6
public/select generated
View File

@ -9,12 +9,12 @@
onkeydown = (e) => { onkeydown = (e) => {
if (e.key == "ArrowLeft") { if (e.key == "ArrowLeft") {
window.location.href = 'направления-канала-(channel-directions)'; window.location.href = 'channel-directions';
} }
if (e.key == "ArrowRight") { if (e.key == "ArrowRight") {
window.location.href = 'тайм-ауты-(timeouts)'; window.location.href = 'timeouts';
} }
} }
@ -176,7 +176,7 @@
<p class="next"> <p class="next">
Следующий пример: <a href="тайм-ауты-(timeouts)">Тайм-ауты (Timeouts)</a>. Следующий пример: <a href="timeouts">Тайм-ауты (Timeouts)</a>.
</p> </p>
<p class="footer"> <p class="footer">

4
public/switch generated
View File

@ -14,7 +14,7 @@
if (e.key == "ArrowRight") { if (e.key == "ArrowRight") {
window.location.href = 'массивы-(arrays)'; window.location.href = 'arrays';
} }
} }
@ -193,7 +193,7 @@
<p class="next"> <p class="next">
Следующий пример: <a href="массивы-(arrays)">Массивы (Arrays)</a>. Следующий пример: <a href="arrays">Массивы (Arrays)</a>.
</p> </p>
<p class="footer"> <p class="footer">

6
public/waitgroups generated
View File

@ -9,12 +9,12 @@
onkeydown = (e) => { onkeydown = (e) => {
if (e.key == "ArrowLeft") { if (e.key == "ArrowLeft") {
window.location.href = 'пулы-воркеров-(worker-pools)'; window.location.href = 'worker-pools';
} }
if (e.key == "ArrowRight") { if (e.key == "ArrowRight") {
window.location.href = 'ограничение-скорости-(rate-limiting)'; window.location.href = 'rate-limiting';
} }
} }
@ -210,7 +210,7 @@
<p class="next"> <p class="next">
Следующий пример: <a href="ограничение-скорости-(rate-limiting)">Ограничение скорости (Rate Limiting)</a>. Следующий пример: <a href="rate-limiting">Ограничение скорости (Rate Limiting)</a>.
</p> </p>
<p class="footer"> <p class="footer">

4
public/xml generated
View File

@ -14,7 +14,7 @@
if (e.key == "ArrowRight") { if (e.key == "ArrowRight") {
window.location.href = 'время-(time)'; window.location.href = 'time';
} }
} }
@ -272,7 +272,7 @@ XML-подобных форматов с пакетом <code>encoding.xml</code
<p class="next"> <p class="next">
Следующий пример: <a href="время-(time)">Время (Time)</a>. Следующий пример: <a href="time">Время (Time)</a>.
</p> </p>
<p class="footer"> <p class="footer">