Commit Graph

93 Commits

Author SHA1 Message Date
Gabriele Ciccotelli caa05be694
Add RTL/LTR Markdown linter for mixed-direction text consistency and PR annotation (#11877)
* Add RTL/LTR Markdown linter for mixed-direction text consistency and PR annotation

Introduce a Python-based linter (scripts/rtl_ltr_linter.py) to automatically detect and annotate issues related to mixed Right-To-Left (RTL) and Left-To-Right (LTR) text in Markdown files. The linter analyzes list items, book entries, and metadata for potential bidirectional text rendering problems, such as missing Unicode directionality markers (RLM/LRM) and improper handling of LTR keywords or symbols in RTL contexts.

Key features:
- Scans all Markdown files in the repository, with full logs saved as workflow artifacts.
- Annotates only changed or added lines in pull requests, providing targeted feedback in the GitHub Actions Job Summary.
- Detects common RTL/LTR issues, including:
  - Missing directionality markers after LTR keywords (e.g., "HTML") or symbols (e.g., "C#") in RTL text.
  - BIDI (bidirectional) mismatches that may affect text display.
  - Incorrect ordering of author names and metadata in RTL contexts.
- Configurable via rtl_linter_config.yml for keywords, symbols, and severity levels.
- Includes a GitHub Actions workflow (rtl-ltr-linter.yml) for automated checks on PRs.

* Add test cases for RTL/LTR linter in English and Arabic book lists

Add sample entries to free-programming-books-en.md and free-programming-books-ar.md to test the RTL/LTR Markdown linter.
These test cases include various combinations of RTL and LTR text, keywords, symbols, and metadata to verify that the linter correctly detects directionality issues and outputs the expected logs and annotations.

* Restore original book lists after RTL/LTR linter test cases

Revert test entries in free-programming-books-en.md and free-programming-books-ar.md, restoring the original book lists. This commit removes temporary test data used for validating the RTL/LTR Markdown linter, preparing the repository for merging the PR with a clean state.

No functional changes to the linter or configuration files; only test content has been removed.

* Update RTL/LTR linter workflow and script: run only on RTL file changes or "RTL" label, fail only on errors

The GitHub Actions workflow for the RTL/LTR Markdown linter now runs only if:
- The PR modifies .md files related to RTL languages (ar, he, fa, ur), or
- The PR has the "RTL" label.
The linter script has been updated to fail the check only if errors are found on changed lines, not for warnings.

* Only upload linter artifact if linter step runs

Prevent warning about missing artifact by uploading the linter output log only if the linter step was executed (success or failure). This avoids unnecessary warnings when the linter is skipped because no RTL files were changed and no RTL label is present.

* Test workflow: modify non-RTL markdown file

Modified free-programming-books-en.md to verify that the RTL/LTR linter workflow does not run when only non-RTL markdown files are changed and the "RTL" label is not present.

* Test workflow: modify RTL markdown file to trigger linter

Modified free-programming-books-ar.md to verify that the RTL/LTR linter workflow runs as expected when an RTL markdown file is changed.

* Fix RTL/LTR BIDI issues in some markdown files

Applied directional markers (‎, ‏) and other formatting fixes to resolve BIDI (bidirectional text) errors and warnings reported by the linter in several .md files.

* Fix workflow: upload linter log only if linter step has not been skipped

Updated the workflow to upload the linter output artifact only when the linter step was actually executed (not skipped)

* Add debug step to check linter outcome in workflow

Added a debug step after the linter execution in the workflow to print the outcome and conclusion of the run_linter step.

* Set continue-on-error for linter step to allow artifact upload and debug

* Remove workflow debug step and update markdown file

Removed the debug step from the RTL/LTR linter workflow and applied further changes to a markdown file.

* Fix RTL/LTR BIDI issues in some markdown files

Applied directional markers (‎, ‏) and other formatting fixes to resolve BIDI (bidirectional text) errors and warnings reported by the linter in several .md files. This commit is a second batch of corrections to improve RTL/LTR rendering and pass the linter checks.

* Fix RTL/LTR BIDI issues in some markdown files

Applied directional markers (‎, ‏) and other formatting fixes to resolve BIDI (bidirectional text) errors and warnings reported by the linter in several .md files. This commit is a third batch of corrections to improve RTL/LTR rendering and pass the linter checks.

* Do not produce log file if no issues found

Updated the linter script to avoid creating the log file when no issues, warnings, or notices are found. If no issues are detected, the script now prints a "::notice ::No issues found"

* Always print annotation with number of errors and warnings found

Updated the linter script to always print an annotation indicating how many errors and warnings were found, even if there are none.

* Fix: always print summary annotation with number of issues found

* Add a missing newline character at end of file free-courses-he.md

* Update linter configuration and revert markdown files to pre-fix state

Updated the organization of keywords and symbols in the linter configuration file. Reverted all markdown files to their original state prior to the fixes.

* Update free-programming-books-he.md with fixes

* Update free-programming-books-he.md with further fixes

* Update free-programming-books-he.md with fixes

* Update free-programming-books-fa_IR.md with fixes

* Update free-programming-books-he.md with further fixes

* Update free-programming-books-ar.md with fixes

* Update free-programming-books-ar.md with further fixes

* Update free-podcasts-screencasts-ar.md with fixes

* Update free-podcasts-screencasts-fa_IR.md with fixes

* Update free-courses-he.md with fixes

* Update free-courses-he.md with further fixes

* Update free-courses-fa_IR.md with fixes

* Update free-courses-fa_IR.md with further fixes

* Update free-courses-ar.md with fixes

* Update free-courses-ar.md with further fixes

* Update free-courses-ar.md with further fixes

* Update free-courses-ur.md with fixes

* Update some markdown files with further improvements

* Fix alignment of nested lists in free-programming-books-fa_IR.md

* Update CONTRIBUTING.md and CONTRIBUTING-it.md with RTL/LTR linter error fixing guidelines

Added a section to CONTRIBUTING.md and CONTRIBUTING-it.md explaining how to fix RTL/LTR Markdown linter errors, including when to use ‏ and ‎ with practical examples for contributors working on files with mixed RTL and LTR text
2025-05-28 10:46:25 -04:00
Y.K. Lin d7d5f9e1e7
Fix typos and update links in CONTRIBUTING-ja.md (#11644)
* fix: fix typos in CONTRIBUTING-ja.md

* fix: update the links
2024-10-22 14:37:11 -04:00
Reo Uehara eb74208f76
Fix missing backticks(ja) (#11487)
* chore

* fix

Co-authored-by: Eric Hellman <eric@hellman.net>

---------

Co-authored-by: Eric Hellman <eric@hellman.net>
2024-10-12 11:44:53 -04:00
Reo Uehara a6c5241d5a
Fix the brackets surrounding the link from full-width to half-width(ja) (#11486)
* fix

* fix

Co-authored-by: Eric Hellman <eric@hellman.net>

---------

Co-authored-by: Eric Hellman <eric@hellman.net>
2024-10-12 11:44:18 -04:00
Reo Uehara c83a45a945
fix (#11491) 2024-10-11 13:26:45 -04:00
Reo Uehara 3b51894965
fix (#11489) 2024-10-11 13:24:11 -04:00
Reo Uehara 3e0c216961
fix (#11488) 2024-10-11 13:22:22 -04:00
anshumangahlot 673ab597cc
Pull Request: Add Hindi Translation for CONTRIBUTING.md (Changes Made) (#11299)
* Add files via upload

* Update README.md
2024-10-07 21:49:23 -04:00
Eric Hellman 10d7289c1e
testing the license label (#11269)
* testing the license label

tests #11260

* maybe a comma will work

* another try

* documentation for license notes

* Update CONTRIBUTING.md

* tweaks
2024-10-07 12:15:34 -04:00
Rui 2b7c4429fd
fix: remove invalid symbols and keep them consistent with the original (#11073)
text.

Signed-off-by: xiaobo <xiaobo@uniontech.com>
2024-02-27 12:38:30 -05:00
Raja Azian cbf31128b2
Enhance Indonesian translation (review assistance requested) (#10393)
* enhance indonesian language translation for CONTRIBUTING-id.md

* enhance indonesian language translation for HOWTO-id.md

* re-paraphrase

* fix typo and resolve comments

* Update docs/CONTRIBUTING-id.md

Co-authored-by: Daffa Muhammad Faizan <112247545+daffafaizan@users.noreply.github.com>

* Update docs/CONTRIBUTING-id.md

Co-authored-by: Harryanto Winsen <harry.winsen@yahoo.com>

* Update docs/CONTRIBUTING-id.md

Co-authored-by: Harryanto Winsen <harry.winsen@yahoo.com>

* Update docs/CONTRIBUTING-id.md

Co-authored-by: Harryanto Winsen <harry.winsen@yahoo.com>

* Update docs/CONTRIBUTING-id.md

Co-authored-by: Fityan <fityannugroho@gmail.com>

* Update docs/CONTRIBUTING-id.md

Co-authored-by: Fityan <fityannugroho@gmail.com>

* Update docs/CONTRIBUTING-id.md

Co-authored-by: Harryanto Winsen <harry.winsen@yahoo.com>

* Update docs/CONTRIBUTING-id.md

Co-authored-by: Harryanto Winsen <harry.winsen@yahoo.com>

---------

Co-authored-by: Eric Hellman <eric@hellman.net>
Co-authored-by: Daffa Muhammad Faizan <112247545+daffafaizan@users.noreply.github.com>
Co-authored-by: Harryanto Winsen <harry.winsen@yahoo.com>
Co-authored-by: Fityan <fityannugroho@gmail.com>
2024-01-03 11:39:24 -05:00
Victor Williams 258fab53e7
Create CODE_OF_CONDUCT-ml.md (#11010)
* Create CODE_OF_CONDUCT-ml.md

Added translation for malyalam

* Update README.md

* Add translations link for Code of Conduct in Malayalam

---------

Co-authored-by: Akhil <theakhilkumarb@gmail.com>
2023-12-18 10:18:34 -05:00
Victor Williams 49756e3eb7
Add Malayalam Translation (Fix for PR 10014) (#11000)
* Create HOWTO-ml.md

* Update README.md
2023-12-12 12:48:43 -05:00
David Ordás 59e4fba4b6
format: syntax of `in-process` anotation should be `*(🚧 in process)*` (#7036)
* format: update syntax of `in process` anotation (CONTRIBUTING-*)

from (🚧 *in process*)
to   *(🚧 in process)*

* format: apply notes syntax to `in_process` resources

- Applied note `*(🚧 in process)*` translating `in process` to underlying language there where we have previous translated text
- Used regex to detect most of notes: `((\*[^\*]+\*)|(_[^_]+_))`

* apply to new resources added in #7082

* Update books/free-programming-books-subjects.md

Co-authored-by: Leithen <lcrider@cvent.com>

---------

Co-authored-by: Eric Hellman <eric@hellman.net>
Co-authored-by: Leithen <lcrider@cvent.com>
2023-11-29 17:15:41 -05:00
prammmoe b8031a9fdc
fix grammar in code_of_conduct-id.md (#10765)
* fix grammar in code_of_conduct-id.md

* feat: add several free courses in indonesia courses list

* Update free-courses-id.md

* Update free courses in courses/free-courses-id.md

* Update free courses id

* Update free courses id

* Update courses/free-courses-id.md

* Update courses/free-courses-id.md

* Update courses/free-courses-id.md

* Update courses/free-courses-id.md

* Update courses/free-courses-id.md

* Update courses/free-courses-id.md

* Update courses/free-courses-id.md

* Update courses/free-courses-id.md

* Update courses/free-courses-id.md

* Update free-courses-id.md

* Update free-courses-id.md

---------

Co-authored-by: Eric Hellman <eric@hellman.net>
2023-11-21 19:17:07 -05:00
Rajan Khade e40e0d87b0
Update CODE_OF_CONDUCT-mr.md (#10987) 2023-11-21 13:24:40 -05:00
Atharva Kulkarni f7d59994f2
Code of Conduct for Marathi language added . (language review requested) (#10417)
* Free Courses of language kannada added

* Free Courses of language kannada added

* Free Courses of language kannada added

* Free Courses of language kannada added

* Free Courses of language kannada added

* Free Courses of language kannada added

* Changes made

* Changes made

* Changes made

* Changes made

* Changes made

* Changes made

* shortened url changed and removed tracking parameters from the link

* Made alphabetical order changes

* Added marathi languages free courses links

* Changes made

* Made the changes

* Changes made

* Added the link to course that that teaches fundamentals of Git and GitHub to new contributors. This PR should close the issue #9615

* Added the link to course that that teaches fundamentals of Git and GitHub to new contributors. This PR should close the issue #9615

* Added the link to course that that teaches fundamentals of Git and GitHub to new contributors. This PR should close the issue #9615

* Added the link to course that that teaches fundamentals of Git and GitHub to new contributors. This PR should close the issue #9615

* Added the link to course that that teaches fundamentals of Git and GitHub to new contributors. This PR should close the issue #9615

* Changes Done

* Code of conduct for marathi language added

* Update free-programming-books-sv.md

* Update CODE_OF_CONDUCT-mr.md

* Update README.md
2023-11-20 17:19:23 -05:00
Aneesh Dighe 6f3b160976
Added Japanese Translation of 3 md files (japanese review requested) (#9966)
* Added Japanese Translation of 3 md files

* Chnaged filename jp to ja

* Added Japanese Translation after review

* Made Changes after Review

* Update README.md removed Japanese contributing files information

I was having a resolve conflict for docs/README.md which is supposedly has access to the writers of the repository.Made this change as my pull request has been blocked

* Update README.md by adding links for Japanese Translation

I have added the links of the contributed files for the Japanese translation.Thank you.

---------

Co-authored-by: Eric Hellman <eric@hellman.net>
2023-11-13 01:06:31 -05:00
SEIKH NABAB UDDIN 5cd0173636
Update HOWTO-bn.md (#10715) 2023-10-24 23:02:17 -04:00
Bohdan Karashchuk 76db44030e
Update CODE_OF_CONDUCT-uk.md (#10678) 2023-10-24 14:12:54 -04:00
Geonu Lim b1ecba035f
Fixed typo CODE_OF_CONDUCT-ko.md (korean review requested) (#10003)
* Fixed typo CODE_OF_CONDUCT-ko.md

* Accepted review
2023-10-15 19:06:41 -04:00
HelloSeaNation 6e5ca6cd97
Translating ZH for Contributing document (zh review requested) (#10030)
* Update CONTRIBUTING-zh.md

Commit zh translation

* Update CONTRIBUTING-zh.md

commit translation

* Update CONTRIBUTING-zh.md

* Update CONTRIBUTING-zh.md

Correction from traditional Chinese to Simplified Chinese and translate the rest of the Contributing file

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Colin-coder <1527190079@qq.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update free-courses-en.md

* Update free-courses-en.md

* Update free-courses-en.md

* Update free-courses-en.md

I accidentally deleted a link in this page and I have paste it back to the place it supposed to be

* Update CONTRIBUTING-zh.md

* Apply suggestions from code review

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update CONTRIBUTING-zh.md

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com>

---------

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>
Co-authored-by: Colin-coder <1527190079@qq.com>
Co-authored-by: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com>
2023-10-15 17:28:49 -04:00
Aarya Balwadkar 3e0cfa7ef3
Added Code of Conduct in Sinhala language (review requested) (#10172)
* Added Code of Conduct in sinhala language

* Added a link of CODE_OF_CONDUCT-si.md
2023-10-15 17:24:10 -04:00
HelloSeaNation 537a03fb6a
Fix translation error (review requested) (#10204)
* Update CONTRIBUTING-zh.md

Commit zh translation

* Update CONTRIBUTING-zh.md

commit translation

* Update CONTRIBUTING-zh.md

* Update CONTRIBUTING-zh.md

Correction from traditional Chinese to Simplified Chinese and translate the rest of the Contributing file

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Colin-coder <1527190079@qq.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update docs/CONTRIBUTING-zh.md

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>

* Update free-courses-en.md

* Update free-courses-en.md

* revert mistake

---------

Co-authored-by: Qianhe Chen <54462604+chenqianhe@users.noreply.github.com>
Co-authored-by: Colin-coder <1527190079@qq.com>
2023-10-13 09:48:56 -04:00
Vichea 77a0e9ee51
Added: km code of conduct (khmer review requested) (#9967)
* Update free-courses-km.md

Add Javascript youtube playlist

* Update free-courses-km.md

Change Space Fixed Action Error

* Create CODE_OF_CONDUCT-km.md

* Delete docs/docs directory

* Create CODE_OF_CONDUCT-km.md

* Create CODE_OF_CONDUCT-km.md

Add Khmer translation code-of-conduct

* Update CODE_OF_CONDUCT-km.md

Fixed : link

* Delete CODE_OF_CONDUCT-km.md

Delete confuse create file wrong

* Update CODE_OF_CONDUCT-km.md

Modified some word best on review

* Update CODE_OF_CONDUCT-km.md

* Update README.md

Added List Code-of-conduct to Khmer list
2023-10-09 21:08:48 -04:00
Riya Bhaskar b032777f4b
Kannada Docs (Waiting for resources) (#9072)
* added Kannada Docs

* updated

* updated

* updated

* updated

* added link in docs/readme.md

* corrected
2023-10-09 12:15:54 -04:00
HelloSeaNation 66a40615ca
Update CONTRIBUTING-zh.md (#10026) 2023-10-08 23:02:44 -04:00
Soniya Prasad 3c6448ce4b
Update CONTRIBUTING.md (#9897)
* Update CONTRIBUTING.md

* Update CONTRIBUTING.md
2023-10-06 12:21:11 -04:00
JOBIN JOSEPH 66b39df289
Updated CONTRIBUTING-zh.md (#9928) 2023-10-06 12:11:59 -04:00
Minboy d89dea3045
fix: Fixed wrong typo in CONTRIBUTING-ko.md (#9923) 2023-10-06 12:06:11 -04:00
Omri Attiya 5f174f1641
add hebrew translation (hebrew reviewers requested) (#9877)
* hebrew translation

* fix typos
2023-10-06 10:42:14 -04:00
Jahir Raihan Joy 80477be0e8
Updated code-of-conduct-bn with native translation. (bangla review requested) (#9816)
* Updated code-of-conduct-bn with native translation accent.

Previously the translation was direct copy of google translation, which was bit hard to read throughly. 
Now it's been updated with actual bangla native accent.

* Fixed miss spelling

* Fixed grammatical mistakes
2023-10-04 21:47:26 -04:00
Aghits Nidallah 386143a114
Improves Repo's Code of Conducts, Contributing, and How-to Indonesian Grammars (review assistance requested) (#9812)
* chore (docs): improvise HOWTO-id.md grammar

* chore (docs): improvise CONTRIBUTING-id.md grammar

* chore (docs): improvise CODE_OF_CONDUCT-id.md grammar

* chore (docs): improves CONTRIBUTING-id.md sentence
2023-10-04 17:08:33 -04:00
Yogan G cd3b64d656
Added HOWTO file for Tamil Language (#9746) 2023-10-03 11:02:57 -04:00
Seongmin Kim 04afe47ed2
Translated untranslated parts of CONTRIBUTING-ko.md to Korean. Also fixed small typos (#9689) 2023-10-02 10:30:43 -04:00
Arman Rahimi e4a074551f
Fa_ir minor edits (Farsi feedback requested!) (#9640)
* Update free-programming-books-fa_IR.md

Add semi-space to the Persian book list

* Update CODE_OF_CONDUCT-fa_IR.md

Add semi-space and translation fix to the Persian contribution guide

* Update free-programming-books-fa_IR.md

fix number of blank lines before the heading

* improve the transaltion
2023-10-02 09:53:52 -04:00
Varshaa Shetty 573d1576ae
Updated CONTRIBUTING.md (#9614) 2023-10-01 21:06:44 -04:00
openingnow 6cc6a16aaa
Remove redundant hanja notation (#9554)
Co-authored-by: openingnow <>
2023-09-30 12:14:00 -04:00
Jarek Pacocha ffcbf254da
Update howto-pl.md (#9240)
* Implement further translations in HOWTO-pl.md

Added further translations and made minor phrasing changes.

* Fix broken link in HOWTO-pl.md

Fixed broken link to CONTRIBUTING document. The faulty link was pointing
to nonexsistent translation file. Changed it to point to the default EN version.
2022-12-25 13:09:49 -05:00
Sanhati Kundu b5ef8cef8c
Create Code_of_conduct-ben.md (#8400)
* Create Code_of_conduct-ben.md

bengali translation of the Code of conduct

* Rename Code_of_conduct-ben.md to Code_of_conduct-bn.md

used bn as the language code

* Rename Code_of_conduct-bn.md to CODE_OF_CONDUCT-bn.md

* Rename CODE_OF_CONDUCT-bn.md to docs/CODE_OF_CONDUCT-bn.md

* add  CoC link

Co-authored-by: Eric Hellman <eric@hellman.net>
2022-11-16 09:56:44 -05:00
Oscar Skille 76f7742b20
Create Norwegian How to (#8632)
* Create HOWTO-no.md

* Update HOWTO-no.md

* fix? syntax

* add -no link

Co-authored-by: Eric Hellman <eric@hellman.net>
2022-11-15 18:25:02 -05:00
Pablo Fraile Alonso 21a0ff86aa
add contributing translation for catalan (#8575)
* add contributing translation for catalan

* fix catalan language code on contribution file

* Rename CONTRIBUTING-es_CA.md to CONTRIBUTING-ca.md

* add contributing readme on docs/readme.md

Co-authored-by: Eric Hellman <eric@hellman.net>
2022-11-15 11:53:44 -05:00
Yujan Ranjitkar 11470c1339
Add some free courses in Nepali and Translate Contributing in Nepali (#8803)
* Add some free courses in Nepali and Translate Contributing in Nepali

* Update free-courses-ne.md

* Update free-courses-ne.md

* Update README.md

* Update free-courses-ne.md

* Update free-courses-ne.md
2022-11-01 12:39:16 -04:00
Akash Kundu 93f8320d94
বাংলা বানান সংশোধন (#8801)
Fixed some spelling mistakes.
2022-11-01 12:36:14 -04:00
Jonas Ekerhovd 7142a791f8
Create Norwegian code of conduct (#8628)
* Create Norwegian code of conduct

* Update README.md
2022-11-01 12:11:07 -04:00
David Ordás 8121e40747
docs(CONTRIBUTING): translate #8152 to spanish (#8197) 2022-11-01 11:31:35 -04:00
Omicron fe05532a18
[README.md] fix: French translation of CoC title (#9130) 2022-10-30 21:41:31 -04:00
Nguyen Long Nhat 73cfa16388
translate https://github.com/EbookFoundation/free-programming-books/pull/8152 (#8192) 2022-10-30 13:05:47 -04:00
Jalebium69 5493f845ec
Create CODE_OF_CONDUCT-tr.md and link with README.md (#9006)
* Create CODE_OF_CONDUCT-tr.md

* add link to README.md
2022-10-27 23:43:23 -07:00
Mylena Angélica 0e46d19ef2
Pt pt translation_how to (#8821)
* Create HOWTO-pt_PT.md

* ADD how to in portuguese
2022-10-22 14:10:17 -04:00