mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-10-18 17:35:33 +00:00
the separated language repository has long been a source of inconvenience and annoyance, particularly for PR contributors, because having to sync two PRs across different repos for no reason adds unnecessary friction. In addition, having the language files separate creates unnecessary requirements for versioning and branching, which could all be avoided if the language strings were managed directly in this repository. This change will make it much easier to do new features that require adding new translation strings, as well as getting rid of the inconvenience of cleaning up older strings. Translation updates from Crowdin should also be able to be merged more quickly, since they will have higher visibility on this repository.
34 lines
771 B
Plaintext
34 lines
771 B
Plaintext
# Auto detect text files and perform LF normalization
|
|
* text=auto
|
|
*.php text eol=lf
|
|
*.sh text eol=lf
|
|
*.txt text eol=lf
|
|
*.properties text eol=lf
|
|
*.neon text eol=lf
|
|
*.bat text eol=crlf
|
|
*.cmd text eol=crlf
|
|
*.ps1 text eol=crlf
|
|
|
|
# Not sure why these use CRLF, but keeping consistent with the old repository for now
|
|
/resources/translations/*.ini text eol=crlf
|
|
|
|
# Custom for Visual Studio
|
|
*.cs diff=csharp
|
|
*.sln merge=union
|
|
*.csproj merge=union
|
|
*.vbproj merge=union
|
|
*.fsproj merge=union
|
|
*.dbproj merge=union
|
|
|
|
# Standard to msysgit
|
|
*.doc diff=astextplain
|
|
*.DOC diff=astextplain
|
|
*.docx diff=astextplain
|
|
*.DOCX diff=astextplain
|
|
*.dot diff=astextplain
|
|
*.DOT diff=astextplain
|
|
*.pdf diff=astextplain
|
|
*.PDF diff=astextplain
|
|
*.rtf diff=astextplain
|
|
*.RTF diff=astextplain
|