we want pt-br not pt_BR, update the script to take care of this

This commit is contained in:
Runa A. Sandvik 2011-07-14 07:25:54 +00:00
parent ff7f5de998
commit a2b7dc39ab

View File

@ -379,6 +379,13 @@ for file in $po ; do
subdir="zh-cn"
nosubdir
fi
# If the current subdirectory is "pt_BR" use "pt-br" instead
if [ $subdir = "pt_BR" ]
then
subdir="pt-br"
nosubdir
fi
# If the current directory is "nb" use "no" instead
if [ $subdir = "nb" ]
@ -402,7 +409,7 @@ for file in $po ; do
fi
# Convert everything else
if [[ $subdir != "en" && $subdir != "zh_CN" && $subdir != "nb" && $subdir != "sv" && $subdir != "pl_PL" ]]
if [[ $subdir != "en" && $subdir != "zh_CN" && $subdir != "pt_BR" && $subdir != "nb" && $subdir != "sv" && $subdir != "pl_PL" ]]
then
nosubdir
fi
@ -414,6 +421,13 @@ for file in $po ; do
subdir
fi
# If the current language is "pt_BR" use "pt-br" instead
if [ $lang = "pt_BR" ]
then
lang="pt-br"
subdir
fi
# If the current language is "nb" use "no" instead
if [ $lang = "nb" ]
then
@ -436,7 +450,7 @@ for file in $po ; do
fi
# Convert everything else
if [[ $lang != "en" && $lang != "zh_CN" && $lang != "nb" && $lang != "sv" && $lang != "pl_PL" ]]
if [[ $lang != "en" && $lang != "zh_CN" && $lang != "pt_BR" && $lang != "nb" && $lang != "sv" && $lang != "pl_PL" ]]
then
subdir
fi