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.
Files changed (148) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +22 -0
  3. data/README.md +105 -0
  4. data/_data/locales/ar.yml +91 -0
  5. data/_data/locales/bg-BG.yml +81 -0
  6. data/_data/locales/ca-ES.yml +84 -0
  7. data/_data/locales/cs-CZ.yml +89 -0
  8. data/_data/locales/da-DK.yml +86 -0
  9. data/_data/locales/de-DE.yml +87 -0
  10. data/_data/locales/dv/342/200/221MV.yml +90 -0
  11. data/_data/locales/el-GR.yml +91 -0
  12. data/_data/locales/en.yml +91 -0
  13. data/_data/locales/es-ES.yml +77 -0
  14. data/_data/locales/fa-IR.yml +91 -0
  15. data/_data/locales/fi-FI.yml +90 -0
  16. data/_data/locales/fr-FR.yml +77 -0
  17. data/_data/locales/hu-HU.yml +92 -0
  18. data/_data/locales/id-ID.yml +77 -0
  19. data/_data/locales/it-IT.yml +90 -0
  20. data/_data/locales/ja-JP.yml +84 -0
  21. data/_data/locales/ko-KR.yml +84 -0
  22. data/_data/locales/ku-IQ.yml +91 -0
  23. data/_data/locales/my-MM.yml +77 -0
  24. data/_data/locales/nl-NL.yml +90 -0
  25. data/_data/locales/ps/342/200/221AF.yml +90 -0
  26. data/_data/locales/pt-BR.yml +77 -0
  27. data/_data/locales/ru-RU.yml +87 -0
  28. data/_data/locales/sl-SI.yml +91 -0
  29. data/_data/locales/sv-SE.yml +91 -0
  30. data/_data/locales/th.yml +91 -0
  31. data/_data/locales/tr-TR.yml +77 -0
  32. data/_data/locales/uk-UA.yml +77 -0
  33. data/_data/locales/ur-PK.yml +90 -0
  34. data/_data/locales/vi-VN.yml +76 -0
  35. data/_data/locales/zh-CN.yml +83 -0
  36. data/_data/locales/zh-TW.yml +83 -0
  37. data/_data/origin/basic.yml +39 -0
  38. data/_data/origin/cors.yml +54 -0
  39. data/_includes/analytics/cloudflare.html +6 -0
  40. data/_includes/analytics/fathom.html +6 -0
  41. data/_includes/analytics/goatcounter.html +6 -0
  42. data/_includes/analytics/google.html +13 -0
  43. data/_includes/analytics/matomo.html +13 -0
  44. data/_includes/analytics/umami.html +6 -0
  45. data/_includes/comment.html +5 -0
  46. data/_includes/comments/disqus.html +57 -0
  47. data/_includes/comments/giscus.html +55 -0
  48. data/_includes/comments/utterances.html +38 -0
  49. data/_includes/datetime.html +20 -0
  50. data/_includes/embed/audio.html +35 -0
  51. data/_includes/embed/bilibili.html +9 -0
  52. data/_includes/embed/twitch.html +8 -0
  53. data/_includes/embed/video.html +59 -0
  54. data/_includes/embed/youtube.html +9 -0
  55. data/_includes/favicons.html +19 -0
  56. data/_includes/footer.html +49 -0
  57. data/_includes/head.html +126 -0
  58. data/_includes/js-selector.html +86 -0
  59. data/_includes/jsdelivr-combine.html +26 -0
  60. data/_includes/lang.html +10 -0
  61. data/_includes/language-alias.html +70 -0
  62. data/_includes/media-url.html +37 -0
  63. data/_includes/metadata-hook.html +1 -0
  64. data/_includes/notification.html +24 -0
  65. data/_includes/origin-type.html +13 -0
  66. data/_includes/pageviews/goatcounter.html +21 -0
  67. data/_includes/post-description.html +30 -0
  68. data/_includes/post-nav.html +34 -0
  69. data/_includes/post-paginator.html +91 -0
  70. data/_includes/post-sharing.html +52 -0
  71. data/_includes/read-time.html +37 -0
  72. data/_includes/refactor-content.html +287 -0
  73. data/_includes/related-posts.html +94 -0
  74. data/_includes/search-loader.html +49 -0
  75. data/_includes/search-results.html +10 -0
  76. data/_includes/sidebar.html +105 -0
  77. data/_includes/toc-status.html +10 -0
  78. data/_includes/toc.html +9 -0
  79. data/_includes/topbar.html +77 -0
  80. data/_includes/trending-tags.html +46 -0
  81. data/_includes/update-list.html +40 -0
  82. data/_layouts/archives.html +35 -0
  83. data/_layouts/categories.html +138 -0
  84. data/_layouts/category.html +24 -0
  85. data/_layouts/compress.html +10 -0
  86. data/_layouts/default.html +86 -0
  87. data/_layouts/home.html +121 -0
  88. data/_layouts/page.html +20 -0
  89. data/_layouts/post.html +179 -0
  90. data/_layouts/tag.html +23 -0
  91. data/_layouts/tags.html +22 -0
  92. data/_sass/abstracts/_breakpoints.scss +73 -0
  93. data/_sass/abstracts/_index.scss +4 -0
  94. data/_sass/abstracts/_mixins.scss +80 -0
  95. data/_sass/abstracts/_placeholders.scss +163 -0
  96. data/_sass/abstracts/_variables.scss +30 -0
  97. data/_sass/base/_base.scss +477 -0
  98. data/_sass/base/_index.scss +4 -0
  99. data/_sass/base/_reset.scss +41 -0
  100. data/_sass/base/_syntax.scss +253 -0
  101. data/_sass/base/_typography.scss +266 -0
  102. data/_sass/components/_buttons.scss +51 -0
  103. data/_sass/components/_index.scss +2 -0
  104. data/_sass/components/_popups.scss +172 -0
  105. data/_sass/layout/_footer.scss +36 -0
  106. data/_sass/layout/_index.scss +4 -0
  107. data/_sass/layout/_panel.scss +70 -0
  108. data/_sass/layout/_sidebar.scss +258 -0
  109. data/_sass/layout/_topbar.scss +86 -0
  110. data/_sass/main.bundle.scss +2 -0
  111. data/_sass/main.scss +4 -0
  112. data/_sass/pages/_archives.scss +140 -0
  113. data/_sass/pages/_categories.scss +82 -0
  114. data/_sass/pages/_category-tag.scss +63 -0
  115. data/_sass/pages/_home.scss +173 -0
  116. data/_sass/pages/_index.scss +7 -0
  117. data/_sass/pages/_post.scss +496 -0
  118. data/_sass/pages/_search.scss +184 -0
  119. data/_sass/pages/_tags.scss +23 -0
  120. data/_sass/themes/_dark.scss +290 -0
  121. data/_sass/themes/_light.scss +298 -0
  122. data/_sass/vendors/_bootstrap.scss +5 -0
  123. data/assets/404.html +9 -0
  124. data/assets/css/jekyll-theme-purple.scss +11 -0
  125. data/assets/feed.xml +54 -0
  126. data/assets/img/favicons/android-chrome-192x192.png +0 -0
  127. data/assets/img/favicons/android-chrome-512x512.png +0 -0
  128. data/assets/img/favicons/apple-touch-icon.png +0 -0
  129. data/assets/img/favicons/browserconfig.xml +13 -0
  130. data/assets/img/favicons/favicon-16x16.png +0 -0
  131. data/assets/img/favicons/favicon-32x32.png +0 -0
  132. data/assets/img/favicons/favicon.ico +0 -0
  133. data/assets/img/favicons/mstile-150x150.png +0 -0
  134. data/assets/img/favicons/site.webmanifest +26 -0
  135. data/assets/js/data/mathjax.js +25 -0
  136. data/assets/js/data/search.json +17 -0
  137. data/assets/js/data/swconf.js +47 -0
  138. data/assets/js/dist/app.min.js +7 -0
  139. data/assets/js/dist/categories.min.js +4 -0
  140. data/assets/js/dist/commons.min.js +4 -0
  141. data/assets/js/dist/home.min.js +4 -0
  142. data/assets/js/dist/misc.min.js +4 -0
  143. data/assets/js/dist/page.min.js +4 -0
  144. data/assets/js/dist/post.min.js +4 -0
  145. data/assets/js/dist/sw.min.js +7 -0
  146. data/assets/js/dist/theme.min.js +4 -0
  147. data/assets/robots.txt +10 -0
  148. metadata +277 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: '098bcf9a52f9aef815fd7360b77db6fb425e5c8fe4c35b5b119ee968cfa40cfc'
4
+ data.tar.gz: 835cb21b195092b2c6bd8d61b056bdea9dbad76672b9c771974c0c19b099b65b
5
+ SHA512:
6
+ metadata.gz: 536c6c3da295bd07c042ab590f49b11c18eb05879ba0dce7a450ee515c160e256db4394563c4293fb473ca87fed1f9e5e676f075770080e0060aba570f573a9a
7
+ data.tar.gz: a3694a4103eb694a25329d2c3b0d15378375870326734257dda15cd3fa0f8fcab0c54fc17aa8347ab98acae45d28e3ac1b50e0baa3965d9298de43ba22ede577
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Cotes Chung
4
+ Copyright (c) 2025 Vishwa R
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the 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,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,105 @@
1
+ <!-- markdownlint-disable-next-line -->
2
+ <div align="center">
3
+
4
+ <!-- markdownlint-disable-next-line -->
5
+ # Purple Jekyll Theme
6
+
7
+ A minimal, responsive, and feature-rich Jekyll theme with a sleek purple aesthetic — forked from [Chirpy](https://github.com/cotes2020/jekyll-theme-chirpy).
8
+
9
+ [![CI](https://img.shields.io/github/actions/workflow/status/kyroceus/jekyll-theme-purple/ci.yml?logo=github)][ci]&nbsp;
10
+ [![Codacy Badge](https://img.shields.io/codacy/grade/4e556876a3c54d5e8f2d2857c4f43894?logo=codacy)][codacy]&nbsp;
11
+ [![GitHub license](https://img.shields.io/github/license/kyroceus/jekyll-theme-purple?color=purple)][license]&nbsp;
12
+ [![Gem Version](https://img.shields.io/gem/v/jekyll-theme-purple?&logo=RubyGems&logoColor=ghostwhite&label=gem&color=orchid)][gem]&nbsp;
13
+ [![Open in Dev Containers](https://img.shields.io/badge/Dev_Containers-Open-mediumpurple?logo=linuxcontainers)][open-container]
14
+
15
+ [**Live Demo** →][demo]
16
+
17
+ [![Devices Mockup](https://chirpy-img.netlify.app/commons/devices-mockup.png)][demo]
18
+
19
+ </div>
20
+
21
+ ## About
22
+
23
+ **Purple Jekyll Theme** is a purple-styled fork of [Chirpy](https://github.com/cotes2020/jekyll-theme-chirpy).
24
+ It’s designed for developers, writers, and creators who want a beautiful, customizable, and performant static site powered by [Jekyll][jekyllrb].
25
+
26
+ If you liked Chirpy but wanted a more vibrant and unique vibe, **Purple** is for you.
27
+
28
+ ---
29
+
30
+ ## Features
31
+
32
+ - Elegant **Amethyst-inspired purple design**
33
+ - Dark Mode and Light Mode
34
+ - Localized UI language
35
+ - Pinned Posts on Home Page
36
+ - Hierarchical Categories
37
+ - Trending Tags
38
+ - Table of Contents
39
+ - Last Modified Date
40
+ - Syntax Highlighting
41
+ - Mathematical Expressions
42
+ - Mermaid Diagrams & Flowcharts
43
+ - Dark Mode Images
44
+ - Embed Media
45
+ - Comment Systems
46
+ - Built-in Search
47
+ - Atom Feeds
48
+ - PWA
49
+ - Web Analytics
50
+ - SEO & Performance Optimization
51
+
52
+ ---
53
+
54
+ ## Documentation
55
+
56
+ To learn how to use, develop, and upgrade the project, please refer to the [Wiki][wiki].
57
+ Setup and usage are largely the same as Chirpy’s.
58
+
59
+ ---
60
+
61
+ ## Contributing
62
+
63
+ Contributions (_pull requests_, _issues_, and _discussions_) are welcome!
64
+ This project thrives because of the open-source community. For details, see the "[Contributing Guidelines][contribute-guide]".
65
+
66
+ ---
67
+
68
+ ## Credits
69
+
70
+ ### Original Project
71
+
72
+ This theme is based on the amazing [**Chirpy Jekyll Theme**](https://github.com/cotes2020/jekyll-theme-chirpy) by [Cotes Chung](https://github.com/cotes2020).
73
+
74
+ ### Contributors
75
+
76
+ Thanks to [all the contributors][contributors] who’ve worked on both **Chirpy** and **Purple**!
77
+
78
+ [![all-contributors](https://contrib.rocks/image?repo=kyroceus/jekyll-theme-purple&columns=16)][contributors]
79
+ <sub>— Made with [contrib.rocks](https://contrib.rocks)</sub>
80
+
81
+ ### Third-Party Assets
82
+
83
+ This project is built on the [Jekyll][jekyllrb] ecosystem and some [great libraries][lib], and is developed using [VS Code][vscode] and [JetBrains][jetbrains] IDEs under a non-commercial open-source license.
84
+
85
+ ---
86
+
87
+ ## License
88
+
89
+ This project is published under the [MIT License][license].
90
+
91
+ ---
92
+
93
+ [gem]: https://rubygems.org/gems/jekyll-theme-purple
94
+ [ci]: https://github.com/kyroceus/jekyll-theme-purple/actions/workflows/ci.yml?query=event%3Apush+branch%3Amaster
95
+ [codacy]: https://app.codacy.com/gh/kyroceus/jekyll-theme-purple/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade
96
+ [license]: https://github.com/kyroceus/jekyll-theme-purple/blob/main/LICENSE
97
+ [open-container]: https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/kyroceus/jekyll-theme-purple
98
+ [jekyllrb]: https://jekyllrb.com/
99
+ [demo]: https://kyroceus.github.io/purple-demo/
100
+ [wiki]: https://github.com/kyroceus/jekyll-theme-purple/wiki
101
+ [contribute-guide]: https://github.com/kyroceus/jekyll-theme-purple/blob/master/docs/CONTRIBUTING.md
102
+ [contributors]: https://github.com/kyroceus/jekyll-theme-purple/graphs/contributors
103
+ [lib]: https://github.com/cotes2020/chirpy-static-assets
104
+ [vscode]: https://code.visualstudio.com/
105
+ [jetbrains]: https://www.jetbrains.com/?from=jekyll-theme-purple
@@ -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: باستخدام :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 page
85
+ categories:
86
+ category_measure:
87
+ singular: فئة
88
+ plural: فئات
89
+ post_measure:
90
+ singular: منشور
91
+ plural: منشورات
@@ -0,0 +1,81 @@
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 (CC BY 4.0) от автора.
42
+
43
+ meta: Създадено чрез :PLATFORM и :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
+ # categories page
75
+ categories:
76
+ category_measure:
77
+ singular: категория
78
+ plural: категории
79
+ post_measure:
80
+ singular: публикация
81
+ plural: публикации
@@ -0,0 +1,84 @@
1
+ # The layout text of site
2
+
3
+ # ----- Commons label -----
4
+
5
+ layout:
6
+ post: Entrada
7
+ category: Categoria
8
+ tag: Etiqueta
9
+
10
+ # The tabs of sidebar
11
+ tabs:
12
+ # format: <filename_without_extension>: <value>
13
+ home: Inici
14
+ categories: Categories
15
+ tags: Etiquetes
16
+ archives: Arxiu
17
+ about: Sobre
18
+
19
+ # the text displayed in the search bar & search results
20
+ search:
21
+ hint: Cercar
22
+ cancel: Cancel·lar
23
+ no_results: Ups! No s'han trobat resultats.
24
+
25
+ panel:
26
+ lastmod: Actualitzat recentment
27
+ trending_tags: Etiquetes populars
28
+ toc: Taula de continguts
29
+
30
+ copyright:
31
+ # Shown at the bottom of the post
32
+ license:
33
+ template: Aquesta entrada està llicenciada sota :LICENSE_NAME per l'autor.
34
+ name: CC BY 4.0
35
+ link: https://creativecommons.org/licenses/by/4.0/
36
+
37
+ # Displayed in the footer
38
+ brief: Alguns drets reservats.
39
+ verbose: >-
40
+ Excepte que s'indiqui explícitament, les entrades d'aquest blog estan llicenciades
41
+ sota la llicència Creative Commons Attribution 4.0 International (CC BY 4.0) per l'autor.
42
+
43
+ meta: Fet amb :PLATFORM utilitzant el tema :THEME
44
+
45
+ not_found:
46
+ statement: Ho sentim, hem perdut aquesta URL o apunta a alguna cosa que no existeix.
47
+
48
+ notification:
49
+ update_found: Hi ha una nova versió de contingut disponible.
50
+ update: Actualitzar
51
+
52
+ # ----- Posts related labels -----
53
+
54
+ post:
55
+ written_by: Per
56
+ posted: Publicat
57
+ updated: Actualitzat
58
+ words: paraules
59
+ pageview_measure: visites
60
+ read_time:
61
+ unit: min
62
+ prompt: " de lectura"
63
+ relate_posts: Entrades relacionades
64
+ share: Compartir
65
+ button:
66
+ next: Següent
67
+ previous: Anterior
68
+ copy_code:
69
+ succeed: Copiat!
70
+ share_link:
71
+ title: Copiar enllaç
72
+ succeed: Enllaç copiat!
73
+
74
+ # Date time format.
75
+ # See: <http://strftime.net/>, <https://day.js.org/docs/en/display/format>
76
+ df:
77
+ post:
78
+ strftime: "%Y/%m/%d"
79
+ dayjs: "YYYY/MM/DD"
80
+
81
+ # categories page
82
+ categories:
83
+ category_measure: categories
84
+ post_measure: entrades
@@ -0,0 +1,89 @@
1
+ # The layout text of site
2
+
3
+ # ----- Commons label -----
4
+
5
+ layout:
6
+ post: Příspěvek
7
+ category: Kategorie
8
+ tag: Štítek
9
+
10
+ # The tabs of sidebar
11
+ tabs:
12
+ # format: <filename_without_extension>: <value>
13
+ home: Domů
14
+ categories: Kategorie
15
+ tags: Štítky
16
+ archives: Archivy
17
+ about: O mně
18
+
19
+ # the text displayed in the search bar & search results
20
+ search:
21
+ hint: hledat
22
+ cancel: Zrušit
23
+ no_results: Ups! Žádný výsledek nenalezen.
24
+
25
+ panel:
26
+ lastmod: Nedávno aktualizováno
27
+ trending_tags: Trendy štítky
28
+ toc: Obsah
29
+
30
+ copyright:
31
+ # Shown at the bottom of the post
32
+ license:
33
+ template: Tento příspěvek je licencován pod :LICENSE_NAME autorem.
34
+ name: CC BY 4.0
35
+ link: https://creativecommons.org/licenses/by/4.0/
36
+
37
+ # Displayed in the footer
38
+ brief: Některá práva vyhrazena.
39
+ verbose: >-
40
+ Pokud není uvedeno jinak, jsou příspěvky na tomto webu licencovány
41
+ pod licencí Creative Commons Attribution 4.0 International (CC BY 4.0) Licence autora.
42
+
43
+ meta: Použití :PLATFORM s motivem :THEME
44
+
45
+ not_found:
46
+ statement: Omlouváme se, adresu URL jsme špatně umístili nebo odkazuje na něco, co neexistuje.
47
+
48
+ notification:
49
+ update_found: Je k dispozici nová verze obsahu.
50
+ update: Aktualizace
51
+
52
+ # ----- Posts related labels -----
53
+
54
+ post:
55
+ written_by: Od
56
+ posted: Zveřejněno
57
+ updated: Aktualizováno
58
+ words: slova
59
+ pageview_measure: zhlednutí
60
+ read_time:
61
+ unit: minut
62
+ prompt: čtení
63
+ relate_posts: Další čtení
64
+ share: Sdílet
65
+ button:
66
+ next: Novější
67
+ previous: Starší
68
+ copy_code:
69
+ succeed: Zkopírováno!
70
+ share_link:
71
+ title: Kopírovat odkaz
72
+ succeed: Zkopírováno!
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: kategorie
87
+ post_measure:
88
+ singular: příspěvěk
89
+ plural: příspěvky
@@ -0,0 +1,86 @@
1
+ # The layout text of site
2
+
3
+ # ----- Commons label -----
4
+
5
+ layout:
6
+ post: Opslag
7
+ category: Kategori
8
+ tag: Tag
9
+
10
+ # The tabs of sidebar
11
+ tabs:
12
+ # format: <filename_without_extension>: <value>
13
+ home: Hjem
14
+ categories: Kategorier
15
+ tags: Tags
16
+ archives: Arkiv
17
+ about: Om siden
18
+
19
+ # the text displayed in the search bar & search results
20
+ search:
21
+ hint: søg
22
+ cancel: Afbryd
23
+ no_results: Ups! Ingen resultater fundet.
24
+
25
+ panel:
26
+ lastmod: Senest opdateret
27
+ trending_tags: Populære tags
28
+ toc: Indhold
29
+
30
+ copyright:
31
+ # Shown at the bottom of the post
32
+ license:
33
+ template: Dette opslag er licenseret under :LICENSE_NAME af forfatteren.
34
+ name: CC BY 4.0
35
+ link: https://creativecommons.org/licenses/by/4.0/
36
+
37
+ # Displayed in the footer
38
+ brief: Nogle rettigheder forbeholdes.
39
+ verbose: >-
40
+ Medmindre andet er angivet, er opslag på denne side beskyttet
41
+ under Creative Commons Attribution 4.0 International (CC BY 4.0) licensen af forfatteren.
42
+
43
+ # meta: Using the :THEME theme for :PLATFORM.
44
+
45
+ not_found:
46
+ statement: Beklager, vi har malpaceret denne URL, eller den peger på et sted, som ikke findes.
47
+
48
+ notification:
49
+ update_found: En ny version af indholdet er fundet!
50
+ update: Opdater
51
+
52
+ # ----- Posts related labels -----
53
+
54
+ post:
55
+ written_by: Af
56
+ posted: Udgivet
57
+ updated: Opdateret
58
+ words: ord
59
+ pageview_measure: visninger
60
+ read_time:
61
+ unit: min
62
+ prompt: læsetid
63
+ relate_posts: Læs videre
64
+ share: Del
65
+ button:
66
+ next: Nyere
67
+ previous: Ældre
68
+ copy_code:
69
+ succeed: Kopieret!
70
+ share_link:
71
+ title: Kopier link
72
+ succeed: Link kopieret!
73
+
74
+ # Date time format.
75
+ # See: <http://strftime.net/>, <https://day.js.org/docs/en/display/format>
76
+ df:
77
+ post:
78
+ strftime: "%Y/%m/%d"
79
+ dayjs: "YYYY/MM/DD"
80
+
81
+ # categories page
82
+ categories:
83
+ category_measure:
84
+ singular: kategori
85
+ plural: kategorier
86
+ post_measure: opslag
@@ -0,0 +1,87 @@
1
+ # The layout text of site
2
+
3
+ # ----- Commons label -----
4
+
5
+ layout:
6
+ post: Eintrag
7
+ category: Kategorie
8
+ tag: Tag
9
+
10
+ # The tabs of sidebar
11
+ tabs:
12
+ # format: <filename_without_extension>: <value>
13
+ home: Startseite
14
+ categories: Kategorien
15
+ tags: Tags
16
+ archives: Archiv
17
+ about: Über
18
+
19
+ # the text displayed in the search bar & search results
20
+ search:
21
+ hint: Suche
22
+ cancel: Abbrechen
23
+ no_results: Ups! Keine Einträge gefunden.
24
+
25
+ panel:
26
+ lastmod: Kürzlich aktualisiert
27
+ trending_tags: Beliebte Tags
28
+ toc: Inhalt
29
+
30
+ copyright:
31
+ # Shown at the bottom of the post
32
+ license:
33
+ template: Dieser Eintrag ist vom Autor unter :LICENSE_NAME lizensiert.
34
+ name: CC BY 4.0
35
+ link: https://creativecommons.org/licenses/by/4.0/
36
+
37
+ # Displayed in the footer
38
+ brief: Einige Rechte vorbehalten.
39
+ verbose: >-
40
+ Alle Einträge auf dieser Seite stehen, soweit nicht anders angegeben, unter der Lizenz Creative Commons Attribution 4.0 (CC BY 4.0).
41
+
42
+ meta: Powered by :PLATFORM with :THEME theme
43
+
44
+ not_found:
45
+ statement: Entschuldigung, dieser Link verweist auf keine vorhandene Ressource.
46
+
47
+ notification:
48
+ update_found: Eine neue Version ist verfügbar.
49
+ update: Neue Version
50
+
51
+ # ----- Posts related labels -----
52
+
53
+ post:
54
+ written_by: Von
55
+ posted: Veröffentlicht
56
+ updated: Aktualisiert
57
+ words: Wörter
58
+ pageview_measure: Aufrufe
59
+ read_time:
60
+ unit: Minuten
61
+ prompt: Lesezeit
62
+ relate_posts: Weiterlesen
63
+ share: Teilen
64
+ button:
65
+ next: Nächster Eintrag
66
+ previous: Eintrag vorher
67
+ copy_code:
68
+ succeed: Kopiert!
69
+ share_link:
70
+ title: Link kopieren
71
+ succeed: Link erfolgreich kopiert!
72
+
73
+ # Date time format.
74
+ # See: <http://strftime.net/>, <https://day.js.org/docs/en/display/format>
75
+ df:
76
+ post:
77
+ strftime: "%d.%m.%Y"
78
+ dayjs: "DD.MM.YYYY"
79
+
80
+ # categories page
81
+ categories:
82
+ category_measure:
83
+ singular: Kategorie
84
+ plural: Kategorien
85
+ post_measure:
86
+ singular: Eintrag
87
+ plural: Einträge