Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
51dc96a
chore: add entry for experimental samples directory
brionmario Sep 28, 2025
e922959
feat(i18n): add initial internationalization package with translation…
brionmario Sep 28, 2025
51d2bd0
chore: update issue templates to include '@asgardeo/i18n' and improve…
brionmario Sep 28, 2025
8e318fa
docs: update contributing guide to reflect Asgardeo JavaScript SDKs
brionmario Sep 28, 2025
b333d8c
docs: reorganize contributing guide and add section for i18n package …
brionmario Sep 29, 2025
2b6949c
docs: enhance contributing guide with detailed testing instructions f…
brionmario Sep 29, 2025
b1ab08b
chore(i18n): rename getI18nBundles to getDefaultI18nBundles and updat…
brionmario Sep 29, 2025
bc1e314
chore(i18n): implement dynamic loading of translation bundles and add…
brionmario Sep 29, 2025
9b4b001
chore(i18n): fix lint issues
brionmario Sep 29, 2025
88c1fb5
docs: update contributing guide with detailed sections for i18n packa…
brionmario Sep 29, 2025
6900e7f
fix(i18n): correct comment formatting for buttons in en-US translations
brionmario Sep 29, 2025
5e8b287
fix: add missing newline at end of package.json
brionmario Sep 29, 2025
5da6247
chore(i18n): add unit tests for getDefaultI18nBundles function
brionmario Sep 29, 2025
283264a
chore: add changeset 🦋
brionmario Sep 29, 2025
f88ed12
Merge remote-tracking branch 'upstream/main' into refactor-i18n
brionmario Sep 29, 2025
bdf71f9
chore(i18n): add export for Hindi (hi-IN) language support
brionmario Sep 29, 2025
6ff3b60
docs(i18n): add important note on preserving formatting and keys in t…
brionmario Sep 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/wide-mugs-drive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@asgardeo/javascript': patch
'@asgardeo/react': patch
'@asgardeo/i18n': patch
---

Introduce a new `@asgardeo/i18n` package
6 changes: 4 additions & 2 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ body:
- type: dropdown
id: area
attributes:
label: Please select the package issue is related to
label: Please select the area the issue is related to
options:
- '@asgardeo/browser'
- '@asgardeo/express'
Expand All @@ -29,7 +29,9 @@ body:
- '@asgardeo/react'
- '@asgardeo/react-router'
- '@asgardeo/vue'
- '@asgardeo/i18n'
- 'samples'
- 'other'
default: 1
multiple: true
validations:
Expand All @@ -38,7 +40,7 @@ body:
id: version
attributes:
label: Version
description: Enter package version or commit hash.
description: Enter package version or commit hash. (Use `N/A` if not applicable)
validations:
required: true
- type: textarea
Expand Down
4 changes: 3 additions & 1 deletion .github/ISSUE_TEMPLATE/improvement.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ body:
- '@asgardeo/react'
- '@asgardeo/react-router'
- '@asgardeo/vue'
- '@asgardeo/i18n'
- 'samples'
- 'other'
default: 1
multiple: true
validations:
Expand All @@ -39,7 +41,7 @@ body:
id: version
attributes:
label: Version
description: Enter package version or commit hash.
description: Enter package version or commit hash. (Use `N/A` if not applicable)
validations:
required: true
- type: checkboxes
Expand Down
4 changes: 3 additions & 1 deletion .github/ISSUE_TEMPLATE/new_feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ body:
- '@asgardeo/react'
- '@asgardeo/react-router'
- '@asgardeo/vue'
- '@asgardeo/i18n'
- 'samples'
- 'other'
default: 1
multiple: true
validations:
Expand All @@ -46,7 +48,7 @@ body:
id: version
attributes:
label: Version
description: Enter package version or commit hash.
description: Enter package version or commit hash. (Use `N/A` if not applicable)
validations:
required: true
- type: checkboxes
Expand Down
18 changes: 0 additions & 18 deletions .github/issue_template.md

This file was deleted.

11 changes: 4 additions & 7 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,17 @@
<!-- Describe the problem, feature, improvement or the change introduces by the PR briefly. Add screenshots/GIFs if UI/UX changes are introduced. -->

### Related Issues
-
- N/A

### Related PRs
-
- N/A

### Checklist
- [ ] e2e cypress tests locally verified.
- [ ] Followed the [CONTRIBUTING](https://github.com/asgardeo/javascript/blob/main/CONTRIBUTING.md) guidelines.
- [ ] Manual test round performed and verified.
- [ ] UX/UI review done on the final implementation.
- [ ] Documentation provided. (Add links if there are any)
- [ ] Unit tests provided. (Add links if there are any)
- [ ] Integration tests provided. (Add links if there are any)

### Security checks
- [ ] Followed secure coding standards in http://wso2.com/technical-reports/wso2-secure-engineering-guidelines?
- [ ] Ran FindSecurityBugs plugin and verified report?
- [ ] Confirmed that this PR doesn't commit any keys, passwords, tokens, usernames, or other secrets?
- [ ] Confirmed that this PR doesn't commit any keys, passwords, tokens, usernames, or other secrets?
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,7 @@ Thumbs.db
.env*
.cursor/rules/nx-rules.mdc
.github/instructions/nx.instructions.md

# Experimental Samples
# NOTE to Developers: Please use this samples folder for experimental code only and do not commit.
samples/__experimental__/
Loading
Loading