/usr/share/cagefs-skeleton/opt/cloudlinux/venv/lib/python3.11/site-packages/clwpos
# # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2020 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT # special marker that you can use to mark your error # message as possible to be translated # works in the way similar to gettext # (actually all texts are exported with xgettext utility) # usage example: # from clwpos import gettext as _ # error = _(" My translateable text with %(arguments)s") # underscore and gettext is just a names that xgettext can find and extract # some day we may replace it with real gettext, so please keep it compatible import gettext APP_NAME = 'accelerate-wp' TRANSLATIONS_PATH = '/usr/share/locale' _ = lambda i: i gettext.bindtextdomain(APP_NAME, TRANSLATIONS_PATH) gettext.textdomain(APP_NAME) lang = gettext.translation(APP_NAME, TRANSLATIONS_PATH, fallback=True) lang.install() gettext = lang.gettext
.
Edit
..
Edit
__init__.py
Edit
__pycache__
Edit
billing.py
Edit
bin
Edit
cl_wpos_exceptions.py
Edit
cli_versions
Edit
constants.py
Edit
create_user_uid_dirs.py
Edit
cron.py
Edit
daemon.py
Edit
daemon_base.py
Edit
daemon_config.py
Edit
daemon_redis_lib.py
Edit
daemon_subscription_handler.py
Edit
data_collector_utils.py
Edit
feature_suites
Edit
hooks
Edit
logsetup.py
Edit
migrations
Edit
object_cache
Edit
optimization_features
Edit
papi.py
Edit
parse.py
Edit
php
Edit
redis_configuration_pid_file_cleaner.py
Edit
report_generator.py
Edit
scoped_cache.py
Edit
socket_utils.py
Edit
stats.py
Edit
user
Edit
utils.py
Edit
whmcs_utils.py
Edit
wp_config.py
Edit
wp_utils.py
Edit
wpos_admin.py
Edit
wpos_hooks.py
Edit
wpos_req_scanner.py
Edit