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
@@ -0,0 +1,77 @@
1
+ # The layout text of site
2
+
3
+ # ----- Commons label -----
4
+
5
+ layout:
6
+ post: Postingan
7
+ category: Kategori
8
+ tag: Tagar
9
+
10
+ # The tabs of sidebar
11
+ tabs:
12
+ # format: <filename_without_extension>: <value>
13
+ home: Beranda
14
+ categories: Kategori
15
+ tags: Tagar
16
+ archives: Arsip
17
+ about: Tentang
18
+
19
+ # the text displayed in the search bar & search results
20
+ search:
21
+ hint: Cari
22
+ cancel: Batal
23
+ no_results: Ups! Tidak ada hasil yang ditemukan.
24
+
25
+ panel:
26
+ lastmod: Postingan Terbaru
27
+ trending_tags: Tagar Terpopuler
28
+ toc: Konten
29
+
30
+ copyright:
31
+ # Shown at the bottom of the post
32
+ license:
33
+ template: Postingan ini dilisensikan di bawah :LICENSE_NAME oleh penulis.
34
+ name: CC BY 4.0
35
+ link: https://creativecommons.org/licenses/by/4.0/
36
+
37
+ # Displayed in the footer
38
+ brief: Sebagian konten dilindungi.
39
+ verbose: >-
40
+ Kecuali jika dinyatakan, Postingan blog di situs ini dilisensikan
41
+ di bawah Lisensi Creative Commons Attribution 4.0 International (CC BY 4.0) oleh penulis.
42
+
43
+ meta: Didukung oleh :PLATFORM dengan tema :THEME
44
+
45
+ not_found:
46
+ statement: Maaf, kami gagal menemukan URL itu atau memang mengarah ke sesuatu yang tidak ada.
47
+
48
+ notification:
49
+ update_found: Versi konten baru tersedia.
50
+ update: Perbarui
51
+
52
+ # ----- Posts related labels -----
53
+
54
+ post:
55
+ written_by: Oleh
56
+ posted: Diterbitkan
57
+ updated: Diperbarui
58
+ words: kata
59
+ pageview_measure: dilihat
60
+ read_time:
61
+ unit: menit
62
+ prompt: baca
63
+ relate_posts: Postingan Lainya
64
+ share: Bagikan
65
+ button:
66
+ next: Terbaru
67
+ previous: Terlama
68
+ copy_code:
69
+ succeed: Disalin!
70
+ share_link:
71
+ title: Salin tautan
72
+ succeed: Tautan berhasil disalin!
73
+
74
+ # categories page
75
+ categories:
76
+ category_measure: kategori
77
+ post_measure: Postingan
@@ -0,0 +1,90 @@
1
+ # The layout text of site
2
+
3
+ # ----- Commons label -----
4
+
5
+ layout:
6
+ post: Post
7
+ category: Categoria
8
+ tag: Tag
9
+
10
+ # The tabs of sidebar
11
+ tabs:
12
+ # format: <filename_without_extension>: <value>
13
+ home: Pagina principale
14
+ categories: Categorie
15
+ tags: Tags
16
+ archives: Archivio
17
+ about: Informazioni
18
+
19
+ # the text displayed in the search bar & search results
20
+ search:
21
+ hint: ricerca
22
+ cancel: Cancella
23
+ no_results: Oops! La ricerca non ha fornito risultati.
24
+
25
+ panel:
26
+ lastmod: Aggiornati recentemente
27
+ trending_tags: Tags più cliccati
28
+ toc: Contenuti
29
+
30
+ copyright:
31
+ # Shown at the bottom of the post
32
+ license:
33
+ template: Questo post è sotto licenza :LICENSE_NAME a nome dell'autore.
34
+ name: CC BY 4.0
35
+ link: https://creativecommons.org/licenses/by/4.0/
36
+
37
+ # Displayed in the footer
38
+ brief: Alcuni diritti riservati.
39
+ verbose: >-
40
+ Eccetto quando esplicitamente menzionato, i post di questo blog sono da ritenersi sotto
41
+ i termini di licenza Creative Commons Attribution 4.0 International (CC BY 4.0).
42
+
43
+ meta: Servizio offerto da :PLATFORM con tema :THEME
44
+ not_found:
45
+ statement: Ci scusiamo, non è stato possibile trovare l'URL in questione. Potrebbe puntare ad una pagina non esistente.
46
+
47
+ notification:
48
+ update_found: Nuova versione del contenuto disponibile.
49
+ update: Aggiornamento
50
+
51
+ # ----- Posts related labels -----
52
+
53
+ post:
54
+ written_by: Da
55
+ posted: Postato
56
+ updated: Aggiornato
57
+ words: parole
58
+ pageview_measure: visioni
59
+ read_time:
60
+ unit: min
61
+ prompt: lettura
62
+ relate_posts: Continua a leggere
63
+ share: Condividi
64
+ button:
65
+ next: Più recenti
66
+ previous: Meno recenti
67
+ copy_code:
68
+ succeed: Copiato!
69
+ share_link:
70
+ title: Copia link
71
+ succeed: Link copiato con successo!
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: categoria
87
+ plural: categorie
88
+ post_measure:
89
+ singular: post
90
+ plural: posts
@@ -0,0 +1,84 @@
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: 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: :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
+ # 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
+ post_measure: 投稿
@@ -0,0 +1,84 @@
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: Powered by :PLATFORM with :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: 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: "%Y/%m/%d"
79
+ dayjs: "YYYY/MM/DD"
80
+
81
+ # categories page
82
+ categories:
83
+ category_measure: 카테고리
84
+ post_measure: 포스트
@@ -0,0 +1,91 @@
1
+ # The layout text of site in Kurdish (Sorani)
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: "%d %b, %Y"
79
+ dayjs: "DD MMM, YYYY"
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,77 @@
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: Powered by :PLATFORM with :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
+ # categories page
75
+ categories:
76
+ category_measure: ကဏ္ဍများ
77
+ post_measure: ပို့စ်များ
@@ -0,0 +1,90 @@
1
+ # The layout text of site
2
+
3
+ # ----- Commons label -----
4
+
5
+ layout:
6
+ post: Post
7
+ category: Categorie
8
+ tag: Tag
9
+
10
+ # The tabs of sidebar
11
+ tabs:
12
+ # format: <filename_without_extension>: <value>
13
+ home: Startpagina
14
+ categories: Categorieën
15
+ tags: Tags
16
+ archives: Archief
17
+ about: Over
18
+
19
+ # the text displayed in the search bar & search results
20
+ search:
21
+ hint: Zoek
22
+ cancel: Annuleer
23
+ no_results: Oops! Geen resultaat gevonden.
24
+
25
+ panel:
26
+ lastmod: Recent Bijgewerkt
27
+ trending_tags: Trending Tags
28
+ toc: Inhoud
29
+
30
+ copyright:
31
+ # Shown at the bottom of the post
32
+ license:
33
+ template: Alle posts zijn onder :LICENSE_NAME gepubliceerd door de auteur.
34
+ name: CC BY 4.0
35
+ link: https://creativecommons.org/licenses/by/4.0/
36
+
37
+ # Displayed in the footer
38
+ brief: Sommige rechten voorbehouden.
39
+ verbose: >-
40
+ Tenzij anders vermeld, alle posts zijn onder de
41
+ Creative Commons Attribution 4.0 International (CC BY 4.0) gepubliceerd door de auteur.
42
+
43
+ meta: Gebruikt :THEME
44
+
45
+ not_found:
46
+ statement: Sorry, we hebben de URL verkeerd geplaatst of hij verwijst naar iets dat niet bestaat.
47
+
48
+ notification:
49
+ update_found: Nieuwe versie van inhoud beschikbaar.
50
+ update: Update
51
+
52
+ # ----- Posts related labels -----
53
+ post:
54
+ written_by: Door
55
+ posted: Posted
56
+ updated: Bijgewerkt
57
+ words: woorden
58
+ pageview_measure: Gelezen
59
+ read_time:
60
+ unit: min
61
+ prompt: lees
62
+ relate_posts: Verder Lezen
63
+ share: Deel
64
+ button:
65
+ next: Volgende
66
+ previous: Vorige
67
+ copy_code:
68
+ succeed: Gekopieerd!
69
+ share_link:
70
+ title: Link kopiëren
71
+ succeed: Succesvol gekopieerd!
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: categorie
87
+ plural: categorieën
88
+ post_measure:
89
+ singular: post
90
+ plural: posts
@@ -0,0 +1,90 @@
1
+ # The layout text of site in Pashto (Afghanistan)
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
+ د لیکوال له خوا د کریټېو کامنز د انتساب 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
+ # 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: لیکنې