These files pertain mainly to upstream development practices and are not applicable to this fork.
+++ /dev/null
-# CODEOWNERS for mastodon/mastodon
-
-# Translators
-# To add translator, copy these lines, replace `fr` with appropriate language code and replace `@żelipapą` with user's GitHub nickname preceded by `@` sign or e-mail address.
-# /app/javascript/mastodon/locales/fr.json @żelipapą
-# /app/views/user_mailer/*.fr.html.erb @żelipapą
-# /app/views/user_mailer/*.fr.text.erb @żelipapą
-# /config/locales/*.fr.yml @żelipapą
-# /config/locales/fr.yml @żelipapą
-
-# Polish
-/app/javascript/mastodon/locales/pl.json @m4sk1n
-/app/views/user_mailer/*.pl.html.erb @m4sk1n
-/app/views/user_mailer/*.pl.text.erb @m4sk1n
-/config/locales/*.pl.yml @m4sk1n
-/config/locales/pl.yml @m4sk1n
-
-# French
-/app/javascript/mastodon/locales/fr.json @aldarone
-/app/javascript/mastodon/locales/whitelist_fr.json @aldarone
-/app/views/user_mailer/*.fr.html.erb @aldarone
-/app/views/user_mailer/*.fr.text.erb @aldarone
-/config/locales/*.fr.yml @aldarone
-/config/locales/fr.yml @aldarone
-
-# Dutch
-/app/javascript/mastodon/locales/nl.json @jeroenpraat
-/app/javascript/mastodon/locales/whitelist_nl.json @jeroenpraat
-/app/views/user_mailer/*.nl.html.erb @jeroenpraat
-/app/views/user_mailer/*.nl.text.erb @jeroenpraat
-/config/locales/*.nl.yml @jeroenpraat
-/config/locales/nl.yml @jeroenpraat
+++ /dev/null
-patreon: mastodon
-open_collective: mastodon
-github: [Gargron]
+++ /dev/null
-name: Bug Report
-description: If something isn't working as expected
-labels: bug
-body:
- - type: markdown
- attributes:
- value: |
- Make sure that you are submitting a new bug that was not previously reported or already fixed.
-
- Please use a concise and distinct title for the issue.
- - type: input
- attributes:
- label: Expected behaviour
- description: What should have happened?
- validations:
- required: true
- - type: input
- attributes:
- label: Actual behaviour
- description: What happened?
- validations:
- required: true
- - type: textarea
- attributes:
- label: Steps to reproduce the problem
- description: What were you trying to do?
- value: |
- 1.
- 2.
- 3.
- ...
- validations:
- required: true
- - type: textarea
- attributes:
- label: Specifications
- description: |
- What version or commit hash of Mastodon did you find this bug in?
-
- If a front-end issue, what browser and operating systems were you using?
- validations:
- required: true
+++ /dev/null
-name: Feature Request
-description: I have a suggestion
-body:
- - type: markdown
- attributes:
- value: |
- Please use a concise and distinct title for the issue.
-
- Consider: Could it be implemented as a 3rd party app using the REST API instead?
- - type: textarea
- attributes:
- label: Pitch
- description: Describe your idea for a feature. Make sure it has not already been suggested/implemented/turned down before.
- validations:
- required: true
- - type: textarea
- attributes:
- label: Motivation
- description: Why do you think this feature is needed? Who would benefit from it?
- validations:
- required: true
+++ /dev/null
----
-name: Support
-about: Ask for help with your deployment
-title: DO NOT CREATE THIS ISSUE
----
-
-We primarily use GitHub as a bug and feature tracker. For usage questions, troubleshooting of deployments and other individual technical assistance, please use one of the resources below:
-
-- https://discourse.joinmastodon.org
-- #mastodon on irc.freenode.net
+++ /dev/null
-blank_issues_enabled: false
-contact_links:
- - name: Mastodon Meta Discussion Board
- url: https://discourse.joinmastodon.org/
- about: Please ask and answer questions here.
+++ /dev/null
-daysUntilStale: 120
-daysUntilClose: 7
-exemptLabels:
- - security
-staleLabel: wontfix
-markComment: >
- This issue has been automatically marked as stale because it has not had
- recent activity. It will be closed if no further activity occurs. Thank you
- for your contributions.
-only: pulls
+++ /dev/null
-name: Check i18n
-
-on:
- push:
- branches: [ main ]
- pull_request:
- branches: [ main ]
-
-env:
- RAILS_ENV: test
-
-jobs:
- check-i18n:
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v2
- - name: Install system dependencies
- run: |
- sudo apt-get update
- sudo apt-get install -y libicu-dev libidn11-dev libprotobuf-dev protobuf-compiler
- - name: Set up Ruby
- uses: ruby/setup-ruby@v1
- with:
- ruby-version: '2.7'
- bundler-cache: true
- - name: Check locale file normalization
- run: bundle exec i18n-tasks check-normalized
- - name: Check for unused strings
- run: bundle exec i18n-tasks unused -l en
- - name: Check for wrong string interpolations
- run: bundle exec i18n-tasks check-consistent-interpolations
- - name: Check that all required locale files exist
- run: bundle exec rake repo:check_locales_files