mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-25 16:31:08 -06:00
4842231074
We now use standard framework generatedby "gettextize" utility. It has two limitations which I do not consider sufficiently important to invest into hand-made solution: 1. It can automatically gather strings only from files which have some file extension like .c or .py. Right now we do not have any translatable strings in Python files without extensions. Given that these files will be removed from source tree and replaced with entry points from setuptools I do not see a reason to invest into supporting this. 2. It does not automatically strip untranslated strings from po files. This is a manual step in mainteiner's in workflow anyway so I will add separate Makefile target for it later on. This commit contains gettextize instrastructure + filled-in files Makevars and POTFILES.in. https://fedorahosted.org/freeipa/ticket/6418 Reviewed-By: Martin Basti <mbasti@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com> Reviewed-By: Lukas Slebodnik <lslebodn@redhat.com>
24 lines
672 B
Plaintext
24 lines
672 B
Plaintext
# Sed script that inserts the file called HEADER before the header entry.
|
|
#
|
|
# At each occurrence of a line starting with "msgid ", we execute the following
|
|
# commands. At the first occurrence, insert the file. At the following
|
|
# occurrences, do nothing. The distinction between the first and the following
|
|
# occurrences is achieved by looking at the hold space.
|
|
/^msgid /{
|
|
x
|
|
# Test if the hold space is empty.
|
|
s/m/m/
|
|
ta
|
|
# Yes it was empty. First occurrence. Read the file.
|
|
r HEADER
|
|
# Output the file's contents by reading the next line. But don't lose the
|
|
# current line while doing this.
|
|
g
|
|
N
|
|
bb
|
|
:a
|
|
# The hold space was nonempty. Following occurrences. Do nothing.
|
|
x
|
|
:b
|
|
}
|