Skip to content

Commit 4920a58

Browse files
committed
Added translations for French and Hindi
0 parents  commit 4920a58

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+11066
-0
lines changed

.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# common variables
2+
VITE_GITHUB_THEMES_CACHE_URL="https://cdn.jsdelivr.net/gh/tjtanjin/react-chatbotify-themes/themes"
3+
VITE_GITHUB_LOGIN_URL="https://github.com/login/oauth/authorize"

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/node_modules
2+
/dist

.eslintrc

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"root": true,
3+
"parser": "@typescript-eslint/parser",
4+
"parserOptions": {
5+
"ecmaVersion": 13,
6+
"sourceType": "module"
7+
},
8+
"plugins": [
9+
"@typescript-eslint",
10+
"react"
11+
],
12+
"extends": [
13+
"eslint:recommended",
14+
"plugin:@typescript-eslint/eslint-recommended",
15+
"plugin:@typescript-eslint/recommended"
16+
],
17+
"rules": {
18+
"@typescript-eslint/no-unused-vars": "error",
19+
"@typescript-eslint/consistent-type-definitions": ["error", "type"],
20+
"indent": ["error", "tab"],
21+
"react/jsx-indent": ["error", "tab"],
22+
"react/jsx-indent-props": ["error", "tab"],
23+
"max-len": ["error", { "code": 120 }]
24+
}
25+
}

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug report
3+
about: Report bug(s) encountered with the gallery website!
4+
title: "[Bug]"
5+
labels: bug
6+
assignees: tjtanjin
7+
8+
---
9+
10+
**Bug Description:**
11+
Provide a clear and concise description of the bug.
12+
13+
**Steps To Reproduce:**
14+
Steps to reproduce the bug behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior:**
21+
Describe the behavior that is expected to happen.
22+
23+
**Screenshots:**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser: [e.g. chrome, safari]
29+
30+
**Mobile (please complete the following information):**
31+
- Device: [e.g. iPhone12]
32+
- OS: [e.g. iOS8.1]
33+
- Browser: [e.g. edge, firefox]
34+
35+
**Additional Context:**
36+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea to improve the gallery website!
4+
title: "[Feat]"
5+
labels: enhancement
6+
assignees: tjtanjin
7+
8+
---
9+
10+
**Is Your Feature Request Related to a Problem? Please describe.**
11+
A clear and concise description of what the problem is (e.g. I'm always frustrated when [...]).
12+
13+
**Describe Desired Solution**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe Alternatives Considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional Context**
20+
Add any other context or screenshots about the feature request here.

.github/ISSUE_TEMPLATE/help.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Help
3+
about: Seek help with using the gallery website!
4+
title: "[Help]"
5+
labels: help wanted
6+
assignees: tjtanjin
7+
8+
---
9+
10+
**Help Description**
11+
Provide a clear and concise description on the help you need (include screenshots if relevant).
12+
13+
**Additional Context**
14+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/task.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Task
3+
about: Create a task to track work to be done for the gallery website (internal use)!
4+
title: "[Task]"
5+
6+
---
7+
8+
**Task Description:**
9+
Provide a clear and concise description of the task (e.g. add github actions for linting).
10+
11+
**Deliverable(s):**
12+
State the expected deliverable(s) for this task (e.g. lint.yml file, configured for linting in github actions).
13+
14+
**Additional Context:**
15+
Add any other context about the task here.
16+
17+
**Reminders:**
18+
- Assign task to a project (required)
19+
- Assign task to a sprint (required)
20+
- Assign task to a developer (optional)

.github/pull_request_template.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#### Description
2+
3+
Please include a brief summary of the change and include the relevant issue(s).
4+
5+
Closes #(issue)
6+
7+
#### What change does this PR introduce?
8+
9+
Please select the relevant option(s).
10+
11+
- [ ] Bug fix (non-breaking change which fixes an issue)
12+
- [ ] New feature (non-breaking change which adds functionality)
13+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
14+
- [ ] CI/CD (updates related to the CI/CD process)
15+
- [ ] Documentation update (changes to docs/code comments)
16+
- [ ] Chore (miscellaneous tasks that do not fall into the above options)
17+
18+
#### What is the proposed approach?
19+
20+
Please give a short overview/explanation on the approach taken to resolve the issue(s).
21+
22+
#### Checklist:
23+
24+
- [ ] The commit message follows our adopted [guidelines](https://www.conventionalcommits.org/en/v1.0.0/)
25+
- [ ] Testing has been done for the change(s) added (for bug fixes/features)
26+
- [ ] Relevant comments/docs have been added/updated (for bug fixes/features)

.github/workflows/lint.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Lint Workflow
2+
run-name: ${{ github.actor }} running the job
3+
on: [push]
4+
jobs:
5+
lint:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
- name: Install
10+
run: npm install
11+
- name: Run ESLint
12+
run: npm run lint

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# env
12+
.env.*
13+
14+
# production
15+
/build
16+
/dist
17+
18+
# misc
19+
.DS_Store
20+
.env.local
21+
.env.development.local
22+
.env.test.local
23+
.env.production.local
24+
25+
npm-debug.log*
26+
yarn-debug.log*
27+
yarn-error.log*
28+
todo.md

0 commit comments

Comments
 (0)