diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-12-13 09:24:24 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-12-13 10:28:07 -0200 |
commit | 7c22ae1b665b65ca9c54f525ec614728aa9bd0ec (patch) | |
tree | 58bfaa8cc466f546f4666ef80d7b28b12fb7fa54 /libdvbv5-po/insert-header.sin | |
parent | b680e315f55f8e9a66e12ded1ab650a6208b38f0 (diff) |
gettextize: Add locale settings for libdvbv5
We don't want to mix translations for utils with the ones
for the libraries. So, create a different dir for the
library translations.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'libdvbv5-po/insert-header.sin')
-rw-r--r-- | libdvbv5-po/insert-header.sin | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libdvbv5-po/insert-header.sin b/libdvbv5-po/insert-header.sin new file mode 100644 index 00000000..b26de01f --- /dev/null +++ b/libdvbv5-po/insert-header.sin @@ -0,0 +1,23 @@ +# 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 +} |