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,77 @@
|
|
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: Home
|
14
|
+
categories: Categorias
|
15
|
+
tags: Tags
|
16
|
+
archives: Arquivos
|
17
|
+
about: Sobre
|
18
|
+
|
19
|
+
# the text displayed in the search bar & search results
|
20
|
+
search:
|
21
|
+
hint: Buscar
|
22
|
+
cancel: Cancelar
|
23
|
+
no_results: Oops! Nenhum resultado encontrado.
|
24
|
+
|
25
|
+
panel:
|
26
|
+
lastmod: Atualizados recentemente
|
27
|
+
trending_tags: Trending Tags
|
28
|
+
toc: Conteúdo
|
29
|
+
|
30
|
+
copyright:
|
31
|
+
# Shown at the bottom of the post
|
32
|
+
license:
|
33
|
+
template: Esta postagem está licenciada sob :LICENSE_NAME pelo 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 direitos reservados.
|
39
|
+
verbose: >-
|
40
|
+
Exceto onde indicado de outra forma, as postagens do blog neste site são licenciadas sob a
|
41
|
+
Creative Commons Attribution 4.0 International (CC BY 4.0) License pelo autor.
|
42
|
+
|
43
|
+
meta: Feito com :PLATFORM usando o tema :THEME
|
44
|
+
|
45
|
+
not_found:
|
46
|
+
statement: Desculpe, a página não foi encontrada.
|
47
|
+
|
48
|
+
notification:
|
49
|
+
update_found: Uma nova versão do conteúdo está disponível.
|
50
|
+
update: atualização
|
51
|
+
|
52
|
+
# ----- Posts related labels -----
|
53
|
+
|
54
|
+
post:
|
55
|
+
written_by: Por
|
56
|
+
posted: Postado em
|
57
|
+
updated: Atualizado
|
58
|
+
words: palavras
|
59
|
+
pageview_measure: visualizações
|
60
|
+
read_time:
|
61
|
+
unit: min
|
62
|
+
prompt: " de leitura"
|
63
|
+
relate_posts: Leia também
|
64
|
+
share: Compartilhar
|
65
|
+
button:
|
66
|
+
next: Próximo
|
67
|
+
previous: Anterior
|
68
|
+
copy_code:
|
69
|
+
succeed: Copiado!
|
70
|
+
share_link:
|
71
|
+
title: Copie o link
|
72
|
+
succeed: Link copiado com sucesso!
|
73
|
+
|
74
|
+
# categories page
|
75
|
+
categories:
|
76
|
+
category_measure: categorias
|
77
|
+
post_measure: posts
|
@@ -0,0 +1,87 @@
|
|
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
|
+
Если не указано иное, авторские посты на этом сайте защищены лицензией Creative Commons Attribution 4.0 International (CC BY 4.0).
|
41
|
+
|
42
|
+
meta: Использует тему :THEME для :PLATFORM
|
43
|
+
|
44
|
+
not_found:
|
45
|
+
statement: Извините, мы перепутали URL-адрес или он указывает на что-то несуществующее.
|
46
|
+
|
47
|
+
notification:
|
48
|
+
update_found: Доступна новая версия контента.
|
49
|
+
update: Обновить
|
50
|
+
|
51
|
+
# ----- Posts related labels -----
|
52
|
+
|
53
|
+
post:
|
54
|
+
written_by: Автор
|
55
|
+
posted: Опубликовано
|
56
|
+
updated: Обновлено
|
57
|
+
words: слов
|
58
|
+
pageview_measure: просмотров
|
59
|
+
read_time:
|
60
|
+
unit: мин.
|
61
|
+
prompt: чтения
|
62
|
+
relate_posts: Похожие посты
|
63
|
+
share: Поделиться
|
64
|
+
button:
|
65
|
+
next: Следующий пост
|
66
|
+
previous: Предыдущий пост
|
67
|
+
copy_code:
|
68
|
+
succeed: Скопировано!
|
69
|
+
share_link:
|
70
|
+
title: Скопировать ссылку
|
71
|
+
succeed: Ссылка успешно скопирована!
|
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: категория
|
84
|
+
plural: категории
|
85
|
+
post_measure:
|
86
|
+
singular: пост
|
87
|
+
plural: посты
|
@@ -0,0 +1,91 @@
|
|
1
|
+
# The layout text of site
|
2
|
+
|
3
|
+
# ----- Commons label -----
|
4
|
+
|
5
|
+
layout:
|
6
|
+
post: Objava #Post
|
7
|
+
category: Kategorija #Category
|
8
|
+
tag: Oznaka #Tag
|
9
|
+
|
10
|
+
# The tabs of sidebar
|
11
|
+
tabs:
|
12
|
+
# format: <filename_without_extension>: <value>
|
13
|
+
home: Domov #Home
|
14
|
+
categories: Kategorije #Categories
|
15
|
+
tags: Oznake #Tags
|
16
|
+
archives: Arhiv #Archives
|
17
|
+
about: O meni #About
|
18
|
+
|
19
|
+
# the text displayed in the search bar & search results
|
20
|
+
search:
|
21
|
+
hint: išči #search
|
22
|
+
cancel: Prekliči #Cancel
|
23
|
+
no_results: Ups! Vsebina ni bila najdena #Oops! No results found.
|
24
|
+
|
25
|
+
panel:
|
26
|
+
lastmod: Nedavno Posodobljeno #Recently Updated
|
27
|
+
trending_tags: Priljubljene Oznake #Trending Tags
|
28
|
+
toc: Vsebina #Contents
|
29
|
+
|
30
|
+
copyright:
|
31
|
+
# Shown at the bottom of the post
|
32
|
+
license:
|
33
|
+
template: Ta objava je licencirana pod :LICENCE_NAME s strani avtorja. #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: Nekatere pravice pridržane. #Some rights reserved.
|
39
|
+
verbose: >-
|
40
|
+
Razen kjer navedeno drugače, vse objave spletnega dnevnika so licencirane
|
41
|
+
pod Creative Commons Attribution 4.0 International (CC BY 4.0) s strani avtorja.
|
42
|
+
|
43
|
+
meta: Uporabljena :PLATFORM tema :THEME #Using the :PLATFORM theme :THEME
|
44
|
+
|
45
|
+
not_found:
|
46
|
+
statement: Oprostite, hiperpovezava je neustrezna ali vsebina ne obstajata. #Sorry, we've misplaced that URL or it's pointing to something that doesn't exist.
|
47
|
+
|
48
|
+
notification:
|
49
|
+
update_found: Novejša različica vsebine je na voljo. #A new version of content is available.
|
50
|
+
update: Posodobi #Update
|
51
|
+
|
52
|
+
# ----- Posts related labels -----
|
53
|
+
|
54
|
+
post:
|
55
|
+
written_by: Od #By
|
56
|
+
posted: Objavljeno #Posted
|
57
|
+
updated: Posodobljeno #Updated
|
58
|
+
words: besede #words
|
59
|
+
pageview_measure: ogledi #views
|
60
|
+
read_time:
|
61
|
+
unit: min
|
62
|
+
prompt: beri #read
|
63
|
+
relate_posts: Nadaljnje branje #Further Reading
|
64
|
+
share: Deli #Share
|
65
|
+
button:
|
66
|
+
next: Novejše #Newer
|
67
|
+
previous: Starejše #Older
|
68
|
+
copy_code:
|
69
|
+
succeed: Kopirano! #Copied!
|
70
|
+
share_link:
|
71
|
+
title: Kopiraj povezavo #Copy link
|
72
|
+
succeed: Povezava uspešno kopirana! #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: "%e %b, %Y"
|
79
|
+
dayjs: "ll"
|
80
|
+
archives:
|
81
|
+
strftime: "%b"
|
82
|
+
dayjs: "MMM"
|
83
|
+
|
84
|
+
# categories page
|
85
|
+
categories:
|
86
|
+
category_measure:
|
87
|
+
singular: kategorija #category
|
88
|
+
plural: kategorije #categories
|
89
|
+
post_measure:
|
90
|
+
singular: objava #post
|
91
|
+
plural: objave #posts
|
@@ -0,0 +1,91 @@
|
|
1
|
+
# The layout text of site
|
2
|
+
|
3
|
+
# ----- Commons label -----
|
4
|
+
|
5
|
+
layout:
|
6
|
+
post: Inlägg #Post
|
7
|
+
category: Kategori #Category
|
8
|
+
tag: Tagga #Tag
|
9
|
+
|
10
|
+
# The tabs of sidebar
|
11
|
+
tabs:
|
12
|
+
# format: <filename_without_extension>: <value>
|
13
|
+
home: Hem #Home
|
14
|
+
categories: Kategorier #Categories
|
15
|
+
tags: Taggar #Tags
|
16
|
+
archives: Arkiv #Archives
|
17
|
+
about: Om #About
|
18
|
+
|
19
|
+
# the text displayed in the search bar & search results
|
20
|
+
search:
|
21
|
+
hint: sök
|
22
|
+
cancel: Avbryt
|
23
|
+
no_results: Hoppsan! Hittade inga sökträffar.
|
24
|
+
|
25
|
+
panel:
|
26
|
+
lastmod: Senast uppdaterad
|
27
|
+
trending_tags: Trendande taggar
|
28
|
+
toc: Innehåll
|
29
|
+
|
30
|
+
copyright:
|
31
|
+
# Shown at the bottom of the post
|
32
|
+
license:
|
33
|
+
template: Den här posten är publicerad under licensen :LICENSE_NAME av författaren.
|
34
|
+
name: CC BY 4.0
|
35
|
+
link: https://creativecommons.org/licenses/by/4.0/
|
36
|
+
|
37
|
+
# Displayed in the footer
|
38
|
+
brief: Vissa rättigheter är reserverade.
|
39
|
+
verbose: >-
|
40
|
+
Om inte annat anges är blogginläggen på denna webbplats licensierade
|
41
|
+
under Creative Commons Attribution 4.0 International (CC BY 4.0) av författaren.
|
42
|
+
|
43
|
+
meta: Byggd med :PLATFORM och temat :THEME
|
44
|
+
|
45
|
+
not_found:
|
46
|
+
statement: Ursäkta, vi har tappat bort den här webbadressen eller så pekar den på något som inte längre finns.
|
47
|
+
|
48
|
+
notification:
|
49
|
+
update_found: Det finns en ny version av innehållet.
|
50
|
+
update: Uppdatera sidan
|
51
|
+
|
52
|
+
# ----- Posts related labels -----
|
53
|
+
|
54
|
+
post:
|
55
|
+
written_by: Av
|
56
|
+
posted: Postad
|
57
|
+
updated: Uppdaterad
|
58
|
+
words: ord
|
59
|
+
pageview_measure: visningar
|
60
|
+
read_time:
|
61
|
+
unit: min
|
62
|
+
prompt: läsning
|
63
|
+
relate_posts: Mer läsning
|
64
|
+
share: Dela
|
65
|
+
button:
|
66
|
+
next: Nyare
|
67
|
+
previous: Äldre
|
68
|
+
copy_code:
|
69
|
+
succeed: Kopierat!
|
70
|
+
share_link:
|
71
|
+
title: Kopiera länk
|
72
|
+
succeed: Länken har kopierats!
|
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: kategori
|
88
|
+
plural: kategorier
|
89
|
+
post_measure:
|
90
|
+
singular: inlägg
|
91
|
+
plural: inlägg
|
@@ -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
|
+
สัญญาอนุญาตครีเอทีฟคอมมอนส์แบบ 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 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: Gönderi
|
7
|
+
category: Kategori
|
8
|
+
tag: Etiket
|
9
|
+
|
10
|
+
# The tabs of sidebar
|
11
|
+
tabs:
|
12
|
+
# format: <filename_without_extension>: <value>
|
13
|
+
home: Ana Sayfa
|
14
|
+
categories: Kategoriler
|
15
|
+
tags: Etiketler
|
16
|
+
archives: Arşiv
|
17
|
+
about: Hakkında
|
18
|
+
|
19
|
+
# the text displayed in the search bar & search results
|
20
|
+
search:
|
21
|
+
hint: Ara...
|
22
|
+
cancel: İptal
|
23
|
+
no_results: Hop! Öyle bir şey bulamadım.
|
24
|
+
|
25
|
+
panel:
|
26
|
+
lastmod: Son Güncellenenler
|
27
|
+
trending_tags: Yükselen Etiketler
|
28
|
+
toc: İçindekiler
|
29
|
+
|
30
|
+
copyright:
|
31
|
+
# Shown at the bottom of the post
|
32
|
+
license:
|
33
|
+
template: Bu gönderi :LICENSE_NAME lisansı altındadır.
|
34
|
+
name: CC BY 4.0
|
35
|
+
link: https://creativecommons.org/licenses/by/4.0/deed.tr
|
36
|
+
|
37
|
+
# Displayed in the footer
|
38
|
+
brief: Bazı hakları saklıdır.
|
39
|
+
verbose: >-
|
40
|
+
Aksi belirtilmediği sürece, bu sitedeki gönderiler Creative Commons Atıf 4.0 Uluslararası (CC BY 4.0) Lisansı altındadır.
|
41
|
+
Kısaca sayfa linkini vererek değiştirebilir / paylaşabilirsiniz.
|
42
|
+
|
43
|
+
meta: :PLATFORM ve :THEME teması
|
44
|
+
|
45
|
+
not_found:
|
46
|
+
statement: Üzgünüz, bu linki yanlış yerleştirdik veya var olmayan bir şeye işaret ediyor.
|
47
|
+
|
48
|
+
notification:
|
49
|
+
update_found: İçeriğin yeni bir sürümü mevcut.
|
50
|
+
update: Güncelle
|
51
|
+
|
52
|
+
# ----- Posts related labels -----
|
53
|
+
|
54
|
+
post:
|
55
|
+
written_by: Yazan
|
56
|
+
posted: Gönderim
|
57
|
+
updated: Güncelleme
|
58
|
+
words: sözcük
|
59
|
+
pageview_measure: görüntülenme
|
60
|
+
read_time:
|
61
|
+
unit: dakikada
|
62
|
+
prompt: okunabilir
|
63
|
+
relate_posts: Benzer Gönderiler
|
64
|
+
share: Paylaş
|
65
|
+
button:
|
66
|
+
next: İleri
|
67
|
+
previous: Geri
|
68
|
+
copy_code:
|
69
|
+
succeed: Kopyalandı.
|
70
|
+
share_link:
|
71
|
+
title: Linki kopyala
|
72
|
+
succeed: Link kopyalandı.
|
73
|
+
|
74
|
+
# categories page
|
75
|
+
categories:
|
76
|
+
category_measure: kategori
|
77
|
+
post_measure: gönderi
|
@@ -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
|
+
Публікації на сайті захищено ліцензією Creative Commons Attribution 4.0 International (CC BY 4.0),
|
41
|
+
якщо інше не вказано в тексті.
|
42
|
+
|
43
|
+
meta: Powered by :PLATFORM with :THEME 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
|
+
# categories page
|
75
|
+
categories:
|
76
|
+
category_measure: категорії
|
77
|
+
post_measure: публікації
|
@@ -0,0 +1,90 @@
|
|
1
|
+
# The layout text of site in Urdu (Pakistan)
|
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: تحریریں
|