1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-14 19:07:41 +01:00
mkdocs-material/.github/ISSUE_TEMPLATE/04-add-a-translation.yml

95 lines
3.8 KiB
YAML
Raw Normal View History

2023-01-29 20:18:49 +01:00
name: Add a translation
2023-01-29 20:52:00 +01:00
description: Missing support for your language? Add a translation
title: Add translations for ...
2023-01-29 20:18:49 +01:00
labels:
2023-01-29 23:04:28 +01:00
- change request
body:
2023-01-29 20:52:00 +01:00
- type: markdown
2021-06-29 11:06:39 +02:00
attributes:
2023-01-29 20:54:24 +01:00
value: >-
2023-01-29 20:52:00 +01:00
**Important**: Before creating a new translation, please make sure that
Material for MkDocs does not already include support for your language.
2023-01-29 20:56:37 +01:00
Please check the list of all [available languages](https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#site-language)
and help us by adding missing translations.
2023-01-29 20:52:00 +01:00
2021-06-29 11:06:39 +02:00
- type: textarea
2023-01-28 19:05:12 +01:00
id: translations
2021-06-29 11:06:39 +02:00
attributes:
2023-01-28 19:05:12 +01:00
label: Translations
2023-04-11 14:30:56 +02:00
description: Please translate the labels on the right, e.g., "Copy to clipboard", etc.
2021-06-29 11:06:39 +02:00
value: |-
{% macro t(key) %}{{ {
"language": "en",
"direction": "ltr",
2022-12-11 18:32:22 +01:00
"action.edit": "Edit this page",
"action.skip": "Skip to content",
"action.view": "View source of this page",
2022-11-12 15:17:52 +01:00
"announce.dismiss": "Don't show this again",
2023-05-20 10:34:59 +02:00
"blog.archive": "Archive",
"blog.categories": "Categories",
"blog.categories.in": "in",
"blog.continue": "Continue reading",
"blog.draft": "Draft",
"blog.index": "Back to index",
"blog.meta": "Metadata",
"blog.references": "Related links",
2021-06-29 11:06:39 +02:00
"clipboard.copy": "Copy to clipboard",
"clipboard.copied": "Copied to clipboard",
2022-11-12 15:17:52 +01:00
"consent.accept": "Accept",
"consent.manage": "Manage settings",
"consent.reject": "Reject",
"footer": "Footer",
2021-06-29 11:06:39 +02:00
"footer.next": "Next",
2022-11-12 15:17:52 +01:00
"footer.previous": "Previous",
"header": "Header",
2021-06-29 11:06:39 +02:00
"meta.comments": "Comments",
"meta.source": "Source",
2022-11-12 15:17:52 +01:00
"nav": "Navigation",
2023-05-20 10:34:59 +02:00
"readtime.one": "1 min read",
"readtime.other": "# min read",
"rss.created": "RSS feed",
"rss.updated": "RSS feed of updated content",
2022-11-12 15:17:52 +01:00
"search": "Search",
2021-06-29 11:06:39 +02:00
"search.placeholder": "Search",
2022-04-24 12:38:52 +02:00
"search.share": "Share",
2021-06-29 11:06:39 +02:00
"search.reset": "Clear",
"search.result.initializer": "Initializing search",
"search.result.placeholder": "Type to start searching",
"search.result.none": "No matching documents",
"search.result.one": "1 matching document",
"search.result.other": "# matching documents",
"search.result.more.one": "1 more on this page",
"search.result.more.other": "# more on this page",
"search.result.term.missing": "Missing",
2022-11-12 15:17:52 +01:00
"select.language": "Select language",
"select.version": "Select version",
2022-12-11 18:32:22 +01:00
"source": "Go to repository",
2023-05-20 10:34:59 +02:00
"source.file.contributors": "Contributors",
2021-06-29 11:06:39 +02:00
"source.file.date.created": "Created",
2022-11-12 15:17:52 +01:00
"source.file.date.updated": "Last update",
"tabs": "Tabs",
"toc": "Table of contents",
"top": "Back to top"
2021-06-29 11:06:39 +02:00
}[key] }}{% endmacro %}
2023-01-28 19:05:12 +01:00
render: Jinja
2021-06-29 11:06:39 +02:00
validations:
required: true
2023-01-29 20:54:24 +01:00
- type: checkboxes
id: checklist
attributes:
label: Before submitting
description: >-
Please ensure that your translation fulfills the following
requirements.
options:
2023-01-29 23:04:28 +01:00
- label: I've checked the list of [available languages](https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#site-language) for existing translations.
2023-01-29 20:54:24 +01:00
required: true
2023-04-11 14:30:56 +02:00
- label: I assure that the translations are accurate to the best of my knowledge.
2023-01-29 20:54:24 +01:00
required: true
2023-01-30 14:10:43 +01:00
- label: >-
__Optional__: I want to integrate this translation myself and create a
pull request following the [contribution guide](https://github.com/squidfunk/mkdocs-material/blob/master/CONTRIBUTING.md).