fix links and translates
This commit is contained in:
parent
a94985e71b
commit
eab45ab388
4
public/defer
generated
4
public/defer
generated
@ -14,7 +14,7 @@
|
||||
|
||||
|
||||
if (e.key == "ArrowRight") {
|
||||
window.location.href = 'функции-коллекции-(collection-functions)';
|
||||
window.location.href = 'collection-functions';
|
||||
}
|
||||
|
||||
}
|
||||
@ -204,7 +204,7 @@
|
||||
|
||||
|
||||
<p class="next">
|
||||
Следующий пример: <a href="функции-коллекции-(collection-functions)">Функции коллекции (Collection Functions)</a>.
|
||||
Следующий пример: <a href="collection-functions">Функции коллекции (Collection Functions)</a>.
|
||||
</p>
|
||||
|
||||
<p class="footer">
|
||||
|
6
public/epoch
generated
6
public/epoch
generated
@ -9,12 +9,12 @@
|
||||
onkeydown = (e) => {
|
||||
|
||||
if (e.key == "ArrowLeft") {
|
||||
window.location.href = 'время-(time)';
|
||||
window.location.href = 'time';
|
||||
}
|
||||
|
||||
|
||||
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">
|
||||
Следующий пример: <a href="форматирование-времени-(time-formatting-parsing)">Форматирование времени (Time Formatting / Parsing)</a>.
|
||||
Следующий пример: <a href="time-formatting-parsing">Форматирование времени (Time Formatting / Parsing)</a>.
|
||||
</p>
|
||||
|
||||
<p class="footer">
|
||||
|
19
public/hello-world
generated
19
public/hello-world
generated
@ -10,7 +10,7 @@
|
||||
|
||||
|
||||
if (e.key == "ArrowRight") {
|
||||
window.location.href = 'типы-данных-(values)';
|
||||
window.location.href = 'values';
|
||||
}
|
||||
|
||||
}
|
||||
@ -67,8 +67,8 @@
|
||||
|
||||
<tr>
|
||||
<td class="docs">
|
||||
<p>To run the program, put the code in <code>hello-world.go</code> and
|
||||
use <code>go run</code>.</p>
|
||||
<p>Для запуска программы, добавьте код в файл
|
||||
<code>hello-world.go</code> и выполните <code>go run</code>.</p>
|
||||
|
||||
</td>
|
||||
<td class="code leading">
|
||||
@ -82,8 +82,9 @@ use <code>go run</code>.</p>
|
||||
|
||||
<tr>
|
||||
<td class="docs">
|
||||
<p>Sometimes we’ll want to build our programs into
|
||||
binaries. We can do this using <code>go build</code>.</p>
|
||||
<p>Иногда необходимо собрать программу в бинарный
|
||||
файл. Мы можем сделать это с помощью команды
|
||||
<code>go build</code>.</p>
|
||||
|
||||
</td>
|
||||
<td class="code leading">
|
||||
@ -98,7 +99,7 @@ binaries. We can do this using <code>go build</code>.</p>
|
||||
|
||||
<tr>
|
||||
<td class="docs">
|
||||
<p>We can then execute the built binary directly.</p>
|
||||
<p>Мы можем выполнить бинарный файл напрямую.</p>
|
||||
|
||||
</td>
|
||||
<td class="code leading">
|
||||
@ -112,8 +113,8 @@ binaries. We can do this using <code>go build</code>.</p>
|
||||
|
||||
<tr>
|
||||
<td class="docs">
|
||||
<p>Now that we can run and build basic Go programs, let’s
|
||||
learn more about the language.</p>
|
||||
<p>Теперь когда мы можем запускать и собирать Go-программы,
|
||||
давайте узнаем больше об этом языке.</p>
|
||||
|
||||
</td>
|
||||
<td class="code empty">
|
||||
@ -126,7 +127,7 @@ learn more about the language.</p>
|
||||
|
||||
|
||||
<p class="next">
|
||||
Следующий пример: <a href="типы-данных-(values)">Типы данных (Values)</a>.
|
||||
Следующий пример: <a href="values">Типы данных (Values)</a>.
|
||||
</p>
|
||||
|
||||
<p class="footer">
|
||||
|
2
public/if-else
generated
2
public/if-else
generated
@ -9,7 +9,7 @@
|
||||
onkeydown = (e) => {
|
||||
|
||||
if (e.key == "ArrowLeft") {
|
||||
window.location.href = 'цикл-for';
|
||||
window.location.href = 'for';
|
||||
}
|
||||
|
||||
|
||||
|
2
public/json
generated
2
public/json
generated
@ -9,7 +9,7 @@
|
||||
onkeydown = (e) => {
|
||||
|
||||
if (e.key == "ArrowLeft") {
|
||||
window.location.href = 'регулярные-выражения-(regular-expressions)';
|
||||
window.location.href = 'regular-expressions';
|
||||
}
|
||||
|
||||
|
||||
|
2
public/panic
generated
2
public/panic
generated
@ -9,7 +9,7 @@
|
||||
onkeydown = (e) => {
|
||||
|
||||
if (e.key == "ArrowLeft") {
|
||||
window.location.href = 'сортировка-через-функции-(sorting-by-functions)';
|
||||
window.location.href = 'sorting-by-functions';
|
||||
}
|
||||
|
||||
|
||||
|
6
public/select
generated
6
public/select
generated
@ -9,12 +9,12 @@
|
||||
onkeydown = (e) => {
|
||||
|
||||
if (e.key == "ArrowLeft") {
|
||||
window.location.href = 'направления-канала-(channel-directions)';
|
||||
window.location.href = 'channel-directions';
|
||||
}
|
||||
|
||||
|
||||
if (e.key == "ArrowRight") {
|
||||
window.location.href = 'тайм-ауты-(timeouts)';
|
||||
window.location.href = 'timeouts';
|
||||
}
|
||||
|
||||
}
|
||||
@ -176,7 +176,7 @@
|
||||
|
||||
|
||||
<p class="next">
|
||||
Следующий пример: <a href="тайм-ауты-(timeouts)">Тайм-ауты (Timeouts)</a>.
|
||||
Следующий пример: <a href="timeouts">Тайм-ауты (Timeouts)</a>.
|
||||
</p>
|
||||
|
||||
<p class="footer">
|
||||
|
4
public/switch
generated
4
public/switch
generated
@ -14,7 +14,7 @@
|
||||
|
||||
|
||||
if (e.key == "ArrowRight") {
|
||||
window.location.href = 'массивы-(arrays)';
|
||||
window.location.href = 'arrays';
|
||||
}
|
||||
|
||||
}
|
||||
@ -193,7 +193,7 @@
|
||||
|
||||
|
||||
<p class="next">
|
||||
Следующий пример: <a href="массивы-(arrays)">Массивы (Arrays)</a>.
|
||||
Следующий пример: <a href="arrays">Массивы (Arrays)</a>.
|
||||
</p>
|
||||
|
||||
<p class="footer">
|
||||
|
6
public/waitgroups
generated
6
public/waitgroups
generated
@ -9,12 +9,12 @@
|
||||
onkeydown = (e) => {
|
||||
|
||||
if (e.key == "ArrowLeft") {
|
||||
window.location.href = 'пулы-воркеров-(worker-pools)';
|
||||
window.location.href = 'worker-pools';
|
||||
}
|
||||
|
||||
|
||||
if (e.key == "ArrowRight") {
|
||||
window.location.href = 'ограничение-скорости-(rate-limiting)';
|
||||
window.location.href = 'rate-limiting';
|
||||
}
|
||||
|
||||
}
|
||||
@ -210,7 +210,7 @@
|
||||
|
||||
|
||||
<p class="next">
|
||||
Следующий пример: <a href="ограничение-скорости-(rate-limiting)">Ограничение скорости (Rate Limiting)</a>.
|
||||
Следующий пример: <a href="rate-limiting">Ограничение скорости (Rate Limiting)</a>.
|
||||
</p>
|
||||
|
||||
<p class="footer">
|
||||
|
4
public/xml
generated
4
public/xml
generated
@ -14,7 +14,7 @@
|
||||
|
||||
|
||||
if (e.key == "ArrowRight") {
|
||||
window.location.href = 'время-(time)';
|
||||
window.location.href = 'time';
|
||||
}
|
||||
|
||||
}
|
||||
@ -272,7 +272,7 @@ XML-подобных форматов с пакетом <code>encoding.xml</code
|
||||
|
||||
|
||||
<p class="next">
|
||||
Следующий пример: <a href="время-(time)">Время (Time)</a>.
|
||||
Следующий пример: <a href="time">Время (Time)</a>.
|
||||
</p>
|
||||
|
||||
<p class="footer">
|
||||
|
Loading…
x
Reference in New Issue
Block a user