Projet

Général

Profil

0001-misc-add-custom-makemessages-command-to-skip-line-nu.patch

Frédéric Péters, 18 mai 2022 10:50

Télécharger (2,33 ko)

Voir les différences:

Subject: [PATCH 1/2] misc: add custom makemessages command to skip line
 numbers by default (#65383)

 lingo/manager/management/__init__.py          |  0
 lingo/manager/management/commands/__init__.py |  0
 .../management/commands/makemessages.py       | 26 +++++++++++++++++++
 3 files changed, 26 insertions(+)
 create mode 100644 lingo/manager/management/__init__.py
 create mode 100644 lingo/manager/management/commands/__init__.py
 create mode 100644 lingo/manager/management/commands/makemessages.py
lingo/manager/management/commands/makemessages.py
1
# lingo - payment and billing system
2
# Copyright (C) 2022  Entr'ouvert
3
#
4
# This program is free software: you can redistribute it and/or modify it
5
# under the terms of the GNU Affero General Public License as published
6
# by the Free Software Foundation, either version 3 of the License, or
7
# (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU Affero General Public License for more details.
13
#
14
# You should have received a copy of the GNU Affero General Public License
15
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
16

  
17
from django.core.management.commands import makemessages
18

  
19

  
20
class Command(makemessages.Command):
21
    xgettext_options = makemessages.Command.xgettext_options + ['--keyword=N_']
22

  
23
    def handle(self, *args, **options):
24
        if not options.get('add_location') and self.gettext_version >= (0, 19):
25
            options['add_location'] = 'file'
26
        return super().handle(*args, **options)
0
-