jekyll-rtd-theme 0.1.8 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -5
- data/_includes/addons.liquid +4 -2
- data/_includes/addons/analytics/baidu.liquid +13 -13
- data/_includes/addons/analytics/google.liquid +8 -14
- data/_includes/addons/comments/disqus.liquid +1 -1
- data/_includes/addons/seo/og.liquid +1 -1
- data/_includes/addons/seo/schema.liquid +1 -1
- data/_includes/addons/source/analytics.liquid +1 -3
- data/_includes/addons/source/i18n.liquid +13 -0
- data/_includes/addons/source/{gems.liquid → plugins.liquid} +1 -1
- data/_includes/album.liquid +7 -0
- data/_includes/assets/common.js +40 -0
- data/_includes/assets/{js/custom.js → custom.js} +0 -0
- data/{_sass → _includes/assets}/custom.scss +0 -0
- data/_includes/assets/search.js +76 -0
- data/_includes/breadcrumbs.liquid +8 -2
- data/_includes/extend/toctree.liquid +10 -0
- data/_includes/footer.liquid +2 -2
- data/_includes/i18n/en.liquid +4 -2
- data/_includes/i18n/fr.liquid +29 -0
- data/_includes/i18n/it.liquid +29 -0
- data/_includes/i18n/ja.liquid +29 -0
- data/_includes/i18n/ko.liquid +29 -0
- data/_includes/i18n/ru.liquid +29 -0
- data/_includes/i18n/{zh.liquid → zh-cn.liquid} +3 -1
- data/_includes/reset/defaults.liquid +32 -21
- data/_includes/reset/i18n.liquid +30 -2
- data/_includes/reset/languages.liquid +110 -0
- data/_includes/reset/schema.liquid +4 -0
- data/_includes/reset/workdir.liquid +17 -1
- data/_layouts/default.liquid +57 -10
- data/_sass/_album.scss +25 -0
- data/_sass/_embed.scss +14 -16
- data/_sass/fluid.scss +1 -1
- data/_sass/{style.scss → site.scss} +20 -16
- data/assets/404.liquid +9 -0
- data/assets/favicon.svg +1 -1
- data/assets/js/html5shiv.min.js +4 -0
- data/assets/search.liquid +28 -0
- data/assets/sitemap.xml +1 -1
- metadata +23 -15
- data/_includes/assets/404.liquid +0 -5
- data/_includes/assets/js/core.js +0 -106
- data/_includes/assets/search.liquid +0 -7
- data/_includes/searchbox.liquid +0 -5
- data/assets/404.md +0 -5
- data/assets/search.md +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e6ab3ca0b72d6b6ae550ce6e421c2c80eb5367ab5e7219c31b565cf0c1c4fe38
|
4
|
+
data.tar.gz: c90717607dab1545b3b6b12376198000f962ba4b8efeca14b355c19b09011583
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59c624650e717629807657c4595356d9cf08b7ff8ffc516430eecb26689d9e64664d0ca7b72b5b4c3420c5b4ce14ea5c9b84c272ff74b8d4bc18720e83252419
|
7
|
+
data.tar.gz: b424b8d443805882799667df8f8a4a7fa99c2046425bf915b2afa2c162d98db4f3e999342999f5411d16580d55613d6b1a5d4551882cadbe97321b106c8f9cc9
|
data/README.md
CHANGED
@@ -11,23 +11,23 @@ Just another documentation theme compatible with GitHub Pages, based on sphinx_r
|
|
11
11
|
![][demo]
|
12
12
|
|
13
13
|
## Notable features
|
14
|
-
- Write documents directly,
|
14
|
+
- Write documents directly, automatically generate toctree based on directory
|
15
15
|
- Only need one file `_config.yml` to configure site
|
16
16
|
- Bundled as a "theme gem" for easier installation/upgrading.
|
17
17
|
- Compatible with GitHub Pages.
|
18
18
|
- Optimized for search engines with support for Open Graph data.
|
19
19
|
- Optimized for search engines with `robots.txt` and `sitemap.xml`.
|
20
|
-
- Search engine
|
20
|
+
- Search engine (RegExp supported)
|
21
21
|
- Commenting support
|
22
22
|
- Google,Baidu,CNZZ Analytics support.
|
23
|
-
-
|
23
|
+
- Multi-language supported
|
24
24
|
- And many features waiting for you to discover.
|
25
25
|
|
26
26
|
## Roadmap
|
27
27
|
See the [open issues][issues] for a list of proposed features (and known issues).
|
28
28
|
|
29
29
|
## Documents
|
30
|
-
For full documentation, see: [https://
|
30
|
+
For full documentation, see: [https://jekyll-rtd-theme.rundocs.io][site]
|
31
31
|
|
32
32
|
## The License
|
33
33
|
The theme is available as open source under the terms of the [MIT License][license].
|
@@ -36,7 +36,7 @@ The theme is available as open source under the terms of the [MIT License][licen
|
|
36
36
|
[repository]: https://github.com/rundocs/jekyll-rtd-theme
|
37
37
|
[issues]: https://github.com/rundocs/jekyll-rtd-theme/issues
|
38
38
|
[license]: https://github.com/rundocs/jekyll-rtd-theme/blob/master/LICENSE
|
39
|
-
[site]: https://
|
39
|
+
[site]: https://jekyll-rtd-theme.rundocs.io
|
40
40
|
[rubygem]: https://rubygems.org/gems/jekyll-rtd-theme
|
41
41
|
[cdn]: https://cdn.jsdelivr.net/gh/rundocs/jekyll-rtd-theme/
|
42
42
|
[codefactor]: https://www.codefactor.io/repository/github/rundocs/jekyll-rtd-theme
|
data/_includes/addons.liquid
CHANGED
@@ -1,13 +1,15 @@
|
|
1
1
|
<div class="rst-versions" data-toggle="rst-versions" role="note" aria-label="versions">
|
2
2
|
<span class="rst-current-version" data-toggle="rst-current-version">
|
3
3
|
<span class="fa fa-book"> {{ site.title }}</span>
|
4
|
-
{% if site.addons_branch %}v: {{ branch }}{% endif %}
|
4
|
+
{% if site.addons_branch and site.github_metadata != false %}v: {{ branch }}{% endif %}
|
5
5
|
<span class="fa fa-caret-down"></span>
|
6
6
|
</span>
|
7
7
|
<div class="rst-other-versions">
|
8
8
|
{%- assign items = site.addons | default: addons -%}
|
9
9
|
{% for item in items -%}
|
10
|
-
{
|
10
|
+
{%- if addons contains item -%}
|
11
|
+
{% include addons/source/{{ item }}.liquid %}
|
12
|
+
{%- endif -%}
|
11
13
|
{% endfor -%}
|
12
14
|
<hr>
|
13
15
|
<small>
|
@@ -1,18 +1,18 @@
|
|
1
1
|
{%- if site.baidu.linksubmit -%}
|
2
|
-
<script>
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
</script>
|
2
|
+
<script>
|
3
|
+
(function(script) {
|
4
|
+
script.src = "https://zz.bdstatic.com/linksubmit/push.js";
|
5
|
+
document.head.appendChild(script);
|
6
|
+
})(document.createElement("script"));
|
7
|
+
</script>
|
8
8
|
{%- endif -%}
|
9
9
|
|
10
10
|
{%- if site.baidu.hm -%}
|
11
|
-
<script>
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
</script>
|
11
|
+
<script>
|
12
|
+
var _hmt = _hmt || [];
|
13
|
+
(function(script) {
|
14
|
+
script.src = "https://hm.baidu.com/hm.js?{{ site.baidu.hm }}";
|
15
|
+
document.head.appendChild(script);
|
16
|
+
})(document.createElement("script"));
|
17
|
+
</script>
|
18
18
|
{%- endif -%}
|
@@ -1,18 +1,12 @@
|
|
1
1
|
{%- if site.google.gtag -%}
|
2
|
-
<!-- Google Analytics -->
|
3
|
-
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google.gtag }}"></script>
|
4
|
-
<script>
|
5
|
-
|
6
|
-
|
7
|
-
function gtag() {
|
8
|
-
dataLayer.push(arguments);
|
9
|
-
}
|
10
|
-
gtag("js", new Date());
|
11
|
-
gtag("config", "{{ site.google.gtag }}");
|
12
|
-
</script>
|
2
|
+
<!-- Google Analytics -->
|
3
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google.gtag }}"></script>
|
4
|
+
<script>
|
5
|
+
gtag("config", "{{ site.google.gtag }}");
|
6
|
+
</script>
|
13
7
|
{%- endif -%}
|
14
8
|
|
15
9
|
{%- if site.google.adsense -%}
|
16
|
-
<!-- Google AdSense -->
|
17
|
-
<script data-ad-client="{{ site.google.adsense }}" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
18
|
-
{%- endif -%}
|
10
|
+
<!-- Google AdSense -->
|
11
|
+
<script data-ad-client="{{ site.google.adsense }}" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
12
|
+
{%- endif -%}
|
@@ -4,4 +4,4 @@
|
|
4
4
|
<meta property="og:url" content="{{ schema_url }}">
|
5
5
|
<meta property="og:type" content="article">
|
6
6
|
<meta property="article:author" content="{{ author }}">
|
7
|
-
<meta property="article:modified_time" content="{{ schema_lastmod }}">
|
7
|
+
<meta property="article:modified_time" content="{{ schema_lastmod }}">
|
@@ -9,8 +9,6 @@
|
|
9
9
|
|
10
10
|
<script>
|
11
11
|
$(document).ready(function() {
|
12
|
-
$.getJSON("https://rundocs-analytics.glitch.me/analytics?host=" + location.host,
|
13
|
-
$("#counter").html(data.count);
|
14
|
-
});
|
12
|
+
$.getJSON("https://rundocs-analytics.glitch.me/analytics?host=" + location.host, (data) => $("#counter").html(data.count));
|
15
13
|
});
|
16
14
|
</script>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<dl>
|
2
|
+
<dt>{{ __translations }}</dt>
|
3
|
+
{%- for item in site_langs -%}
|
4
|
+
<dd>
|
5
|
+
{%- if item == site_lang -%}
|
6
|
+
{%- assign url = "" -%}
|
7
|
+
{%- else -%}
|
8
|
+
{%- assign url = item | append: "/" -%}
|
9
|
+
{%- endif -%}
|
10
|
+
<a href="{{ site.baseurl }}/{{ url }}"><i class="fa fa-language"></i> {{ item }}</a>
|
11
|
+
</dd>
|
12
|
+
{%- endfor -%}
|
13
|
+
</dl>
|
@@ -0,0 +1,40 @@
|
|
1
|
+
$(document).ready(function() {
|
2
|
+
let highlight = new URL(location.href).searchParams.get("highlight");
|
3
|
+
|
4
|
+
SphinxRtdTheme.Navigation.reset = function() {
|
5
|
+
const link = $(".wy-menu-vertical").find(`[href="${location.pathname}"]`);
|
6
|
+
if (link.length > 0) {
|
7
|
+
$(".wy-menu-vertical .current").removeClass("current");
|
8
|
+
link.addClass("current");
|
9
|
+
link.closest("li.toctree-l1").parent().addClass("current");
|
10
|
+
link.closest("li.toctree-l1").addClass("current");
|
11
|
+
link.closest("li.toctree-l2").addClass("current");
|
12
|
+
link.closest("li.toctree-l3").addClass("current");
|
13
|
+
link.closest("li.toctree-l4").addClass("current");
|
14
|
+
link.closest("li.toctree-l5").addClass("current");
|
15
|
+
}
|
16
|
+
};
|
17
|
+
SphinxRtdTheme.Navigation.enable(true);
|
18
|
+
|
19
|
+
if (highlight) {
|
20
|
+
$(".section").find("*").each(function() {
|
21
|
+
try {
|
22
|
+
if (this.outerHTML.match(new RegExp(highlight, "im"))) {
|
23
|
+
$(this).addClass("highlighted-box");
|
24
|
+
}
|
25
|
+
} catch (e) {
|
26
|
+
feedback(["highlight", e.message]);
|
27
|
+
}
|
28
|
+
});
|
29
|
+
$(".section").find(".highlighted-box").each(function() {
|
30
|
+
if (($(this).find(".highlighted-box").length > 0)) {
|
31
|
+
$(this).removeClass("highlighted-box");
|
32
|
+
}
|
33
|
+
});
|
34
|
+
}
|
35
|
+
for (let item in ui.admonition) {
|
36
|
+
let content = $(`.language-${item}`).html();
|
37
|
+
$(`.language-${item}`).replaceWith(`<div class="admonition ${item}"><p class="admonition-title">${ui.admonition[item]}</p><p>${content}</p></div>`);
|
38
|
+
}
|
39
|
+
anchors.add();
|
40
|
+
});
|
File without changes
|
File without changes
|
@@ -0,0 +1,76 @@
|
|
1
|
+
function search(data) {
|
2
|
+
let text = new URL(location.href).searchParams.get("q");
|
3
|
+
let lang = new URL(location.href).searchParams.get("lang") || ui.lang;
|
4
|
+
|
5
|
+
$("input[name='q']").val(text);
|
6
|
+
$("input[name='q']").attr("placeholder", i18n[lang].search_docs + "...");
|
7
|
+
|
8
|
+
let results = [];
|
9
|
+
let regexp = new RegExp();
|
10
|
+
try {
|
11
|
+
regexp = new RegExp(text, "im");
|
12
|
+
} catch (e) {
|
13
|
+
$(".search").empty();
|
14
|
+
$(".search-summary").html(i18n[lang].search_results_not_found);
|
15
|
+
$("#search-results h2").html(i18n[lang].search_results);
|
16
|
+
return feedback(["search", e.message]);
|
17
|
+
}
|
18
|
+
|
19
|
+
function slice(content, min, max) {
|
20
|
+
return content.slice(min, max).replace(regexp, (match) => `<span class="highlighted">${match}</span>`);
|
21
|
+
}
|
22
|
+
for (page of data) {
|
23
|
+
let [title, content] = [null, null];
|
24
|
+
try {
|
25
|
+
if (page.title) {
|
26
|
+
title = page.title.match(regexp);
|
27
|
+
} else {
|
28
|
+
if (page.url == "/") {
|
29
|
+
page.title = ui.title;
|
30
|
+
} else {
|
31
|
+
page.title = page.url;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
} catch (e) {
|
35
|
+
feedback(["search", e.message]);
|
36
|
+
}
|
37
|
+
try {
|
38
|
+
if (page.content) {
|
39
|
+
page.content = $("<div/>").html(page.content).text();
|
40
|
+
content = page.content.match(regexp);
|
41
|
+
}
|
42
|
+
} catch (e) {
|
43
|
+
feedback(["search", e.message]);
|
44
|
+
}
|
45
|
+
if (title || content) {
|
46
|
+
let result = [`<a href="${ui.baseurl}${page.url}?highlight=${text}">${page.title}</a>`];
|
47
|
+
if (content) {
|
48
|
+
let [min, max] = [content.index - 100, content.index + 100];
|
49
|
+
let [prefix, suffix] = ["...", "..."];
|
50
|
+
|
51
|
+
if (min < 0) {
|
52
|
+
prefix = "";
|
53
|
+
min = 0;
|
54
|
+
}
|
55
|
+
if (max > page.content.length) {
|
56
|
+
suffix = "";
|
57
|
+
max = page.content.length;
|
58
|
+
}
|
59
|
+
result.push(`<p class="context">${prefix}${slice(page.content ,min, max)}${suffix}</p>`);
|
60
|
+
}
|
61
|
+
results.push(`<li>${result.join("")}</li>`);
|
62
|
+
}
|
63
|
+
}
|
64
|
+
if (results.length > 0 && text.length > 0) {
|
65
|
+
$(".search").html(results.join(""));
|
66
|
+
$(".search-summary").html(i18n[lang].search_results_found.replace("#", results.length));
|
67
|
+
} else {
|
68
|
+
$(".search").empty();
|
69
|
+
$(".search-summary").html(i18n[lang].search_results_not_found);
|
70
|
+
}
|
71
|
+
$("#search-results h2").html(i18n[lang].search_results);
|
72
|
+
}
|
73
|
+
|
74
|
+
$(document).ready(function() {
|
75
|
+
$.ajax(`${ui.baseurl}/pages.json`).done(search).fail((xhr, message) => feedback(["search", message]));
|
76
|
+
});
|
@@ -22,12 +22,18 @@
|
|
22
22
|
{{ site.baseurl }}/{% for block in blocks limit: forloop.index %}{{ block | append: "/" }}{% endfor %}
|
23
23
|
{%- endcapture %}
|
24
24
|
<li>
|
25
|
-
<a href="{{ href }}">
|
25
|
+
<a href="{{ href }}">
|
26
|
+
{%- if block == lang -%}
|
27
|
+
{{ block }}
|
28
|
+
{%- else -%}
|
29
|
+
{{ block | capitalize }}
|
30
|
+
{%- endif -%}
|
31
|
+
</a><i class="fa fa-angle-double-right"></i>
|
26
32
|
</li>
|
27
33
|
{%- endif -%}
|
28
34
|
{%- endfor -%}
|
29
35
|
{%- endcase %}
|
30
|
-
{%- if site.edit -%}
|
36
|
+
{%- if site.edit and site.github_metadata != false -%}
|
31
37
|
<li class="wy-breadcrumbs-aside">
|
32
38
|
<a href="{{ github_edit_link }}" class="fa fa-edit" target="_blank"></a>
|
33
39
|
</li>
|
@@ -1,6 +1,9 @@
|
|
1
1
|
{%- include reset/workdir.liquid %}
|
2
2
|
|
3
3
|
{%- assign dir = site_pages | where: "url", workdir | first -%}
|
4
|
+
{%- if site_lang != lang -%}
|
5
|
+
{%- assign workdir_level = workdir_level | minus: 1 -%}
|
6
|
+
{%- endif -%}
|
4
7
|
{%- if workdir_level == 2 %}
|
5
8
|
<p class="caption"><span class="caption-text">{{ dir.title | default: dir.url }}</span></p>
|
6
9
|
{%- else %}
|
@@ -13,6 +16,10 @@
|
|
13
16
|
{%- capture current -%}
|
14
17
|
{%- if page.url == item.url %}current{% endif -%}
|
15
18
|
{%- endcapture %}
|
19
|
+
{%- if site_lang != lang -%}
|
20
|
+
{%- assign level = level | minus: 1 -%}
|
21
|
+
{%- endif -%}
|
22
|
+
|
16
23
|
<li class="toctree-l{{ level }} {{ current }}">
|
17
24
|
<a class="reference internal {{ current }}" href="{{ site.baseurl | append: item.url }}">
|
18
25
|
{%- if item.sort and site.show_sorted != false -%}
|
@@ -24,6 +31,9 @@
|
|
24
31
|
{%- endfor -%}
|
25
32
|
{%- for workdir in workdir_dirs -%}
|
26
33
|
{%- assign level = workdir | append: "temp/" | split: "/" | size | minus: 3 %}
|
34
|
+
{%- if site_lang != lang -%}
|
35
|
+
{%- assign level = level | minus: 1 -%}
|
36
|
+
{%- endif -%}
|
27
37
|
<li class="toctree-l{{ level }}">{% include extend/toctree.liquid %}</li>
|
28
38
|
{%- endfor -%}
|
29
39
|
</ul>
|
data/_includes/footer.liquid
CHANGED
@@ -23,7 +23,7 @@
|
|
23
23
|
{%- endif -%}
|
24
24
|
{{ site.time | date: "%Y" }},
|
25
25
|
{{ author }}
|
26
|
-
{% if site.copyright.revision -%}
|
26
|
+
{% if site.copyright.revision and site.github_metadata != false -%}
|
27
27
|
<span class="commit">
|
28
28
|
{{ __revision }} <code>{{ commit }}</code>
|
29
29
|
</span>
|
@@ -32,6 +32,6 @@
|
|
32
32
|
</div>
|
33
33
|
{%- endif -%}
|
34
34
|
<div role="contentinfo" class="copyright-rtd">
|
35
|
-
<a href="https://
|
35
|
+
Powered by <a href="https://rundocs.io">rundocs.io</a>
|
36
36
|
</div>
|
37
37
|
</footer>
|
data/_includes/i18n/en.liquid
CHANGED
@@ -1,8 +1,10 @@
|
|
1
|
+
{% comment %} English {% endcomment %}
|
1
2
|
{%- assign __github = "GitHub" -%}
|
2
3
|
{%- assign __homepage = "Homepage" -%}
|
3
4
|
{%- assign __issues = "Issues" -%}
|
4
5
|
{%- assign __download = "Download" -%}
|
5
|
-
{%- assign
|
6
|
+
{%- assign __plugins = "Theme Plugins" -%}
|
7
|
+
{%- assign __translations = "Translations" -%}
|
6
8
|
{%- assign __statistics = "Statistics" -%}
|
7
9
|
{%- assign __total_visits = "Total visits:" -%}
|
8
10
|
|
@@ -24,4 +26,4 @@
|
|
24
26
|
{%- assign __search_docs = "Search Docs" -%}
|
25
27
|
{%- assign __search_results = "Search Results" -%}
|
26
28
|
{%- assign __search_results_found = "Search finished, found # page(s) matching the search query." -%}
|
27
|
-
{%- assign __search_results_not_found = "Your search did not match any documents, please make sure that all
|
29
|
+
{%- assign __search_results_not_found = "Your search did not match any documents, please make sure that all characters are spelled correctly!" -%}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
{% comment %} French {% endcomment %}
|
2
|
+
{%- assign __github = "Github" -%}
|
3
|
+
{%- assign __homepage = "Page d'accueil" -%}
|
4
|
+
{%- assign __issues = "Problèmes" -%}
|
5
|
+
{%- assign __download = "Télécharger" -%}
|
6
|
+
{%- assign __plugins = "Plugins de thème" -%}
|
7
|
+
{%- assign __translations = "Traductions" -%}
|
8
|
+
{%- assign __statistics = "Statistiques" -%}
|
9
|
+
{%- assign __total_visits = "Total des visites:" -%}
|
10
|
+
|
11
|
+
{%- assign __note = "Remarques" -%}
|
12
|
+
{%- assign __tip = "Conseils" -%}
|
13
|
+
{%- assign __warning = "avertissement" -%}
|
14
|
+
{%- assign __danger = "Danger" -%}
|
15
|
+
|
16
|
+
{%- assign __next = "Page suivante" -%}
|
17
|
+
{%- assign __previous = "Page précédente" -%}
|
18
|
+
{%- assign __copyright = "droits d'auteur" -%}
|
19
|
+
{%- assign __revision = "Révision" -%}
|
20
|
+
|
21
|
+
{%- assign __404 = "404" -%}
|
22
|
+
{%- assign __not_found = "Cette page n'existe pas encore!" -%}
|
23
|
+
|
24
|
+
{%- assign __searching = "Recherche" -%}
|
25
|
+
{%- assign __search = "Chercher" -%}
|
26
|
+
{%- assign __search_docs = "Rechercher des documents" -%}
|
27
|
+
{%- assign __search_results = "Résultats de recherche" -%}
|
28
|
+
{%- assign __search_results_found = "Recherche terminée, page (s) «#» trouvée (s) correspondant à la requête de recherche." -%}
|
29
|
+
{%- assign __search_results_not_found = "Votre recherche ne correspond à aucun document, veuillez vous assurer que tous les caractères sont correctement orthographiés!" -%}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
{% comment %} Italian {% endcomment %}
|
2
|
+
{%- assign __github = "Github" -%}
|
3
|
+
{%- assign __homepage = "Homepage" -%}
|
4
|
+
{%- assign __issues = "Problemi" -%}
|
5
|
+
{%- assign __download = "Scarica" -%}
|
6
|
+
{%- assign __plugins = "Plugin del tema" -%}
|
7
|
+
{%- assign __translations = "Traduzioni" -%}
|
8
|
+
{%- assign __statistics = "statistica" -%}
|
9
|
+
{%- assign __total_visits = "Visite totali:" -%}
|
10
|
+
|
11
|
+
{%- assign __note = "Osservazioni" -%}
|
12
|
+
{%- assign __tip = "Suggerimenti" -%}
|
13
|
+
{%- assign __warning = "avvertimento" -%}
|
14
|
+
{%- assign __danger = "Pericolo" -%}
|
15
|
+
|
16
|
+
{%- assign __next = "Pagina successiva" -%}
|
17
|
+
{%- assign __previous = "Pagina precedente" -%}
|
18
|
+
{%- assign __copyright = "Diritto d'autore" -%}
|
19
|
+
{%- assign __revision = "Revisione" -%}
|
20
|
+
|
21
|
+
{%- assign __404 = "404" -%}
|
22
|
+
{%- assign __not_found = "Questa pagina non esiste ancora!" -%}
|
23
|
+
|
24
|
+
{%- assign __searching = "ricerca" -%}
|
25
|
+
{%- assign __search = "Ricerca" -%}
|
26
|
+
{%- assign __search_docs = "Cerca documenti" -%}
|
27
|
+
{%- assign __search_results = "risultati di ricerca" -%}
|
28
|
+
{%- assign __search_results_found = "Ricerca terminata, sono state trovate pagine # corrispondenti alla query di ricerca." -%}
|
29
|
+
{%- assign __search_results_not_found = "La tua ricerca non ha prodotto risultati in nessun documento, assicurati che tutti i caratteri siano scritti correttamente!" -%}
|