Strings Words Characters | |||
---|---|---|---|
25 1,041 7,889 |
|
All strings | Browse Translate Zen |
25 1,041 7,889 |
|
Read-only strings | Browse Translate Zen |
Overview
Project website | www.linuxfromscratch.org |
---|---|
Translation process |
|
Source code repository |
git@git.linuxfromscratch.org:fr-lfs
|
Repository branch | trunk |
Last remote commit |
Automatic BLFS commit based on d04d252023c8c49952a78a7be1bd028b42992b7a
516fcc8597
Julien Lepiller authored 11 hours ago |
Last commit in Weblate |
Automatic BLFS commit based on d04d252023c8c49952a78a7be1bd028b42992b7a
516fcc8597
Julien Lepiller authored 11 hours ago |
Weblate repository |
https://translate.linuxfromscratch.org/git/faq/faq/
|
File mask | lfs/*/chapter11/afterlfs.po |
Translation file | Not available |
Last change | Feb. 4, 2024, 4:19 p.m. |
Last author | None |
4 weeks ago
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 25 | 1,041 | 7,889 | |||
Translated | 100% | 25 | 100% | 1,041 | 100% | 7,889 |
Needs editing | 0% | 0 | 0% | 0 | 0% | 0 |
Read-only | 100% | 25 | 100% | 1,041 | 100% | 7,889 |
Failing checks | 0% | 0 | 0% | 0 | 0% | 0 |
Strings with suggestions | 0% | 0 | 0% | 0 | 0% | 0 |
Untranslated strings | 0% | 0 | 0% | 0 | 0% | 0 |
Quick numbers
and previous 30 days
Trends of last 30 days
—
Hosted words
+100%
—
Hosted strings
+100%
—
Translated
+100%
—
Contributors
—
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
25 | File in original format as translated in the repository | gettext PO file | |||||||
---|---|---|---|---|---|---|---|---|---|
25 | 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 |
#!/bin/bash
function mountbind
{
if ! mountpoint $LFS/$1 >/dev/null; then
$SUDO mount --bind /$1 $LFS/$1
echo $LFS/$1 mounted
else
echo $LFS/$1 already mounted
fi
}
function mounttype
{
if ! mountpoint $LFS/$1 >/dev/null; then
$SUDO mount -t $2 $3 $4 $5 $LFS/$1
echo $LFS/$1 mounted
else
echo $LFS/$1 already mounted
fi
}
if [ $EUID -ne 0 ]; then
SUDO=sudo
else
SUDO=""
fi
if [ x$LFS == x ]; then
echo "LFS not set"
exit 1
fi
mountbind dev
mounttype dev/pts devpts devpts -o gid=5,mode=620
mounttype proc proc proc
mounttype sys sysfs sysfs
mounttype run tmpfs run
if [ -h $LFS/dev/shm ]; then
install -v -d -m 1777 $LFS$(realpath /dev/shm)
else
mounttype dev/shm tmpfs tmpfs -o nosuid,nodev
fi
#mountbind usr/src
#mountbind boot
#mountbind home
EOF</command>