-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from BrowserSourcesForOBS/dev
Add issue templates and improve README.md
- Loading branch information
Showing
4 changed files
with
113 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Feature Request | ||
description: Suggest an idea for this project | ||
title: "[SUGGESTION] Your feature request title" | ||
labels: "suggestion" | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description. Please elaborate. | ||
description: A clear and concise description of what new functions to add or improve. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: benefit | ||
attributes: | ||
label: Who will this benefit? | ||
description: Does this feature apply to a great portion of users? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-info | ||
attributes: | ||
label: Additional Information | ||
description: "[optional] You may provide additional context or screenshots for us to better understand the need of the feature." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Translates | ||
description: Improve code translation | ||
title: "[TRANSLATE] Your bug report title" | ||
labels: "translate" | ||
body: | ||
- type: input | ||
id: language | ||
attributes: | ||
label: Language | ||
#description: | ||
placeholder: eg. english | ||
validations: | ||
required: true | ||
- type: input | ||
id: lang-code | ||
attributes: | ||
label: Language code | ||
description: "" | ||
placeholder: eg. en | ||
- type: textarea | ||
id: translate | ||
attributes: | ||
label: Translate YAML | ||
description: "You can send the YAML file already translated or write it in this section.\n\n | ||
[WARNING] If you want to directly write the translation in this section, the code must start with ```yaml and end with ```. You can use the "Preview" tab to see if the code has been written correctly." | ||
placeholder: "```md\n | ||
home:\n | ||
\tclose: Close the window and stop the code\n | ||
\tcronoTitle: CLOCKS\n | ||
\tcdownTitle: TIMERS\n | ||
\tcdowntimeTitle: TIME UNTIL...\n | ||
\ttwitchextTitle: EXTENSIBLE TWITCH\n | ||
\ttimeTitle: CURRENT TIME\n | ||
\tnotycopycrono: URL copied to clipboard\n | ||
crono:\n | ||
\tbuttons:\n | ||
\t\tstart: Start\n | ||
\t\tpause: Pause\n | ||
\t\treset: Reset\n | ||
```" | ||
validations: | ||
require: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters