How to make multilingual README.md for Github?

10

In one of my projects in git, the file README.md is in English, so I made another called README-pt.md and a link to navigate between them, for example :

[Read this page in English](http....README.md)
[Leia esta página em português](http....README-pt.md)

But is there a way to do this dynamically, in which it opens the correct language according to who is accessing?

    
asked by anonymous 14.05.2014 / 20:28

1 answer

3

There is no way to do this in Github, there is no interpretation for i8n in it. The form you followed is the most correct.

    
14.05.2014 / 20:41