make jc switch locale automatically
See original GitHub issueSome parsers presuppose English locale.
Currently I have to call e.g. LANG=en jc df
.
Can jc
or the parsers be modified to use the required language automatically?
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
How to detect user locale and switch to it automatically?
misunderstood me, my question is very simple and clear i want on page load to detect the user locale and switch to it,...
Read more >How to Load i18n Locales Asynchronously in Vue 3 + Vite
Learn how to load Vue I18n locales lazily in your multi-language Vue 3 + Vite ... The array will be used later to...
Read more >Changing locale globally
Once you load a locale, it becomes the active locale. To change active locales, simply call dayjs.locale with the key of a loaded...
Read more >Locale - ArchWiki
The locale to be used, chosen among the previously generated ones, is set in locale.conf files. Each of these files must contain a...
Read more >Changing locale globally - momentjs.com
To load a locale, pass the key and the string values to moment.locale . More details on each of the parts of the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Better use the default locale C:
LANG=C jc df -h
Note that this only works when using the “magic” syntax. If you are using the standard piping of STDIN to STDOUT, then make sure to add the
LANG=C
assignment before the command you want to convert. E.g.: