Skip to content

Commit 18b55df

Browse files
committed
feat: add theme to hugo.yml
1 parent eb7937d commit 18b55df

File tree

238 files changed

+2698
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

238 files changed

+2698
-5
lines changed

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,8 @@ replay_pid*
2929
*.com
3030
*.dll
3131
*.bat
32-
*.msi
32+
*.msi
33+
34+
# Other
35+
36+
client_java

.idea/workspace.xml

+1-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/hugo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
baseURL = "http://localhost"
22
languageCode = 'en-us'
33
title = "Multiform Validator"
4+
theme = "hugo-geekdoc"
45

56
pluralizeListTitles = false
67

@@ -12,7 +13,7 @@ disablePathToLower = true
1213
# geekdocFileTreeSortBy = "linkTitle"
1314

1415
# Required if you want to render robots.txt template
15-
enableRobotsTXT = false
16+
enableRobotsTXT = true
1617

1718
# Needed for mermaid shortcodes
1819
[markup]

docs/themes/hugo-geekdoc/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Robert Kaussow <[email protected]>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is furnished
10+
to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice (including the next
13+
paragraph) shall be included in all copies or substantial portions of the
14+
Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
18+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
19+
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
21+
OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

docs/themes/hugo-geekdoc/README.md

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Geekdoc
2+
3+
[![Build Status](https://ci.thegeeklab.de/api/badges/thegeeklab/hugo-geekdoc/status.svg)](https://ci.thegeeklab.de/repos/thegeeklab/hugo-geekdoc)
4+
[![Hugo Version](https://img.shields.io/badge/hugo-0.112-blue.svg)](https://gohugo.io)
5+
[![GitHub release](https://img.shields.io/github/v/release/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/releases/latest)
6+
[![GitHub contributors](https://img.shields.io/github/contributors/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/graphs/contributors)
7+
[![License: MIT](https://img.shields.io/github/license/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/blob/main/LICENSE)
8+
9+
Geekdoc is a simple Hugo theme for documentations. It is intentionally designed as a fast and lean theme and may not fit the requirements of complex projects. If a more feature-complete theme is required there are a lot of good alternatives out there. You can find a demo and the full documentation at [https://geekdocs.de](https://geekdocs.de).
10+
11+
![Desktop and mobile preview](https://raw.githubusercontent.com/thegeeklab/hugo-geekdoc/main/images/readme.png)
12+
13+
## Build and release process
14+
15+
This theme is subject to a CI driven build and release process common for software development. During the release build, all necessary assets are automatically built by [webpack](https://webpack.js.org/) and bundled in a release tarball. You can download the latest release from the GitHub [release page](https://github.com/thegeeklab/hugo-geekdoc/releases).
16+
17+
Due to the fact that `webpack` and `npm scripts` are used as pre-processors, the theme cannot be used from the main branch by default. If you want to use the theme from a cloned branch instead of a release tarball you'll need to install `webpack` locally and run the build script once to create all required assets.
18+
19+
```shell
20+
# install required packages from package.json
21+
npm install
22+
23+
# run the build script to build required assets
24+
npm run build
25+
26+
# build release tarball
27+
npm run pack
28+
```
29+
30+
See the [Getting Started Guide](https://geekdocs.de/usage/getting-started/) for details about the different setup options.
31+
32+
## Contributors
33+
34+
Special thanks to all [contributors](https://github.com/thegeeklab/hugo-geekdoc/graphs/contributors). If you would like to contribute, please see the [instructions](https://github.com/thegeeklab/hugo-geekdoc/blob/main/CONTRIBUTING.md).
35+
36+
Geekdoc is inspired and partially based on the [hugo-book](https://github.com/alex-shpak/hugo-book) theme, thanks [Alex Shpak](https://github.com/alex-shpak/) for your work.
37+
38+
## License
39+
40+
This project is licensed under the MIT License - see the [LICENSE](https://github.com/thegeeklab/hugo-geekdoc/blob/main/LICENSE) file for details.
41+
42+
The used SVG icons and generated icon fonts are licensed under the license of the respective icon pack:
43+
44+
- Font Awesome: [CC BY 4.0 License](https://github.com/FortAwesome/Font-Awesome#license)
45+
- IcoMoon Free Pack: [GPL/CC BY 4.0](https://icomoon.io/#icons-icomoon)
46+
- Material Icons: [Apache License 2.0](https://github.com/google/material-design-icons/blob/main/LICENSE)

docs/themes/hugo-geekdoc/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v0.41.1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "{{ .Name | humanize | title }}"
3+
weight: 1
4+
# geekdocFlatSection: false
5+
# geekdocToc: 6
6+
# geekdocHidden: false
7+
---
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
---
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{{- $searchDataFile := printf "search/%s.data.json" .Language.Lang -}}
2+
{{- $searchData := resources.Get "search/data.json" | resources.ExecuteAsTemplate $searchDataFile . | resources.Minify -}}
3+
{
4+
"dataFile": {{ $searchData.RelPermalink | jsonify }},
5+
"indexConfig": {{ .Site.Params.geekdocSearchConfig | jsonify }},
6+
"showParent": {{ if .Site.Params.geekdocSearchShowParent }}true{{ else }}false{{ end }},
7+
"showDescription": {{ if .Site.Params.geekdocSearchshowDescription }}true{{ else }}false{{ end }}
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[
2+
{{ range $index, $page := (where .Site.Pages "Params.geekdocProtected" "ne" true) }}
3+
{{ if ne $index 0 }},{{ end }}
4+
{
5+
"id": {{ $index }},
6+
"href": "{{ $page.RelPermalink }}",
7+
"title": {{ (partial "utils/title" $page) | jsonify }},
8+
"parent": {{ with $page.Parent }}{{ (partial "utils/title" .) | jsonify }}{{ else }}""{{ end }},
9+
"content": {{ $page.Plain | jsonify }},
10+
"description": {{ $page.Summary | plainify | jsonify }}
11+
}
12+
{{ end }}
13+
]

docs/themes/hugo-geekdoc/assets/sprites/geekdoc.svg

+1
Loading
+158
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,158 @@
1+
{
2+
"main.js": {
3+
"src": "js/main-924a1933.bundle.min.js",
4+
"integrity": "sha512-0QF6awwW0WbBo491yytmULiHrc9gx94bloJ9MSXIvdJh3YHWw7CWyeX2YXu0rzOQefJp4jW/I6ZjUDYpNVFhdA=="
5+
},
6+
"colortheme.js": {
7+
"src": "js/colortheme-d3e4d351.bundle.min.js",
8+
"integrity": "sha512-HpQogL/VeKqG/v1qYOfJOgFUzBnQvW4yO4tAJO+54IiwbLbB9feROdeaYf7dpO6o5tSHsSZhaYLhtLMRlEgpJQ=="
9+
},
10+
"mermaid.js": {
11+
"src": "js/mermaid-d305d450.bundle.min.js",
12+
"integrity": "sha512-TASG03QptoVv1mkfOL47vm5A5kvmyOrnsi8PXhc82j1+FuHZuMOHXc2x5/jGEkOxbKi7mum0h/W7qYhrV29raw=="
13+
},
14+
"katex.js": {
15+
"src": "js/katex-d4d5881d.bundle.min.js",
16+
"integrity": "sha512-M8CLtMTu/HVXo11Et+lv3OqPanLf5Bl+GljNAn2yQuLclg/ZpZK1KUpHDRsZJhmkhCcCH90+bVj5CW3lLlmBgg=="
17+
},
18+
"search.js": {
19+
"src": "js/search-9719be99.bundle.min.js",
20+
"integrity": "sha512-/7NZxFUEbalC/8RKDgfAsHFDI42/Ydp33uJmCLckZgnO+kuz9LrTfmPFfVJxPJ31StMxa3MTQ5Jq049CmNK4pw=="
21+
},
22+
"js/637-86fbbecd.chunk.min.js": {
23+
"src": "js/637-86fbbecd.chunk.min.js",
24+
"integrity": "sha512-vD1y0C4MPPV/JhEKmNVAye9SQg7mB5v87nLf63keSALdnM7P+L0ybjEn2MzYzVTzs6JnOCryM7A6/t0TkYucDA=="
25+
},
26+
"js/116-341f79d9.chunk.min.js": {
27+
"src": "js/116-341f79d9.chunk.min.js",
28+
"integrity": "sha512-F7tq1KsF5mnJl0AAA6x2jZcx8x69kEZrUIZJJM4RZ1KlEO79yrrFHf4CZRvhNrYOxmkBpkQ84U9J0vFtRPKjTw=="
29+
},
30+
"js/545-8e970b03.chunk.min.js": {
31+
"src": "js/545-8e970b03.chunk.min.js",
32+
"integrity": "sha512-vDOXX1FstnT8UMkRIAMn6z4ucL8LVqI5kZw+T7LrD8pGC9xtKwwhWcmNeqnngc7FHc5Ogt7ppXBNp+uFPUgrJg=="
33+
},
34+
"js/728-5df4a5e5.chunk.min.js": {
35+
"src": "js/728-5df4a5e5.chunk.min.js",
36+
"integrity": "sha512-vX2dPV1VjOgv8DP4XbZ9xk9ZzHS9hPAUwPfHM8UG42efxXxH/qCqTpyavqob98onxR2FuiF+j1Vn56d3wqsgaw=="
37+
},
38+
"js/81-4e653aac.chunk.min.js": {
39+
"src": "js/81-4e653aac.chunk.min.js",
40+
"integrity": "sha512-a80h3DpDlMG6HhYXv9n9Q7r1M+rQX5kfJ7sFhfmPHlDRVimult9nn7vvTHFzTzmMFM+tLcfg4pZGd+AkxPcjEw=="
41+
},
42+
"js/430-cc171d93.chunk.min.js": {
43+
"src": "js/430-cc171d93.chunk.min.js",
44+
"integrity": "sha512-cqQyiIE22ZPo2PIPR4eb0DPSu1TWjxgJUKrIIyfVF48gc2vdLKnbHzWBZg6MpiOWYmUvJb5Ki+n5U6qEvNp2KQ=="
45+
},
46+
"js/729-32b017b3.chunk.min.js": {
47+
"src": "js/729-32b017b3.chunk.min.js",
48+
"integrity": "sha512-KAW7lnN0NHmIzfD6aIwVaU3TcpUkO8ladLrbOE83zq80NOJH/MGS4Ep+2rIfQZTvZP+a7nqZLHkmezfs27c2pw=="
49+
},
50+
"js/773-8f0c4fb8.chunk.min.js": {
51+
"src": "js/773-8f0c4fb8.chunk.min.js",
52+
"integrity": "sha512-HxtbZvs0J28pB9fImN8n82aprG/GW0QenIBzC7BHWhEUX6IhmxTeBqG4IZFbbAURG17VegOr2UlJg6w0qaX9gw=="
53+
},
54+
"js/433-f2655a46.chunk.min.js": {
55+
"src": "js/433-f2655a46.chunk.min.js",
56+
"integrity": "sha512-/yMUz6rxhVpvCPpQG+f28jFgdJK+X/5/3XWVsrAE2FHC57jxnHaL7SxZluZ4klUl0YsRCrhxAQj8maNspwwH1Q=="
57+
},
58+
"js/546-560b35c2.chunk.min.js": {
59+
"src": "js/546-560b35c2.chunk.min.js",
60+
"integrity": "sha512-am1/hYno7/cFQ8reHZqnbsth2KcphvKqLfkueVIm8I/i/6f9u+bbc0Z6zpYTLysl3oWddYXqyeO58zXoJoDVIA=="
61+
},
62+
"js/118-f1de6a20.chunk.min.js": {
63+
"src": "js/118-f1de6a20.chunk.min.js",
64+
"integrity": "sha512-tikydCOmBT1keN0AlCqvkpvbV1gB9U8lVXX8wmrS6fQ2faNc8DnH1QV9dzAlLtGeA1p8HAXnh+AevnVKxhXVbg=="
65+
},
66+
"js/19-86f47ecd.chunk.min.js": {
67+
"src": "js/19-86f47ecd.chunk.min.js",
68+
"integrity": "sha512-qRG0UrV25Kr/36tJTPZ49QobR6a/zv2BRAMDzSZwjlPgqSwse1HtgP9EEZtn59b1Vq7ayB1LoWfB9MZ9Gcm7Gw=="
69+
},
70+
"js/361-f7cd601a.chunk.min.js": {
71+
"src": "js/361-f7cd601a.chunk.min.js",
72+
"integrity": "sha512-7kwaFQhXUyiM/v2v0n6vI9wz6nSAu7sz2236r+MbwT0r4aBxYqeOxij+PkGnTUqR2n1UExnbWKjuruDi9V/H5g=="
73+
},
74+
"js/519-8d0cec7f.chunk.min.js": {
75+
"src": "js/519-8d0cec7f.chunk.min.js",
76+
"integrity": "sha512-tFsZN3iyUMIMeB/b4E1PZNOFDKqMM4Fes63RGNkHNhtRTL/AIUpqPcTKZ+Fi2ZTdyYvPSTtjc5urnzLUi196Wg=="
77+
},
78+
"js/747-b55f0f97.chunk.min.js": {
79+
"src": "js/747-b55f0f97.chunk.min.js",
80+
"integrity": "sha512-hoyvC5SSJcX9NGij9J9l4Ov1JAFNBX0UxlFXyiB5TC7TGW3lgIvm41zyfKhLyJudVGftY/qKxIO2EYtYD2pqOQ=="
81+
},
82+
"js/642-12e7dea2.chunk.min.js": {
83+
"src": "js/642-12e7dea2.chunk.min.js",
84+
"integrity": "sha512-ZVUj7NYSa8mMHdWaztAf3DCg7qznXTbMWWwqJaS2nfaqh0lVDOf5kVExPy6SGkXCeNu/B9gGbWLtDUa7kHFF6A=="
85+
},
86+
"js/626-1706197a.chunk.min.js": {
87+
"src": "js/626-1706197a.chunk.min.js",
88+
"integrity": "sha512-OlpbPXiGmQJR/ISfBSsHU2UGATggZDuHbopvAhhfVpw7ObMZgc/UvE6pK1FmGCjgI9iS+qmPhQyvf9SIbLFyxQ=="
89+
},
90+
"js/438-760c9ed3.chunk.min.js": {
91+
"src": "js/438-760c9ed3.chunk.min.js",
92+
"integrity": "sha512-Wo2DxS59Y8DVBTWNWDUmg6V+UCyLoiDd4sPs2xc7TkflQy7reGWPt/oHZCANXeGjZPpqcR3qfKYidNofUyIWEA=="
93+
},
94+
"js/639-88c6538a.chunk.min.js": {
95+
"src": "js/639-88c6538a.chunk.min.js",
96+
"integrity": "sha512-KbTKHxx+/Xwv+GH8jQsIJ9X1CFaGSsqgeSXnR8pW27YZpFz4ly8R6K7h+yq6P2b2AzQdW7krradZzyNo7Vz26w=="
97+
},
98+
"js/940-25dfc794.chunk.min.js": {
99+
"src": "js/940-25dfc794.chunk.min.js",
100+
"integrity": "sha512-qst5aejItmhzMvZ3CsAXyJe2F3FtLkyZwBqj422/8ViyQptcQFgP3x8bPsLwJEfiWFJVrLJkk4VhwflQuIyDtw=="
101+
},
102+
"js/662-17acb8f4.chunk.min.js": {
103+
"src": "js/662-17acb8f4.chunk.min.js",
104+
"integrity": "sha512-S/UlqDqwt++RzVZMVqjsdCNyhe1xNQ9/Qm38yIphmXfn9VBHzGqobIQTuhloYZVfTE4/GezrH+1T7mdrUqpAKQ=="
105+
},
106+
"js/579-9222afff.chunk.min.js": {
107+
"src": "js/579-9222afff.chunk.min.js",
108+
"integrity": "sha512-rl3bxxl/uhUFYlIuoHfVQE+VkmxfJr7TAuC/fxOBJXBCCMpdxP0XCPzms1zjEjOVjIs4bi4SUwn8r4STSl09Lg=="
109+
},
110+
"js/771-942a62df.chunk.min.js": {
111+
"src": "js/771-942a62df.chunk.min.js",
112+
"integrity": "sha512-8WfA8U1Udlfa6uWAYbdNKJzjlJ91qZ0ZhC+ldKdhghUgilxqA6UmZxHFKGRDQydjOFDk828O28XVmZU2IEvckA=="
113+
},
114+
"js/506-6950d52c.chunk.min.js": {
115+
"src": "js/506-6950d52c.chunk.min.js",
116+
"integrity": "sha512-h2po0SsM4N3IXiBbNWlIbasxX7zSm5XVDpgYfmsEmcfQkMcFwJtTJGppek085Mxi1XZmrhjfxq2AUtnUs03LJg=="
117+
},
118+
"js/76-732e78f1.chunk.min.js": {
119+
"src": "js/76-732e78f1.chunk.min.js",
120+
"integrity": "sha512-ZjF2oB76jiCtdQNJZ9v1MUJSPaBcZCXmTA2T3qDBuU260uVA99wGeprrNQ3WdHQeK+VYXCq26dOE9w+I3b6Q4w=="
121+
},
122+
"js/476-86e5cf96.chunk.min.js": {
123+
"src": "js/476-86e5cf96.chunk.min.js",
124+
"integrity": "sha512-siq24cNKFc1tXGACAQlpbXOb2gRKDnncf39INGAPlnJSiAsYewhNusq1UxhMDFA836eucVq7NzE1TqEYskI0ug=="
125+
},
126+
"js/813-0d3c16f5.chunk.min.js": {
127+
"src": "js/813-0d3c16f5.chunk.min.js",
128+
"integrity": "sha512-gDVyQtM781xlTfyZzuEJ1tnQWyasbFKLRPwgGUF5lpdS3QpW6KTIwCnMuVn2b5XF2qKSxpei9YNIushpBI4ILA=="
129+
},
130+
"js/423-897d7f17.chunk.min.js": {
131+
"src": "js/423-897d7f17.chunk.min.js",
132+
"integrity": "sha512-ERAmXYsLT59PDGFPLTHNgaNw5CsaTOK88orlaXr+7SOxf+Yjf5fvDmpXCNJe1odvU6OF4cajtlVM1qO9hzOqWw=="
133+
},
134+
"js/535-dcead599.chunk.min.js": {
135+
"src": "js/535-dcead599.chunk.min.js",
136+
"integrity": "sha512-3gB2l6iJbt94EMd1Xh6udlMXjdHlAbuRKkyl87X/LSuG1fGbfTe11O5ma+un13BBX1wZ1xnHtUv6Fyc3pgbgDg=="
137+
},
138+
"main.scss": {
139+
"src": "main-252d384c.min.css",
140+
"integrity": "sha512-WiV7BVk76Yp0EACJrwdWDk7+WNa+Jyiupi9aCKFrzZyiKkXk7BH+PL2IJcuDQpCMtMBFJEgen2fpKu9ExjjrUQ=="
141+
},
142+
"katex.css": {
143+
"src": "katex-66092164.min.css",
144+
"integrity": "sha512-ng+uY3bZP0IENn+fO0T+jdk1v1r7HQJjsVRJgzU+UiJJadAevmo0gVNrpVxrBFGpRQqSz42q20uTre1C1Qrnow=="
145+
},
146+
"mobile.scss": {
147+
"src": "mobile-79ddc617.min.css",
148+
"integrity": "sha512-dzw2wMOouDwhSgstQKLbXD/vIqS48Ttc2IV6DeG7yam9yvKUuChJVaworzL8s2UoGMX4x2jEm50PjFJE4R4QWw=="
149+
},
150+
"print.scss": {
151+
"src": "print-735ccc12.min.css",
152+
"integrity": "sha512-c28KLNtBnKDW1+/bNWFhwuGBLw9octTXA2wnuaS2qlvpNFL0DytCapui9VM4YYkZg6e9TVp5LyuRQc2lTougDw=="
153+
},
154+
"custom.css": {
155+
"src": "custom.css",
156+
"integrity": "sha512-1kALo+zc1L2u1rvyxPIew+ZDPWhnIA1Ei2rib3eHHbskQW+EMxfI9Ayyva4aV+YRrHvH0zFxvPSFIuZ3mfsbRA=="
157+
}
158+
}

docs/themes/hugo-geekdoc/i18n/cs.yaml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
edit_page: Upravit stránku
3+
4+
nav_navigation: Navigace
5+
nav_tags: Tagy
6+
nav_more: Více
7+
nav_top: Zpět nahoru
8+
9+
form_placeholder_search: Vyhledat
10+
11+
error_page_title: Ztracen? Nic se neděje
12+
error_message_title: Ztracen?
13+
error_message_code: Error 404
14+
error_message_text: >
15+
Vypadá to že stránka, kterou hledáte, neexistuje. Nemějte obavy, můžete
16+
se vrátit zpět na <a class="gdoc-error__link" href="{{ . }}">domovskou stránku</a>.
17+
18+
button_toggle_dark: Přepnout tmavý/světlý/automatický režim
19+
button_nav_open: Otevřít navigaci
20+
button_nav_close: Zavřít navigaci
21+
button_menu_open: Otevřít lištu nabídky
22+
button_menu_close: Zavřít lištu nabídky
23+
button_homepage: Zpět na domovskou stránku
24+
25+
title_anchor_prefix: "Odkaz na:"
26+
27+
posts_read_more: Přečíst celý příspěvek
28+
posts_read_time:
29+
one: "Doba čtení: 1 minuta"
30+
other: "Doba čtení: {{ . }} minut(y)"
31+
posts_update_prefix: Naposledy upraveno
32+
posts_count:
33+
one: "Jeden příspěvek"
34+
other: "Příspěvků: {{ . }}"
35+
posts_tagged_with: Všechny příspěvky označeny '{{ . }}'
36+
37+
footer_build_with: >
38+
Vytvořeno za pomocí <a href="https://gohugo.io/" class="gdoc-footer__link">Hugo</a> a
39+
<svg class="gdoc-icon gdoc_heart"><use xlink:href="#gdoc_heart"></use></svg>
40+
footer_legal_notice: Právní upozornění
41+
footer_privacy_policy: Zásady ochrany soukromí
42+
footer_content_license_prefix: >
43+
Obsah licencovaný pod
44+
45+
language_switch_no_tranlation_prefix: "Stránka není přeložena:"
46+
47+
propertylist_required: povinné
48+
propertylist_optional: volitené
49+
propertylist_default: výchozí
50+
51+
pagination_page_prev: předchozí
52+
pagination_page_next: další
53+
pagination_page_state: "{{ .PageNumber }}/{{ .TotalPages }}"

0 commit comments

Comments
 (0)