Other components
Component | Translated | Unfinished | Unfinished words | Unfinished characters | Untranslated | Checks | Suggestions | Comments | |
---|---|---|---|---|---|---|---|---|---|
chapter02_stages
|
0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
chapter02_hostreqs
|
0 | 0 | 0 | 0 | 11 | 0 | 0 | ||
|
|||||||||
chapter02_aboutlfs
|
0 | 0 | 0 | 0 | 4 | 0 | 0 | ||
|
|||||||||
chapter02_introduction
|
0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
chapter07_kernfs
|
0 | 0 | 0 | 0 | 4 | 0 | 0 | ||
|
|||||||||
chapter07_introduction
|
0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
chapter10_grub
|
0 | 0 | 0 | 0 | 4 | 0 | 0 | ||
|
|||||||||
chapter10_kernel
|
0 | 0 | 0 | 0 | 40 | 0 | 0 | ||
|
|||||||||
appendices_creat-comm
|
0 | 0 | 0 | 0 | 42 | 0 | 0 | ||
|
|||||||||
appendices_acronymlist
|
0 | 0 | 0 | 0 | 5 | 0 | 0 | ||
|
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))
502a1b7396
![]() |
Last commit in Weblate |
Translated using Weblate (Portuguese (Brazil))
66dd565789
![]() |
Weblate repository |
https://translate.linuxfromscratch.org/git/linux-from-scratch-11-3/index/
|
File mask | lfs/*/chapter08/stripping.po |
Translation file |
Download
lfs/fr/chapter08/stripping.po
|
Last change | March 10, 2023, 6:37 p.m. |
Last author | Weblate Admin |
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 10 | 526 | 4,384 | |||
Translated | 100% | 10 | 100% | 526 | 100% | 4,384 |
Needs editing | 0% | 0 | 0% | 0 | 0% | 0 |
Read-only | 0% | 0 | 0% | 0 | 0% | 0 |
Failing checks | 20% | 2 | 42% | 224 | 52% | 2,314 |
Strings with suggestions | 0% | 0 | 0% | 0 | 0% | 0 |
Untranslated strings | 0% | 0 | 0% | 0 | 0% | 0 |
Quick numbers
526
Hosted words
10
Hosted strings
100%
Translated
0
Contributors
and previous 30 days
Trends of last 30 days
+98%
Hosted words
+100%
+100%
Hosted strings
—
+100%
Translated
—
—
Contributors
+100%
![]() Translation changed |
|
![]() New translation |
|
![]() New contributor |
New contributor
2 months ago
|
![]() New strings to translate |
2 new strings to translate appeared to the translation.
2 months ago
|
![]() Resource update |
File
lfs/fr/chapter08/stripping.po was added.
2 months ago
|
![]() String updated in the repository |
|
![]() String updated in the repository |
|
![]() Source string changed |
|
![]() String updated in the repository |
|
![]() String updated in the repository |
|
10 | File in original format as translated in the repository | gettext PO file | |||||||
---|---|---|---|---|---|---|---|---|---|
10 | All strings, converted files enriched with comments; suitable for offline translation | CSV | gettext MO | gettext PO | TBX | TMX | XLIFF 1.1 with gettext extensions | XLIFF 1.1 | XLSX |
libc.so.6
libthread_db.so.1
libquadmath.so.&libquadmath-version;
libstdc++.so.&libstdcpp-version;
libitm.so.&libitm-version;
libatomic.so.&libatomic-version;"
cd /usr/lib
for LIB in $save_usrlib; do
objcopy --only-keep-debug $LIB $LIB.dbg
cp $LIB /tmp/$LIB
strip --strip-unneeded /tmp/$LIB
objcopy --add-gnu-debuglink=$LIB.dbg /tmp/$LIB
install -vm755 /tmp/$LIB /usr/lib
rm /tmp/$LIB
done
online_usrbin="bash find strip"
online_usrlib="libbfd-&binutils-version;.so
libsframe.so.0.0.0
libhistory.so.&readline-soversion;
libncursesw.so.&ncurses-version;
libm.so.6
libreadline.so.&readline-soversion;
libz.so.&zlib-version;
$(cd /usr/lib; find libnss*.so* -type f)"
for BIN in $online_usrbin; do
cp /usr/bin/$BIN /tmp/$BIN
strip --strip-unneeded /tmp/$BIN
install -vm755 /tmp/$BIN /usr/bin
rm /tmp/$BIN
done
for LIB in $online_usrlib; do
cp /usr/lib/$LIB /tmp/$LIB
strip --strip-unneeded /tmp/$LIB
install -vm755 /tmp/$LIB /usr/lib
rm /tmp/$LIB
done
for i in $(find /usr/lib -type f -name \*.so* ! -name \*dbg) \
$(find /usr/lib -type f -name \*.a) \
$(find /usr/{bin,sbin,libexec} -type f); do
case "$online_usrbin $online_usrlib $save_usrlib" in
*$(basename $i)* )
;;
* ) strip --strip-unneeded $i
;;
esac
done
unset BIN LIB save_usrlib online_usrbin online_usrlib
</userinput>
libc.so.6
libthread_db.so.1
libquadmath.so.&libquadmath-version;
libstdc++.so.&libstdcpp-version;
libitm.so.&libitm-version;
libatomic.so.&libatomic-version;"
cd /usr/lib
for LIB in $save_usrlib; do
objcopy --only-keep-debug $LIB $LIB.dbg
cp $LIB /tmp/$LIB
strip --strip-unneeded /tmp/$LIB
objcopy --add-gnu-debuglink=$LIB.dbg /tmp/$LIB
install -vm755 /tmp/$LIB /usr/lib
rm /tmp/$LIB
done
online_usrbin="bash find strip"
online_usrlib="libbfd-&binutils-version;.so
libsframe.so.0.0.0
libhistory.so.&readline-soversion;
libncursesw.so.&ncurses-version;
libm.so.6
libreadline.so.&readline-soversion;
libz.so.&zlib-version;
$(cd /usr/lib; find libnss*.so* -type f)"
for BIN in $online_usrbin; do
cp /usr/bin/$BIN /tmp/$BIN
strip --strip-unneeded /tmp/$BIN
install -vm755 /tmp/$BIN /usr/bin
rm /tmp/$BIN
done
for LIB in $online_usrlib; do
cp /usr/lib/$LIB /tmp/$LIB
strip --strip-unneeded /tmp/$LIB
install -vm755 /tmp/$LIB /usr/lib
rm /tmp/$LIB
done
for i in $(find /usr/lib -type f -name \*.so* ! -name \*dbg) \
$(find /usr/lib -type f -name \*.a) \
$(find /usr/{bin,sbin,libexec} -type f); do
case "$online_usrbin $online_usrlib $save_usrlib" in
*$(basename $i)* )
;;
* ) strip --strip-unneeded $i
;;
esac
done
unset BIN LIB save_usrlib online_usrbin online_usrlib
</userinput>