Language | Translated | Unfinished | Unfinished words | Unfinished characters | Untranslated | Checks | Suggestions | Comments | |
---|---|---|---|---|---|---|---|---|---|
English
|
0 | 0 | 0 | 0 | 10 | 0 | 0 | ||
|
|||||||||
Chinese (Simplified)
|
67% | 10 | 524 | 3,350 | 3 | 11 | 0 | 0 | |
|
|||||||||
French
|
0 | 0 | 0 | 0 | 11 | 0 | 0 | ||
|
|||||||||
Portuguese (Brazil)
|
0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
Please sign in to see the alerts.
Overview
Project website | www.linuxfromscratch.org |
---|---|
Translation process |
|
Source code repository |
git@git.linuxfromscratch.org:fr-lfs
|
Repository branch | 11.3 |
Last remote commit |
Translated using Weblate (Portuguese (Brazil))
220d6dca27
![]() |
Last commit in Weblate |
Translated using Weblate (Portuguese (Brazil))
75cc94f25e
![]() |
Weblate repository |
https://translate.linuxfromscratch.org/git/linux-from-scratch-11-3/index/
|
File mask | lfs/*/chapter02/hostreqs.po |
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 124 | 2,820 | 20,404 | |||
Source | 31 | 705 | 5,101 | |||
Translated | 91% | 114 | 81% | 2,296 | 83% | 17,054 |
Needs editing | 5% | 7 | 16% | 475 | 15% | 3,069 |
Read-only | 25% | 31 | 25% | 705 | 25% | 5,101 |
Failing checks | 25% | 32 | 43% | 1,234 | 40% | 8,297 |
Strings with suggestions | 0% | 0 | 0% | 0 | 0% | 0 |
Untranslated strings | 2% | 3 | 1% | 49 | 1% | 281 |
Quick numbers
2,820
Hosted words
124
Hosted strings
91%
Translated
0
Contributors
and previous 30 days
Trends of last 30 days
+95%
Hosted words
+100%
+100%
Hosted strings
—
+91%
Translated
—
—
Contributors
+100%
Browse all component changes
<literal>#!/bin/bash
# Simple script to list version numbers of critical development tools
export LC_ALL=C
bash --version | head -n1 | cut -d" " -f2-4
MYSH=$(readlink -f /bin/sh)
echo "/bin/sh -> $MYSH"
echo $MYSH | grep -q bash || echo "ERROR: /bin/sh does not point to bash"
unset MYSH
echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3-
bison --version | head -n1
if [ -h /usr/bin/yacc ]; then
echo "/usr/bin/yacc -> `readlink -f /usr/bin/yacc`";
elif [ -x /usr/bin/yacc ]; then
echo yacc is `/usr/bin/yacc --version | head -n1`
else
echo "yacc not found"
fi
echo -n "Coreutils: "; chown --version | head -n1 | cut -d")" -f2
diff --version | head -n1
find --version | head -n1
gawk --version | head -n1
if [ -h /usr/bin/awk ]; then
echo "/usr/bin/awk -> `readlink -f /usr/bin/awk`";
elif [ -x /usr/bin/awk ]; then
echo awk is `/usr/bin/awk --version | head -n1`
else
echo "awk not found"
fi
gcc --version | head -n1
g++ --version | head -n1
grep --version | head -n1
gzip --version | head -n1
cat /proc/version
m4 --version | head -n1
make --version | head -n1
patch --version | head -n1
echo Perl `perl -V:version`
python3 --version
sed --version | head -n1
tar --version | head -n1
makeinfo --version | head -n1 # texinfo version
xz --version | head -n1
echo 'int main(){}' > dummy.c && g++ -o dummy dummy.c
if [ -x dummy ]
then echo "g++ compilation OK";
else echo "g++ compilation failed"; fi
rm -f dummy.c dummy</literal>
EOF
bash version-check.sh</userinput>
<literal>#!/bin/bash
# Script simples para listar números de versão de ferramentas críticas de desenvolvimento
export LC_ALL=C
bash --version | head -n1 | cut -d" " -f2-4
MYSH=$(readlink -f /bin/sh)
echo "/bin/sh -> $MYSH"
echo $MYSH | grep -q bash || echo "ERRO: /bin/sh não aponta para bash"
unset MYSH
echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3-
bison --version | head -n1
if [ -h /usr/bin/yacc ]; then
echo "/usr/bin/yacc -> `readlink -f /usr/bin/yacc`";
elif [ -x /usr/bin/yacc ]; then
echo yacc is `/usr/bin/yacc --version | head -n1`
else
echo "yacc não encontrado"
fi
echo -n "Coreutils: "; chown --version | head -n1 | cut -d")" -f2
diff --version | head -n1
find --version | head -n1
gawk --version | head -n1
if [ -h /usr/bin/awk ]; then
echo "/usr/bin/awk -> `readlink -f /usr/bin/awk`";
elif [ -x /usr/bin/awk ]; then
echo awk é `/usr/bin/awk --version | head -n1`
else
echo "awk não encontrado"
fi
gcc --version | head -n1
g++ --version | head -n1
grep --version | head -n1
gzip --version | head -n1
cat /proc/version
m4 --version | head -n1
make --version | head -n1
patch --version | head -n1
echo Perl `perl -V:version`
python3 --version
sed --version | head -n1
tar --version | head -n1
makeinfo --version | head -n1 # versão texinfo
xz --version | head -n1
echo 'int main(){}' > dummy.c && g++ -o dummy dummy.c
if [ -x dummy ]
then echo "g++ compilação OK";
else echo "g++ compilação falhou"; fi
rm -f dummy.c dummy</literal>
EOF
bash version-check.sh</userinput>