Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
proftpd /
howto /
[ HOME SHELL ]
Name
Size
Permission
Action
ASCII.html
3.71
KB
-rw-r--r--
AWS.html
26.05
KB
-rw-r--r--
AuthFiles.html
9.54
KB
-rw-r--r--
Authentication.html
15.32
KB
-rw-r--r--
BCP.html
13.7
KB
-rw-r--r--
Chroot.html
14.27
KB
-rw-r--r--
Classes.html
5.92
KB
-rw-r--r--
Compiling.html
34.11
KB
-rw-r--r--
ConfigFile.html
16.47
KB
-rw-r--r--
ConfigurationTricks.html
16.54
KB
-rw-r--r--
ConnectionACLs.html
6.84
KB
-rw-r--r--
Controls.html
11.95
KB
-rw-r--r--
CreateHome.html
7.79
KB
-rw-r--r--
DNS.html
6.92
KB
-rw-r--r--
DSO.html
14.9
KB
-rw-r--r--
Debugging.html
12.47
KB
-rw-r--r--
Directory.html
10.89
KB
-rw-r--r--
DisplayFiles.html
6.69
KB
-rw-r--r--
ECCN.html
4.73
KB
-rw-r--r--
FTP.html
16.09
KB
-rw-r--r--
FXP.html
5.57
KB
-rw-r--r--
Filters.html
7.93
KB
-rw-r--r--
Globbing.html
5.53
KB
-rw-r--r--
KeepAlives.html
19.68
KB
-rw-r--r--
Limit.html
15.08
KB
-rw-r--r--
ListOptions.html
6.18
KB
-rw-r--r--
LogLevels.html
5.08
KB
-rw-r--r--
LogMessages.html
14.89
KB
-rw-r--r--
Logging.html
22.37
KB
-rw-r--r--
Memcache.html
9.04
KB
-rw-r--r--
NAT.html
11.15
KB
-rw-r--r--
Nonroot.html
4.23
KB
-rw-r--r--
Quotas.html
17.17
KB
-rw-r--r--
Radius.html
17.35
KB
-rw-r--r--
Redis.html
8.53
KB
-rw-r--r--
Regex.html
22.23
KB
-rw-r--r--
Rewrite.html
16.8
KB
-rw-r--r--
SQL.html
40.55
KB
-rw-r--r--
SSH.html
5.14
KB
-rw-r--r--
Scoreboard.html
9.11
KB
-rw-r--r--
Sendfile.html
7.34
KB
-rw-r--r--
ServerType.html
10.45
KB
-rw-r--r--
Stopping.html
10.31
KB
-rw-r--r--
TLS.html
58.93
KB
-rw-r--r--
Testing.html
8.73
KB
-rw-r--r--
Timestamps.html
6.71
KB
-rw-r--r--
Tracing.html
8.68
KB
-rw-r--r--
Translations.html
3.52
KB
-rw-r--r--
Umask.html
9.16
KB
-rw-r--r--
Upgrade.html
2.14
KB
-rw-r--r--
Versioning.html
5.41
KB
-rw-r--r--
Vhost.html
11.55
KB
-rw-r--r--
VirtualUsers.html
8.8
KB
-rw-r--r--
ftpaccess.html
2.03
KB
-rw-r--r--
index.html
10.45
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Translations.html
<!DOCTYPE html> <html> <head> <title>ProFTPD: Translations</title> </head> <body bgcolor=white> <hr> <center><h2><b>ProFTPD: Translations</b></h2></center> <hr> <p> <b>Translations</b><br> ProFTPD has support for translating the messages sent to clients in the FTP responses. To enable use of these translations in your <code>proftpd</code>, you must compile proftpd using the <code>--enable-nls</code> configure option. This causes the <a href="../modules/mod_lang.html"><code>mod_lang</code></a> module to be compiled into your <code>proftpd</code>. <p> ProFTPD uses the <a href="http://www.gnu.org/software/gettext/manual/gettext.html"><code>gettext</code></a> code package for translation support. <p> <b>Adding a New Translation</b><br> To add a new language translation to <code>proftpd</code>, first check to see if the language in question already has a translation. ProFTPD's translations are kept, in the source distribution, under the <code>locale/</code> directory, <i>e.g.</i>: <pre> $ ls /path/to/proftpd-<i>version</i>/locale/*.po </pre> <p> To create a new translation, you first initialize a <code>.po</code> file for your translation using the template PO file (<code>proftpd.pot</code>): <pre> $ cd proftpd-<i>version</i>/locale/ $ msginit -i proftpd.pot -o <i>lang</i>.po -l <i>lang</i> </pre> Then you simply use an editor to edit the generated <code><i>lang</i>.po</code> file, adding in the translated versions of the English messages. There are some good editors out there which greatly aid in editing <code>.po</code> files: <ul> <li><a href="http://code.google.com/p/poeditor/">POEditor</a> <li><a href="http://kbabel.kde.org/">KBabel</a> </ul> <p> <b>Testing a Translation</b><br> Once you think your <code>.po</code> file is ready, you should run some quick checks to make sure. First, compare your <code>.po</code> file against the template <code>.pot</code> file to see if you translated all of the messages in the template. This is accomplished using the <code>msgcmp</code> command: <pre> $ cd proftpd-<i>version</i>/locale/ $ msgcmp <i>lang</i>.po proftpd.pot </pre> <p> Finally, compile your <code>.po</code> file into the machine-specific <code>.mo</code> file; this is what the <code>gettext</code> library uses in the running code: <pre> $ msgfmt --check-format <i>lang</i>.po -o <i>lang</i>.mo </pre> The <code>--check-format</code> option checks that your <code>.po</code> is properly formatted, and can be compiled without errors. <p> <b>Submitting Translations</b><br> Once your <code>.po</code> file has been tested and looks ready, simply open a feature request at: <pre> <a href="http://bugs.proftpd.org/">http://bugs.proftpd.org/</a> </pre> to request that the new translation be added to ProFTPD. Upload your <code>.po</code> file as an attachment to the opened feature request. <p> <b>Keeping Translations Updated</b><br> Note that as ProFTPD is developed, new messages may be added to the template <code>.pot</code> file, or existing messages may be changed slightly. It is important to keep ProFTPD's translations up-to-date. You can help by periodically checking the existing translations: <pre> $ cd proftpd-<i>version</i>/locale/ $ make check </pre> If you see that a language translation is out of date and you can help, simply update the <code>.po</code> file that language, and open a bug request and attach the diff, or send the diff to the ProFTPD developers mailing list. <p> <hr> <font size=2><b><i> © Copyright 2017 The ProFTPD Project<br> All Rights Reserved<br> </i></b></font> <hr> </body> </html>
Close