Strings Words Characters | |||
---|---|---|---|
16 426 3,667 |
|
All strings | Browse Translate Zen |
16 426 3,667 |
|
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 8a8c62b59cc70633f3d0d55e916848be28088c61
8970fc2524
Julien Lepiller authored an hour ago |
Last commit in Weblate |
Automatic BLFS commit based on 8a8c62b59cc70633f3d0d55e916848be28088c61
8970fc2524
Julien Lepiller authored an hour ago |
Weblate repository |
https://translate.linuxfromscratch.org/git/faq/faq/
|
File mask | blfs/*/general/prog/ojdk-conf.po |
Translation file | Not available |
Last change | April 9, 2024, 4:19 p.m. |
Last author | None |
8 days ago
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 16 | 426 | 3,667 | |||
Translated | 100% | 16 | 100% | 426 | 100% | 3,667 |
Needs editing | 0% | 0 | 0% | 0 | 0% | 0 |
Read-only | 100% | 16 | 100% | 426 | 100% | 3,667 |
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 |
|
16 | File in original format as translated in the repository | gettext PO file | |||||||
---|---|---|---|---|---|---|---|---|---|
16 | 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># Begin /etc/profile.d/openjdk.sh
# Set JAVA_HOME directory
JAVA_HOME=/opt/jdk
# Adjust PATH
pathappend $JAVA_HOME/bin
# Auto Java CLASSPATH: Copy jar files to, or create symlinks in, the
# /usr/share/java directory.
AUTO_CLASSPATH_DIR=/usr/share/java
pathprepend . CLASSPATH
for dir in `find ${AUTO_CLASSPATH_DIR} -type d 2>/dev/null`; do
pathappend $dir CLASSPATH
done
for jar in `find ${AUTO_CLASSPATH_DIR} -name "*.jar" 2>/dev/null`; do
pathappend $jar CLASSPATH
done
export JAVA_HOME
# By default, Java creates several files in a directory named
# /tmp/hsperfdata_[username]. This directory contains files that are used for
# performance monitoring and profiling, but aren't normally needed on a BLFS
# system. This environment variable disables that feature.
_JAVA_OPTIONS="-XX:-UsePerfData"
export _JAVA_OPTIONS
unset AUTO_CLASSPATH_DIR dir jar _JAVA_OPTIONS
# End /etc/profile.d/openjdk.sh</literal>
EOF</userinput>