diff options
author | Daniel Baumann <daniel@debian.org> | 2013-01-02 12:58:03 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2013-01-02 12:58:03 +0100 |
commit | 7c98f332f6cf2a52d190c469e1e61ad598299c66 (patch) | |
tree | 1d528ab93a47f00bedb1e4576deb19bcce8954a0 /manpages/bin | |
parent | cfc99ce105b4e7956789fee96ad41c724ebe7317 (diff) | |
download | vyos-live-build-7c98f332f6cf2a52d190c469e1e61ad598299c66.tar.gz vyos-live-build-7c98f332f6cf2a52d190c469e1e61ad598299c66.zip |
Updating manpage year handling for 2013.
Diffstat (limited to 'manpages/bin')
-rwxr-xr-x | manpages/bin/update-version.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/manpages/bin/update-version.sh b/manpages/bin/update-version.sh index b996d7c25..d73c008bc 100755 --- a/manpages/bin/update-version.sh +++ b/manpages/bin/update-version.sh @@ -1,7 +1,7 @@ #!/bin/sh ## live-build(7) - System Build Scripts -## Copyright (C) 2006-2012 Daniel Baumann <daniel@debian.org> +## Copyright (C) 2006-2013 Daniel Baumann <daniel@debian.org> ## ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING. ## This is free software, and you are welcome to redistribute it @@ -35,7 +35,9 @@ do then for _FILE in po/${_LANGUAGE}/*.po do - sed -i -e "s|^msgstr .*.2012\"$|msgstr \"${DAY}.${MONTH}.${YEAR}\"|g" "${_FILE}" + sed -i -e "s|^msgstr .*.2013-.*$|msgstr \"${DAY}.${MONTH}.${YEAR}\"|g" \ + -e "s|^msgstr .*.2013\"$|msgstr \"${DAY}.${MONTH}.${YEAR}\"|g" \ + "${_FILE}" done fi done @@ -45,6 +47,8 @@ if ls po/pt_BR/*.po > /dev/null 2>&1 then for _FILE in po/pt_BR/*.po do - sed -i -e "s|^msgstr .*-2012\"$|msgstr \"${DAY}-${MONTH}-${YEAR}\"|g" "${_FILE}" + sed -i -e "s|^msgstr .*.2013-.*$|msgstr \"${DAY}-${MONTH}-${YEAR}\"|g" \ + -e "s|^msgstr .*-2013\"$|msgstr \"${DAY}-${MONTH}-${YEAR}\"|g" \ + "${_FILE}" done fi |