mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2025-01-08 10:51:09 +00:00
Style and translate /edit-category to Russian
This commit is contained in:
parent
3ff57d1d03
commit
39ef4f9a2a
@ -8,8 +8,8 @@
|
|||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
{{if .GivenPermissionToModify}}
|
{{if .GivenPermissionToModify}}
|
||||||
<h2>{{block "add hypha" .}}Add a hypha to the category{{end}}</h2>
|
<h2>{{block "add to category title" .}}Add a hypha to the category{{end}}</h2>
|
||||||
<form method="POST" action="/add-to-category" class="category__add-form">
|
<form method="POST" action="/add-to-category" class="add-to-category">
|
||||||
<input type="text" name="hypha" id="_hypha-name"
|
<input type="text" name="hypha" id="_hypha-name"
|
||||||
placeholder="{{block `hypha name` .}}Hypha name{{end}}">
|
placeholder="{{block `hypha name` .}}Hypha name{{end}}">
|
||||||
<input type="hidden" name="cat" value="{{.CatName}}">
|
<input type="hidden" name="cat" value="{{.CatName}}">
|
||||||
@ -20,16 +20,18 @@
|
|||||||
{{if len .Hyphae}}
|
{{if len .Hyphae}}
|
||||||
<h2>{{block "remove hyphae" .}}Remove hyphae from the category{{end}}</h2>
|
<h2>{{block "remove hyphae" .}}Remove hyphae from the category{{end}}</h2>
|
||||||
<form method="POST" action="/remove-from-category" class="multi-remove-from-category">
|
<form method="POST" action="/remove-from-category" class="multi-remove-from-category">
|
||||||
|
<ol>
|
||||||
{{range .Hyphae}}
|
{{range .Hyphae}}
|
||||||
|
<li>
|
||||||
<input type="checkbox" name="_{{.}}" id="_{{.}}">
|
<input type="checkbox" name="_{{.}}" id="_{{.}}">
|
||||||
<label for="_{{.}}"><a href="/hypha/{{.}}">{{beautifulName .}}</a></label>
|
<label for="_{{.}}"><a href="/hypha/{{.}}">{{beautifulName .}}</a></label>
|
||||||
<br>
|
</li>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
</ol>
|
||||||
<input type="hidden" name="cat" value="{{.CatName}}">
|
<input type="hidden" name="cat" value="{{.CatName}}">
|
||||||
<input type="hidden" name="redirect-to" value="/edit-category/{{.CatName}}">
|
<input type="hidden" name="redirect-to" value="/edit-category/{{.CatName}}">
|
||||||
<input type="submit" class="btn" value="{{block `remove` .}}Remove{{end}}">
|
<input type="submit" class="btn" value="{{block `remove` .}}Remove{{end}}">
|
||||||
</form>
|
</form>
|
||||||
{{end}}
|
{{end}}{{end}}
|
||||||
{{end}}
|
|
||||||
</main>
|
</main>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
@ -17,17 +17,6 @@
|
|||||||
<li>
|
<li>
|
||||||
<a class="wikilink" href="/hypha/{{.}}">{{beautifulName .}}</a>
|
<a class="wikilink" href="/hypha/{{.}}">{{beautifulName .}}</a>
|
||||||
</li>
|
</li>
|
||||||
{{end}}
|
|
||||||
{{if .GivenPermissionToModify}}
|
|
||||||
<li class="category__add-to-cat">
|
|
||||||
<form method="POST" action="/add-to-category" class="category__add-form">
|
|
||||||
<input type="text" name="hypha" id="_hypha-name"
|
|
||||||
placeholder="{{block `hypha name` .}}Hypha name{{end}}">
|
|
||||||
<input type="hidden" name="cat" value="{{$catName}}">
|
|
||||||
<input type="hidden" name="redirect-to" value="/category/{{$catName}}">
|
|
||||||
<input type="submit" class="btn" value="{{block `add hypha` .}}Add to the category{{end}}">
|
|
||||||
</form>
|
|
||||||
</li>
|
|
||||||
{{end}}
|
{{end}}
|
||||||
</ol>
|
</ol>
|
||||||
</main>
|
</main>
|
||||||
|
@ -10,16 +10,22 @@ import (
|
|||||||
|
|
||||||
const ruTranslation = `
|
const ruTranslation = `
|
||||||
{{define "empty cat"}}Эта категория пуста.{{end}}
|
{{define "empty cat"}}Эта категория пуста.{{end}}
|
||||||
{{define "add hypha"}}Добавить в категорию{{end}}
|
|
||||||
{{define "cat"}}Категория{{end}}
|
{{define "cat"}}Категория{{end}}
|
||||||
{{define "hypha name"}}Имя гифы{{end}}
|
{{define "hypha name"}}Название гифы{{end}}
|
||||||
{{define "categories"}}Категории{{end}}
|
{{define "categories"}}Категории{{end}}
|
||||||
{{define "placeholder"}}Имя категории...{{end}}
|
{{define "placeholder"}}Название категории...{{end}}
|
||||||
{{define "remove from category title"}}Убрать гифу из этой категории{{end}}
|
{{define "remove from category title"}}Убрать гифу из этой категории{{end}}
|
||||||
{{define "add to category title"}}Добавить гифу в эту категорию{{end}}
|
{{define "add to category title"}}Добавить гифу в эту категорию{{end}}
|
||||||
{{define "category list"}}Список категорий{{end}}
|
{{define "category list"}}Список категорий{{end}}
|
||||||
{{define "no categories"}}В этой вики нет категорий.{{end}}
|
{{define "no categories"}}В этой вики нет категорий.{{end}}
|
||||||
{{define "category x"}}Категория {{. | beautifulName}}{{end}}
|
{{define "category x"}}Категория {{. | beautifulName}}{{end}}
|
||||||
|
|
||||||
|
{{define "edit category x"}}Редактирование категории {{beautifulName .}}{{end}}
|
||||||
|
{{define "edit category heading"}}Редактирование категории <a href="/category/{{.}}">{{beautifulName .}}</a>{{end}}
|
||||||
|
{{define "add"}}Добавить{{end}}
|
||||||
|
{{define "remove hyphae"}}Убрать гифы из этой категории{{end}}
|
||||||
|
{{define "remove"}}Убрать{{end}}
|
||||||
|
{{define "edit"}}Редактировать{{end}}
|
||||||
`
|
`
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -287,6 +287,12 @@ mark { background: rgba(130, 80, 30, 5); color: inherit; }
|
|||||||
padding: 0 .5rem;
|
padding: 0 .5rem;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
h2 + .add-to-category {
|
||||||
|
margin-top: .5rem;
|
||||||
|
}
|
||||||
|
.add-to-category input[type="submit"] {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Shortcuts
|
* Shortcuts
|
||||||
|
Loading…
Reference in New Issue
Block a user