aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/po/check.vim
Commit message (Collapse)AuthorAge
* vim-patch:8.2.5001: checking translations affects the search pattern history ↵zeertzjq2022-05-23
| | | | | | | (#18709) Problem: Checking translations affects the search pattern history. Solution: Use "keeppatterns". (Doug Kearns) https://github.com/vim/vim/commit/8a3704723c40779d688ef957dbe5bd8b65c25f95
* vim-patch:01164a6546b4 (#16335)zeertzjq2021-11-17
| | | missing changes to src/nvim/po/check.vim from https://github.com/vim/vim/commit/01164a6546b4c635daf96a1f17d1cb2d07f32a66#diff-ed3e88d59856bb5b62b2a394fb8c7293cd5794531e0718c0aa2d3d768d7973d1
* vim-patch:8.2.1548: cannot move position of "%%" in message translationsJan Edmund Lazo2020-08-30
| | | | | | Problem: Cannot move position of "%%" in message translations. (Emir Sarı) Solution: Improve the check script. https://github.com/vim/vim/commit/0b8cf278eca45241033033f9bf389e54669a8654
* vim-patch:8.1.2305: no warning for wrong entry in translationsJan Edmund Lazo2019-11-16
| | | | | | Problem: No warning for wrong entry in translations. Solution: Check semicolons in keywords entry of desktop file. https://github.com/vim/vim/commit/e53ec39270c805a95e405812e4c463c87a150eda
* vim-patch:8.1.0111: .po files do not use recommended namesJan Edmund Lazo2018-07-23
| | | | | | | Problem: .po files do not use recommended names. Solution: Give a warning if the recommended name is not used. Accept the recommended name for conversion. (Christian Brabandt, Ken Takata) https://github.com/vim/vim/commit/d1d037e90192ab64e4cec00b9d008b33bc69d979
* vim-patch:8.0.1839: script to check .po file doesn't check for plural headerJan Edmund Lazo2018-07-23
| | | | | | Problem: Script to check .po file doesn't check for plural header. Solution: Add a check that the plural header is present when needed. https://github.com/vim/vim/commit/9cfc7d885cb3bf37362b11df19a38992893fb385
* vim-patch:8.0.1778: script to check translations does not always workJan Edmund Lazo2018-07-23
| | | | | | Problem: Script to check translations does not always work. Solution: Go to first line before searching for MIME. https://github.com/vim/vim/commit/b07bbb0d29493fcf4ed080fe018535e64441d663
* vim-patch:8.0.0835: translations check with msgfmt does not workJan Edmund Lazo2018-07-23
| | | | | | Problem: Translations check with msgfmt does not work. Solution: Add a space before the file name. https://github.com/vim/vim/commit/65cedb2074ce550d20a3069c200e2a5d4061d3f6
* vim-patch:8.0.0830: translating messages is not idealJan Edmund Lazo2018-07-23
| | | | | | | Problem: Translating messages is not ideal. Solution: Add a remark about obsolete messages. Use msgfmt in the check script. (Christian Brabandt) https://github.com/vim/vim/commit/aaef1bae3cc331e7a7bb9c698e707c90cd4ded15
* vim-patch:8.0.0794: checking translations fails with multiple NLJan Edmund Lazo2018-07-23
| | | | | | | Problem: The script to check translations fails if there is more than one NL in one line. Solution: Count the number of NL characters. Make count() accept a string. https://github.com/vim/vim/commit/9966b21a57277986217aa28237d6c247ebd060d7
* vim-patch:8.0.0734: the script to check translations can be improvedJan Edmund Lazo2018-07-23
| | | | | | | Problem: The script to check translations can be improved. Solution: Restore the view when no errors are found. Check for matching line break at the end of the message. (Christian Brabandt) https://github.com/vim/vim/commit/7f93703149a46980f1588ff6b819f52e13084141
* vim-patch:7.4.2255lonerover2017-03-18
| | | | | | | | Problem: The script that checks translations can't handle plurals. Solution: Check for plural msgid and msgstr entries. Leave the cursor on the first error. https://github.com/vim/vim/commit/ec42059b78c1932a44f2bf36ac982109884dc7c7
* Customize the log file for the check targets based on the input file.John Szakmeister2014-07-17
| | | | | | The idea being that it's better to segregate feedback, just in case someone is working on several translations. Now the check log will appear in `./build/src/nvim/po/check-${LANG}.log`.
* Revert "Merge #928 'Move po gen to cmake'"John Szakmeister2014-07-17
| | | | | This reverts commit 53fba180c32724809d8ab35238eea68440b7ac97, reversing changes made to a3b3db8256c259d10957d45666cf4179e328f3f4.
* Customize the log file for the check targets based on the input file.John Szakmeister2014-07-17
| | | | | | The idea being that it's better to segregate feedback, just in case someone is working on several translations. Now the check log will appear in `./build/src/nvim/po/check-${LANG}.log`.
* Fix localization: Fix build: Improve checking.Eliseo Martínez2014-05-27
| | | | | | | | | | Problem : Currently, 'make check' gives no explanations when it fails, only the name of the po file which caused the halt. Then, you have to manually run check.vim on that file to see what happened. Solution : Generate a 'check.log' file on every execution of check.vim (overwriting if already existing). That way, when make halts, you can go there and see details about failure.
* Introduce nvim namespace: Move files.Eliseo Martínez2014-05-15
Move files from src/ to src/nvim/. - src/nvim/ becomes the new root dir for nvim executable sources. - src/libnvim/ is planned to become root dir of the neovim library.