summaryrefslogtreecommitdiff
path: root/django/core/management/commands/makemessages.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #33565 -- Improved locale format validation for the makemessages command.Ronnie van den Crommenacker2022-06-081-7/+38
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-8/+13
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-166/+236
* Fixed #6106 -- Prevented makemessages from changing .po files when up to date.Ad Timmering2021-11-111-2/+4
* Refs #32144 -- Made makemessages remove temporary files on preprocessing error.Carlton Gibson2021-07-011-0/+5
* Fixed #32144 -- Made makemessages remove temporary files when locale path doe...Carlton Gibson2021-07-011-0/+2
* Fixed typo in makemessages error message.Jacob Walls2021-06-211-1/+1
* Fixed #32145 -- Improved makemessages error message when app's locale directo...Josh Santos2021-02-091-2/+3
* Refs #30165 -- Removed ugettext(), ugettext_lazy(), ugettext_noop(), ungettex...Mariusz Felisiak2021-01-141-3/+0
* Fixed #29712 -- Made makemessages warn if locales have hyphens and skip them.manav0142020-11-131-0/+8
* Fixed #31546 -- Allowed specifying list of tags in Command.requires_system_ch...Hasan Ramezani2020-05-211-1/+1
* Refs #30116 -- Simplified regex match group access with Match.__getitem__().Jon Dufresne2020-05-111-2/+2
* Refs #18325 -- Removed unnecessary line endings in management commands.François Freitag2020-04-271-6/+6
* Fixed #31314 -- Raised CommandError when locale is not specified in makemessa...Cristobal Mackenzie2020-02-281-1/+1
* Removed unnecessary parentheses in various code.Jon Dufresne2019-11-181-1/+1
* Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani2019-10-291-1/+2
* Refs #29817 -- Removed settings.FILE_CHARSET per deprecation timeline.Mariusz Felisiak2019-09-101-2/+1
* Fixed #30147 -- Simplified directory creation with os.makedirs(..., exist_ok=...Jon Dufresne2019-01-311-4/+2
* Refs #29973 -- Extracted helper functions from makemessages.rsiemens2019-01-281-26/+3
* Removed default mode='r' argument from calls to open().Jon Dufresne2019-01-271-3/+3
* Removed parser.add_arguments() arguments that match the defaults.Claude Paroz2018-07-021-10/+10
* Fixed #29452 -- Fixed makemessages setting charset of .pot files.Bartosz Grabski2018-06-111-2/+3
* Fixed #17379 -- Removed management commands deactivation of the locale.Claude Paroz2018-05-131-1/+0
* Fixed #28982 -- Simplified code with and/or.Дилян Палаузов2018-01-031-2/+1
* Fixed #28773 -- Forced pot files to use UNIX-style newlinesClaude Paroz2017-11-281-1/+3
* Fixed #28769 -- Replaced 'x if x else y' with 'x or y'.Дилян Палаузов2017-11-071-5/+3
* Avoided creation of temporary sets.Sergey Fedoseev2017-07-291-1/+1
* Fixed #28015 -- Added makemessages --add-location option.Ling-Xiao Yang2017-05-221-0/+22
* Removed implicit default store_true/false argparse args.Jon Dufresne2017-04-011-7/+7
* Fixed #27868 -- Filtered locale path subdirectoriesClaude Paroz2017-02-231-1/+5
* Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan2017-02-211-11/+10
* Refs #27795 -- Removed force_text from templatize functionClaude Paroz2017-02-061-1/+1
* Refs #23919 -- Removed unneeded str() callsClaude Paroz2017-01-201-4/+4
* Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham2017-01-201-2/+1
* Refs #23919 -- Removed unneeded force_str callsClaude Paroz2017-01-201-3/+3
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-2/+2
* Refs #23919 -- Replaced io.open() with open().Aymeric Augustin2017-01-181-8/+7
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Fixed #27546 -- Removed hardcoded class names in __repr__() methods.Keda872016-12-011-1/+4
* Refs #26940 -- Re-allowed makemessages without settingsClaude Paroz2016-10-011-4/+19
* Fixed #27034 -- Made makemessages independent of USE_I18NClaude Paroz2016-08-111-8/+1
* Fixed #26897 -- Fixed makemessages crash on Python 2 with non-ASCII file namesClaude Paroz2016-07-141-1/+1
* Fixed #26645 -- Fixed potential makemessages failures on Windows.Ramiro Morales2016-05-271-4/+31
* Fixed #26341 (again) -- Addressed multiple occurrences per line use caseClaude Paroz2016-05-021-1/+1
* Fixed #26341 -- Fixed makemessages breaking location comments for HTML filesClaude Paroz2016-04-301-6/+11
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-081-36/+67
* Refs #26315 -- Cleaned up argparse options in commands.Jon Dufresne2016-03-051-13/+13
* Fixed #26125 -- Fixed E731 flake warnings.userimack2016-01-251-2/+4
* Fixed #25677 -- Prevented decoding errors in/after Popen callsClaude Paroz2015-11-191-26/+5
* Fixed #17375 -- Changed makemessages to use xgettext with --files-fromSergey Kolosov2015-08-281-104/+197