fluks
fluks
Fixes issue #563. Count only one match per line for --count option, not all the matches.
This commit is built on top of the other PR, but I thought having a different PR for this commit is reasonable, because this deals with a different issue.
Try to execute for example: `sudo blaablaa` When you enter your correct sudo password, it isn't accepted, instead you just get: Sorry, try again. What you should get is: `sudo:...
Find sudo wherever it may be. I allocated memory, is that ok? In my commit, on line 197, the compiler complained about possibly truncating a string, so I used a...
### Before submitting a *pull request* make sure you have: - [x] [Searched](https://github.com/ytdl-org/youtube-dl/search?q=is%3Apr&type=Issues) the bugtracker for similar pull requests - [x] Read [adding new extractor tutorial](https://github.com/ytdl-org/youtube-dl#adding-support-for-a-new-site) - [x] Read [youtube-dl...
`atoi()` is not safe, it can overflow and underflow, causing undefined behavior. Should we change all calls to `atoi()` to `strtol()`s?
The bug was that if Firefox's locale (browser.useragent.locale in about:config) was such that there weren't translations for that locale in data/languages.json file, gtranslate's menucontext didn't show up at all. To...
Now that the addon is localized, how about using a translation service? Github has three such [integrations](https://github.com/integrations/feature/localization). I haven't used any of those, only [Weblate](https://weblate.org/) which is used by Osmand...
Hi, I added an option to listen to Google Translate's TTS voice. Works on the Firefox developer edition(46.0a2), I can't test it on the main release because of the extension...
This commit adds bash completion. The file needs to be copied to /etc/bash_completion.d, or $(DESTDIR)$(PREFIX)/etc/bash_completion.d, I didn't add that to the makefile yet.