├── i18n ├── cs │ └── LC_MESSAGES │ │ ├── fax.mo │ │ └── fax.po ├── pl │ └── LC_MESSAGES │ │ ├── fax.mo │ │ └── fax.po ├── vi │ └── LC_MESSAGES │ │ └── fax.mo ├── bg_BG │ └── LC_MESSAGES │ │ ├── fax.mo │ │ └── fax.po ├── de_DE │ └── LC_MESSAGES │ │ └── fax.mo ├── es_ES │ └── LC_MESSAGES │ │ └── fax.mo ├── fa_IR │ └── LC_MESSAGES │ │ ├── fax.mo │ │ └── fax.po ├── fr_FR │ └── LC_MESSAGES │ │ └── fax.mo ├── he_IL │ └── LC_MESSAGES │ │ ├── fax.mo │ │ └── fax.po ├── ja_JP │ └── LC_MESSAGES │ │ ├── fax.mo │ │ └── fax.po ├── pt_BR │ └── LC_MESSAGES │ │ └── fax.mo ├── ru_RU │ └── LC_MESSAGES │ │ └── fax.mo ├── zh_CN │ └── LC_MESSAGES │ │ ├── fax.mo │ │ └── fax.po └── fax.pot ├── page.fax.php ├── .gitattributes ├── views ├── page.main.php ├── quickCreate.php ├── view.userman.showpage.php ├── view.form_options.php └── view.coreDIDHook.php ├── Backup.php ├── assets └── js │ └── fax.js ├── Restore.php ├── Api └── Rest │ ├── Fax.php │ └── FaxUsers.php ├── README.md ├── module.xml ├── bin └── fax2mail.php └── functions.inc.php /i18n/cs/LC_MESSAGES/fax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/fax/HEAD/i18n/cs/LC_MESSAGES/fax.mo -------------------------------------------------------------------------------- /i18n/pl/LC_MESSAGES/fax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/fax/HEAD/i18n/pl/LC_MESSAGES/fax.mo -------------------------------------------------------------------------------- /i18n/vi/LC_MESSAGES/fax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/fax/HEAD/i18n/vi/LC_MESSAGES/fax.mo -------------------------------------------------------------------------------- /i18n/bg_BG/LC_MESSAGES/fax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/fax/HEAD/i18n/bg_BG/LC_MESSAGES/fax.mo -------------------------------------------------------------------------------- /i18n/de_DE/LC_MESSAGES/fax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/fax/HEAD/i18n/de_DE/LC_MESSAGES/fax.mo -------------------------------------------------------------------------------- /i18n/es_ES/LC_MESSAGES/fax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/fax/HEAD/i18n/es_ES/LC_MESSAGES/fax.mo -------------------------------------------------------------------------------- /i18n/fa_IR/LC_MESSAGES/fax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/fax/HEAD/i18n/fa_IR/LC_MESSAGES/fax.mo -------------------------------------------------------------------------------- /i18n/fr_FR/LC_MESSAGES/fax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/fax/HEAD/i18n/fr_FR/LC_MESSAGES/fax.mo -------------------------------------------------------------------------------- /i18n/he_IL/LC_MESSAGES/fax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/fax/HEAD/i18n/he_IL/LC_MESSAGES/fax.mo -------------------------------------------------------------------------------- /i18n/ja_JP/LC_MESSAGES/fax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/fax/HEAD/i18n/ja_JP/LC_MESSAGES/fax.mo -------------------------------------------------------------------------------- /i18n/pt_BR/LC_MESSAGES/fax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/fax/HEAD/i18n/pt_BR/LC_MESSAGES/fax.mo -------------------------------------------------------------------------------- /i18n/ru_RU/LC_MESSAGES/fax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/fax/HEAD/i18n/ru_RU/LC_MESSAGES/fax.mo -------------------------------------------------------------------------------- /i18n/zh_CN/LC_MESSAGES/fax.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreePBX/fax/HEAD/i18n/zh_CN/LC_MESSAGES/fax.mo -------------------------------------------------------------------------------- /page.fax.php: -------------------------------------------------------------------------------- 1 | showPage("main"); -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | amp_conf/htdocs/admin/assets/js/pbxlib.js merge=ours 2 | module.xml merge=ours 3 | *.po merge=merge-gettext-po 4 | *.pot merge=merge-gettext-po 5 | *.mo merge=ours 6 | -------------------------------------------------------------------------------- /views/page.main.php: -------------------------------------------------------------------------------- 1 |