diff options
author | Daniel Baumann <daniel@debian.org> | 2013-01-02 12:56:10 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-05-06 14:50:04 +0200 |
commit | 26bbf6e683ba512c48a41c5a14bf280a3e47b9eb (patch) | |
tree | 429dd7416d050e2de8c942029d539c3bf78368ef /manpages/bin | |
parent | d8b0ca36fe7704a67f9a53b1fb7778789a04f3de (diff) | |
download | vyos-live-build-26bbf6e683ba512c48a41c5a14bf280a3e47b9eb.tar.gz vyos-live-build-26bbf6e683ba512c48a41c5a14bf280a3e47b9eb.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 |