sunrize 1.0.18 → 1.0.20

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 (53) hide show
  1. package/.github/workflows/pages-deploy.yml +64 -0
  2. package/.vscode/settings.json +5 -1
  3. package/Makefile +4 -0
  4. package/README.md +1 -1
  5. package/bin/{sunrise.js → sunrize.js} +1 -0
  6. package/docs/Gemfile +19 -0
  7. package/docs/LICENSE +21 -0
  8. package/docs/_config.yml +200 -0
  9. package/docs/_data/assets/cross_origin.yml +62 -0
  10. package/docs/_data/assets/self_host.yml +51 -0
  11. package/docs/_data/contact.yml +30 -0
  12. package/docs/_data/locales/bg-BG.yml +83 -0
  13. package/docs/_data/locales/de-DE.yml +82 -0
  14. package/docs/_data/locales/en.yml +93 -0
  15. package/docs/_data/locales/es-ES.yml +79 -0
  16. package/docs/_data/locales/fr-FR.yml +79 -0
  17. package/docs/_data/locales/hu-HU.yml +81 -0
  18. package/docs/_data/locales/id-ID.yml +79 -0
  19. package/docs/_data/locales/ko-KR.yml +86 -0
  20. package/docs/_data/locales/my-MM.yml +79 -0
  21. package/docs/_data/locales/pt-BR.yml +79 -0
  22. package/docs/_data/locales/ru-RU.yml +79 -0
  23. package/docs/_data/locales/tr-TR.yml +79 -0
  24. package/docs/_data/locales/uk-UA.yml +79 -0
  25. package/docs/_data/locales/vi-VN.yml +77 -0
  26. package/docs/_data/locales/zh-CN.yml +85 -0
  27. package/docs/_data/nav/main.yml +4 -0
  28. package/docs/_data/share.yml +27 -0
  29. package/docs/_includes/nav.html +19 -0
  30. package/docs/_includes/scripts.html +4 -0
  31. package/docs/_layouts/compress.html +11 -0
  32. package/docs/_layouts/redirect-page.html +6 -0
  33. package/docs/_layouts/wide.html +52 -0
  34. package/docs/_layouts/wrap.html +4 -0
  35. package/docs/_layouts/x_ite.html +8 -0
  36. package/docs/_plugins/no_date.rb +11 -0
  37. package/docs/_plugins/posts-lastmod-hook.rb +14 -0
  38. package/docs/_posts/index.md +19 -0
  39. package/docs/_tabs/tags.md +5 -0
  40. package/docs/assets/css/style.scss +287 -0
  41. package/docs/assets/img/favicons/android-chrome-192x192.png +0 -0
  42. package/docs/assets/img/favicons/android-chrome-512x512.png +0 -0
  43. package/docs/assets/img/favicons/apple-touch-icon.png +0 -0
  44. package/docs/assets/img/favicons/favicon-16x16.png +0 -0
  45. package/docs/assets/img/favicons/favicon-32x32.png +0 -0
  46. package/docs/assets/img/favicons/favicon.ico +0 -0
  47. package/docs/assets/img/favicons/mstile-150x150.png +0 -0
  48. package/docs/assets/img/favicons/safari-pinned-tab.svg +71 -0
  49. package/docs/assets/img/logo.png +0 -0
  50. package/docs/assets/img/sunrize.png +0 -0
  51. package/docs/assets/js/autoupdate.js +25 -0
  52. package/package.json +1 -1
  53. package/src/sunrize/Editors/ScriptEditor.js +4 -1
@@ -0,0 +1,64 @@
1
+ name: "Build and Deploy Pages"
2
+ on:
3
+ push:
4
+ branches:
5
+ - main
6
+ paths:
7
+ - docs/**
8
+
9
+ # Allows you to run this workflow manually from the Actions tab
10
+ workflow_dispatch:
11
+
12
+ permissions:
13
+ contents: read
14
+ pages: write
15
+ id-token: write
16
+
17
+ # Allow one concurrent deployment
18
+ concurrency:
19
+ group: "pages"
20
+ cancel-in-progress: true
21
+
22
+ jobs:
23
+ build:
24
+ runs-on: ubuntu-latest
25
+
26
+ steps:
27
+ - name: Checkout
28
+ uses: actions/checkout@v3
29
+ with:
30
+ fetch-depth: 0
31
+ submodules: true
32
+ # If using the 'assets' git submodule from Chirpy Starter, uncomment above
33
+ # (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets)
34
+
35
+ - name: Setup Pages
36
+ id: pages
37
+ uses: actions/configure-pages@v1
38
+
39
+ - name: Setup Ruby
40
+ uses: ruby/setup-ruby@v1
41
+ with:
42
+ ruby-version: "3.1" # reads from a '.ruby-version' or '.tools-version' file if 'ruby-version' is omitted
43
+ bundler-cache: true
44
+
45
+ - name: Build site
46
+ run: cd ./docs && bundle install && bundle exec jekyll b
47
+ env:
48
+ JEKYLL_ENV: "production"
49
+
50
+ - name: Upload site artifact
51
+ uses: actions/upload-pages-artifact@v1
52
+ with:
53
+ path: "./docs/_site"
54
+
55
+ deploy:
56
+ environment:
57
+ name: github-pages
58
+ url: ${{ steps.deployment.outputs.page_url }}
59
+ runs-on: ubuntu-latest
60
+ needs: build
61
+ steps:
62
+ - name: Deploy to GitHub Pages
63
+ id: deployment
64
+ uses: actions/deploy-pages@v1
@@ -4,7 +4,11 @@
4
4
  "node_modules": true,
5
5
  "out": true,
6
6
  "x_ite": true,
7
- "package-lock.json": true
7
+ "package-lock.json": true,
8
+ "**/_site": true,
9
+ "**/.jekyll-cache": true,
10
+ "**/.jekyll-metadata": true,
11
+ "**/.bundle": true
8
12
  },
9
13
  "cSpell.words": [
10
14
  "Collidable",
package/Makefile CHANGED
@@ -2,3 +2,7 @@ x_ite-for-sunrize:
2
2
  cd ../x_ite && ${MAKE} dist
3
3
  rsync -a --delete --exclude=".*" ../x_ite/ ./x_ite/
4
4
  cd ../x_ite && ${MAKE} checkout-dist
5
+
6
+ .PHONY: docs
7
+ docs:
8
+ cd docs && bundle exec jekyll serve --incremental
package/README.md CHANGED
@@ -8,7 +8,7 @@ Sunrize is based on [X_ITE](https://create3000.github.io/x_ite/) and is a basic
8
8
 
9
9
  Quick Links
10
10
  -----------
11
- * [Getting Started](https://create3000.github.io/sunrize/)
11
+ * [Website](https://create3000.github.io/sunrize/)
12
12
 
13
13
  License
14
14
  -------
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  const { execFile } = require ("child_process")
2
3
 
3
4
  execFile ("npm", ["start"] .concat (process .argv .slice (2)), (error, stdout, stderr) =>
package/docs/Gemfile ADDED
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll-theme-chirpy", :git => "https://github.com/create3000/jekyll-theme-chirpy.git"
6
+
7
+ group :test do
8
+ gem "html-proofer", "~> 3.18"
9
+ end
10
+
11
+ # Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
12
+ # and associated library.
13
+ install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
14
+ gem "tzinfo", "~> 1.2"
15
+ gem "tzinfo-data"
16
+ end
17
+
18
+ # Performance-booster for watching directories on Windows
19
+ gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform?
package/docs/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2021 Cotes Chung
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,200 @@
1
+ # The Site Configuration
2
+
3
+ # Import the theme
4
+ theme: jekyll-theme-chirpy
5
+
6
+ # Change the following value to "/PROJECT_NAME" ONLY IF your site type is GitHub Pages Project sites
7
+ # and doesn't have a custom domain.
8
+ baseurl: "/sunrize"
9
+
10
+ # The language of the webpage › http://www.lingoes.net/en/translator/langcode.htm
11
+ # If it has the same name as one of the files in folder `_data/locales`, the layout language will also be changed,
12
+ # otherwise, the layout language will use the default value of "en".
13
+ lang: en
14
+
15
+
16
+ # Change to your timezone › http://www.timezoneconverter.com/cgi-bin/findzone/findzone
17
+ timezone:
18
+
19
+ # jekyll-seo-tag settings › https://github.com/jekyll/jekyll-seo-tag/blob/master/docs/usage.md
20
+ # ↓ --------------------------
21
+
22
+ title: Sunrize # the main title
23
+
24
+ tagline: A Multi Platform X3D Editor # it will display as the sub-title
25
+
26
+ description: >- # used by seo meta and the atom feed
27
+ Sunrize — A Multi Platform X3D Editor
28
+
29
+ # fill in the protocol & hostname for your site, e.g., "https://username.github.io"
30
+ url: "https://create3000.github.io"
31
+
32
+ github:
33
+ username: create3000/sunrize # change to your github username
34
+
35
+ twitter:
36
+ username: web3dconsortium # change to your twitter username
37
+
38
+ social:
39
+ # Change to your full name.
40
+ # It will be displayed as the default author of the posts and the copyright owner in the Footer
41
+ name: CREATE3000
42
+ email: holger.seelig@google.com # change to your email address
43
+ links:
44
+ # The first element serves as the copyright owner"s link
45
+ - https://twitter.com/web3dconsortium # change to your twitter homepage
46
+ - https://github.com/create3000 # change to your github homepage
47
+ # Uncomment below to add more social links
48
+ # - https://www.facebook.com/username
49
+ # - https://www.linkedin.com/in/username
50
+
51
+ google_site_verification: # fill in to your verification string
52
+
53
+ # ↑ --------------------------
54
+ # The end of `jekyll-seo-tag` settings
55
+
56
+ google_analytics:
57
+ id: # fill in your Google Analytics ID
58
+ # Google Analytics page views report settings
59
+ pv:
60
+ proxy_endpoint: # fill in the Google Analytics superProxy endpoint of Google App Engine
61
+ cache_path: # the local PV cache data, friendly to visitors from GFW region
62
+
63
+ # Prefer color scheme setting.
64
+ #
65
+ # Note: Keep empty will follow the system prefer color by default,
66
+ # and there will be a toggle to switch the theme between dark and light
67
+ # on the bottom left of the sidebar.
68
+ #
69
+ # Available options:
70
+ #
71
+ # light - Use the light color scheme
72
+ # dark - Use the dark color scheme
73
+ #
74
+ theme_mode: # [light|dark]
75
+
76
+ # The CDN endpoint for images.
77
+ # Notice that once it is assigned, the CDN url
78
+ # will be added to all image (site avatar & posts" images) paths starting with "/"
79
+ #
80
+ # e.g. "https://cdn.com"
81
+ img_cdn: ""
82
+
83
+ # the avatar on sidebar, support local or CORS resources
84
+ avatar: "assets/img/logo.png"
85
+
86
+ # boolean type, the global switch for ToC in posts.
87
+ toc: true
88
+
89
+ comments:
90
+ active: # The global switch for posts comments, e.g., "disqus". Keep it empty means disable
91
+ # The active options are as follows:
92
+ disqus:
93
+ shortname: # fill with the Disqus shortname. › https://help.disqus.com/en/articles/1717111-what-s-a-shortname
94
+ # utterances settings › https://utteranc.es/
95
+ utterances:
96
+ repo: # <gh-username>/<repo>
97
+ issue_term: # < url | pathname | title | ...>
98
+ # Giscus options › https://giscus.app
99
+ giscus:
100
+ repo: # <gh-username>/<repo>
101
+ repo_id:
102
+ category:
103
+ category_id:
104
+ mapping: # optional, default to "pathname"
105
+ input_position: # optional, default to "bottom"
106
+ lang: # optional, default to the value of `site.lang`
107
+ reactions_enabled: # optional, default to the value of `1`
108
+
109
+ # Self-hosted static assets, optional › https://github.com/cotes2020/chirpy-static-assets
110
+ assets:
111
+ self_host:
112
+ enabled: # boolean, keep empty means false
113
+ # specify the Jekyll environment, empty means both
114
+ # only works if `assets.self_host.enabled` is "true"
115
+ env: # [development|production]
116
+
117
+ pwa:
118
+ enabled: false # the option for PWA feature
119
+
120
+ paginate:
121
+
122
+ # ------------ The following options are not recommended to be modified ------------------
123
+
124
+ kramdown:
125
+ syntax_highlighter: rouge
126
+ syntax_highlighter_opts: # Rouge Options › https://github.com/jneen/rouge#full-options
127
+ css_class: highlight
128
+ # default_lang: console
129
+ span:
130
+ line_numbers: false
131
+ block:
132
+ line_numbers: true
133
+ start_line: 1
134
+
135
+ collections:
136
+ tabs:
137
+ output: true
138
+ sort_by: order
139
+
140
+ defaults:
141
+ - scope:
142
+ path: "" # An empty string here means all files in the project
143
+ type: posts
144
+ values:
145
+ layout: x_ite
146
+ comments: true # Enable comments in posts.
147
+ toc: true # Display TOC column in posts.
148
+ # DO NOT modify the following parameter unless you are confident enough
149
+ # to update the code of all other post links in this project.
150
+ permalink: /:slugified_categories/:slug
151
+ - scope:
152
+ path: _drafts
153
+ values:
154
+ comments: false
155
+ - scope:
156
+ path: ""
157
+ type: tabs # see `site.collections`
158
+ values:
159
+ layout: page
160
+ permalink: /:title/
161
+ - scope:
162
+ path: assets/img/favicons
163
+ values:
164
+ swcache: true
165
+ - scope:
166
+ path: assets/js/dist
167
+ values:
168
+ swcache: true
169
+
170
+ sass:
171
+ style: compressed
172
+
173
+ compress_html:
174
+ clippings: all
175
+ comments: all
176
+ endings: all
177
+ profile: false
178
+ blanklines: false
179
+ ignore:
180
+ envs: [development]
181
+
182
+ exclude:
183
+ - "*.gem"
184
+ - "*.gemspec"
185
+ - tools
186
+ - README.md
187
+ - CHANGELOG.md
188
+ - LICENSE
189
+ - gulpfile.js
190
+ - node_modules
191
+ - package*.json
192
+
193
+ jekyll-archives:
194
+ enabled: [categories, tags]
195
+ layouts:
196
+ category: category
197
+ tag: tag
198
+ permalinks:
199
+ tag: /tags/:name/
200
+ category: /categories/:name/
@@ -0,0 +1,62 @@
1
+ # CDNs
2
+
3
+ cdns:
4
+ # Google Fonts
5
+ - url: https://fonts.googleapis.com
6
+ - url: https://fonts.gstatic.com
7
+ args: crossorigin
8
+ - url: https://fonts.googleapis.com
9
+ # jsDelivr CDN
10
+ - url: https://cdn.jsdelivr.net
11
+
12
+ # fonts
13
+
14
+ webfonts: https://fonts.googleapis.com/css2?family=Lato&family=Source+Sans+Pro:wght@400;600;700;900&display=swap
15
+
16
+ # Libraries
17
+
18
+ jquery:
19
+ js: https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js
20
+
21
+ bootstrap:
22
+ css: https://cdn.jsdelivr.net/npm/bootstrap@4/dist/css/bootstrap.min.css
23
+ js: https://cdn.jsdelivr.net/npm/bootstrap@4/dist/js/bootstrap.bundle.min.js
24
+
25
+ bootstrap-toc:
26
+ css: https://cdn.jsdelivr.net/gh/afeld/bootstrap-toc@1.0.1/dist/bootstrap-toc.min.css
27
+ js: https://cdn.jsdelivr.net/gh/afeld/bootstrap-toc@1.0.1/dist/bootstrap-toc.min.js
28
+
29
+ fontawesome:
30
+ css: https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6/css/all.min.css
31
+
32
+ search:
33
+ js: https://cdn.jsdelivr.net/npm/simple-jekyll-search@1.10.0/dest/simple-jekyll-search.min.js
34
+
35
+ mermaid:
36
+ js: https://cdn.jsdelivr.net/npm/mermaid@9/dist/mermaid.min.js
37
+
38
+ dayjs:
39
+ js:
40
+ common: https://cdn.jsdelivr.net/npm/dayjs@1/dayjs.min.js
41
+ locale: https://cdn.jsdelivr.net/npm/dayjs@1/locale/:LOCALE.min.js
42
+ relativeTime: https://cdn.jsdelivr.net/npm/dayjs@1/plugin/relativeTime.min.js
43
+ localizedFormat: https://cdn.jsdelivr.net/npm/dayjs@1/plugin/localizedFormat.min.js
44
+
45
+ countup:
46
+ js: https://cdn.jsdelivr.net/npm/countup.js@1.9.3/dist/countUp.min.js
47
+
48
+ magnific-popup:
49
+ css: https://cdn.jsdelivr.net/npm/magnific-popup@1/dist/magnific-popup.min.css
50
+ js: https://cdn.jsdelivr.net/npm/magnific-popup@1/dist/jquery.magnific-popup.min.js
51
+
52
+ lozad:
53
+ js: https://cdn.jsdelivr.net/npm/lozad/dist/lozad.min.js
54
+
55
+ clipboard:
56
+ js: https://cdn.jsdelivr.net/npm/clipboard@2/dist/clipboard.min.js
57
+
58
+ polyfill:
59
+ js: https://polyfill.io/v3/polyfill.min.js?features=es6
60
+
61
+ mathjax:
62
+ js: https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js
@@ -0,0 +1,51 @@
1
+ # fonts
2
+
3
+ webfonts: /assets/lib/fonts/main.css
4
+
5
+ # Libraries
6
+
7
+ jquery:
8
+ js: /assets/lib/jquery-3.6.0/jquery.min.js
9
+
10
+ bootstrap:
11
+ css: /assets/lib/bootstrap-4.6.1/bootstrap.min.css
12
+ js: /assets/lib/bootstrap-4.6.1/bootstrap.bundle.min.js
13
+
14
+ bootstrap-toc:
15
+ css: /assets/lib/bootstrap-toc-1.0.1/bootstrap-toc.min.css
16
+ js: /assets/lib/bootstrap-toc-1.0.1/bootstrap-toc.min.js
17
+
18
+ fontawesome:
19
+ css: /assets/lib/fontawesome-free-6.2.1/css/all.min.css
20
+
21
+ search:
22
+ js: /assets/lib/simple-jekyll-search-1.10.0/simple-jekyll-search.min.js
23
+
24
+ mermaid:
25
+ js: /assets/lib/mermaid-9.1.7/mermaid.min.js
26
+
27
+ dayjs:
28
+ js:
29
+ common: /assets/lib/dayjs-1.10.7/dayjs.min.js
30
+ locale: /assets/lib/dayjs-1.10.7/locale/en.min.js
31
+ relativeTime: /assets/lib/dayjs-1.10.7/plugin/relativeTime.min.js
32
+ localizedFormat: /assets/lib/dayjs-1.10.7/plugin/localizedFormat.min.js
33
+
34
+ countup:
35
+ js: /assets/lib/countup.js-1.9.3/countUp.min.js
36
+
37
+ magnific-popup:
38
+ css: /assets/lib/magnific-popup-1.1.0/magnific-popup.css
39
+ js: /assets/lib/magnific-popup-1.1.0/jquery.magnific-popup.min.js
40
+
41
+ lozad:
42
+ js: /assets/lib/lozad-1.16.0/lozad.min.js
43
+
44
+ clipboard:
45
+ js: /assets/lib/clipboard-2.0.9/clipboard.min.js
46
+
47
+ polyfill:
48
+ js: /assets/lib/polyfill-v3-es6/polyfill.min.js
49
+
50
+ mathjax:
51
+ js: /assets/lib/mathjax-3.2.0/tex-chtml.js
@@ -0,0 +1,30 @@
1
+ # The contact options.
2
+
3
+ -
4
+ type: github
5
+ icon: 'fab fa-github'
6
+ -
7
+ type: twitter
8
+ icon: 'fab fa-twitter'
9
+ -
10
+ type: email
11
+ icon: 'fas fa-envelope'
12
+ noblank: true # open link in current tab
13
+ -
14
+ type: rss
15
+ icon: 'fas fa-rss'
16
+ noblank: true
17
+
18
+ # Uncomment and complete the url below to enable more contact options
19
+ # -
20
+ # type: mastodon
21
+ # icon: 'fab fa-mastodon' # icons powered by <https://fontawesome.com/>
22
+ # url: '' # Fill with your mastodon account page
23
+ # -
24
+ # type: linkedin
25
+ # icon: 'fab fa-linkedin' # icons powered by <https://fontawesome.com/>
26
+ # url: '' # Fill with your Linkedin homepage
27
+ # -
28
+ # type: stack-overflow
29
+ # icon: 'fab fa-stack-overflow'
30
+ # url: '' # Fill with your stackoverflow homepage
@@ -0,0 +1,83 @@
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
+ statment: Съжалявам, но този на този 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
+ # pinned prompt of posts list on homepage
74
+ pin_prompt: Прикрепен
75
+
76
+ # categories page
77
+ categories:
78
+ category_measure:
79
+ singular: категория
80
+ plural: категории
81
+ post_measure:
82
+ singular: публикация
83
+ plural: публикации
@@ -0,0 +1,82 @@
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
+ statment: 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: lesen
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
+ # pinned prompt of posts list on homepage
73
+ pin_prompt: Angepinnt
74
+
75
+ # categories page
76
+ categories:
77
+ category_measure:
78
+ singular: Kategorie
79
+ plural: Kategorien
80
+ post_measure:
81
+ singular: Eintrag
82
+ plural: Einträge