bump copyright year. update start year to last year in bumpyear.sh, and simplify using find, to update all translation files.

This commit is contained in:
Kalamatee 2023-02-18 01:33:44 +00:00 committed by deadwood
parent ee6ee76fcb
commit 0b101d6722
5 changed files with 10 additions and 22 deletions

View File

@ -20,7 +20,7 @@ ext_entry:
.word 0xffff
.word 0xffff
.asciz "AROS EXT Extension Libraries"
.asciz "Copyright \251 1995-2022 "
.asciz "Copyright \251 1995-2023 "
.asciz "The AROS Development Team, "
.asciz "All Rights Reserved."
.asciz ADATE

View File

@ -25,7 +25,7 @@ software_reset:
.word 0xffff
.word 0xffff
.asciz "AROS ROM Operating System and Libraries"
.asciz "Copyright \251 1995-2022 "
.asciz "Copyright \251 1995-2023 "
.asciz "The AROS Development Team, "
.asciz "All Rights Reserved."
.asciz ADATE

View File

@ -1,5 +1,5 @@
/*
Copyright (C) 1995-2022, The AROS Development Team. All rights reserved.
Copyright (C) 1995-2023, The AROS Development Team. All rights reserved.
Desc: Implements AROS's generic/amiga-like boot sequence.
*/

View File

@ -1,5 +1,5 @@
/*
Copyright (C) 1995-2022, The AROS Development Team. All rights reserved.
Copyright (C) 1995-2023, The AROS Development Team. All rights reserved.
Desc: Shortcut OpenLibrary call for system modules (private!)
*/
@ -26,7 +26,7 @@ static const char * const libnames[] =
static const char * const copyrights[] =
{
"AROS Research Operating System (AROS)",
"Copyright \xA9 1995-2022, ",
"Copyright \xA9 1995-2023, ",
"The AROS Development Team.",
"Other parts \xA9 by respective owners.",
"ALPHA ",

View File

@ -1,7 +1,7 @@
#!/bin/bash
START_YEAR=1995
OLD_YEAR=2021
OLD_YEAR=2022
NEW_YEAR=2023
SUB=s/$START_YEAR-$OLD_YEAR/$START_YEAR-$NEW_YEAR/g
echo "$SUB"
@ -30,25 +30,13 @@ sed -i "$SUB" $DOC_PATH/targets/www/template/languages/sv
# warning: the following are within a submodule
sed -i "$SUB" $SOURCE_PATH/workbench/system/AboutAROS/catalogs/aboutaros.cd
sed -i "$SUB" $SOURCE_PATH/workbench/system/AboutAROS/catalogs/croatian.ct
sed -i "$SUB" $SOURCE_PATH/workbench/system/AboutAROS/catalogs/czech.ct
sed -i "$SUB" $SOURCE_PATH/workbench/system/AboutAROS/catalogs/danish.ct
sed -i "$SUB" $SOURCE_PATH/workbench/system/AboutAROS/catalogs/dutch.ct
sed -i "$SUB" $SOURCE_PATH/workbench/system/AboutAROS/catalogs/finnish.ct
sed -i "$SUB" $SOURCE_PATH/workbench/system/AboutAROS/catalogs/french.ct
sed -i "$SUB" $SOURCE_PATH/workbench/system/AboutAROS/catalogs/german.ct
sed -i "$SUB" $SOURCE_PATH/workbench/system/AboutAROS/catalogs/italian.ct
sed -i "$SUB" $SOURCE_PATH/workbench/system/AboutAROS/catalogs/polish.ct
sed -i "$SUB" $SOURCE_PATH/workbench/system/AboutAROS/catalogs/portuguese.ct
sed -i "$SUB" $SOURCE_PATH/workbench/system/AboutAROS/catalogs/russian.ct
sed -i "$SUB" $SOURCE_PATH/workbench/system/AboutAROS/catalogs/spanish.ct
sed -i "$SUB" $SOURCE_PATH/workbench/system/AboutAROS/catalogs/swedish.ct
for catalog in `find $SOURCE_PATH/workbench/system/AboutAROS/catalogs/ -name *.ct` ; do sed -i "$SUB" $catalog ;
done
START_YEAR=2002
SUB=s/$START_YEAR-$OLD_YEAR/$START_YEAR-$NEW_YEAR/g
echo "$SUB"
sed -i "$SUB" $SOURCE_PATH/workbench/libs/muimaster/catalogs/muimaster.cd
sed -i "$SUB" $SOURCE_PATH/workbench/libs/muimaster/catalogs/german.ct
sed -i "$SUB" $SOURCE_PATH/workbench/libs/muimaster/catalogs/polish.ct
sed -i "$SUB" $SOURCE_PATH/workbench/libs/muimaster/catalogs/russian.ct
for catalog in `find $SOURCE_PATH/workbench/libs/muimaster/catalogs -name *.ct` ; do sed -i "$SUB" $catalog ;
done