jekyll-theme-purple 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +22 -0
- data/README.md +105 -0
- data/_data/locales/ar.yml +91 -0
- data/_data/locales/bg-BG.yml +81 -0
- data/_data/locales/ca-ES.yml +84 -0
- data/_data/locales/cs-CZ.yml +89 -0
- data/_data/locales/da-DK.yml +86 -0
- data/_data/locales/de-DE.yml +87 -0
- data/_data/locales/dv/342/200/221MV.yml +90 -0
- data/_data/locales/el-GR.yml +91 -0
- data/_data/locales/en.yml +91 -0
- data/_data/locales/es-ES.yml +77 -0
- data/_data/locales/fa-IR.yml +91 -0
- data/_data/locales/fi-FI.yml +90 -0
- data/_data/locales/fr-FR.yml +77 -0
- data/_data/locales/hu-HU.yml +92 -0
- data/_data/locales/id-ID.yml +77 -0
- data/_data/locales/it-IT.yml +90 -0
- data/_data/locales/ja-JP.yml +84 -0
- data/_data/locales/ko-KR.yml +84 -0
- data/_data/locales/ku-IQ.yml +91 -0
- data/_data/locales/my-MM.yml +77 -0
- data/_data/locales/nl-NL.yml +90 -0
- data/_data/locales/ps/342/200/221AF.yml +90 -0
- data/_data/locales/pt-BR.yml +77 -0
- data/_data/locales/ru-RU.yml +87 -0
- data/_data/locales/sl-SI.yml +91 -0
- data/_data/locales/sv-SE.yml +91 -0
- data/_data/locales/th.yml +91 -0
- data/_data/locales/tr-TR.yml +77 -0
- data/_data/locales/uk-UA.yml +77 -0
- data/_data/locales/ur-PK.yml +90 -0
- data/_data/locales/vi-VN.yml +76 -0
- data/_data/locales/zh-CN.yml +83 -0
- data/_data/locales/zh-TW.yml +83 -0
- data/_data/origin/basic.yml +39 -0
- data/_data/origin/cors.yml +54 -0
- data/_includes/analytics/cloudflare.html +6 -0
- data/_includes/analytics/fathom.html +6 -0
- data/_includes/analytics/goatcounter.html +6 -0
- data/_includes/analytics/google.html +13 -0
- data/_includes/analytics/matomo.html +13 -0
- data/_includes/analytics/umami.html +6 -0
- data/_includes/comment.html +5 -0
- data/_includes/comments/disqus.html +57 -0
- data/_includes/comments/giscus.html +55 -0
- data/_includes/comments/utterances.html +38 -0
- data/_includes/datetime.html +20 -0
- data/_includes/embed/audio.html +35 -0
- data/_includes/embed/bilibili.html +9 -0
- data/_includes/embed/twitch.html +8 -0
- data/_includes/embed/video.html +59 -0
- data/_includes/embed/youtube.html +9 -0
- data/_includes/favicons.html +19 -0
- data/_includes/footer.html +49 -0
- data/_includes/head.html +126 -0
- data/_includes/js-selector.html +86 -0
- data/_includes/jsdelivr-combine.html +26 -0
- data/_includes/lang.html +10 -0
- data/_includes/language-alias.html +70 -0
- data/_includes/media-url.html +37 -0
- data/_includes/metadata-hook.html +1 -0
- data/_includes/notification.html +24 -0
- data/_includes/origin-type.html +13 -0
- data/_includes/pageviews/goatcounter.html +21 -0
- data/_includes/post-description.html +30 -0
- data/_includes/post-nav.html +34 -0
- data/_includes/post-paginator.html +91 -0
- data/_includes/post-sharing.html +52 -0
- data/_includes/read-time.html +37 -0
- data/_includes/refactor-content.html +287 -0
- data/_includes/related-posts.html +94 -0
- data/_includes/search-loader.html +49 -0
- data/_includes/search-results.html +10 -0
- data/_includes/sidebar.html +105 -0
- data/_includes/toc-status.html +10 -0
- data/_includes/toc.html +9 -0
- data/_includes/topbar.html +77 -0
- data/_includes/trending-tags.html +46 -0
- data/_includes/update-list.html +40 -0
- data/_layouts/archives.html +35 -0
- data/_layouts/categories.html +138 -0
- data/_layouts/category.html +24 -0
- data/_layouts/compress.html +10 -0
- data/_layouts/default.html +86 -0
- data/_layouts/home.html +121 -0
- data/_layouts/page.html +20 -0
- data/_layouts/post.html +179 -0
- data/_layouts/tag.html +23 -0
- data/_layouts/tags.html +22 -0
- data/_sass/abstracts/_breakpoints.scss +73 -0
- data/_sass/abstracts/_index.scss +4 -0
- data/_sass/abstracts/_mixins.scss +80 -0
- data/_sass/abstracts/_placeholders.scss +163 -0
- data/_sass/abstracts/_variables.scss +30 -0
- data/_sass/base/_base.scss +477 -0
- data/_sass/base/_index.scss +4 -0
- data/_sass/base/_reset.scss +41 -0
- data/_sass/base/_syntax.scss +253 -0
- data/_sass/base/_typography.scss +266 -0
- data/_sass/components/_buttons.scss +51 -0
- data/_sass/components/_index.scss +2 -0
- data/_sass/components/_popups.scss +172 -0
- data/_sass/layout/_footer.scss +36 -0
- data/_sass/layout/_index.scss +4 -0
- data/_sass/layout/_panel.scss +70 -0
- data/_sass/layout/_sidebar.scss +258 -0
- data/_sass/layout/_topbar.scss +86 -0
- data/_sass/main.bundle.scss +2 -0
- data/_sass/main.scss +4 -0
- data/_sass/pages/_archives.scss +140 -0
- data/_sass/pages/_categories.scss +82 -0
- data/_sass/pages/_category-tag.scss +63 -0
- data/_sass/pages/_home.scss +173 -0
- data/_sass/pages/_index.scss +7 -0
- data/_sass/pages/_post.scss +496 -0
- data/_sass/pages/_search.scss +184 -0
- data/_sass/pages/_tags.scss +23 -0
- data/_sass/themes/_dark.scss +290 -0
- data/_sass/themes/_light.scss +298 -0
- data/_sass/vendors/_bootstrap.scss +5 -0
- data/assets/404.html +9 -0
- data/assets/css/jekyll-theme-purple.scss +11 -0
- data/assets/feed.xml +54 -0
- data/assets/img/favicons/android-chrome-192x192.png +0 -0
- data/assets/img/favicons/android-chrome-512x512.png +0 -0
- data/assets/img/favicons/apple-touch-icon.png +0 -0
- data/assets/img/favicons/browserconfig.xml +13 -0
- data/assets/img/favicons/favicon-16x16.png +0 -0
- data/assets/img/favicons/favicon-32x32.png +0 -0
- data/assets/img/favicons/favicon.ico +0 -0
- data/assets/img/favicons/mstile-150x150.png +0 -0
- data/assets/img/favicons/site.webmanifest +26 -0
- data/assets/js/data/mathjax.js +25 -0
- data/assets/js/data/search.json +17 -0
- data/assets/js/data/swconf.js +47 -0
- data/assets/js/dist/app.min.js +7 -0
- data/assets/js/dist/categories.min.js +4 -0
- data/assets/js/dist/commons.min.js +4 -0
- data/assets/js/dist/home.min.js +4 -0
- data/assets/js/dist/misc.min.js +4 -0
- data/assets/js/dist/page.min.js +4 -0
- data/assets/js/dist/post.min.js +4 -0
- data/assets/js/dist/sw.min.js +7 -0
- data/assets/js/dist/theme.min.js +4 -0
- data/assets/robots.txt +10 -0
- metadata +277 -0
@@ -0,0 +1,90 @@
|
|
1
|
+
# The layout text of site in Dhivehi (Maldives)
|
2
|
+
|
3
|
+
# ----- Commons label -----
|
4
|
+
|
5
|
+
layout:
|
6
|
+
post: ޕޯސްޓް
|
7
|
+
category: ނަތީޖާ
|
8
|
+
tag: ޓެގް
|
9
|
+
|
10
|
+
# The tabs of sidebar
|
11
|
+
tabs:
|
12
|
+
# format: <filename_without_extension>: <value>
|
13
|
+
home: ހުންނަ
|
14
|
+
categories: ނަތީޖާތައް
|
15
|
+
tags: ޓެގްތައް
|
16
|
+
archives: އާރޗިވްސް
|
17
|
+
about: އިންސާން
|
18
|
+
|
19
|
+
# the text displayed in the search bar & search results
|
20
|
+
search:
|
21
|
+
hint: ސާރޗް
|
22
|
+
cancel: ކެންސަލް
|
23
|
+
no_results: އޮޕްސް! އެއްވެސް ނުފެނުނީ.
|
24
|
+
|
25
|
+
panel:
|
26
|
+
lastmod: އާދަމާ އޮޕްޑޭޓްކުރި
|
27
|
+
trending_tags: މަރާހު ޓެގްތައް
|
28
|
+
toc: ކޮންޓެންސް
|
29
|
+
|
30
|
+
copyright:
|
31
|
+
# Shown at the bottom of the post
|
32
|
+
license:
|
33
|
+
template: މި ޕޯސްޓް :LICENSE_NAME އިން ލައިސަންސްކުރާ ނުވަތަ މުޤައްރާއަށް.
|
34
|
+
name: CC BY 4.0
|
35
|
+
link: https://creativecommons.org/licenses/by/4.0/
|
36
|
+
|
37
|
+
# Displayed in the footer
|
38
|
+
brief: އެކީ ބާރަށް ހުށަހަޅާ.
|
39
|
+
verbose: >-
|
40
|
+
އަދި އެ ރަނގަޅުގައި ނުލާހެވެސް، މި ސައިޓުގެ ޕޯސްޓްތައް
|
41
|
+
މުޤައްރާއަށް Creative Commons Attribution 4.0 International (CC BY 4.0) ލައިސަންސްކުރަނީ.
|
42
|
+
|
43
|
+
meta: :PLATFORM އަށް :THEME ތީމް ބަލާލާށެވެ.
|
44
|
+
|
45
|
+
not_found:
|
46
|
+
statement: ސޯރީ، މި ޔޫ.އާރއެލް މަށެވެއްނެ ނުވަތަ އެކަމެއް ނުވެއެވެ.
|
47
|
+
|
48
|
+
notification:
|
49
|
+
update_found: ޔޫ ވާރޝަން ހުރިހާ.
|
50
|
+
update: އޮޕްޑޭޓް
|
51
|
+
|
52
|
+
# ----- Posts related labels -----
|
53
|
+
|
54
|
+
post:
|
55
|
+
written_by: ލެކްއޯލް
|
56
|
+
posted: ޕޯސްޓްކުރެވި
|
57
|
+
updated: އޮޕްޑޭޓްކުރެވި
|
58
|
+
words: ބަސް
|
59
|
+
pageview_measure: ބަނޑުކުރާ
|
60
|
+
read_time:
|
61
|
+
unit: މިނެޓް
|
62
|
+
prompt: އިސްކާރު
|
63
|
+
relate_posts: އެއްޗެހި ފަހުރަށްދަން
|
64
|
+
share: ސެއާރް
|
65
|
+
button:
|
66
|
+
next: އަދާވަނަ
|
67
|
+
previous: ކޮނޯނި
|
68
|
+
copy_code:
|
69
|
+
succeed: ކޮޕީ ކުރެވި!
|
70
|
+
share_link:
|
71
|
+
title: ލިންކް ކޮޕީ ކުރު
|
72
|
+
succeed: ލިންކް ހަދަންކުރެވި!
|
73
|
+
|
74
|
+
# Date time format.
|
75
|
+
# See: <http://strftime.net/>, <https://day.js.org/docs/en/display/format>
|
76
|
+
df:
|
77
|
+
post:
|
78
|
+
strftime: "%b %e, %Y"
|
79
|
+
dayjs: "ll"
|
80
|
+
archives:
|
81
|
+
strftime: "%b"
|
82
|
+
dayjs: "MMM"
|
83
|
+
|
84
|
+
categories:
|
85
|
+
category_measure:
|
86
|
+
singular: ނަތީޖާ
|
87
|
+
plural: ނަތީޖާތައް
|
88
|
+
post_measure:
|
89
|
+
singular: ޕޯސްޓް
|
90
|
+
plural: ޕޯސްޓްތައް
|
@@ -0,0 +1,91 @@
|
|
1
|
+
# The layout text of site
|
2
|
+
|
3
|
+
# ----- Commons label -----
|
4
|
+
|
5
|
+
layout:
|
6
|
+
post: Δημοσίευση
|
7
|
+
category: Κατηγορία
|
8
|
+
tag: Ετικέτα
|
9
|
+
|
10
|
+
# The tabs of sidebar
|
11
|
+
tabs:
|
12
|
+
# format: <filename_without_extension>: <value>
|
13
|
+
home: Home
|
14
|
+
categories: Κατηγορίες
|
15
|
+
tags: Ετικέτες
|
16
|
+
archives: Αρχεία
|
17
|
+
about: Σχετικά
|
18
|
+
|
19
|
+
# the text displayed in the search bar & search results
|
20
|
+
search:
|
21
|
+
hint: αναζήτηση
|
22
|
+
cancel: Ακύρωση
|
23
|
+
no_results: Oops! Κανένα αποτέλεσμα δεν βρέθηκε.
|
24
|
+
|
25
|
+
panel:
|
26
|
+
lastmod: Σχετικά ενημερωμένα
|
27
|
+
trending_tags: Ετικέτες τάσης
|
28
|
+
toc: Περιεχόμενα
|
29
|
+
|
30
|
+
copyright:
|
31
|
+
# Shown at the bottom of the post
|
32
|
+
license:
|
33
|
+
template: Η δημοσίευση αυτή βρίσκεται υπο την άδεια :LICENSE_NAME Greekforce1821.
|
34
|
+
name: CC BY 4.0
|
35
|
+
link: https://creativecommons.org/licenses/by/4.0/
|
36
|
+
|
37
|
+
# Displayed in the footer
|
38
|
+
brief: Ορισμένα δικαιώματα reserved.
|
39
|
+
verbose: >-
|
40
|
+
Εκτός αλλού ή οπουδήποτε αλλού, τα blog posts σε αυτήν την σελίδα βρίσκονται υπο την άδεια
|
41
|
+
Creative Commons Attribution 4.0 International (CC BY 4.0) του δημιουργού.
|
42
|
+
|
43
|
+
meta: Αξιοποιώντας την :PLATFORM theme :THEME
|
44
|
+
|
45
|
+
not_found:
|
46
|
+
statement: Συγνώμη, έχουμε τοποθετήσει λάθος αυτήν την διεύθυνση URL ή υποδεικνύει κάτι που δεν υπάρχει.
|
47
|
+
|
48
|
+
notification:
|
49
|
+
update_found: Υπάρχει διαθέσιμη μια νέα έκδοση του περιεχομένου.
|
50
|
+
update: Ενημέρωση
|
51
|
+
|
52
|
+
# ----- Posts related labels -----
|
53
|
+
|
54
|
+
post:
|
55
|
+
written_by: Από
|
56
|
+
posted: Δημοσιεύθηκε
|
57
|
+
updated: Ενημερώθηκε
|
58
|
+
words: λέξεις
|
59
|
+
pageview_measure: προβολές
|
60
|
+
read_time:
|
61
|
+
unit: Λεπτά
|
62
|
+
prompt: διαβάσματος
|
63
|
+
relate_posts: Περισσότερα
|
64
|
+
share: Κοινοποιήστε
|
65
|
+
button:
|
66
|
+
next: Νεότερα
|
67
|
+
previous: Παλαιότερα
|
68
|
+
copy_code:
|
69
|
+
succeed: Αντιγράφθηκε!
|
70
|
+
share_link:
|
71
|
+
title: Αντιγραφή συνδέσμου
|
72
|
+
succeed: Η διεύθυνση αντιγράφθηκε με επιτυχία!
|
73
|
+
|
74
|
+
# Date time format.
|
75
|
+
# See: <http://strftime.net/>, <https://day.js.org/docs/en/display/format>
|
76
|
+
df:
|
77
|
+
post:
|
78
|
+
strftime: "%b %e, %Y"
|
79
|
+
dayjs: "ll"
|
80
|
+
archives:
|
81
|
+
strftime: "%b"
|
82
|
+
dayjs: "MMM"
|
83
|
+
|
84
|
+
# categories page
|
85
|
+
categories:
|
86
|
+
category_measure:
|
87
|
+
singular: Κατηγορία
|
88
|
+
plural: Κατηγορίες
|
89
|
+
post_measure:
|
90
|
+
singular: Δημοσίευση
|
91
|
+
plural: Δημοσιεύσεις
|
@@ -0,0 +1,91 @@
|
|
1
|
+
# The layout text of site
|
2
|
+
|
3
|
+
# ----- Commons label -----
|
4
|
+
|
5
|
+
layout:
|
6
|
+
post: Post
|
7
|
+
category: Category
|
8
|
+
tag: Tag
|
9
|
+
|
10
|
+
# The tabs of sidebar
|
11
|
+
tabs:
|
12
|
+
# format: <filename_without_extension>: <value>
|
13
|
+
home: Home
|
14
|
+
categories: Categories
|
15
|
+
tags: Tags
|
16
|
+
archives: Archives
|
17
|
+
about: About
|
18
|
+
|
19
|
+
# the text displayed in the search bar & search results
|
20
|
+
search:
|
21
|
+
hint: search
|
22
|
+
cancel: Cancel
|
23
|
+
no_results: Oops! No results found.
|
24
|
+
|
25
|
+
panel:
|
26
|
+
lastmod: Recently Updated
|
27
|
+
trending_tags: Trending Tags
|
28
|
+
toc: Contents
|
29
|
+
|
30
|
+
copyright:
|
31
|
+
# Shown at the bottom of the post
|
32
|
+
license:
|
33
|
+
template: This post is licensed under :LICENSE_NAME by the author.
|
34
|
+
name: CC BY 4.0
|
35
|
+
link: https://creativecommons.org/licenses/by/4.0/
|
36
|
+
|
37
|
+
# Displayed in the footer
|
38
|
+
brief: Some rights reserved.
|
39
|
+
verbose: >-
|
40
|
+
Except where otherwise noted, the blog posts on this site are licensed
|
41
|
+
under the Creative Commons Attribution 4.0 International (CC BY 4.0) License by the author.
|
42
|
+
|
43
|
+
meta: Using the :THEME theme for :PLATFORM.
|
44
|
+
|
45
|
+
not_found:
|
46
|
+
statement: Sorry, we've misplaced that URL or it's pointing to something that doesn't exist.
|
47
|
+
|
48
|
+
notification:
|
49
|
+
update_found: A new version of content is available.
|
50
|
+
update: Update
|
51
|
+
|
52
|
+
# ----- Posts related labels -----
|
53
|
+
|
54
|
+
post:
|
55
|
+
written_by: By
|
56
|
+
posted: Posted
|
57
|
+
updated: Updated
|
58
|
+
words: words
|
59
|
+
pageview_measure: views
|
60
|
+
read_time:
|
61
|
+
unit: min
|
62
|
+
prompt: read
|
63
|
+
relate_posts: Further Reading
|
64
|
+
share: Share
|
65
|
+
button:
|
66
|
+
next: Newer
|
67
|
+
previous: Older
|
68
|
+
copy_code:
|
69
|
+
succeed: Copied!
|
70
|
+
share_link:
|
71
|
+
title: Copy link
|
72
|
+
succeed: Link copied successfully!
|
73
|
+
|
74
|
+
# Date time format.
|
75
|
+
# See: <http://strftime.net/>, <https://day.js.org/docs/en/display/format>
|
76
|
+
df:
|
77
|
+
post:
|
78
|
+
strftime: "%b %e, %Y"
|
79
|
+
dayjs: "ll"
|
80
|
+
archives:
|
81
|
+
strftime: "%b"
|
82
|
+
dayjs: "MMM"
|
83
|
+
|
84
|
+
# categories page
|
85
|
+
categories:
|
86
|
+
category_measure:
|
87
|
+
singular: category
|
88
|
+
plural: categories
|
89
|
+
post_measure:
|
90
|
+
singular: post
|
91
|
+
plural: posts
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# The layout text of site
|
2
|
+
|
3
|
+
# ----- Commons label -----
|
4
|
+
|
5
|
+
layout:
|
6
|
+
post: Entrada
|
7
|
+
category: Categoría
|
8
|
+
tag: Etiqueta
|
9
|
+
|
10
|
+
# The tabs of sidebar
|
11
|
+
tabs:
|
12
|
+
# format: <filename_without_extension>: <value>
|
13
|
+
home: Inicio
|
14
|
+
categories: Categorías
|
15
|
+
tags: Etiquetas
|
16
|
+
archives: Archivo
|
17
|
+
about: Acerca de
|
18
|
+
|
19
|
+
# the text displayed in the search bar & search results
|
20
|
+
search:
|
21
|
+
hint: Buscar
|
22
|
+
cancel: Cancelar
|
23
|
+
no_results: ¡Oops! No se encuentran resultados.
|
24
|
+
|
25
|
+
panel:
|
26
|
+
lastmod: Actualizado recientemente
|
27
|
+
trending_tags: Etiquetas populares
|
28
|
+
toc: Contenido
|
29
|
+
|
30
|
+
copyright:
|
31
|
+
# Shown at the bottom of the post
|
32
|
+
license:
|
33
|
+
template: Esta entrada está licenciada bajo :LICENSE_NAME por el autor.
|
34
|
+
name: CC BY 4.0
|
35
|
+
link: https://creativecommons.org/licenses/by/4.0/
|
36
|
+
|
37
|
+
# Displayed in the footer
|
38
|
+
brief: Algunos derechos reservados.
|
39
|
+
verbose: >-
|
40
|
+
Salvo que se indique explícitamente, las entradas de este blog están licenciadas
|
41
|
+
bajo la Creative Commons Attribution 4.0 International (CC BY 4.0) License por el autor.
|
42
|
+
|
43
|
+
meta: Hecho con :PLATFORM usando el tema :THEME
|
44
|
+
|
45
|
+
not_found:
|
46
|
+
statement: Lo sentimos, hemos perdido esa URL o apunta a algo que no existe.
|
47
|
+
|
48
|
+
notification:
|
49
|
+
update_found: Hay una nueva versión de contenido disponible.
|
50
|
+
update: Actualizar
|
51
|
+
|
52
|
+
# ----- Posts related labels -----
|
53
|
+
|
54
|
+
post:
|
55
|
+
written_by: Por
|
56
|
+
posted: Publicado
|
57
|
+
updated: Actualizado
|
58
|
+
words: palabras
|
59
|
+
pageview_measure: visitas
|
60
|
+
read_time:
|
61
|
+
unit: min
|
62
|
+
prompt: " de lectura"
|
63
|
+
relate_posts: Lecturas adicionales
|
64
|
+
share: Compartir
|
65
|
+
button:
|
66
|
+
next: Nuevo
|
67
|
+
previous: Anterior
|
68
|
+
copy_code:
|
69
|
+
succeed: ¡Copiado!
|
70
|
+
share_link:
|
71
|
+
title: Copiar enlace
|
72
|
+
succeed: ¡Enlace copiado!
|
73
|
+
|
74
|
+
# categories page
|
75
|
+
categories:
|
76
|
+
category_measure: categorias
|
77
|
+
post_measure: entradas
|
@@ -0,0 +1,91 @@
|
|
1
|
+
# The layout text of site
|
2
|
+
|
3
|
+
# ----- Commons label -----
|
4
|
+
|
5
|
+
layout:
|
6
|
+
post: پست
|
7
|
+
category: دستهبندی
|
8
|
+
tag: برچسب
|
9
|
+
|
10
|
+
# The tabs of sidebar
|
11
|
+
tabs:
|
12
|
+
# format: <filename_without_extension>: <value>
|
13
|
+
home: خانه
|
14
|
+
categories: دستهبندیها
|
15
|
+
tags: برچسبها
|
16
|
+
archives: آرشیو
|
17
|
+
about: درباره
|
18
|
+
|
19
|
+
# the text displayed in the search bar & search results
|
20
|
+
search:
|
21
|
+
hint: جستجو
|
22
|
+
cancel: لغو
|
23
|
+
no_results: متأسفیم! هیچ نتیجهای یافت نشد.
|
24
|
+
|
25
|
+
panel:
|
26
|
+
lastmod: آخرین بهروزرسانی
|
27
|
+
trending_tags: برچسبهای پرطرفدار
|
28
|
+
toc: فهرست مطالب
|
29
|
+
|
30
|
+
copyright:
|
31
|
+
# Shown at the bottom of the post
|
32
|
+
license:
|
33
|
+
template: این پست تحت مجوز :LICENSE_NAME توسط نویسنده منتشر شده است.
|
34
|
+
name: CC BY 4.0
|
35
|
+
link: https://creativecommons.org/licenses/by/4.0/
|
36
|
+
|
37
|
+
# Displayed in the footer
|
38
|
+
brief: برخی حقوق محفوظ است.
|
39
|
+
verbose: >-
|
40
|
+
بهجز مواردی که خلاف آن ذکر شده باشد، محتوای پستهای این وبلاگ
|
41
|
+
تحت مجوز Creative Commons Attribution 4.0 International (CC BY 4.0) توسط نویسنده منتشر شدهاند.
|
42
|
+
|
43
|
+
meta: با استفاده از قالب :THEME برای :PLATFORM
|
44
|
+
|
45
|
+
not_found:
|
46
|
+
statement: متأسفیم، لینک زیر معتبر نیست یا به صفحهای که وجود ندارد اشاره میکند.
|
47
|
+
|
48
|
+
notification:
|
49
|
+
update_found: نسخه جدیدی از محتوا موجود است.
|
50
|
+
update: بهروزرسانی
|
51
|
+
|
52
|
+
# ----- Posts related labels -----
|
53
|
+
|
54
|
+
post:
|
55
|
+
written_by: نوشته شده توسط
|
56
|
+
posted: منتشر شده
|
57
|
+
updated: بهروزرسانی شده
|
58
|
+
words: کلمه
|
59
|
+
pageview_measure: بازدید
|
60
|
+
read_time:
|
61
|
+
unit: "دقیقه "
|
62
|
+
prompt: " زمان مطالعه"
|
63
|
+
relate_posts: بیشتر بخوانید
|
64
|
+
share: اشتراکگذاری
|
65
|
+
button:
|
66
|
+
next: جدیدتر
|
67
|
+
previous: قدیمیتر
|
68
|
+
copy_code:
|
69
|
+
succeed: کپی شد!
|
70
|
+
share_link:
|
71
|
+
title: کپی لینک
|
72
|
+
succeed: لینک با موفقیت کپی شد!
|
73
|
+
|
74
|
+
# Date time format.
|
75
|
+
# See: <http://strftime.net/>, <https://day.js.org/docs/en/display/format>
|
76
|
+
df:
|
77
|
+
post:
|
78
|
+
strftime: "%b %e, %Y"
|
79
|
+
dayjs: "ll"
|
80
|
+
archives:
|
81
|
+
strftime: "%b"
|
82
|
+
dayjs: "MMM"
|
83
|
+
|
84
|
+
# categories page
|
85
|
+
categories:
|
86
|
+
category_measure:
|
87
|
+
singular: دستهبندی
|
88
|
+
plural: دستهبندی
|
89
|
+
post_measure:
|
90
|
+
singular: پست
|
91
|
+
plural: پست
|
@@ -0,0 +1,90 @@
|
|
1
|
+
# The layout text of site
|
2
|
+
|
3
|
+
# ----- Commons label -----
|
4
|
+
|
5
|
+
layout:
|
6
|
+
post: Julkaisu
|
7
|
+
category: Kateogoria
|
8
|
+
tag: Tagi
|
9
|
+
|
10
|
+
# The tabs of sidebar
|
11
|
+
tabs:
|
12
|
+
# format: <filename_without_extension>: <value>
|
13
|
+
home: Koti
|
14
|
+
categories: Kateogoriat
|
15
|
+
tags: Tagit
|
16
|
+
archives: Arkistot
|
17
|
+
about: Minusta
|
18
|
+
|
19
|
+
# the text displayed in the search bar & search results
|
20
|
+
search:
|
21
|
+
hint: etsi
|
22
|
+
cancel: Peruuta
|
23
|
+
no_results: Hups! Ei tuloksia.
|
24
|
+
|
25
|
+
panel:
|
26
|
+
lastmod: Viimeksi päivitetty
|
27
|
+
trending_tags: Trendaavat tagit
|
28
|
+
toc: Sisältö
|
29
|
+
|
30
|
+
copyright:
|
31
|
+
# Shown at the bottom of the post
|
32
|
+
license:
|
33
|
+
template: Tämä julkaisu on lisenssoitu :LICENSE_NAME julkaisijan toimesta.
|
34
|
+
name: CC BY 4.0
|
35
|
+
link: https://creativecommons.org/licenses/by/4.0/
|
36
|
+
|
37
|
+
# Displayed in the footer
|
38
|
+
brief: Jotkut oikeudet pidätetään.
|
39
|
+
verbose: >-
|
40
|
+
Paitsi jos erikseen mainitaan on kaikki sisältö Creative Commons Attribution 4.0 International (CC BY 4.0) Lisensoitu kirjoittajan toimesta.
|
41
|
+
|
42
|
+
meta: Käytetään :PLATFORM iä Teema :THEME
|
43
|
+
|
44
|
+
not_found:
|
45
|
+
statement: Valitettavasti tällä URL-osoitteella ei ole saatavilla sisältöä.
|
46
|
+
|
47
|
+
notification:
|
48
|
+
update_found: Uusi versio sisällöstä on saatavilla.
|
49
|
+
update: Päivitä
|
50
|
+
|
51
|
+
# ----- Posts related labels -----
|
52
|
+
|
53
|
+
post:
|
54
|
+
written_by: Kirjoittaja
|
55
|
+
posted: Julkaistu
|
56
|
+
updated: Päivitetty
|
57
|
+
words: sanaa
|
58
|
+
pageview_measure: katselukertoja
|
59
|
+
read_time:
|
60
|
+
unit: minuuttia
|
61
|
+
prompt: lukea
|
62
|
+
relate_posts: Jatka lukemista
|
63
|
+
share: Jaa
|
64
|
+
button:
|
65
|
+
next: Uudempi
|
66
|
+
previous: Vanhempi
|
67
|
+
copy_code:
|
68
|
+
succeed: Kopiotu!
|
69
|
+
share_link:
|
70
|
+
title: Kopioi linkki
|
71
|
+
succeed: Linkki kopioitu onnistuneesti!
|
72
|
+
|
73
|
+
# Date time format.
|
74
|
+
# See: <http://strftime.net/>, <https://day.js.org/docs/en/display/format>
|
75
|
+
df:
|
76
|
+
post:
|
77
|
+
strftime: "%b %e, %Y"
|
78
|
+
dayjs: "ll"
|
79
|
+
archives:
|
80
|
+
strftime: "%b"
|
81
|
+
dayjs: "MMM"
|
82
|
+
|
83
|
+
# categories page
|
84
|
+
categories:
|
85
|
+
category_measure:
|
86
|
+
singular: kategoria
|
87
|
+
plural: kategoriat
|
88
|
+
post_measure:
|
89
|
+
singular: julkaisu
|
90
|
+
plural: julkaisut
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# The layout text of site
|
2
|
+
|
3
|
+
# ----- Commons label -----
|
4
|
+
|
5
|
+
layout:
|
6
|
+
post: Post
|
7
|
+
category: Catégorie
|
8
|
+
tag: Tag
|
9
|
+
|
10
|
+
# The tabs of sidebar
|
11
|
+
tabs:
|
12
|
+
# format: <filename_without_extension>: <value>
|
13
|
+
home: Accueil
|
14
|
+
categories: Catégories
|
15
|
+
tags: Tags
|
16
|
+
archives: Archives
|
17
|
+
about: À propos
|
18
|
+
|
19
|
+
# the text displayed in the search bar & search results
|
20
|
+
search:
|
21
|
+
hint: recherche
|
22
|
+
cancel: Annuler
|
23
|
+
no_results: Oups ! Aucun résultat trouvé.
|
24
|
+
|
25
|
+
panel:
|
26
|
+
lastmod: Récemment mis à jour
|
27
|
+
trending_tags: Tags tendance
|
28
|
+
toc: Contenu
|
29
|
+
|
30
|
+
copyright:
|
31
|
+
# Shown at the bottom of the post
|
32
|
+
license:
|
33
|
+
template: Cet article est sous licence :LICENSE_NAME par l'auteur.
|
34
|
+
name: CC BY 4.0
|
35
|
+
link: https://creativecommons.org/licenses/by/4.0/deed.fr
|
36
|
+
|
37
|
+
# Displayed in the footer
|
38
|
+
brief: Certains droits réservés.
|
39
|
+
verbose: >-
|
40
|
+
Sauf mention contraire, les articles de ce site sont publiés
|
41
|
+
sous la licence Creative Commons Attribution 4.0 International (CC BY 4.0) par l'auteur.
|
42
|
+
|
43
|
+
meta: Propulsé par :PLATFORM avec le thème :THEME
|
44
|
+
|
45
|
+
not_found:
|
46
|
+
statement: Désolé, nous avons égaré cette URL ou elle pointe vers quelque chose qui n'existe pas.
|
47
|
+
|
48
|
+
notification:
|
49
|
+
update_found: Une nouvelle version du contenu est disponible.
|
50
|
+
update: Mise à jour
|
51
|
+
|
52
|
+
# ----- Posts related labels -----
|
53
|
+
|
54
|
+
post:
|
55
|
+
written_by: Par
|
56
|
+
posted: Posté
|
57
|
+
updated: Mis à jour
|
58
|
+
words: mots
|
59
|
+
pageview_measure: vues
|
60
|
+
read_time:
|
61
|
+
unit: min
|
62
|
+
prompt: lire
|
63
|
+
relate_posts: Autres lectures
|
64
|
+
share: Partager
|
65
|
+
button:
|
66
|
+
next: Plus récent
|
67
|
+
previous: Plus ancien
|
68
|
+
copy_code:
|
69
|
+
succeed: Copié !
|
70
|
+
share_link:
|
71
|
+
title: Copier le lien
|
72
|
+
succeed: Lien copié avec succès !
|
73
|
+
|
74
|
+
# categories page
|
75
|
+
categories:
|
76
|
+
category_measure: catégories
|
77
|
+
post_measure: posts
|
@@ -0,0 +1,92 @@
|
|
1
|
+
# The layout text of site
|
2
|
+
|
3
|
+
# ----- Commons label -----
|
4
|
+
|
5
|
+
layout:
|
6
|
+
post: Bejegyzés
|
7
|
+
category: Kategória
|
8
|
+
tag: Címke
|
9
|
+
|
10
|
+
# The tabs of sidebar
|
11
|
+
tabs:
|
12
|
+
# format: <filename_without_extension>: <value>
|
13
|
+
home: Kezdőlap
|
14
|
+
categories: Kategóriák
|
15
|
+
tags: Címkék
|
16
|
+
archives: Archívum
|
17
|
+
about: Bemutatkozás
|
18
|
+
|
19
|
+
# the text displayed in the search bar & search results
|
20
|
+
search:
|
21
|
+
hint: keresés
|
22
|
+
cancel: Mégse
|
23
|
+
no_results: Hoppá! Nincs találat a keresésre.
|
24
|
+
|
25
|
+
panel:
|
26
|
+
lastmod: Legutóbb frissítve
|
27
|
+
trending_tags: Népszerű Címkék
|
28
|
+
toc: Tartalom
|
29
|
+
|
30
|
+
copyright:
|
31
|
+
# Shown at the bottom of the post
|
32
|
+
license:
|
33
|
+
template: A bejegyzést a szerző :LICENSE_NAME licenc alatt engedélyezte.
|
34
|
+
name: CC BY 4.0
|
35
|
+
link: https://creativecommons.org/licenses/by/4.0/
|
36
|
+
|
37
|
+
# Displayed in the footer
|
38
|
+
brief: Néhány jog fenntartva.
|
39
|
+
verbose: >-
|
40
|
+
Az oldalon található tartalmak
|
41
|
+
Creative Commons Attribution 4.0 International (CC BY 4.0) licenccel rendelkeznek,
|
42
|
+
hacsak másképp nincs jelezve.
|
43
|
+
|
44
|
+
meta: Készítve :THEME témával a :PLATFORM platformra.
|
45
|
+
|
46
|
+
not_found:
|
47
|
+
statement: Sajnáljuk, az URL-t rosszul helyeztük el, vagy valami nem létezőre mutat.
|
48
|
+
|
49
|
+
notification:
|
50
|
+
update_found: Elérhető a tartalom új verziója.
|
51
|
+
update: Frissítés
|
52
|
+
|
53
|
+
# ----- Posts related labels -----
|
54
|
+
|
55
|
+
post:
|
56
|
+
written_by: Szerző
|
57
|
+
posted: Létrehozva
|
58
|
+
updated: Frissítve
|
59
|
+
words: szó
|
60
|
+
pageview_measure: látogató
|
61
|
+
read_time:
|
62
|
+
unit: perc
|
63
|
+
prompt: elolvasni
|
64
|
+
relate_posts: További olvasnivaló
|
65
|
+
share: Megosztás
|
66
|
+
button:
|
67
|
+
next: Újabb
|
68
|
+
previous: Régebbi
|
69
|
+
copy_code:
|
70
|
+
succeed: Másolva!
|
71
|
+
share_link:
|
72
|
+
title: Link másolása
|
73
|
+
succeed: Link sikeresen másolva!
|
74
|
+
|
75
|
+
# Date time format.
|
76
|
+
# See: <http://strftime.net/>, <https://day.js.org/docs/en/display/format>
|
77
|
+
df:
|
78
|
+
post:
|
79
|
+
strftime: "%Y. %B. %e."
|
80
|
+
dayjs: "YYYY. MMMM D."
|
81
|
+
archives:
|
82
|
+
strftime: "%B"
|
83
|
+
dayjs: "MMM"
|
84
|
+
|
85
|
+
# categories page
|
86
|
+
categories:
|
87
|
+
category_measure:
|
88
|
+
singular: kategória
|
89
|
+
plural: kategória
|
90
|
+
post_measure:
|
91
|
+
singular: bejegyzés
|
92
|
+
plural: bejegyzés
|