Strings Words Characters | |||
---|---|---|---|
127 2,368 18,679 |
|
All strings | Browse Translate Zen |
127 2,368 18,679 |
|
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 d6cda5163a2b191bd1f67b49f251a5eb1157701a
a7505c5cf4
Julien Lepiller authored 3 hours ago |
Last commit in Weblate |
Automatic BLFS commit based on d6cda5163a2b191bd1f67b49f251a5eb1157701a
a7505c5cf4
Julien Lepiller authored 3 hours ago |
Weblate repository |
https://translate.linuxfromscratch.org/git/faq/faq/
|
File mask | blfs/*/general/prog/rust.po |
Translation file | Not available |
Last change | Oct. 19, 2024, 4:19 p.m. |
Last author | None |
2 weeks ago
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 127 | 2,368 | 18,679 | |||
Translated | 100% | 127 | 100% | 2,368 | 100% | 18,679 |
Needs editing | 0% | 0 | 0% | 0 | 0% | 0 |
Read-only | 100% | 127 | 100% | 2,368 | 100% | 18,679 |
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
−3%
Hosted words
+100%
−3%
Hosted strings
+100%
—
Translated
+100%
—
Contributors
+100%
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 |
|
127 | File in original format as translated in the repository | gettext PO file | |||||||
---|---|---|---|---|---|---|---|---|---|
127 | 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 |
<literal># see config.toml.example for more possible options
# See the 8.4 book for an old example using shipped LLVM
# e.g. if not installing clang, or using a version before 13.0
# Tell x.py the editors have reviewed the content of this file
# and updated it to follow the major changes of the building system,
# so x.py will not warn us to do such a review.
change-id = 129295
[llvm]
# by default, rust will build for a myriad of architectures
targets = "X86"
# When using system llvm prefer shared libraries
link-shared = true
[build]
# omit docs to save time and space (default is to build them)
docs = false
# install extended tools: cargo, clippy, etc
extended = true
# Do not query new versions of dependencies online.
locked-deps = true
# Specify which extended tools (those from the default install).
tools = ["cargo", "clippy", "rustdoc", "rustfmt"]
# Use the source code shipped in the tarball for the dependencies.
# The combination of this and the "locked-deps" entry avoids downloading
# many crates from Internet, and makes the Rustc build more stable.
vendor = true
[install]
prefix = "/opt/rustc-&rust-version;"
docdir = "share/doc/rustc-&rust-version;"
[rust]
channel = "stable"
description = "for BLFS &version;"
# Enable the same optimizations as the official upstream build.
lto = "thin"
codegen-units = 1
[target.x86_64-unknown-linux-gnu]
# NB the output of llvm-config (i.e. help options) may be
# dumped to the screen when config.toml is parsed.
llvm-config = "/usr/bin/llvm-config"
[target.i686-unknown-linux-gnu]
# NB the output of llvm-config (i.e. help options) may be
# dumped to the screen when config.toml is parsed.
llvm-config = "/usr/bin/llvm-config"</literal>
EOF</userinput>