-
-
Notifications
You must be signed in to change notification settings - Fork 49
feat(i18n): Add comprehensive multi-language support for 12 languages #394
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
733c7a6
0f2f0cf
551864f
254f5f2
21e8d7a
ed602b2
3bc19fd
1535961
472238b
b51b7db
6ad1bd2
6494535
4738daf
d226c60
f5ddd6b
f4bf8a9
b8bae47
a6f533a
e4ba731
2eaf566
5de53ff
2540bc3
a80d031
8ee14e5
b6cf7b1
af13bc3
6e91a3e
fa8f843
677cd0c
2a79f8c
a99deea
637100d
692f5ae
388db56
4b66ae7
4461217
8189407
6aafe27
f38ac55
396ad2c
65bebec
5c2ee07
1f5cc49
b0c89b9
4a65e75
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| # CodeQL Configuration for Cortex Linux | ||
| # Uses default setup (no advanced configuration) | ||
| name: "CodeQL" | ||
| queries: | ||
| - uses: security-extended | ||
| - uses: security-and-quality |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @RIVALHIDE Again, why this one also changed ?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Anshgrover23 The workflows/codeql-analysis.yml file was inadvertently modified during AI-based testing. I apologize for the oversight; the original configuration has now been restored and pushed. Additionally, support has been added for cortex --set-language "English" alongside cortex config es, ensuring both the existing and the more human-readable syntax work as intended. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| name: CodeQL Analysis | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ main ] | ||
| pull_request: | ||
| branches: [ main ] | ||
| schedule: | ||
| - cron: '0 0 * * 0' | ||
|
|
||
| permissions: | ||
| security-events: write | ||
| contents: read | ||
|
|
||
| jobs: | ||
| analyze: | ||
| name: Analyze | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| language: [ 'python' ] | ||
|
|
||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.10' | ||
|
|
||
| - name: Initialize CodeQL | ||
| uses: github/codeql-action/init@v3 | ||
| with: | ||
| languages: ${{ matrix.language }} | ||
| config-file: .github/codeql-config.yml | ||
|
|
||
| - name: Autobuild | ||
| uses: github/codeql-action/autobuild@v3 | ||
|
|
||
| - name: Perform CodeQL Analysis | ||
| uses: github/codeql-action/analyze@v3 | ||
| with: | ||
| category: "/language:${{ matrix.language }}" |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@RIVALHIDE Why this file changed ?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Anshgrover23 The codeql-config.yml file was inadvertently modified during AI-based testing. I apologize for the oversight; the original configuration has now been restored and pushed.