├── 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 |
2 |

3 |
4 |
5 |
6 |
7 |
8 | showPage('form_options') ?> 9 |
10 |
11 |
12 |
13 |
14 |
15 | -------------------------------------------------------------------------------- /Backup.php: -------------------------------------------------------------------------------- 1 | $this->FreePBX->Fax->getIncoming(), 8 | 'users' => $this->FreePBX->Fax->listUsers(), 9 | 'settings' => $this->dumpKVStore(), 10 | 'fax_details' => $this->FreePBX->Fax->getSettings(), 11 | 'features' => $this->dumpFeatureCodes() 12 | ]; 13 | $this->addDependency('userman'); 14 | $this->addConfigs($configs); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /assets/js/fax.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | if ($('#system_instance').val() == 'disabled') { 3 | $('#defaultmail').hide(); 4 | } 5 | $('#system_instance').click(function(){ 6 | if ($(this).val() == 'disabled'){ 7 | $('#defaultmail').hide(); 8 | }else{ 9 | $('#defaultmail').show(); 10 | } 11 | }); 12 | }); 13 | 14 | $("#edit").submit(function() { 15 | var maxrate = $("#maxrate").val(); 16 | var minrate = $("#minrate").val(); 17 | 18 | if(parseInt(maxrate) < parseInt(minrate)) { 19 | return warnInvalid($("#maxrate"),_("Maximum transfer rate can not be less than Minimum transfer rate")); 20 | } 21 | }); 22 | -------------------------------------------------------------------------------- /views/quickCreate.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | 6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /Restore.php: -------------------------------------------------------------------------------- 1 | getConfigs(); 9 | $this->processConfigs($configs); 10 | } 11 | 12 | public function processConfigs($configs) 13 | { 14 | foreach ($configs['users'] as $user) 15 | { 16 | $this->FreePBX->Fax->saveUser($user['user'], $user['faxenabled'], $user['faxemail'], $user['faxattachformat']); 17 | } 18 | foreach ($configs['incoming'] as $incoming) 19 | { 20 | $this->FreePBX->Fax->saveIncoming($incoming['cidnum'], $incoming['extension'], $incoming['enabled'] ?? 'false', $incoming['detection'], $incoming['detectionwait'], $incoming['destination'], $incoming['legacy_email'], $incoming['ring']); 21 | } 22 | 23 | $this->importKVStore($configs['settings']); 24 | $this->FreePBX->Fax->restore_fax_settings($configs['fax_details']); 25 | $this->importFeatureCodes($configs['features']); 26 | } 27 | 28 | public function processLegacy($pdo, $data, $tables, $unknownTables){ 29 | $this->restoreLegacyDatabaseKvstore($pdo); 30 | $this->restoreLegacyFeatureCodes($pdo); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Api/Rest/Fax.php: -------------------------------------------------------------------------------- 1 | [ 9 | 'description' => _('Read fax settings'), 10 | ], 11 | 'write:settings' => [ 12 | 'description' => _('Write fax settings'), 13 | ] 14 | ]; 15 | } 16 | public function setupRoutes($app) { 17 | 18 | /** 19 | * @verb GET 20 | * @returns - list of fax settings 21 | * @uri /fax 22 | */ 23 | $app->get('/', function($request, $response, $args) 24 | { 25 | $response->getBody()->write(json_encode(\FreePBX::Fax()->getSettings())); 26 | return $response->withHeader('Content-Type', 'application/json'); 27 | })->add($this->checkReadScopeMiddleware('settings')); 28 | 29 | /** 30 | * @verb GET 31 | * @returns - list of fax related modules that may be installed 32 | * @uri /fax/detect 33 | */ 34 | $app->get('/detect', function($request, $response, $args) 35 | { 36 | $response->getBody()->write(json_encode(\FreePBX::Fax()->faxDetect())); 37 | return $response->withHeader('Content-Type', 'application/json'); 38 | })->add($this->checkReadScopeMiddleware('settings')); 39 | 40 | /** 41 | * Updates the fax settings 42 | * @verb POST 43 | * @returns - the freshly created settings 44 | * @uri /fax 45 | */ 46 | $app->post('/', function($request, $response, $args) 47 | { 48 | $params = $request->getParsedBody(); 49 | $response->getBody()->write(json_encode(\FreePBX::Fax()->setSettings($params))); 50 | return $response->withHeader('Content-Type', 'application/json'); 51 | })->add($this->checkWriteScopeMiddleware('settings')); 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ``` 2 | ______ _____ ______ __ 3 | | ____| | __ \| _ \ \ / / 4 | | |__ _ __ ___ ___| |__) | |_) \ V / 5 | | __| '__/ _ \/ _ \ ___/| _ < > < 6 | | | | | | __/ __/ | | |_) / . \ 7 | |_| |_| \___|\___|_| |____/_/ \_\ 8 | Your Open Source Asterisk PBX GUI Solution 9 | ``` 10 | ### What? 11 | fax 12 | This is a module for [FreePBX©](http://www.freepbx.org/ "FreePBX Home Page"). [FreePBX](http://www.freepbx.org/ "FreePBX Home Page") is an open source GUI (graphical user interface) that controls and manages [Asterisk©](http://www.asterisk.org/ "Asterisk Home Page") (PBX). FreePBX is licensed under GPL. 13 | [FreePBX](http://www.freepbx.org/ "FreePBX Home Page") is a completely modular GUI for Asterisk written in PHP and Javascript. Meaning you can easily write any module you can think of and distribute it free of cost to your clients so that they can take advantage of beneficial features in [Asterisk](http://www.asterisk.org/ "Asterisk Home Page") 14 | 15 | ### Setting up a FreePBX system 16 | [See our WIKI](http://sangomakb.atlassian.net/wiki/spaces/FP/pages/9732130/Install+FreePBX) 17 | ### License 18 | [This modules code is licensed as GPLv3+](https://www.gnu.org/licenses/gpl-3.0.txt) 19 | ### Contributing 20 | To contribute code or modules back into the [FreePBX](http://www.freepbx.org/ "FreePBX Home Page") ecosystem you must fully read our Code License Agreement. We are not able to look at or accept patches or code of any kind until this document is filled out. Please take a look at [http://sangomakb.atlassian.net/wiki/spaces/FP/pages/10682663/Contributor+License+Agreement](http://sangomakb.atlassian.net/wiki/spaces/FP/pages/10682663/Contributor+License+Agreement) for more information 21 | ### Issues 22 | Please file bug reports at http://github.com/FreePBX/issue-tracker/issues -------------------------------------------------------------------------------- /Api/Rest/FaxUsers.php: -------------------------------------------------------------------------------- 1 | [ 9 | 'description' => _('Read fax user settings'), 10 | ], 11 | 'write:users' => [ 12 | 'description' => _('Write fax user settings'), 13 | ] 14 | ]; 15 | } 16 | public function setupRoutes($app) { 17 | /** 18 | * @verb GET 19 | * @returns - a list of users' fax settings 20 | * @uri /fax/users 21 | */ 22 | $app->get('/users', function ($request, $response, $args) { 23 | $users = []; 24 | foreach (\FreePBX::Fax()->getUser() as $user) 25 | { 26 | $users[$user['user']] = $user; 27 | unset($users[$user['user']]['user']); 28 | } 29 | 30 | $users = $users ?: false; 31 | $response->getBody()->write(json_encode($users)); 32 | return $response->withHeader('Content-Type', 'application/json'); 33 | })->add($this->checkReadScopeMiddleware('users')); 34 | 35 | /** 36 | * @verb GET 37 | * @returns - a list of users' fax settings 38 | * @uri /fax/users/:id 39 | */ 40 | $app->get('/users/{id}', function ($request, $response, $args) { 41 | $users = \FreePBX::Fax()->getUser($args['id']); 42 | if (isset($users['user'])) 43 | { 44 | unset($users['user']); 45 | } 46 | $users = $users ?: false; 47 | $response->getBody()->write(json_encode($users)); 48 | return $response->withHeader('Content-Type', 'application/json'); 49 | })->add($this->checkReadScopeMiddleware('users')); 50 | 51 | /** 52 | * @verb PUT 53 | * @uri /fax/users/:id 54 | */ 55 | $app->post('/users/{id}', function ($request, $response, $args) 56 | { 57 | $params = $request->getParsedBody(); 58 | $params['faxemail'] ??= ''; 59 | 60 | if (isset($args['id'], $params['faxenabled'])) 61 | { 62 | $response->getBody()->write(json_encode(\FreePBX::Fax()->saveUser($args['id'] ?? '',$params['faxenabled'] ?? '',$params['faxemail'] ?? ''))); 63 | return $response->withHeader('Content-Type', 'application/json'); 64 | } else { 65 | $response->getBody()->write(json_encode(false)); 66 | return $response->withHeader('Content-Type', 'application/json'); 67 | } 68 | 69 | })->add($this->checkWriteScopeMiddleware('users')); 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /views/view.userman.showpage.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 16 | 17 |
18 |
19 |
20 |
21 |
22 |
23 | 24 | 25 |
26 |
27 | 28 | > 29 | > 30 | 31 | > 32 | 33 | 34 | 35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 | 43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 | 53 | 54 |
55 |
56 | 65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 | 73 |
74 |
75 |
76 | -------------------------------------------------------------------------------- /module.xml: -------------------------------------------------------------------------------- 1 | 2 | fax 3 | standard 4 | Fax Configuration 5 | 17.0.3.5 6 | Sangoma Technologies Corporation 7 | GPLv3+ 8 | https://www.gnu.org/licenses/gpl-3.0.txt 9 | Settings 10 | 11 | Fax Configuration 12 | 13 | Adds configurations, options and GUI for inbound faxing 14 | https://sangomakb.atlassian.net/wiki/spaces/PG/pages/26574994/Fax+Configuration 15 | 16 | *17.0.3.5* FREEI-1529 inbound fax email notification issue fix 17 | *17.0.3.4* bump 18 | *17.0.2* Packaging of ver 17.0.2 19 | *17.0.1* 17.0.1 alpha release 20 | 21 | 22 | 17.0.1 23 | userman ge 17.0 24 | 25 | 26 | 17.0 27 | 28 | 29 | 30 | coreDIDHook 31 | 32 | 33 | usermanDelGroup 34 | usermanAddGroup 35 | usermanUpdateGroup 36 | usermanShowPage 37 | usermanDelUser 38 | usermanAddUser 39 | usermanUpdateUser 40 | 41 | 42 | bulkhandlerGetHeaders 43 | bulkhandlerExport 44 | bulkhandlerImport 45 | 46 | 47 | chownFreepbx 48 | 49 | 50 | destinations 51 | destinations_check 52 | destinations_getdestinfo 53 | destinations_change 54 | destinations_identif 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 |
67 | 68 | 69 | 70 | 71 | 72 | 73 |
74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 |
83 |
84 |
-------------------------------------------------------------------------------- /bin/fax2mail.php: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | true, 'userman' => true]; 5 | include_once '/etc/freepbx.conf'; 6 | \modgettext::push_textdomain("fax"); 7 | 8 | $mod_fax = \FreePBX::Fax(); 9 | 10 | 11 | $from = $mod_fax->getSetting("sender_address"); 12 | $var = ['hostname' => gethostname(), 'fromuser' => _("Fax Service"), 'subject' => '']; 13 | 14 | if (!$from) 15 | { 16 | $var['from_dn'] = "fax@freepbx.pbx"; 17 | } 18 | elseif (preg_match( '/(.*)\s+\<(.*)\>/', (string) $from, $match)) 19 | { 20 | $var['fromuser'] = $match[1]; 21 | $var['from_dn'] = $match[2]; 22 | } 23 | else 24 | { 25 | $var['from_dn'] = $from; 26 | } 27 | 28 | $var = array_merge($var, get_opt()); 29 | 30 | $var['callerid'] = isset($var['callerid']) ? base64_decode($var['callerid']) : ''; 31 | $var['callerid'] = empty($var['callerid']) || $var['callerid'] === true ? '' : $var['callerid'];//prevent callerid from being blank 32 | $var['keep_file'] = !empty($var['delete']) && $var['delete'] == 'true' ? false : true; 33 | $var['remotestationid'] = !empty($var['remotestationid']) ? $var['remotestationid'] : ''; 34 | 35 | if (empty($var['sendto'])) 36 | { 37 | $user = \FreePBX::Userman()->getUserByID($var['user']); 38 | if(empty($user['email']) && !$var['keep_file']) 39 | { 40 | die_fax(_('Email-fax dying, no destination found (User has no email!) and we arent keeping the file!')); 41 | } 42 | 43 | $var['to'] = $user['email']; 44 | $var['attachformat'] = \FreePBX::Userman()->getCombinedModuleSettingByID($var['user'], 'fax', 'attachformat'); 45 | } 46 | else 47 | { 48 | $var['to'] = $var['sendto']; 49 | $user = ["displayname" => _("Fax Recipient")]; 50 | } 51 | 52 | $var['attachformat'] = !empty($var['attachformat']) ? $var['attachformat'] : 'none'; 53 | 54 | //Condition for "Dial System Fax" feature code 55 | if(empty($var['user'])) 56 | { 57 | $var['attachformat'] = 'pdf'; 58 | } 59 | 60 | //double check some of the options 61 | foreach ($var as $k => $v) 62 | { 63 | if (!is_string($k)) 64 | { 65 | continue; 66 | } 67 | switch ($k) 68 | { 69 | case 'file': 70 | if (!file_exists($var['file'])) 71 | { 72 | die_fax(sprintf(_('Email-fax dying, file %s not found!'), $var['file'])); 73 | } 74 | break; 75 | case 'subject': 76 | if (!$var['subject']) 77 | { 78 | if (isset($var['direction']) && $var['direction'] == 'outgoing') 79 | { 80 | if (isset($var['custom_subject']) && !empty($var['custom_subject'])) { 81 | $var['subject'] = $var['custom_subject']; 82 | } else { 83 | $var['subject'] = _('Outgoing fax results'); 84 | } 85 | } 86 | else 87 | { 88 | if ($var['callerid']) 89 | { 90 | $var['subject'] = sprintf(_('New fax from: %s'), $var['callerid']); 91 | } 92 | else 93 | { 94 | $var['subject'] = _('New fax received'); 95 | } 96 | } 97 | } 98 | break; 99 | } 100 | } 101 | 102 | if (isset($var['direction']) && $var['direction'] == 'outgoing') 103 | { 104 | //TODO: Create template 105 | $msg = sprintf(_('Sent to %s'), $var['dest']). "\n"; 106 | $msg .= sprintf(_('Status: %s'), $var['status']). "\n"; 107 | $msg .= sprintf(_('At: %s'), date('r')). "\n"; 108 | $msg .= sprintf(_('On: %s'), $var['hostname']). "\n"; 109 | if (!empty($user['displayname'])) 110 | { 111 | $msg .= sprintf(_('For: %s'), $user['displayname']). "\n"; 112 | } 113 | } 114 | else 115 | { 116 | //TODO: Create template 117 | $callerid = !empty($var['callerid']) && !preg_match('/""\s*<>/',$var['callerid']) ? $var['callerid'] : $var['remotestationid']; 118 | 119 | if (!empty($callerid)) 120 | { 121 | $msg = sprintf(_('Enclosed, please find a new fax from: %s'), $callerid); 122 | } 123 | else 124 | { 125 | $msg = _('Enclosed, please find a new fax'); 126 | } 127 | $msg .= "\n"; 128 | $msg .= sprintf(_('Received & processed: %s'), date('r')) . "\n"; 129 | $msg .= sprintf(_('On: %s'), $var['hostname']) . "\n"; 130 | $msg .= sprintf(_('Via: %s'), $var['dest']) . "\n"; 131 | if (!empty($user['displayname'])) 132 | { 133 | $msg .= sprintf(_('For: %s'), $user['displayname']) . "\n"; 134 | } 135 | } 136 | 137 | $tif = $var['file']; 138 | if(!empty($var['to'])) 139 | { 140 | //build email 141 | $email = new \CI_Email(); 142 | 143 | $email->from($var['from_dn'], $var['fromuser']); 144 | $email->to($var['to']); 145 | $email->subject($var['subject']); 146 | $email->message($msg); 147 | 148 | switch ($var['attachformat']) 149 | { 150 | case 'both': 151 | $pdf = $mod_fax->fax_file_convert('tif2pdf', $var['file'], '', true); 152 | $email->attach($pdf); 153 | $email->attach($tif); 154 | break; 155 | case 'tif': 156 | $email->attach($tif); 157 | break; 158 | case 'pdf': 159 | $pdf = $mod_fax->fax_file_convert('tif2pdf', $var['file'], '', true); 160 | $email->attach($pdf); 161 | break; 162 | case 'none': 163 | break; 164 | } 165 | $email->send(); 166 | } 167 | 168 | if ($var['keep_file'] === false) 169 | { 170 | unlink($tif); 171 | if(isset($pdf)) 172 | { 173 | unlink($pdf); 174 | } 175 | } 176 | 177 | function die_fax($error): never 178 | { 179 | dbug('email-fax', $error); 180 | freepbx_log(FPBX_LOG_ERROR, $error); 181 | die($error); 182 | } 183 | 184 | /** 185 | * Parses $GLOBALS['argv'] for parameters and assigns them to an array. 186 | * 187 | * Supports: 188 | * -e 189 | * -e 190 | * --long-param 191 | * --long-param= 192 | * --long-param 193 | * 194 | * 195 | * @param array $noopt List of parameters without values 196 | */ 197 | function get_opt($noopt = []) { 198 | $result = []; 199 | $params = $GLOBALS['argv']; 200 | 201 | for ($i = 0; $i < $GLOBALS['argc']; $i++) { 202 | $p = $params[$i]; 203 | if (isset($p[0]) && $p[0] == '-') { 204 | $pname = substr((string) $p, 1); 205 | $value = true; 206 | if ($pname[0] == '-') { 207 | // long-opt (--) 208 | $pname = substr($pname, 1); 209 | if (str_contains((string) $p, '=')) { 210 | // value specified inline (--=) 211 | [$pname, $value] = explode('=', substr((string) $p, 2), 2); 212 | } 213 | } 214 | // check if next parameter is a descriptor or a value 215 | $nextparm = $params[$i + 1] ?? []; 216 | if (!in_array($pname, $noopt) && $value === true && $nextparm !== false && isset($nextparm[0]) && $nextparm[0] != '-') { 217 | $value = $params[++$i]; 218 | } 219 | $result[$pname] = $value; 220 | } else { 221 | // param doesn't belong to any option 222 | $result[] = $p; 223 | } 224 | } 225 | return $result; 226 | } 227 | -------------------------------------------------------------------------------- /views/view.form_options.php: -------------------------------------------------------------------------------- 1 | getSettings(); 7 | $fax_detect = $fax->faxDetect(); 8 | $trans_rates = ['9600' => '9600', '12000' => '12000', '14400' => '14400']; 9 | $minrateopts = $maxrateopts = ''; 10 | 11 | foreach($trans_rates as $rate) 12 | { 13 | $minrateopts .= sprintf('', $rate, ((!empty($settings['minrate']) && $rate == $settings['minrate']) ? "SELECTED" : ""), $rate); 14 | $maxrateopts .= sprintf('', $rate, ((!empty($settings['maxrate']) && $rate == $settings['maxrate']) ? "SELECTED" : ""), $rate); 15 | } 16 | 17 | $settings['papersize'] ??= 'letter'; 18 | ?> 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 | 32 |
33 |
34 |
35 |
36 | 37 | 38 |
39 |
40 | "> 41 |
42 |
43 |
44 |
45 |
46 | 47 |
48 |
49 |
50 | 51 | 52 |
53 |
54 |
55 |
56 | 57 | 58 |
59 |
60 | "> 61 |
62 |
63 |
64 |
65 |
66 | 67 |
68 |
69 |
70 | 71 | 72 |
73 |
74 |
75 |
76 | 77 | 78 |
79 |
80 | "> 81 |
82 |
83 |
84 |
85 |
86 | 87 | 88 | '. The second option will display 'Fax User' in the 'From' field in most email clients."));?> 89 | 90 |
91 |
92 |
93 | 94 | 95 |
96 |
97 |
98 |
99 | 100 | 101 |
102 |
103 | "> 104 |
105 |
106 |
107 |
108 |
109 | 110 |
111 |
112 |
113 | 114 | 115 |
116 |
117 |
118 |
119 | 120 | 121 |
122 |
123 | > 124 | 125 | > 126 | 127 |
128 |
129 |
130 |
131 |
132 | 134 |
135 |
136 |
137 | 138 | 139 |
140 |
141 |
142 |
143 | 144 | 145 |
146 |
147 | 150 |
151 |
152 |
153 |
154 |
155 | 156 |
157 |
158 |
159 | 160 | 161 |
162 |
163 |
164 |
165 | 166 | 167 |
168 |
169 | 172 |
173 |
174 |
175 |
176 |
177 | 178 |
179 |
180 |
181 | 182 | 183 |
184 |
185 |
186 |
187 | 188 | 189 |
190 |
191 | > 192 | 193 | > 194 | 195 |
196 |
197 |
198 |
199 |
200 | This specifies the size that should be used if the document does not specify a size.
If the document does specify a size that size will be used.")?>
201 |
202 |
203 |
204 | 205 | 206 | 207 | 208 | 209 |
210 |
211 |
212 |
213 | 214 | 215 |
216 |
217 | > 218 | 219 | > 220 | 221 |
222 |
223 |
224 |
225 |
226 | 227 |
228 |
229 |
230 | 231 | 232 | 233 | 234 | 235 | 236 | hookHtml; 240 | ?> 241 |
242 | -------------------------------------------------------------------------------- /views/view.coreDIDHook.php: -------------------------------------------------------------------------------- 1 | 15 | 16 |
17 |
18 |
19 |
20 |
21 |
22 | 23 | 24 |
25 |
26 | 27 | 28 | '; 29 | 30 | 31 | 40 | > 41 | > 42 | 43 | > 44 | 45 | 46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 | 54 | 55 |
    56 | %s', $txt); 62 | } 63 | unset($fdhelp_list); 64 | ?> 65 |
66 |
67 |
68 |
69 |
70 | 71 | 72 |
" id="fdtype"> 73 |
74 |
75 |
76 |
77 |
78 | 79 | 80 |
81 |
82 | > 83 | 84 | = "1.6.2") && $fax_sip_faxdetect)?'':'disabled'); ?> > 85 | 86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 | 94 | 95 |
    96 |
  • 97 | 98 |
  • 99 |
  • 100 |
101 |
102 |
103 |
104 |
105 | 106 | 107 |
" id="fdring"> 108 |
109 |
110 |
111 |
112 |
113 | 114 | 115 |
116 |
117 | > 118 | 119 | > 120 | 121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 | 129 |
130 |
131 |
132 | 133 | 134 |
" id="fdtime"> 135 |
136 |
137 |
138 |
139 |
140 | 141 | 142 |
143 |
144 | 145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 | 153 |
154 |
155 |
156 | 157 | 158 | 159 | 160 |
" id="fdemail"> 161 |
162 |
163 |
164 |
165 |
166 | 167 | 168 |
169 |
170 | 171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 | PLEASE NOTE: In this version of FreePBX, you can now set the fax destination from a list of destinations. Extensions/Users can be fax enabled in the user/extension screen and set an email address there. This will create a new destination type that can be selected. To upgrade this option to the full destination list, select YES to Detect Faxes and select a destination. After clicking submit, this route will be upgraded. This Legacy option will no longer be available after the change, it is provided to handle legacy migrations from previous versions of FreePBX only."); ?> 179 |
180 |
181 |
182 | 183 | 184 | 185 |
" id="fddest"> 186 |
187 |
188 |
189 |
190 |
191 | 192 | 193 |
194 |
195 | 196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 | 204 |
205 |
206 |
207 | 208 | 209 | -------------------------------------------------------------------------------- /i18n/bg_BG/LC_MESSAGES/fax.po: -------------------------------------------------------------------------------- 1 | # FreePBX language template 2 | # Copyright 2013 Schmooze Com Inc 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: PACKAGE VERSION\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "POT-Creation-Date: 2023-08-08 06:18+0000\n" 9 | "PO-Revision-Date: 2014-07-22 15:38+0200\n" 10 | "Last-Translator: Chavdar \n" 11 | "Language-Team: Bulgarian \n" 12 | "Language: bg\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 17 | "X-Generator: Weblate 1.10-dev\n" 18 | 19 | #: views/view.form_options.php:194 20 | msgid "A4" 21 | msgstr "" 22 | 23 | #: views/view.coreDIDHook.php:178 24 | msgid "" 25 | "Address to email faxes to on fax detection.
PLEASE NOTE: In this " 26 | "version of FreePBX, you can now set the fax destination from a list of " 27 | "destinations. Extensions/Users can be fax enabled in the user/extension " 28 | "screen and set an email address there. This will create a new destination " 29 | "type that can be selected. To upgrade this option to the full destination " 30 | "list, select YES to Detect Faxes and select a destination. After clicking " 31 | "submit, this route will be upgraded. This Legacy option will no longer be " 32 | "available after the change, it is provided to handle legacy migrations from " 33 | "previous versions of FreePBX only." 34 | msgstr "" 35 | 36 | #: fax.i18n.php:8 37 | msgid "Adds configurations, options and GUI for inbound faxing" 38 | msgstr "Предоставя възможност за настройки, опции и GUI на входящи факсове" 39 | 40 | #: views/view.form_options.php:213 41 | msgid "Always Generate Detection Code" 42 | msgstr "" 43 | 44 | #: bin/fax2mail.php:107 45 | #, php-format 46 | msgid "At: %s" 47 | msgstr "" 48 | 49 | #: views/view.userman.showpage.php:52 50 | msgid "Attachment Format" 51 | msgstr "" 52 | 53 | #: views/view.coreDIDHook.php:54 54 | msgid "Attempt to detect faxes on this DID." 55 | msgstr "" 56 | 57 | #: Fax.class.php:376 58 | msgid "Author to pass to tiff2pdf's -a option" 59 | msgstr "" 60 | 61 | #: views/view.userman.showpage.php:63 62 | msgid "Both" 63 | msgstr "" 64 | 65 | #: Fax.class.php:648 views/view.coreDIDHook.php:83 66 | msgid "Dahdi" 67 | msgstr "" 68 | 69 | #: views/view.form_options.php:36 70 | msgid "Default Fax header" 71 | msgstr "" 72 | 73 | #: views/view.form_options.php:56 74 | msgid "Default Local Station Identifier" 75 | msgstr "" 76 | 77 | #: views/view.form_options.php:187 78 | msgid "Default Paper Size" 79 | msgstr "" 80 | 81 | #: views/view.coreDIDHook.php:22 82 | msgid "Detect Faxes" 83 | msgstr "" 84 | 85 | #: Fax.class.php:360 /usr/src/freepbx/fax/fax.i18n.php:12 86 | msgid "Dial System FAX" 87 | msgstr "" 88 | 89 | #: Fax.class.php:380 90 | msgid "Done!" 91 | msgstr "" 92 | 93 | #: Fax.class.php:180 94 | msgid "" 95 | "ERROR: No FAX modules detected!
Fax-related dialplan will NOT be " 96 | "generated.
This module requires spandsp based app_fax (res_fax_spandsp." 97 | "so) to function." 98 | msgstr "" 99 | 100 | #: Fax.class.php:185 101 | msgid "" 102 | "ERROR: No Fax license detected.
Fax-related dialplan will NOT be " 103 | "generated!
This module has detected that Fax for Asterisk is installed " 104 | "without a license.
At least one license is required (it is available for " 105 | "free) and must be installed." 106 | msgstr "" 107 | 108 | #: views/view.form_options.php:99 109 | msgid "Email address" 110 | msgstr "" 111 | 112 | #: views/view.form_options.php:87 113 | msgid "" 114 | "Email address that faxes appear to come from if 'system default' has been " 115 | "chosen as the default fax extension." 116 | msgstr "" 117 | 118 | #: views/view.form_options.php:109 119 | msgid "" 120 | "Email address that faxes are sent to when using the \"Dial System Fax\" " 121 | "feature code. This is also the default email for fax detection in legacy " 122 | "mode, if there are routes still running in this mode that do not have email " 123 | "addresses specified." 124 | msgstr "" 125 | 126 | #: bin/fax2mail.php:72 127 | #, php-format 128 | msgid "Email-fax dying, file %s not found!" 129 | msgstr "" 130 | 131 | #: bin/fax2mail.php:40 132 | msgid "" 133 | "Email-fax dying, no destination found (User has no email!) and we arent " 134 | "keeping the file!" 135 | msgstr "" 136 | 137 | #: views/quickCreate.php:5 138 | msgid "Enable Fax" 139 | msgstr "" 140 | 141 | #: views/view.userman.showpage.php:42 142 | msgid "Enable this user to receive faxes" 143 | msgstr "" 144 | 145 | #: views/view.userman.showpage.php:23 146 | msgid "Enabled" 147 | msgstr "" 148 | 149 | #: bin/fax2mail.php:125 150 | msgid "Enclosed, please find a new fax" 151 | msgstr "" 152 | 153 | #: bin/fax2mail.php:121 154 | #, php-format 155 | msgid "Enclosed, please find a new fax from: %s" 156 | msgstr "" 157 | 158 | #: views/view.form_options.php:119 159 | msgid "Error Correction Mode" 160 | msgstr "" 161 | 162 | #: views/view.form_options.php:132 163 | msgid "" 164 | "Error Correction Mode (ECM) option is used to specify whether\n" 165 | "\t\t\t to use ecm mode or not." 166 | msgstr "" 167 | 168 | #: Fax.class.php:194 Fax.class.php:208 Fax.class.php:652 169 | msgid "Fax" 170 | msgstr "Факс" 171 | 172 | #: fax.i18n.php:4 /usr/src/freepbx/fax/fax.i18n.php:10 173 | msgid "Fax Configuration" 174 | msgstr "Факс Настройки" 175 | 176 | #: Fax.class.php:661 views/view.coreDIDHook.php:191 177 | msgid "Fax Destination" 178 | msgstr "" 179 | 180 | #: Fax.class.php:661 181 | msgid "Fax Detection" 182 | msgstr "" 183 | 184 | #: views/view.coreDIDHook.php:140 185 | msgid "Fax Detection Time" 186 | msgstr "" 187 | 188 | #: Fax.class.php:661 189 | msgid "Fax Detection Wait" 190 | msgstr "" 191 | 192 | #: views/view.coreDIDHook.php:78 193 | msgid "Fax Detection type" 194 | msgstr "" 195 | 196 | #: views/view.coreDIDHook.php:166 197 | msgid "Fax Email Destination" 198 | msgstr "" 199 | 200 | #: Fax.class.php:661 201 | msgid "Fax Enabled" 202 | msgstr "" 203 | 204 | #: views/page.main.php:2 205 | msgid "Fax Options" 206 | msgstr "" 207 | 208 | #: Fax.class.php:794 bin/fax2mail.php:49 209 | msgid "Fax Recipient" 210 | msgstr "" 211 | 212 | #: views/view.coreDIDHook.php:113 213 | msgid "Fax Ring" 214 | msgstr "" 215 | 216 | #: bin/fax2mail.php:12 217 | msgid "Fax Service" 218 | msgstr "" 219 | 220 | #: Fax.class.php:846 221 | #, php-format 222 | msgid "Fax user %s" 223 | msgstr "Факс потребител %s" 224 | 225 | #: bin/fax2mail.php:111 bin/fax2mail.php:133 226 | #, php-format 227 | msgid "For: %s" 228 | msgstr "" 229 | 230 | #: views/view.userman.showpage.php:72 231 | msgid "Formats to convert incoming fax files to before emailing." 232 | msgstr "" 233 | 234 | #: views/view.form_options.php:46 235 | msgid "" 236 | "Header information that is passed to remote side of the fax transmission and " 237 | "is printed on top of every page. This usually contains the name of the " 238 | "person or entity sending the fax." 239 | msgstr "" 240 | 241 | #: Fax.class.php:661 242 | msgid "How long to wait and try to detect fax" 243 | msgstr "" 244 | 245 | #: views/view.coreDIDHook.php:152 246 | msgid "" 247 | "How long to wait and try to detect fax. Please note that callers to a Dahdi " 248 | "channel will hear ringing for this amount of time (i.e. the system wont " 249 | "\"answer\" the call, it will just play ringing)." 250 | msgstr "" 251 | 252 | #: Fax.class.php:824 253 | #, php-format 254 | msgid "Inbound Fax Detection: %s (%s)" 255 | msgstr "Детектиране на Входящ Факс: %s (%s)" 256 | 257 | #: views/view.userman.showpage.php:32 views/view.userman.showpage.php:58 258 | msgid "Inherit" 259 | msgstr "" 260 | 261 | #: Fax.class.php:896 262 | msgid "Invalid Email for Inbound Fax" 263 | msgstr "" 264 | 265 | #: views/view.coreDIDHook.php:43 266 | msgid "Legacy" 267 | msgstr "" 268 | 269 | #: views/view.coreDIDHook.php:57 270 | msgid "" 271 | "Legacy: Same as YES, only you can enter an email address as the destination. " 272 | "This option is ONLY for supporting migrated legacy fax routes. You should " 273 | "upgrade this route by choosing YES, and selecting a valid destination!" 274 | msgstr "" 275 | 276 | #: views/view.form_options.php:192 277 | msgid "Letter" 278 | msgstr "" 279 | 280 | #: views/view.form_options.php:143 281 | msgid "Maximum transfer rate" 282 | msgstr "" 283 | 284 | #: assets/js/fax.js:19 285 | msgid "Maximum transfer rate can not be less than Minimum transfer rate" 286 | msgstr "" 287 | 288 | #: views/view.form_options.php:155 289 | msgid "Maximum transfer rate used during fax rate negotiation." 290 | msgstr "" 291 | 292 | #: views/view.form_options.php:165 293 | msgid "Minimum transfer rate" 294 | msgstr "" 295 | 296 | #: views/view.form_options.php:177 297 | msgid "Minimum transfer rate used during fax rate negotiation." 298 | msgstr "" 299 | 300 | #: bin/fax2mail.php:90 301 | #, php-format 302 | msgid "New fax from: %s" 303 | msgstr "" 304 | 305 | #: bin/fax2mail.php:94 306 | msgid "New fax received" 307 | msgstr "" 308 | 309 | #: views/quickCreate.php:12 views/view.coreDIDHook.php:29 310 | #: views/view.coreDIDHook.php:41 views/view.coreDIDHook.php:120 311 | #: views/view.form_options.php:126 views/view.form_options.php:220 312 | #: views/view.userman.showpage.php:29 313 | msgid "No" 314 | msgstr "" 315 | 316 | #: views/view.coreDIDHook.php:246 317 | msgid "" 318 | "No fax detection methods found or no valid license. Faxing cannot be enabled." 319 | msgstr "" 320 | 321 | #: views/view.coreDIDHook.php:57 322 | msgid "" 323 | "No: No attempts are made to auto-determine the call type; all calls sent to " 324 | "destination set in the 'General' tab. Use this option if this DID is used " 325 | "exclusively for voice OR fax." 326 | msgstr "" 327 | 328 | #: views/view.userman.showpage.php:60 329 | msgid "None" 330 | msgstr "" 331 | 332 | #: bin/fax2mail.php:108 bin/fax2mail.php:129 333 | #, php-format 334 | msgid "On: %s" 335 | msgstr "" 336 | 337 | #: views/view.form_options.php:76 338 | msgid "Outgoing Email address" 339 | msgstr "" 340 | 341 | #: bin/fax2mail.php:83 342 | msgid "Outgoing fax results" 343 | msgstr "" 344 | 345 | #: views/view.userman.showpage.php:61 346 | msgid "PDF" 347 | msgstr "" 348 | 349 | #: Fax.class.php:397 350 | #, php-format 351 | msgid "Page Not Found (%s)!!!!" 352 | msgstr "" 353 | 354 | #: Api/Rest/Fax.php:9 355 | msgid "Read fax settings" 356 | msgstr "" 357 | 358 | #: Api/Rest/FaxUsers.php:9 359 | msgid "Read fax user settings" 360 | msgstr "" 361 | 362 | #: bin/fax2mail.php:128 363 | #, php-format 364 | msgid "Received & processed: %s" 365 | msgstr "" 366 | 367 | #: Fax.class.php:612 368 | msgid "Reset" 369 | msgstr "" 370 | 371 | #: views/view.coreDIDHook.php:85 372 | msgid "SIP" 373 | msgstr "" 374 | 375 | #: views/view.form_options.php:200 376 | msgid "" 377 | "Select the default paper size.
This specifies the size that should be " 378 | "used if the document does not specify a size.
If the document does " 379 | "specify a size that size will be used." 380 | msgstr "" 381 | 382 | #: bin/fax2mail.php:105 383 | #, php-format 384 | msgid "Sent to %s" 385 | msgstr "" 386 | 387 | #: fax.i18n.php:6 388 | msgid "Settings" 389 | msgstr "Настройки" 390 | 391 | #: views/view.coreDIDHook.php:99 392 | msgid "" 393 | "Sip: use sip fax detection (t38). Requires asterisk 1.6.2 or greater and " 394 | "'faxdetect=yes' in the sip config files" 395 | msgstr "" 396 | 397 | #: bin/fax2mail.php:106 398 | #, php-format 399 | msgid "Status: %s" 400 | msgstr "" 401 | 402 | #: Fax.class.php:612 403 | msgid "Submit" 404 | msgstr "" 405 | 406 | #: views/view.userman.showpage.php:62 407 | msgid "TIFF" 408 | msgstr "" 409 | 410 | #: views/view.form_options.php:66 411 | msgid "The outgoing Fax Machine Identifier. This is usually your fax number." 412 | msgstr "" 413 | 414 | #: views/view.form_options.php:88 415 | msgid "" 416 | "This may be formatted as just 'user@example.com', or 'Fax User '. The second option will display 'Fax User' in the 'From' field in most " 418 | "email clients." 419 | msgstr "" 420 | 421 | #: Fax.class.php:661 422 | msgid "Type of fax detection to use (e.g. SIP or DAHDI)" 423 | msgstr "" 424 | 425 | #: views/view.coreDIDHook.php:94 426 | msgid "Type of fax detection to use." 427 | msgstr "" 428 | 429 | #: Fax.class.php:366 430 | msgid "Upgrading configs.." 431 | msgstr "" 432 | 433 | #: Fax.class.php:896 434 | #, php-format 435 | msgid "" 436 | "User Manager users '%s' have the ability to receive faxes but have no email " 437 | "address defined so they will not be able to receive faxes over email," 438 | msgstr "" 439 | 440 | #: bin/fax2mail.php:130 441 | #, php-format 442 | msgid "Via: %s" 443 | msgstr "" 444 | 445 | #: views/view.form_options.php:226 446 | msgid "" 447 | "When no fax modules are detected the module will not generate any detection " 448 | "dialplan by default. If the system is being used with phyical FAX devices, " 449 | "hylafax + iaxmodem, or other outside fax setups you can force the dialplan " 450 | "to be generated here." 451 | msgstr "" 452 | 453 | #: Fax.class.php:661 views/view.coreDIDHook.php:203 454 | msgid "Where to send the faxes" 455 | msgstr "" 456 | 457 | #: views/view.coreDIDHook.php:128 458 | msgid "" 459 | "Whether to ring while attempting to detect fax. If set to no silence will be " 460 | "heard" 461 | msgstr "" 462 | 463 | #: Api/Rest/Fax.php:12 464 | msgid "Write fax settings" 465 | msgstr "" 466 | 467 | #: Api/Rest/FaxUsers.php:12 468 | msgid "Write fax user settings" 469 | msgstr "" 470 | 471 | #: views/quickCreate.php:10 views/view.coreDIDHook.php:28 472 | #: views/view.coreDIDHook.php:40 views/view.coreDIDHook.php:118 473 | #: views/view.form_options.php:124 views/view.form_options.php:218 474 | #: views/view.userman.showpage.php:28 475 | msgid "Yes" 476 | msgstr "" 477 | 478 | #: views/view.coreDIDHook.php:57 479 | msgid "" 480 | "Yes: try to auto determine the type of call; route to the fax destination if " 481 | "call is a fax, otherwise send to regular destination. Use this option if you " 482 | "receive both voice and fax calls on this line" 483 | msgstr "" 484 | 485 | #: views/view.coreDIDHook.php:236 486 | msgid "" 487 | "You have selected Fax Detection on this route. Please select a valid " 488 | "destination to route calls detected as faxes to." 489 | msgstr "" 490 | 491 | #: views/view.form_options.php:25 492 | msgid "" 493 | "Your maximum transfer rate is set to 2400 in certain circumstances this can " 494 | "break faxing" 495 | msgstr "" 496 | 497 | #: views/view.form_options.php:21 498 | msgid "" 499 | "Your minimum transfer rate is set to 2400 in certain circumstances this can " 500 | "break faxing" 501 | msgstr "" 502 | 503 | #: Fax.class.php:648 504 | msgid "Zaptel" 505 | msgstr "" 506 | 507 | #: Fax.class.php:971 508 | #, php-format 509 | msgid "gs not found, not converting %s" 510 | msgstr "" 511 | 512 | #: Fax.class.php:983 513 | #, php-format 514 | msgid "tiff2pdf not found, not converting %s" 515 | msgstr "" 516 | -------------------------------------------------------------------------------- /i18n/fax.pot: -------------------------------------------------------------------------------- 1 | # This file is part of FreePBX. 2 | # 3 | # For licensing information, please see the file named LICENSE located in the module directory 4 | # 5 | # FreePBX language template for fax 6 | # Copyright (C) 2008-2024 Sangoma Technologies, Inc. 7 | # 8 | msgid "" 9 | msgstr "" 10 | "Project-Id-Version: PACKAGE VERSION\n" 11 | "Report-Msgid-Bugs-To: \n" 12 | "POT-Creation-Date: 2024-12-17 05:43-0500\n" 13 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 | "Last-Translator: FULL NAME \n" 15 | "Language-Team: LANGUAGE \n" 16 | "Language: \n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=utf-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | 21 | #: views/view.form_options.php:194 22 | msgid "A4" 23 | msgstr "" 24 | 25 | #: views/view.coreDIDHook.php:178 26 | msgid "" 27 | "Address to email faxes to on fax detection.
PLEASE NOTE: In this " 28 | "version of FreePBX, you can now set the fax destination from a list of " 29 | "destinations. Extensions/Users can be fax enabled in the user/extension " 30 | "screen and set an email address there. This will create a new destination " 31 | "type that can be selected. To upgrade this option to the full destination " 32 | "list, select YES to Detect Faxes and select a destination. After clicking " 33 | "submit, this route will be upgraded. This Legacy option will no longer be " 34 | "available after the change, it is provided to handle legacy migrations from " 35 | "previous versions of FreePBX only." 36 | msgstr "" 37 | 38 | #: fax.i18n.php:8 39 | msgid "Adds configurations, options and GUI for inbound faxing" 40 | msgstr "" 41 | 42 | #: views/view.form_options.php:213 43 | msgid "Always Generate Detection Code" 44 | msgstr "" 45 | 46 | #: bin/fax2mail.php:107 47 | #, php-format 48 | msgid "At: %s" 49 | msgstr "" 50 | 51 | #: views/view.userman.showpage.php:52 52 | msgid "Attachment Format" 53 | msgstr "" 54 | 55 | #: views/view.coreDIDHook.php:54 56 | msgid "Attempt to detect faxes on this DID." 57 | msgstr "" 58 | 59 | #: Fax.class.php:376 60 | msgid "Author to pass to tiff2pdf's -a option" 61 | msgstr "" 62 | 63 | #: views/view.userman.showpage.php:63 64 | msgid "Both" 65 | msgstr "" 66 | 67 | #: Fax.class.php:648 68 | #: views/view.coreDIDHook.php:83 69 | msgid "Dahdi" 70 | msgstr "" 71 | 72 | #: views/view.form_options.php:36 73 | msgid "Default Fax header" 74 | msgstr "" 75 | 76 | #: views/view.form_options.php:56 77 | msgid "Default Local Station Identifier" 78 | msgstr "" 79 | 80 | #: views/view.form_options.php:187 81 | msgid "Default Paper Size" 82 | msgstr "" 83 | 84 | #: views/view.coreDIDHook.php:22 85 | msgid "Detect Faxes" 86 | msgstr "" 87 | 88 | #: Fax.class.php:360 /usr/src/freepbx/fax/fax.i18n.php:12 89 | msgid "Dial System FAX" 90 | msgstr "" 91 | 92 | #: Fax.class.php:380 93 | msgid "Done!" 94 | msgstr "" 95 | 96 | #: Fax.class.php:180 97 | msgid "" 98 | "ERROR: No FAX modules detected!
Fax-related dialplan will NOT be " 99 | "generated.
This module requires spandsp based app_fax (res_fax_spandsp." 100 | "so) to function." 101 | msgstr "" 102 | 103 | #: Fax.class.php:185 104 | msgid "" 105 | "ERROR: No Fax license detected.
Fax-related dialplan will NOT be " 106 | "generated!
This module has detected that Fax for Asterisk is installed " 107 | "without a license.
At least one license is required (it is available for " 108 | "free) and must be installed." 109 | msgstr "" 110 | 111 | #: views/view.form_options.php:99 112 | msgid "Email address" 113 | msgstr "" 114 | 115 | #: views/view.form_options.php:87 116 | msgid "" 117 | "Email address that faxes appear to come from if 'system default' has been " 118 | "chosen as the default fax extension." 119 | msgstr "" 120 | 121 | #: views/view.form_options.php:109 122 | msgid "" 123 | "Email address that faxes are sent to when using the \"Dial System Fax\" " 124 | "feature code. This is also the default email for fax detection in legacy " 125 | "mode, if there are routes still running in this mode that do not have email " 126 | "addresses specified." 127 | msgstr "" 128 | 129 | #: bin/fax2mail.php:72 130 | #, php-format 131 | msgid "Email-fax dying, file %s not found!" 132 | msgstr "" 133 | 134 | #: bin/fax2mail.php:40 135 | msgid "" 136 | "Email-fax dying, no destination found (User has no email!) and we arent " 137 | "keeping the file!" 138 | msgstr "" 139 | 140 | #: views/quickCreate.php:5 141 | msgid "Enable Fax" 142 | msgstr "" 143 | 144 | #: views/view.userman.showpage.php:42 145 | msgid "Enable this user to receive faxes" 146 | msgstr "" 147 | 148 | #: views/view.userman.showpage.php:23 149 | msgid "Enabled" 150 | msgstr "" 151 | 152 | #: bin/fax2mail.php:125 153 | msgid "Enclosed, please find a new fax" 154 | msgstr "" 155 | 156 | #: bin/fax2mail.php:121 157 | #, php-format 158 | msgid "Enclosed, please find a new fax from: %s" 159 | msgstr "" 160 | 161 | #: views/view.form_options.php:119 162 | msgid "Error Correction Mode" 163 | msgstr "" 164 | 165 | #: views/view.form_options.php:132 166 | msgid "" 167 | "Error Correction Mode (ECM) option is used to specify whether\n" 168 | "\t\t\t to use ecm mode or not." 169 | msgstr "" 170 | 171 | #: Fax.class.php:194 172 | #: Fax.class.php:208 173 | #: Fax.class.php:652 174 | msgid "Fax" 175 | msgstr "" 176 | 177 | #: fax.i18n.php:4 /usr/src/freepbx/fax/fax.i18n.php:10 178 | msgid "Fax Configuration" 179 | msgstr "" 180 | 181 | #: Fax.class.php:661 182 | #: views/view.coreDIDHook.php:191 183 | msgid "Fax Destination" 184 | msgstr "" 185 | 186 | #: Fax.class.php:661 187 | msgid "Fax Detection" 188 | msgstr "" 189 | 190 | #: views/view.coreDIDHook.php:140 191 | msgid "Fax Detection Time" 192 | msgstr "" 193 | 194 | #: Fax.class.php:661 195 | msgid "Fax Detection Wait" 196 | msgstr "" 197 | 198 | #: views/view.coreDIDHook.php:78 199 | msgid "Fax Detection type" 200 | msgstr "" 201 | 202 | #: views/view.coreDIDHook.php:166 203 | msgid "Fax Email Destination" 204 | msgstr "" 205 | 206 | #: Fax.class.php:661 207 | msgid "Fax Enabled" 208 | msgstr "" 209 | 210 | #: views/page.main.php:2 211 | msgid "Fax Options" 212 | msgstr "" 213 | 214 | #: Fax.class.php:794 215 | #: bin/fax2mail.php:49 216 | msgid "Fax Recipient" 217 | msgstr "" 218 | 219 | #: views/view.coreDIDHook.php:113 220 | msgid "Fax Ring" 221 | msgstr "" 222 | 223 | #: bin/fax2mail.php:12 224 | msgid "Fax Service" 225 | msgstr "" 226 | 227 | #: Fax.class.php:846 228 | #, php-format 229 | msgid "Fax user %s" 230 | msgstr "" 231 | 232 | #: bin/fax2mail.php:111 233 | #: bin/fax2mail.php:133 234 | #, php-format 235 | msgid "For: %s" 236 | msgstr "" 237 | 238 | #: views/view.userman.showpage.php:72 239 | msgid "Formats to convert incoming fax files to before emailing." 240 | msgstr "" 241 | 242 | #: views/view.form_options.php:46 243 | msgid "" 244 | "Header information that is passed to remote side of the fax transmission and " 245 | "is printed on top of every page. This usually contains the name of the " 246 | "person or entity sending the fax." 247 | msgstr "" 248 | 249 | #: Fax.class.php:661 250 | msgid "How long to wait and try to detect fax" 251 | msgstr "" 252 | 253 | #: views/view.coreDIDHook.php:152 254 | msgid "" 255 | "How long to wait and try to detect fax. Please note that callers to a Dahdi " 256 | "channel will hear ringing for this amount of time (i.e. the system wont " 257 | "\"answer\" the call, it will just play ringing)." 258 | msgstr "" 259 | 260 | #: Fax.class.php:824 261 | #, php-format 262 | msgid "Inbound Fax Detection: %s (%s)" 263 | msgstr "" 264 | 265 | #: views/view.userman.showpage.php:32 266 | #: views/view.userman.showpage.php:58 267 | msgid "Inherit" 268 | msgstr "" 269 | 270 | #: Fax.class.php:896 271 | msgid "Invalid Email for Inbound Fax" 272 | msgstr "" 273 | 274 | #: views/view.coreDIDHook.php:43 275 | msgid "Legacy" 276 | msgstr "" 277 | 278 | #: views/view.coreDIDHook.php:57 279 | msgid "" 280 | "Legacy: Same as YES, only you can enter an email address as the destination. " 281 | "This option is ONLY for supporting migrated legacy fax routes. You should " 282 | "upgrade this route by choosing YES, and selecting a valid destination!" 283 | msgstr "" 284 | 285 | #: views/view.form_options.php:192 286 | msgid "Letter" 287 | msgstr "" 288 | 289 | #: views/view.form_options.php:143 290 | msgid "Maximum transfer rate" 291 | msgstr "" 292 | 293 | #: assets/js/fax.js:19 294 | msgid "Maximum transfer rate can not be less than Minimum transfer rate" 295 | msgstr "" 296 | 297 | #: views/view.form_options.php:155 298 | msgid "Maximum transfer rate used during fax rate negotiation." 299 | msgstr "" 300 | 301 | #: views/view.form_options.php:165 302 | msgid "Minimum transfer rate" 303 | msgstr "" 304 | 305 | #: views/view.form_options.php:177 306 | msgid "Minimum transfer rate used during fax rate negotiation." 307 | msgstr "" 308 | 309 | #: bin/fax2mail.php:90 310 | #, php-format 311 | msgid "New fax from: %s" 312 | msgstr "" 313 | 314 | #: bin/fax2mail.php:94 315 | msgid "New fax received" 316 | msgstr "" 317 | 318 | #: views/quickCreate.php:12 319 | #: views/view.coreDIDHook.php:29 320 | #: views/view.coreDIDHook.php:41 321 | #: views/view.coreDIDHook.php:120 322 | #: views/view.form_options.php:126 323 | #: views/view.form_options.php:220 324 | #: views/view.userman.showpage.php:29 325 | msgid "No" 326 | msgstr "" 327 | 328 | #: views/view.coreDIDHook.php:246 329 | msgid "" 330 | "No fax detection methods found or no valid license. Faxing cannot be enabled." 331 | msgstr "" 332 | 333 | #: views/view.coreDIDHook.php:57 334 | msgid "" 335 | "No: No attempts are made to auto-determine the call type; all calls sent to " 336 | "destination set in the 'General' tab. Use this option if this DID is used " 337 | "exclusively for voice OR fax." 338 | msgstr "" 339 | 340 | #: views/view.userman.showpage.php:60 341 | msgid "None" 342 | msgstr "" 343 | 344 | #: bin/fax2mail.php:108 345 | #: bin/fax2mail.php:129 346 | #, php-format 347 | msgid "On: %s" 348 | msgstr "" 349 | 350 | #: views/view.form_options.php:76 351 | msgid "Outgoing Email address" 352 | msgstr "" 353 | 354 | #: bin/fax2mail.php:83 355 | msgid "Outgoing fax results" 356 | msgstr "" 357 | 358 | #: views/view.userman.showpage.php:61 359 | msgid "PDF" 360 | msgstr "" 361 | 362 | #: Fax.class.php:397 363 | #, php-format 364 | msgid "Page Not Found (%s)!!!!" 365 | msgstr "" 366 | 367 | #: Api/Rest/Fax.php:9 368 | msgid "Read fax settings" 369 | msgstr "" 370 | 371 | #: Api/Rest/FaxUsers.php:9 372 | msgid "Read fax user settings" 373 | msgstr "" 374 | 375 | #: bin/fax2mail.php:128 376 | #, php-format 377 | msgid "Received & processed: %s" 378 | msgstr "" 379 | 380 | #: Fax.class.php:612 381 | msgid "Reset" 382 | msgstr "" 383 | 384 | #: views/view.coreDIDHook.php:85 385 | msgid "SIP" 386 | msgstr "" 387 | 388 | #: views/view.form_options.php:200 389 | msgid "" 390 | "Select the default paper size.
This specifies the size that should be " 391 | "used if the document does not specify a size.
If the document does " 392 | "specify a size that size will be used." 393 | msgstr "" 394 | 395 | #: bin/fax2mail.php:105 396 | #, php-format 397 | msgid "Sent to %s" 398 | msgstr "" 399 | 400 | #: fax.i18n.php:6 401 | msgid "Settings" 402 | msgstr "" 403 | 404 | #: views/view.coreDIDHook.php:99 405 | msgid "" 406 | "Sip: use sip fax detection (t38). Requires asterisk 1.6.2 or greater and " 407 | "'faxdetect=yes' in the sip config files" 408 | msgstr "" 409 | 410 | #: bin/fax2mail.php:106 411 | #, php-format 412 | msgid "Status: %s" 413 | msgstr "" 414 | 415 | #: Fax.class.php:612 416 | msgid "Submit" 417 | msgstr "" 418 | 419 | #: views/view.userman.showpage.php:62 420 | msgid "TIFF" 421 | msgstr "" 422 | 423 | #: views/view.form_options.php:66 424 | msgid "The outgoing Fax Machine Identifier. This is usually your fax number." 425 | msgstr "" 426 | 427 | #: views/view.form_options.php:88 428 | msgid "" 429 | "This may be formatted as just 'user@example.com', or 'Fax User '. The second option will display 'Fax User' in the 'From' field in most " 431 | "email clients." 432 | msgstr "" 433 | 434 | #: Fax.class.php:661 435 | msgid "Type of fax detection to use (e.g. SIP or DAHDI)" 436 | msgstr "" 437 | 438 | #: views/view.coreDIDHook.php:94 439 | msgid "Type of fax detection to use." 440 | msgstr "" 441 | 442 | #: Fax.class.php:366 443 | msgid "Upgrading configs.." 444 | msgstr "" 445 | 446 | #: Fax.class.php:896 447 | #, php-format 448 | msgid "" 449 | "User Manager users '%s' have the ability to receive faxes but have no email " 450 | "address defined so they will not be able to receive faxes over email," 451 | msgstr "" 452 | 453 | #: bin/fax2mail.php:130 454 | #, php-format 455 | msgid "Via: %s" 456 | msgstr "" 457 | 458 | #: views/view.form_options.php:226 459 | msgid "" 460 | "When no fax modules are detected the module will not generate any detection " 461 | "dialplan by default. If the system is being used with phyical FAX devices, " 462 | "hylafax + iaxmodem, or other outside fax setups you can force the dialplan " 463 | "to be generated here." 464 | msgstr "" 465 | 466 | #: Fax.class.php:661 467 | #: views/view.coreDIDHook.php:203 468 | msgid "Where to send the faxes" 469 | msgstr "" 470 | 471 | #: views/view.coreDIDHook.php:128 472 | msgid "" 473 | "Whether to ring while attempting to detect fax. If set to no silence will be " 474 | "heard" 475 | msgstr "" 476 | 477 | #: Api/Rest/Fax.php:12 478 | msgid "Write fax settings" 479 | msgstr "" 480 | 481 | #: Api/Rest/FaxUsers.php:12 482 | msgid "Write fax user settings" 483 | msgstr "" 484 | 485 | #: views/quickCreate.php:10 486 | #: views/view.coreDIDHook.php:28 487 | #: views/view.coreDIDHook.php:40 488 | #: views/view.coreDIDHook.php:118 489 | #: views/view.form_options.php:124 490 | #: views/view.form_options.php:218 491 | #: views/view.userman.showpage.php:28 492 | msgid "Yes" 493 | msgstr "" 494 | 495 | #: views/view.coreDIDHook.php:57 496 | msgid "" 497 | "Yes: try to auto determine the type of call; route to the fax destination if " 498 | "call is a fax, otherwise send to regular destination. Use this option if you " 499 | "receive both voice and fax calls on this line" 500 | msgstr "" 501 | 502 | #: views/view.coreDIDHook.php:236 503 | msgid "" 504 | "You have selected Fax Detection on this route. Please select a valid " 505 | "destination to route calls detected as faxes to." 506 | msgstr "" 507 | 508 | #: views/view.form_options.php:25 509 | msgid "" 510 | "Your maximum transfer rate is set to 2400 in certain circumstances this can " 511 | "break faxing" 512 | msgstr "" 513 | 514 | #: views/view.form_options.php:21 515 | msgid "" 516 | "Your minimum transfer rate is set to 2400 in certain circumstances this can " 517 | "break faxing" 518 | msgstr "" 519 | 520 | #: Fax.class.php:648 521 | msgid "Zaptel" 522 | msgstr "" 523 | 524 | #: Fax.class.php:971 525 | #, php-format 526 | msgid "gs not found, not converting %s" 527 | msgstr "" 528 | 529 | #: Fax.class.php:983 530 | #, php-format 531 | msgid "tiff2pdf not found, not converting %s" 532 | msgstr "" 533 | -------------------------------------------------------------------------------- /i18n/cs/LC_MESSAGES/fax.po: -------------------------------------------------------------------------------- 1 | # This file is part of FreePBX. 2 | # 3 | # For licensing information, please see the file named LICENSE located in the module directory 4 | # 5 | # FreePBX language template for fax 6 | # Copyright (C) 2008-2017 Sangoma Technologies, Inc. 7 | # 8 | msgid "" 9 | msgstr "" 10 | "Project-Id-Version: PACKAGE VERSION\n" 11 | "Report-Msgid-Bugs-To: \n" 12 | "POT-Creation-Date: 2023-08-08 06:18+0000\n" 13 | "PO-Revision-Date: 2018-01-03 15:36+0200\n" 14 | "Last-Translator: Petr \n" 15 | "Language-Team: Czech \n" 16 | "Language: cs\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 21 | "X-Generator: Weblate 2.4\n" 22 | 23 | #: views/view.form_options.php:194 24 | msgid "A4" 25 | msgstr "A4" 26 | 27 | #: views/view.coreDIDHook.php:178 28 | msgid "" 29 | "Address to email faxes to on fax detection.
PLEASE NOTE: In this " 30 | "version of FreePBX, you can now set the fax destination from a list of " 31 | "destinations. Extensions/Users can be fax enabled in the user/extension " 32 | "screen and set an email address there. This will create a new destination " 33 | "type that can be selected. To upgrade this option to the full destination " 34 | "list, select YES to Detect Faxes and select a destination. After clicking " 35 | "submit, this route will be upgraded. This Legacy option will no longer be " 36 | "available after the change, it is provided to handle legacy migrations from " 37 | "previous versions of FreePBX only." 38 | msgstr "" 39 | 40 | #: fax.i18n.php:8 41 | msgid "Adds configurations, options and GUI for inbound faxing" 42 | msgstr "" 43 | 44 | #: views/view.form_options.php:213 45 | msgid "Always Generate Detection Code" 46 | msgstr "" 47 | 48 | #: bin/fax2mail.php:107 49 | #, php-format 50 | msgid "At: %s" 51 | msgstr "" 52 | 53 | #: views/view.userman.showpage.php:52 54 | msgid "Attachment Format" 55 | msgstr "" 56 | 57 | #: views/view.coreDIDHook.php:54 58 | msgid "Attempt to detect faxes on this DID." 59 | msgstr "" 60 | 61 | #: Fax.class.php:376 62 | msgid "Author to pass to tiff2pdf's -a option" 63 | msgstr "" 64 | 65 | #: views/view.userman.showpage.php:63 66 | msgid "Both" 67 | msgstr "oba" 68 | 69 | #: Fax.class.php:648 views/view.coreDIDHook.php:83 70 | msgid "Dahdi" 71 | msgstr "DAHDI" 72 | 73 | #: views/view.form_options.php:36 74 | msgid "Default Fax header" 75 | msgstr "Výchozí hlavička Faxu" 76 | 77 | #: views/view.form_options.php:56 78 | msgid "Default Local Station Identifier" 79 | msgstr "" 80 | 81 | #: views/view.form_options.php:187 82 | msgid "Default Paper Size" 83 | msgstr "Výchozí velikost papíru" 84 | 85 | #: views/view.coreDIDHook.php:22 86 | msgid "Detect Faxes" 87 | msgstr "Detekování faxu" 88 | 89 | #: Fax.class.php:360 /usr/src/freepbx/fax/fax.i18n.php:12 90 | msgid "Dial System FAX" 91 | msgstr "" 92 | 93 | #: Fax.class.php:380 94 | msgid "Done!" 95 | msgstr "" 96 | 97 | #: Fax.class.php:180 98 | msgid "" 99 | "ERROR: No FAX modules detected!
Fax-related dialplan will NOT be " 100 | "generated.
This module requires spandsp based app_fax (res_fax_spandsp." 101 | "so) to function." 102 | msgstr "" 103 | 104 | #: Fax.class.php:185 105 | msgid "" 106 | "ERROR: No Fax license detected.
Fax-related dialplan will NOT be " 107 | "generated!
This module has detected that Fax for Asterisk is installed " 108 | "without a license.
At least one license is required (it is available for " 109 | "free) and must be installed." 110 | msgstr "" 111 | 112 | #: views/view.form_options.php:99 113 | msgid "Email address" 114 | msgstr "" 115 | 116 | #: views/view.form_options.php:87 117 | msgid "" 118 | "Email address that faxes appear to come from if 'system default' has been " 119 | "chosen as the default fax extension." 120 | msgstr "" 121 | 122 | #: views/view.form_options.php:109 123 | msgid "" 124 | "Email address that faxes are sent to when using the \"Dial System Fax\" " 125 | "feature code. This is also the default email for fax detection in legacy " 126 | "mode, if there are routes still running in this mode that do not have email " 127 | "addresses specified." 128 | msgstr "" 129 | 130 | #: bin/fax2mail.php:72 131 | #, php-format 132 | msgid "Email-fax dying, file %s not found!" 133 | msgstr "" 134 | 135 | #: bin/fax2mail.php:40 136 | msgid "" 137 | "Email-fax dying, no destination found (User has no email!) and we arent " 138 | "keeping the file!" 139 | msgstr "" 140 | 141 | #: views/quickCreate.php:5 142 | msgid "Enable Fax" 143 | msgstr "Povolit fax" 144 | 145 | #: views/view.userman.showpage.php:42 146 | msgid "Enable this user to receive faxes" 147 | msgstr "" 148 | 149 | #: views/view.userman.showpage.php:23 150 | msgid "Enabled" 151 | msgstr "Povoleno" 152 | 153 | #: bin/fax2mail.php:125 154 | msgid "Enclosed, please find a new fax" 155 | msgstr "" 156 | 157 | #: bin/fax2mail.php:121 158 | #, php-format 159 | msgid "Enclosed, please find a new fax from: %s" 160 | msgstr "" 161 | 162 | #: views/view.form_options.php:119 163 | msgid "Error Correction Mode" 164 | msgstr "" 165 | 166 | #: views/view.form_options.php:132 167 | msgid "" 168 | "Error Correction Mode (ECM) option is used to specify whether\n" 169 | "\t\t\t to use ecm mode or not." 170 | msgstr "" 171 | 172 | #: Fax.class.php:194 Fax.class.php:208 Fax.class.php:652 173 | msgid "Fax" 174 | msgstr "Fax" 175 | 176 | #: fax.i18n.php:4 /usr/src/freepbx/fax/fax.i18n.php:10 177 | msgid "Fax Configuration" 178 | msgstr "Konfigurace faxu" 179 | 180 | #: Fax.class.php:661 views/view.coreDIDHook.php:191 181 | msgid "Fax Destination" 182 | msgstr "" 183 | 184 | #: Fax.class.php:661 185 | msgid "Fax Detection" 186 | msgstr "" 187 | 188 | #: views/view.coreDIDHook.php:140 189 | msgid "Fax Detection Time" 190 | msgstr "" 191 | 192 | #: Fax.class.php:661 193 | msgid "Fax Detection Wait" 194 | msgstr "" 195 | 196 | #: views/view.coreDIDHook.php:78 197 | msgid "Fax Detection type" 198 | msgstr "" 199 | 200 | #: views/view.coreDIDHook.php:166 201 | msgid "Fax Email Destination" 202 | msgstr "" 203 | 204 | #: Fax.class.php:661 205 | msgid "Fax Enabled" 206 | msgstr "Fax povolen" 207 | 208 | #: views/page.main.php:2 209 | msgid "Fax Options" 210 | msgstr "Možnosti faxu" 211 | 212 | #: Fax.class.php:794 bin/fax2mail.php:49 213 | msgid "Fax Recipient" 214 | msgstr "" 215 | 216 | #: views/view.coreDIDHook.php:113 217 | msgid "Fax Ring" 218 | msgstr "" 219 | 220 | #: bin/fax2mail.php:12 221 | msgid "Fax Service" 222 | msgstr "" 223 | 224 | #: Fax.class.php:846 225 | #, php-format 226 | msgid "Fax user %s" 227 | msgstr "" 228 | 229 | #: bin/fax2mail.php:111 bin/fax2mail.php:133 230 | #, php-format 231 | msgid "For: %s" 232 | msgstr "" 233 | 234 | #: views/view.userman.showpage.php:72 235 | msgid "Formats to convert incoming fax files to before emailing." 236 | msgstr "" 237 | 238 | #: views/view.form_options.php:46 239 | msgid "" 240 | "Header information that is passed to remote side of the fax transmission and " 241 | "is printed on top of every page. This usually contains the name of the " 242 | "person or entity sending the fax." 243 | msgstr "" 244 | 245 | #: Fax.class.php:661 246 | msgid "How long to wait and try to detect fax" 247 | msgstr "Jak dlouho čekat a detekovat fax" 248 | 249 | #: views/view.coreDIDHook.php:152 250 | msgid "" 251 | "How long to wait and try to detect fax. Please note that callers to a Dahdi " 252 | "channel will hear ringing for this amount of time (i.e. the system wont " 253 | "\"answer\" the call, it will just play ringing)." 254 | msgstr "" 255 | 256 | #: Fax.class.php:824 257 | #, php-format 258 | msgid "Inbound Fax Detection: %s (%s)" 259 | msgstr "" 260 | 261 | #: views/view.userman.showpage.php:32 views/view.userman.showpage.php:58 262 | msgid "Inherit" 263 | msgstr "Zdědit" 264 | 265 | #: Fax.class.php:896 266 | msgid "Invalid Email for Inbound Fax" 267 | msgstr "" 268 | 269 | #: views/view.coreDIDHook.php:43 270 | msgid "Legacy" 271 | msgstr "" 272 | 273 | #: views/view.coreDIDHook.php:57 274 | msgid "" 275 | "Legacy: Same as YES, only you can enter an email address as the destination. " 276 | "This option is ONLY for supporting migrated legacy fax routes. You should " 277 | "upgrade this route by choosing YES, and selecting a valid destination!" 278 | msgstr "" 279 | 280 | #: views/view.form_options.php:192 281 | msgid "Letter" 282 | msgstr "" 283 | 284 | #: views/view.form_options.php:143 285 | msgid "Maximum transfer rate" 286 | msgstr "" 287 | 288 | #: assets/js/fax.js:19 289 | msgid "Maximum transfer rate can not be less than Minimum transfer rate" 290 | msgstr "" 291 | 292 | #: views/view.form_options.php:155 293 | msgid "Maximum transfer rate used during fax rate negotiation." 294 | msgstr "" 295 | 296 | #: views/view.form_options.php:165 297 | msgid "Minimum transfer rate" 298 | msgstr "" 299 | 300 | #: views/view.form_options.php:177 301 | msgid "Minimum transfer rate used during fax rate negotiation." 302 | msgstr "" 303 | 304 | #: bin/fax2mail.php:90 305 | #, php-format 306 | msgid "New fax from: %s" 307 | msgstr "" 308 | 309 | #: bin/fax2mail.php:94 310 | msgid "New fax received" 311 | msgstr "" 312 | 313 | #: views/quickCreate.php:12 views/view.coreDIDHook.php:29 314 | #: views/view.coreDIDHook.php:41 views/view.coreDIDHook.php:120 315 | #: views/view.form_options.php:126 views/view.form_options.php:220 316 | #: views/view.userman.showpage.php:29 317 | msgid "No" 318 | msgstr "Ne" 319 | 320 | #: views/view.coreDIDHook.php:246 321 | msgid "" 322 | "No fax detection methods found or no valid license. Faxing cannot be enabled." 323 | msgstr "" 324 | 325 | #: views/view.coreDIDHook.php:57 326 | msgid "" 327 | "No: No attempts are made to auto-determine the call type; all calls sent to " 328 | "destination set in the 'General' tab. Use this option if this DID is used " 329 | "exclusively for voice OR fax." 330 | msgstr "" 331 | 332 | #: views/view.userman.showpage.php:60 333 | msgid "None" 334 | msgstr "" 335 | 336 | #: bin/fax2mail.php:108 bin/fax2mail.php:129 337 | #, php-format 338 | msgid "On: %s" 339 | msgstr "" 340 | 341 | #: views/view.form_options.php:76 342 | msgid "Outgoing Email address" 343 | msgstr "" 344 | 345 | #: bin/fax2mail.php:83 346 | msgid "Outgoing fax results" 347 | msgstr "" 348 | 349 | #: views/view.userman.showpage.php:61 350 | msgid "PDF" 351 | msgstr "PDF" 352 | 353 | #: Fax.class.php:397 354 | #, php-format 355 | msgid "Page Not Found (%s)!!!!" 356 | msgstr "" 357 | 358 | #: Api/Rest/Fax.php:9 359 | msgid "Read fax settings" 360 | msgstr "" 361 | 362 | #: Api/Rest/FaxUsers.php:9 363 | msgid "Read fax user settings" 364 | msgstr "" 365 | 366 | #: bin/fax2mail.php:128 367 | #, php-format 368 | msgid "Received & processed: %s" 369 | msgstr "" 370 | 371 | #: Fax.class.php:612 372 | msgid "Reset" 373 | msgstr "" 374 | 375 | #: views/view.coreDIDHook.php:85 376 | msgid "SIP" 377 | msgstr "SIP" 378 | 379 | #: views/view.form_options.php:200 380 | msgid "" 381 | "Select the default paper size.
This specifies the size that should be " 382 | "used if the document does not specify a size.
If the document does " 383 | "specify a size that size will be used." 384 | msgstr "" 385 | 386 | #: bin/fax2mail.php:105 387 | #, php-format 388 | msgid "Sent to %s" 389 | msgstr "" 390 | 391 | #: fax.i18n.php:6 392 | msgid "Settings" 393 | msgstr "Nastavení" 394 | 395 | #: views/view.coreDIDHook.php:99 396 | msgid "" 397 | "Sip: use sip fax detection (t38). Requires asterisk 1.6.2 or greater and " 398 | "'faxdetect=yes' in the sip config files" 399 | msgstr "" 400 | 401 | #: bin/fax2mail.php:106 402 | #, php-format 403 | msgid "Status: %s" 404 | msgstr "" 405 | 406 | #: Fax.class.php:612 407 | msgid "Submit" 408 | msgstr "Potvrdit" 409 | 410 | #: views/view.userman.showpage.php:62 411 | msgid "TIFF" 412 | msgstr "TIFF" 413 | 414 | #: views/view.form_options.php:66 415 | msgid "The outgoing Fax Machine Identifier. This is usually your fax number." 416 | msgstr "" 417 | 418 | #: views/view.form_options.php:88 419 | msgid "" 420 | "This may be formatted as just 'user@example.com', or 'Fax User '. The second option will display 'Fax User' in the 'From' field in most " 422 | "email clients." 423 | msgstr "" 424 | 425 | #: Fax.class.php:661 426 | msgid "Type of fax detection to use (e.g. SIP or DAHDI)" 427 | msgstr "" 428 | 429 | #: views/view.coreDIDHook.php:94 430 | msgid "Type of fax detection to use." 431 | msgstr "" 432 | 433 | #: Fax.class.php:366 434 | msgid "Upgrading configs.." 435 | msgstr "" 436 | 437 | #: Fax.class.php:896 438 | #, php-format 439 | msgid "" 440 | "User Manager users '%s' have the ability to receive faxes but have no email " 441 | "address defined so they will not be able to receive faxes over email," 442 | msgstr "" 443 | 444 | #: bin/fax2mail.php:130 445 | #, php-format 446 | msgid "Via: %s" 447 | msgstr "" 448 | 449 | #: views/view.form_options.php:226 450 | msgid "" 451 | "When no fax modules are detected the module will not generate any detection " 452 | "dialplan by default. If the system is being used with phyical FAX devices, " 453 | "hylafax + iaxmodem, or other outside fax setups you can force the dialplan " 454 | "to be generated here." 455 | msgstr "" 456 | 457 | #: Fax.class.php:661 views/view.coreDIDHook.php:203 458 | msgid "Where to send the faxes" 459 | msgstr "" 460 | 461 | #: views/view.coreDIDHook.php:128 462 | msgid "" 463 | "Whether to ring while attempting to detect fax. If set to no silence will be " 464 | "heard" 465 | msgstr "" 466 | 467 | #: Api/Rest/Fax.php:12 468 | msgid "Write fax settings" 469 | msgstr "" 470 | 471 | #: Api/Rest/FaxUsers.php:12 472 | msgid "Write fax user settings" 473 | msgstr "" 474 | 475 | #: views/quickCreate.php:10 views/view.coreDIDHook.php:28 476 | #: views/view.coreDIDHook.php:40 views/view.coreDIDHook.php:118 477 | #: views/view.form_options.php:124 views/view.form_options.php:218 478 | #: views/view.userman.showpage.php:28 479 | msgid "Yes" 480 | msgstr "Ano" 481 | 482 | #: views/view.coreDIDHook.php:57 483 | msgid "" 484 | "Yes: try to auto determine the type of call; route to the fax destination if " 485 | "call is a fax, otherwise send to regular destination. Use this option if you " 486 | "receive both voice and fax calls on this line" 487 | msgstr "" 488 | 489 | #: views/view.coreDIDHook.php:236 490 | msgid "" 491 | "You have selected Fax Detection on this route. Please select a valid " 492 | "destination to route calls detected as faxes to." 493 | msgstr "" 494 | 495 | #: views/view.form_options.php:25 496 | msgid "" 497 | "Your maximum transfer rate is set to 2400 in certain circumstances this can " 498 | "break faxing" 499 | msgstr "" 500 | 501 | #: views/view.form_options.php:21 502 | msgid "" 503 | "Your minimum transfer rate is set to 2400 in certain circumstances this can " 504 | "break faxing" 505 | msgstr "" 506 | 507 | #: Fax.class.php:648 508 | msgid "Zaptel" 509 | msgstr "" 510 | 511 | #: Fax.class.php:971 512 | #, php-format 513 | msgid "gs not found, not converting %s" 514 | msgstr "" 515 | 516 | #: Fax.class.php:983 517 | #, php-format 518 | msgid "tiff2pdf not found, not converting %s" 519 | msgstr "" 520 | 521 | #~ msgid "For" 522 | #~ msgstr "Pro" 523 | 524 | #~ msgid "Via" 525 | #~ msgstr "Přes" 526 | 527 | #~ msgid "NVFax" 528 | #~ msgstr "NVFax" 529 | 530 | #~ msgid "already done" 531 | #~ msgstr "již dokončeno" 532 | -------------------------------------------------------------------------------- /i18n/he_IL/LC_MESSAGES/fax.po: -------------------------------------------------------------------------------- 1 | # This file is part of FreePBX. 2 | # 3 | # FreePBX is free software: you can redistribute it and/or modify 4 | # it under the terms of the GNU General Public License as published by 5 | # the Free Software Foundation, either version 2 of the License, or 6 | # (at your option) any later version. 7 | # 8 | # FreePBX is distributed in the hope that it will be useful, 9 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | # GNU General Public License for more details. 12 | # 13 | # You should have received a copy of the GNU General Public License 14 | # along with FreePBX. If not, see . 15 | # 16 | # FreePBX language template for fax 17 | # Copyright (C) 2008, 2009, 2010 Bandwith.com 18 | # 19 | msgid "" 20 | msgstr "" 21 | "Project-Id-Version: PACKAGE VERSION\n" 22 | "Report-Msgid-Bugs-To: \n" 23 | "POT-Creation-Date: 2023-08-08 06:18+0000\n" 24 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 25 | "Last-Translator: FULL NAME \n" 26 | "Language-Team: LANGUAGE \n" 27 | "Language: \n" 28 | "MIME-Version: 1.0\n" 29 | "Content-Type: text/plain; charset=UTF-8\n" 30 | "Content-Transfer-Encoding: 8bit\n" 31 | 32 | #: views/view.form_options.php:194 33 | msgid "A4" 34 | msgstr "" 35 | 36 | #: views/view.coreDIDHook.php:178 37 | msgid "" 38 | "Address to email faxes to on fax detection.
PLEASE NOTE: In this " 39 | "version of FreePBX, you can now set the fax destination from a list of " 40 | "destinations. Extensions/Users can be fax enabled in the user/extension " 41 | "screen and set an email address there. This will create a new destination " 42 | "type that can be selected. To upgrade this option to the full destination " 43 | "list, select YES to Detect Faxes and select a destination. After clicking " 44 | "submit, this route will be upgraded. This Legacy option will no longer be " 45 | "available after the change, it is provided to handle legacy migrations from " 46 | "previous versions of FreePBX only." 47 | msgstr "" 48 | 49 | #: fax.i18n.php:8 50 | msgid "Adds configurations, options and GUI for inbound faxing" 51 | msgstr "" 52 | 53 | #: views/view.form_options.php:213 54 | msgid "Always Generate Detection Code" 55 | msgstr "" 56 | 57 | #: bin/fax2mail.php:107 58 | #, php-format 59 | msgid "At: %s" 60 | msgstr "" 61 | 62 | #: views/view.userman.showpage.php:52 63 | msgid "Attachment Format" 64 | msgstr "" 65 | 66 | #: views/view.coreDIDHook.php:54 67 | msgid "Attempt to detect faxes on this DID." 68 | msgstr "" 69 | 70 | #: Fax.class.php:376 71 | msgid "Author to pass to tiff2pdf's -a option" 72 | msgstr "" 73 | 74 | #: views/view.userman.showpage.php:63 75 | msgid "Both" 76 | msgstr "" 77 | 78 | #: Fax.class.php:648 views/view.coreDIDHook.php:83 79 | msgid "Dahdi" 80 | msgstr "" 81 | 82 | #: views/view.form_options.php:36 83 | msgid "Default Fax header" 84 | msgstr "" 85 | 86 | #: views/view.form_options.php:56 87 | msgid "Default Local Station Identifier" 88 | msgstr "" 89 | 90 | #: views/view.form_options.php:187 91 | msgid "Default Paper Size" 92 | msgstr "" 93 | 94 | #: views/view.coreDIDHook.php:22 95 | msgid "Detect Faxes" 96 | msgstr "" 97 | 98 | #: Fax.class.php:360 /usr/src/freepbx/fax/fax.i18n.php:12 99 | msgid "Dial System FAX" 100 | msgstr "" 101 | 102 | #: Fax.class.php:380 103 | msgid "Done!" 104 | msgstr "" 105 | 106 | #: Fax.class.php:180 107 | msgid "" 108 | "ERROR: No FAX modules detected!
Fax-related dialplan will NOT be " 109 | "generated.
This module requires spandsp based app_fax (res_fax_spandsp." 110 | "so) to function." 111 | msgstr "" 112 | 113 | #: Fax.class.php:185 114 | msgid "" 115 | "ERROR: No Fax license detected.
Fax-related dialplan will NOT be " 116 | "generated!
This module has detected that Fax for Asterisk is installed " 117 | "without a license.
At least one license is required (it is available for " 118 | "free) and must be installed." 119 | msgstr "" 120 | 121 | #: views/view.form_options.php:99 122 | msgid "Email address" 123 | msgstr "" 124 | 125 | #: views/view.form_options.php:87 126 | msgid "" 127 | "Email address that faxes appear to come from if 'system default' has been " 128 | "chosen as the default fax extension." 129 | msgstr "" 130 | 131 | #: views/view.form_options.php:109 132 | msgid "" 133 | "Email address that faxes are sent to when using the \"Dial System Fax\" " 134 | "feature code. This is also the default email for fax detection in legacy " 135 | "mode, if there are routes still running in this mode that do not have email " 136 | "addresses specified." 137 | msgstr "" 138 | 139 | #: bin/fax2mail.php:72 140 | #, php-format 141 | msgid "Email-fax dying, file %s not found!" 142 | msgstr "" 143 | 144 | #: bin/fax2mail.php:40 145 | msgid "" 146 | "Email-fax dying, no destination found (User has no email!) and we arent " 147 | "keeping the file!" 148 | msgstr "" 149 | 150 | #: views/quickCreate.php:5 151 | msgid "Enable Fax" 152 | msgstr "" 153 | 154 | #: views/view.userman.showpage.php:42 155 | msgid "Enable this user to receive faxes" 156 | msgstr "" 157 | 158 | #: views/view.userman.showpage.php:23 159 | msgid "Enabled" 160 | msgstr "" 161 | 162 | #: bin/fax2mail.php:125 163 | msgid "Enclosed, please find a new fax" 164 | msgstr "" 165 | 166 | #: bin/fax2mail.php:121 167 | #, php-format 168 | msgid "Enclosed, please find a new fax from: %s" 169 | msgstr "" 170 | 171 | #: views/view.form_options.php:119 172 | msgid "Error Correction Mode" 173 | msgstr "" 174 | 175 | #: views/view.form_options.php:132 176 | msgid "" 177 | "Error Correction Mode (ECM) option is used to specify whether\n" 178 | "\t\t\t to use ecm mode or not." 179 | msgstr "" 180 | 181 | #: Fax.class.php:194 Fax.class.php:208 Fax.class.php:652 182 | msgid "Fax" 183 | msgstr "" 184 | 185 | #: fax.i18n.php:4 /usr/src/freepbx/fax/fax.i18n.php:10 186 | msgid "Fax Configuration" 187 | msgstr "" 188 | 189 | #: Fax.class.php:661 views/view.coreDIDHook.php:191 190 | msgid "Fax Destination" 191 | msgstr "" 192 | 193 | #: Fax.class.php:661 194 | msgid "Fax Detection" 195 | msgstr "" 196 | 197 | #: views/view.coreDIDHook.php:140 198 | msgid "Fax Detection Time" 199 | msgstr "" 200 | 201 | #: Fax.class.php:661 202 | msgid "Fax Detection Wait" 203 | msgstr "" 204 | 205 | #: views/view.coreDIDHook.php:78 206 | msgid "Fax Detection type" 207 | msgstr "" 208 | 209 | #: views/view.coreDIDHook.php:166 210 | msgid "Fax Email Destination" 211 | msgstr "" 212 | 213 | #: Fax.class.php:661 214 | msgid "Fax Enabled" 215 | msgstr "" 216 | 217 | #: views/page.main.php:2 218 | msgid "Fax Options" 219 | msgstr "" 220 | 221 | #: Fax.class.php:794 bin/fax2mail.php:49 222 | msgid "Fax Recipient" 223 | msgstr "" 224 | 225 | #: views/view.coreDIDHook.php:113 226 | msgid "Fax Ring" 227 | msgstr "" 228 | 229 | #: bin/fax2mail.php:12 230 | msgid "Fax Service" 231 | msgstr "" 232 | 233 | #: Fax.class.php:846 234 | #, php-format 235 | msgid "Fax user %s" 236 | msgstr "" 237 | 238 | #: bin/fax2mail.php:111 bin/fax2mail.php:133 239 | #, php-format 240 | msgid "For: %s" 241 | msgstr "" 242 | 243 | #: views/view.userman.showpage.php:72 244 | msgid "Formats to convert incoming fax files to before emailing." 245 | msgstr "" 246 | 247 | #: views/view.form_options.php:46 248 | msgid "" 249 | "Header information that is passed to remote side of the fax transmission and " 250 | "is printed on top of every page. This usually contains the name of the " 251 | "person or entity sending the fax." 252 | msgstr "" 253 | 254 | #: Fax.class.php:661 255 | msgid "How long to wait and try to detect fax" 256 | msgstr "" 257 | 258 | #: views/view.coreDIDHook.php:152 259 | msgid "" 260 | "How long to wait and try to detect fax. Please note that callers to a Dahdi " 261 | "channel will hear ringing for this amount of time (i.e. the system wont " 262 | "\"answer\" the call, it will just play ringing)." 263 | msgstr "" 264 | 265 | #: Fax.class.php:824 266 | #, php-format 267 | msgid "Inbound Fax Detection: %s (%s)" 268 | msgstr "" 269 | 270 | #: views/view.userman.showpage.php:32 views/view.userman.showpage.php:58 271 | msgid "Inherit" 272 | msgstr "" 273 | 274 | #: Fax.class.php:896 275 | msgid "Invalid Email for Inbound Fax" 276 | msgstr "" 277 | 278 | #: views/view.coreDIDHook.php:43 279 | msgid "Legacy" 280 | msgstr "" 281 | 282 | #: views/view.coreDIDHook.php:57 283 | msgid "" 284 | "Legacy: Same as YES, only you can enter an email address as the destination. " 285 | "This option is ONLY for supporting migrated legacy fax routes. You should " 286 | "upgrade this route by choosing YES, and selecting a valid destination!" 287 | msgstr "" 288 | 289 | #: views/view.form_options.php:192 290 | msgid "Letter" 291 | msgstr "" 292 | 293 | #: views/view.form_options.php:143 294 | msgid "Maximum transfer rate" 295 | msgstr "" 296 | 297 | #: assets/js/fax.js:19 298 | msgid "Maximum transfer rate can not be less than Minimum transfer rate" 299 | msgstr "" 300 | 301 | #: views/view.form_options.php:155 302 | msgid "Maximum transfer rate used during fax rate negotiation." 303 | msgstr "" 304 | 305 | #: views/view.form_options.php:165 306 | msgid "Minimum transfer rate" 307 | msgstr "" 308 | 309 | #: views/view.form_options.php:177 310 | msgid "Minimum transfer rate used during fax rate negotiation." 311 | msgstr "" 312 | 313 | #: bin/fax2mail.php:90 314 | #, php-format 315 | msgid "New fax from: %s" 316 | msgstr "" 317 | 318 | #: bin/fax2mail.php:94 319 | msgid "New fax received" 320 | msgstr "" 321 | 322 | #: views/quickCreate.php:12 views/view.coreDIDHook.php:29 323 | #: views/view.coreDIDHook.php:41 views/view.coreDIDHook.php:120 324 | #: views/view.form_options.php:126 views/view.form_options.php:220 325 | #: views/view.userman.showpage.php:29 326 | msgid "No" 327 | msgstr "" 328 | 329 | #: views/view.coreDIDHook.php:246 330 | msgid "" 331 | "No fax detection methods found or no valid license. Faxing cannot be enabled." 332 | msgstr "" 333 | 334 | #: views/view.coreDIDHook.php:57 335 | msgid "" 336 | "No: No attempts are made to auto-determine the call type; all calls sent to " 337 | "destination set in the 'General' tab. Use this option if this DID is used " 338 | "exclusively for voice OR fax." 339 | msgstr "" 340 | 341 | #: views/view.userman.showpage.php:60 342 | msgid "None" 343 | msgstr "" 344 | 345 | #: bin/fax2mail.php:108 bin/fax2mail.php:129 346 | #, php-format 347 | msgid "On: %s" 348 | msgstr "" 349 | 350 | #: views/view.form_options.php:76 351 | msgid "Outgoing Email address" 352 | msgstr "" 353 | 354 | #: bin/fax2mail.php:83 355 | msgid "Outgoing fax results" 356 | msgstr "" 357 | 358 | #: views/view.userman.showpage.php:61 359 | msgid "PDF" 360 | msgstr "" 361 | 362 | #: Fax.class.php:397 363 | #, php-format 364 | msgid "Page Not Found (%s)!!!!" 365 | msgstr "" 366 | 367 | #: Api/Rest/Fax.php:9 368 | msgid "Read fax settings" 369 | msgstr "" 370 | 371 | #: Api/Rest/FaxUsers.php:9 372 | msgid "Read fax user settings" 373 | msgstr "" 374 | 375 | #: bin/fax2mail.php:128 376 | #, php-format 377 | msgid "Received & processed: %s" 378 | msgstr "" 379 | 380 | #: Fax.class.php:612 381 | msgid "Reset" 382 | msgstr "" 383 | 384 | #: views/view.coreDIDHook.php:85 385 | msgid "SIP" 386 | msgstr "" 387 | 388 | #: views/view.form_options.php:200 389 | msgid "" 390 | "Select the default paper size.
This specifies the size that should be " 391 | "used if the document does not specify a size.
If the document does " 392 | "specify a size that size will be used." 393 | msgstr "" 394 | 395 | #: bin/fax2mail.php:105 396 | #, php-format 397 | msgid "Sent to %s" 398 | msgstr "" 399 | 400 | #: fax.i18n.php:6 401 | msgid "Settings" 402 | msgstr "" 403 | 404 | #: views/view.coreDIDHook.php:99 405 | msgid "" 406 | "Sip: use sip fax detection (t38). Requires asterisk 1.6.2 or greater and " 407 | "'faxdetect=yes' in the sip config files" 408 | msgstr "" 409 | 410 | #: bin/fax2mail.php:106 411 | #, php-format 412 | msgid "Status: %s" 413 | msgstr "" 414 | 415 | #: Fax.class.php:612 416 | msgid "Submit" 417 | msgstr "" 418 | 419 | #: views/view.userman.showpage.php:62 420 | msgid "TIFF" 421 | msgstr "" 422 | 423 | #: views/view.form_options.php:66 424 | msgid "The outgoing Fax Machine Identifier. This is usually your fax number." 425 | msgstr "" 426 | 427 | #: views/view.form_options.php:88 428 | msgid "" 429 | "This may be formatted as just 'user@example.com', or 'Fax User '. The second option will display 'Fax User' in the 'From' field in most " 431 | "email clients." 432 | msgstr "" 433 | 434 | #: Fax.class.php:661 435 | msgid "Type of fax detection to use (e.g. SIP or DAHDI)" 436 | msgstr "" 437 | 438 | #: views/view.coreDIDHook.php:94 439 | msgid "Type of fax detection to use." 440 | msgstr "" 441 | 442 | #: Fax.class.php:366 443 | msgid "Upgrading configs.." 444 | msgstr "" 445 | 446 | #: Fax.class.php:896 447 | #, php-format 448 | msgid "" 449 | "User Manager users '%s' have the ability to receive faxes but have no email " 450 | "address defined so they will not be able to receive faxes over email," 451 | msgstr "" 452 | 453 | #: bin/fax2mail.php:130 454 | #, php-format 455 | msgid "Via: %s" 456 | msgstr "" 457 | 458 | #: views/view.form_options.php:226 459 | msgid "" 460 | "When no fax modules are detected the module will not generate any detection " 461 | "dialplan by default. If the system is being used with phyical FAX devices, " 462 | "hylafax + iaxmodem, or other outside fax setups you can force the dialplan " 463 | "to be generated here." 464 | msgstr "" 465 | 466 | #: Fax.class.php:661 views/view.coreDIDHook.php:203 467 | msgid "Where to send the faxes" 468 | msgstr "" 469 | 470 | #: views/view.coreDIDHook.php:128 471 | msgid "" 472 | "Whether to ring while attempting to detect fax. If set to no silence will be " 473 | "heard" 474 | msgstr "" 475 | 476 | #: Api/Rest/Fax.php:12 477 | msgid "Write fax settings" 478 | msgstr "" 479 | 480 | #: Api/Rest/FaxUsers.php:12 481 | msgid "Write fax user settings" 482 | msgstr "" 483 | 484 | #: views/quickCreate.php:10 views/view.coreDIDHook.php:28 485 | #: views/view.coreDIDHook.php:40 views/view.coreDIDHook.php:118 486 | #: views/view.form_options.php:124 views/view.form_options.php:218 487 | #: views/view.userman.showpage.php:28 488 | msgid "Yes" 489 | msgstr "" 490 | 491 | #: views/view.coreDIDHook.php:57 492 | msgid "" 493 | "Yes: try to auto determine the type of call; route to the fax destination if " 494 | "call is a fax, otherwise send to regular destination. Use this option if you " 495 | "receive both voice and fax calls on this line" 496 | msgstr "" 497 | 498 | #: views/view.coreDIDHook.php:236 499 | msgid "" 500 | "You have selected Fax Detection on this route. Please select a valid " 501 | "destination to route calls detected as faxes to." 502 | msgstr "" 503 | 504 | #: views/view.form_options.php:25 505 | msgid "" 506 | "Your maximum transfer rate is set to 2400 in certain circumstances this can " 507 | "break faxing" 508 | msgstr "" 509 | 510 | #: views/view.form_options.php:21 511 | msgid "" 512 | "Your minimum transfer rate is set to 2400 in certain circumstances this can " 513 | "break faxing" 514 | msgstr "" 515 | 516 | #: Fax.class.php:648 517 | msgid "Zaptel" 518 | msgstr "" 519 | 520 | #: Fax.class.php:971 521 | #, php-format 522 | msgid "gs not found, not converting %s" 523 | msgstr "" 524 | 525 | #: Fax.class.php:983 526 | #, php-format 527 | msgid "tiff2pdf not found, not converting %s" 528 | msgstr "" 529 | -------------------------------------------------------------------------------- /functions.inc.php: -------------------------------------------------------------------------------- 1 | getDest($exten)]; 11 | } 12 | 13 | function fax_delete_incoming($extdisplay) 14 | { 15 | \FreePBX::Modules()->deprecatedFunction(); 16 | return \FreePBX::Fax()->deleteIncoming($extdisplay); 17 | } 18 | 19 | function fax_delete_user($faxext) 20 | { 21 | \FreePBX::Modules()->deprecatedFunction(); 22 | return \FreePBX::Fax()->deleteUser($faxext); 23 | } 24 | 25 | //check to see if any fax modules and licenses are loaded in to asterisk 26 | function fax_detect($astver=null) 27 | { 28 | \FreePBX::Modules()->deprecatedFunction(); 29 | return \FreePBX::Fax()->faxDetect($astver); 30 | } 31 | 32 | function fax_get_destinations() 33 | { 34 | \FreePBX::Modules()->deprecatedFunction(); 35 | return \FreePBX::Fax()->get_destinations(); 36 | } 37 | 38 | function fax_get_incoming($extension=null, $cidnum=null) 39 | { 40 | \FreePBX::Modules()->deprecatedFunction(); 41 | return \FreePBX::Fax()->getIncoming($extension, $cidnum); 42 | 43 | } 44 | 45 | function fax_get_user($faxext = '') 46 | { 47 | \FreePBX::Modules()->deprecatedFunction(); 48 | return \FreePBX::Fax()->getUser($faxext); 49 | 50 | } 51 | 52 | function fax_get_settings() 53 | { 54 | \FreePBX::Modules()->deprecatedFunction(); 55 | return \FreePBX::Fax()->getSettings(); 56 | } 57 | 58 | 59 | function fax_get_config($engine){ 60 | $fax_settings = []; 61 | global $version; 62 | global $ext; 63 | global $amp_conf; 64 | global $core_conf; 65 | global $astman; 66 | $faxC = \FreePBX::Fax(); 67 | 68 | $fax = $faxC->faxDetect($version); 69 | $astman->database_deltree("FAX"); 70 | // do not continue unless we have a fax module in asterisk 71 | if($fax['module'] && ((isset($fax['ffa']) && $fax['ffa']) || $fax['spandsp'])) { 72 | $t38_fb = ',f'; 73 | $context = $faxC::ASTERISK_SECTION; 74 | $dests = $faxC->get_destinations(); 75 | 76 | if($dests){ 77 | foreach ($dests as $row) { 78 | $exten=$row['user']; 79 | $user = \FreePBX::Userman()->getUserByID($exten); 80 | if(!empty($user)) { 81 | $name = !empty($user['displayname']) ? $user['displayname'] : trim($user['fname'] . " " . $user['lname']); 82 | $name = !empty($name) ? $name : $user['username']; 83 | $ext->add($context, $exten, '', new ext_set('FAX_FOR',$name.' ('.$exten.')')); 84 | } else { 85 | $ext->add($context, $exten, '', new ext_set('FAX_FOR',$exten)); 86 | } 87 | 88 | $ext->add($context, $exten, '', new ext_noop('Receiving Fax for: ${FAX_FOR}, From: ${CALLERID(all)}')); 89 | $ext->add($context, $exten, '', new ext_set('FAX_RX_USER', $exten)); 90 | $ext->add($context, $exten, '', new ext_set('FAX_RX_EMAIL_LEN', strlen((string) $row['faxemail']))); 91 | $ext->add($context, $exten, 'receivefax', new ext_goto('receivefax','s')); 92 | } 93 | } 94 | /* 95 | FAX Failures are not handled well as of this coding 96 | in by ReceiveFAX. If there is a license available 97 | then it provides information. If not, nothing is 98 | provided. FAXSTATUS is supported in 1.4 to handle 99 | legacy with RxFax(). In order to create dialplan 100 | to try and handle all cases, we use FAXSTATUS and 101 | set it ourselves as needed. It appears that if a 102 | fax fails with ReceiveFAX we can always continue 103 | execution and if it succeeds, then execution goes 104 | to hangup. So using that information we try to 105 | trap and report on all cases. 106 | */ 107 | 108 | $exten = 's'; 109 | $ext->add($context, $exten, '', new ext_macro('user-callerid')); // $cmd,n,Macro(user-callerid) 110 | $ext->add($context, $exten, '', new ext_noop('Receiving Fax for: ${FAX_FOR} , From: ${CALLERID(all)}')); 111 | $ext->add($context, $exten, 'receivefax', new ext_stopplaytones('')); 112 | switch ($fax['module']) { 113 | case 'app_rxfax': 114 | $ext->add($context, $exten, '', new ext_rxfax('${ASTSPOOLDIR}/fax/${UNIQUEID}.tif')); //receive fax, then email it on 115 | break; 116 | case 'app_fax': 117 | // $fax['receivefax'] should be rxfax or receivefax, it could be none in which case we don't know. We'll just make it 118 | // ReceiveFAX in that case since it will fail anyhow. 119 | if ($fax['receivefax'] == 'rxfax') { 120 | $ext->add($context, $exten, '', new ext_rxfax('${ASTSPOOLDIR}/fax/${UNIQUEID}.tif')); //receive fax, then email it on 121 | } elseif ($fax['receivefax'] == 'receivefax') { 122 | $ext->add($context, $exten, '', new ext_receivefax('${ASTSPOOLDIR}/fax/${UNIQUEID}.tif'.$t38_fb)); //receive fax, then email it on 123 | } else { 124 | $ext->add($context, $exten, '', new ext_noop('ERROR: NO Receive FAX application detected, putting in dialplan for ReceiveFAX as default')); 125 | $ext->add($context, $exten, '', new ext_receivefax('${ASTSPOOLDIR}/fax/${UNIQUEID}.tif'.$t38_fb)); //receive fax, then email it on 126 | $ext->add($context, $exten, '', new ext_execif('$["${FAXSTATUS}" = ""]','Set','FAXSTATUS=${IF($["${FAXOPT(error)}" = ""]?"FAILED LICENSE EXCEEDED":"FAILED FAXOPT: error: ${FAXOPT(error)} status: ${FAXOPT(status)} statusstr: ${FAXOPT(statusstr)}")}')); 127 | } 128 | break; 129 | case 'res_fax': 130 | $localstationid = $faxC->getSetting('localstationid'); 131 | if(!empty($localstationid[0])) { 132 | $ext->add($context, $exten, '', new ext_set('FAXOPT(localstationid)', $localstationid[0])); 133 | } 134 | $ext->add($context, $exten, '', new ext_receivefax('${ASTSPOOLDIR}/fax/${UNIQUEID}.tif'.$t38_fb)); //receive fax, then email it on 135 | if (isset($fax['ffa']) && $fax['ffa']) { 136 | $ext->add($context, $exten, '', new ext_execif('$["${FAXSTATUS}"="" | "${FAXSTATUS}" = "FAILED" & "${FAXERROR}" = "INIT_ERROR"]','Set','FAXSTATUS=FAILED LICENSE MAY BE EXCEEDED check log errors')); 137 | } 138 | $ext->add($context, $exten, '', new ext_execif('$["${FAXSTATUS:0:6}"="FAILED" && "${FAXERROR}"!="INIT_ERROR"]','Set','FAXSTATUS="FAILED: error: ${FAXERROR} statusstr: ${FAXOPT(statusstr)}"')); 139 | 140 | $ext->add($context, $exten, '', new ext_hangup()); 141 | break; 142 | default: // unknown 143 | $ext->add($context, $exten, '', new ext_noop('No Known FAX Technology installed to receive a fax, aborting')); 144 | $ext->add($context, $exten, '', new ext_set('FAXSTATUS','FAILED No Known Fax Reception Apps available to process')); 145 | $ext->add($context, $exten, '', new ext_hangup()); 146 | } 147 | $exten = 'h'; 148 | 149 | // if there is a file there, mail it even if we failed: 150 | $ext->add($context, $exten, '', new ext_gotoif('$[${STAT(e,${ASTSPOOLDIR}/fax/${UNIQUEID}.tif)} = 0]','failed')); 151 | $ext->add($context, $exten, '', new ext_noop_trace('PROCESSING FAX with status: [${FAXSTATUS}] for: [${FAX_FOR}], From: [${CALLERID(all)}]')); 152 | //delete is a variable so that other modules can prevent it should then need to prosses the file further 153 | $ext->add($context, $exten, 'delete_opt', new ext_set('DELETE_AFTER_SEND', 'true')); 154 | $ext->add($context, $exten, 'process', new ext_gotoif('$[ "${FAX_RX_EMAIL_LEN}" = "0" | "${FAX_RX_EMAIL_LEN}" = "" ]','noemail')); 155 | 156 | $ext->add($context, $exten, 'sendfax', new ext_system('${AMPBIN}/fax2mail.php --remotestationid "${FAXOPT(remotestationid)}" --user "${FAX_RX_USER}" --dest "${FROM_DID}" --callerid "${BASE64_ENCODE(${CALLERID(all)})}" --file ${ASTSPOOLDIR}/fax/${UNIQUEID}.tif --delete "${DELETE_AFTER_SEND}"')); 157 | 158 | $ext->add($context, $exten, 'end', new ext_macro('hangupcall')); 159 | 160 | $ext->add($context, $exten, 'noemail', new ext_noop('ERROR: No Email Address to send FAX: status: [${FAXSTATUS}], From: [${CALLERID(all)}], trying system fax destination')); 161 | $ext->add($context, $exten, '', new ext_gotoif('$[ "${FAX_RX_EMAIL}" = "" ]', 'delfax')); 162 | 163 | // We can send a fax to the system dest! 164 | $ext->add($context, $exten, '', new ext_system('${AMPBIN}/fax2mail.php --remotestationid "${FAXOPT(remotestationid)}" --sendto "${FAX_RX_EMAIL}" --dest "${FROM_DID}" --callerid "${BASE64_ENCODE(${CALLERID(all)})}" --file ${ASTSPOOLDIR}/fax/${UNIQUEID}.tif --delete "${DELETE_AFTER_SEND}"')); 165 | $ext->add($context, $exten, '', new ext_macro('hangupcall')); 166 | 167 | // No system dest. Just delete. 168 | $ext->add($context, $exten, 'delfax', new ext_system('${AMPBIN}/fax2mail.php --file ${ASTSPOOLDIR}/fax/${UNIQUEID}.tif --delete "${DELETE_AFTER_SEND}"')); 169 | $ext->add($context, $exten, '', new ext_macro('hangupcall')); 170 | 171 | $ext->add($context, $exten, 'failed', new ext_noop('FAX ${FAXSTATUS} for: ${FAX_FOR} , From: ${CALLERID(all)}'),'process',101); 172 | $ext->add($context, $exten, '', new ext_macro('hangupcall')); 173 | 174 | $modulename = 'fax'; 175 | $fcc = new featurecode($modulename, 'simu_fax'); 176 | $fc_simu_fax = $fcc->getCodeActive(); 177 | unset($fcc); 178 | 179 | if ($fc_simu_fax != '') { 180 | $default_fax_rx_email = $faxC->getSetting('FAX_RX_EMAIL',''); 181 | $ext->addInclude('from-internal-additional', 'app-fax'); // Add the include from from-internal 182 | $ext->add('app-fax', $fc_simu_fax, '', new ext_setvar('FAX_RX_EMAIL', $default_fax_rx_email)); 183 | $ext->add('app-fax', $fc_simu_fax, '', new ext_goto('1', 's', 'ext-fax')); 184 | $ext->add('app-fax', 'h', '', new ext_macro('hangupcall')); 185 | } 186 | // This is not really needed but is put here in 187 | // case some ever accidently switches the order below 188 | // when checking for this setting since $fax['module'] 189 | // will be set there and the 2nd part never checked 190 | $fax_settings['force_detection'] = 'yes'; 191 | } else { 192 | $fax_settings = $fax_settings = $faxC->getSettings(); 193 | } 194 | if (($fax['module'] && ((isset($fax['ffa']) && $fax['ffa']) || $fax['spandsp'])) || 195 | (isset($fax_settings['force_detection']) && $fax_settings['force_detection'] == 'yes')) { 196 | if (isset($core_conf) && is_a($core_conf, "core_conf")) { 197 | $core_conf->addSipGeneral('faxdetect','no'); 198 | } else if (isset($core_conf) && is_a($core_conf, "core_conf")) { 199 | $core_conf->addSipGeneral('faxdetect','yes'); 200 | } 201 | 202 | $ext->add('ext-did-0001', 'fax', '', new ext_setvar('__DIRECTION',($amp_conf['INBOUND_NOTRANS'] ? 'INBOUND' : ''))); 203 | $ext->add('ext-did-0001', 'fax', '', new ext_goto('${CUT(FAX_DEST,^,1)},${CUT(FAX_DEST,^,2)},${CUT(FAX_DEST,^,3)}')); 204 | $ext->add('ext-did-0002', 'fax', '', new ext_setvar('__DIRECTION',($amp_conf['INBOUND_NOTRANS'] ? 'INBOUND' : ''))); 205 | $ext->add('ext-did-0002', 'fax', '', new ext_goto('${CUT(FAX_DEST,^,1)},${CUT(FAX_DEST,^,2)},${CUT(FAX_DEST,^,3)}')); 206 | 207 | // Add fax extension to ivr and announcement as inbound controle may be passed quickly to them and still detection is desired 208 | if (function_exists('ivr_get_details')) { 209 | $ivrlist = ivr_get_details(); 210 | if(is_array($ivrlist)) foreach($ivrlist as $item) { 211 | $ext->add("ivr-".$item['id'], 'fax', '', new ext_goto('${CUT(FAX_DEST,^,1)},${CUT(FAX_DEST,^,2)},${CUT(FAX_DEST,^,3)}')); 212 | } 213 | } 214 | if (function_exists('announcement_list')) foreach (announcement_list() as $row) { 215 | $ext->add('app-announcement-'.$row['announcement_id'], 'fax', '', new ext_goto('${CUT(FAX_DEST,^,1)},${CUT(FAX_DEST,^,2)},${CUT(FAX_DEST,^,3)}')); 216 | } 217 | } 218 | } 219 | 220 | 221 | function fax_hookGet_config($engine){ 222 | $fax_settings = []; 223 | global $version; 224 | $faxC = \FreePBX::Fax(); 225 | 226 | $fax = $faxC->faxDetect($version); 227 | if ($fax['module']) { 228 | $fax_settings['force_detection'] = 'yes'; 229 | } else { 230 | $fax_settings = $faxC->getSettings(); 231 | } 232 | if($fax_settings['force_detection'] == 'yes'){ //dont continue unless we have a fax module in asterisk 233 | global $ext; 234 | global $engine; 235 | $routes = $faxC->getIncoming(); 236 | foreach($routes as $current => $route){ 237 | if(isset($route['legacy_email']) && $route['legacy_email'] === 'NULL') { $route['legacy_email'] = null; } 238 | if($route['extension']=='' && $route['cidnum']){//callerID only 239 | $extension='s/'.$route['cidnum']; 240 | $context=($route['pricid']=='CHECKED')?'ext-did-0001':'ext-did-0002'; 241 | }else{ 242 | if(($route['extension'] && $route['cidnum'])||($route['extension']=='' && $route['cidnum']=='')){//callerid+did / any/any 243 | $context='ext-did-0001'; 244 | }else{//did only 245 | $context='ext-did-0002'; 246 | } 247 | $extension=($route['extension']!=''?$route['extension']:'s').($route['cidnum']==''?'':'/'.$route['cidnum']); 248 | } 249 | if ($route['legacy_email'] === null) { 250 | $ext->splice($context, $extension, 'dest-ext', new ext_setvar('FAX_DEST',str_replace(',','^',(string) $route['destination']))); 251 | } else { 252 | $ext->splice($context, $extension, 'dest-ext', new ext_setvar('FAX_DEST','ext-fax^s^1')); 253 | if ($route['legacy_email']) { 254 | $fax_rx_email = $route['legacy_email']; 255 | } else { 256 | $fax_rx_email = $faxC->getSetting('fax_rx_email','');; 257 | } 258 | $ext->splice($context, $extension, 'dest-ext', new ext_setvar('FAX_RX_EMAIL',$fax_rx_email)); 259 | } 260 | //If we have fax incoming, we need to set fax detection to yes if we are on Asterisk 11 or newer 261 | $ext->splice($context, $extension, 'dest-ext', new ext_setvar('FAXOPT(faxdetect)', 'yes')); 262 | $ext->splice($context, $extension, 'dest-ext', new ext_answer('')); 263 | if(!empty($route['ring'])) { 264 | $ext->splice($context, $extension, 'dest-ext', new ext_playtones('ring')); 265 | } 266 | 267 | $ext->splice($context, $extension, 'dest-ext', new ext_wait($route['detectionwait'])); 268 | } 269 | } 270 | } 271 | 272 | 273 | function fax_save_incoming($cidnum,$extension,$enabled,$detection,$detectionwait,$dest,$legacy_email,$ring=1) 274 | { 275 | \FreePBX::Modules()->deprecatedFunction(); 276 | return \FreePBX::Fax()->saveIncoming($cidnum, $extension, $enabled, $detection, $detectionwait, $dest, $legacy_email, $ring); 277 | } 278 | 279 | function fax_save_settings($settings) 280 | { 281 | \FreePBX::Modules()->deprecatedFunction(); 282 | return \FreePBX::Fax()->setSettings($settings); 283 | } 284 | 285 | function fax_save_user($faxext, $faxenabled, $faxemail = '', $faxattachformat = 'pdf') 286 | { 287 | \FreePBX::Modules()->deprecatedFunction(); 288 | return \FreePBX::Fax()->saveUser($faxext, $faxenabled, $faxemail, $faxattachformat); 289 | } 290 | 291 | function fax_file_convert($type, $in, $out = '', $keep_orig = false, $opts = []) 292 | { 293 | \FreePBX::Modules()->deprecatedFunction(); 294 | return \FreePBX::Fax()->fax_file_convert($type, $in, $out, $keep_orig, $opts); 295 | } 296 | 297 | function fax_tiffinfo($file, $opt = '') 298 | { 299 | \FreePBX::Modules()->deprecatedFunction(); 300 | return \FreePBX::Fax()->fax_tiffinfo($file, $opt); 301 | } 302 | 303 | 304 | 305 | function fax_dahdi_faxdetect(){ 306 | /* 307 | * kepping this always set to true for freepbx 2.7 as we cant currently properly detect this - MB 308 | * 309 | */ 310 | return true; 311 | } 312 | 313 | function fax_sip_faxdetect(){ 314 | global $asterisk_conf; 315 | return true; 316 | } 317 | -------------------------------------------------------------------------------- /i18n/pl/LC_MESSAGES/fax.po: -------------------------------------------------------------------------------- 1 | # This file is part of FreePBX. 2 | # 3 | # For licensing information, please see the file named LICENSE located in the module directory 4 | # 5 | # FreePBX language template for fax 6 | # Copyright (C) 2008-2015 Sangoma, Inc. 7 | # 8 | msgid "" 9 | msgstr "" 10 | "Project-Id-Version: PACKAGE VERSION\n" 11 | "Report-Msgid-Bugs-To: \n" 12 | "POT-Creation-Date: 2023-08-08 06:18+0000\n" 13 | "PO-Revision-Date: 2016-06-23 01:18+0200\n" 14 | "Last-Translator: Michal \n" 15 | "Language-Team: Polish \n" 16 | "Language: pl\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: 8bit\n" 20 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " 21 | "|| n%100>=20) ? 1 : 2;\n" 22 | "X-Generator: Weblate 2.4\n" 23 | 24 | #: views/view.form_options.php:194 25 | msgid "A4" 26 | msgstr "A4" 27 | 28 | #: views/view.coreDIDHook.php:178 29 | msgid "" 30 | "Address to email faxes to on fax detection.
PLEASE NOTE: In this " 31 | "version of FreePBX, you can now set the fax destination from a list of " 32 | "destinations. Extensions/Users can be fax enabled in the user/extension " 33 | "screen and set an email address there. This will create a new destination " 34 | "type that can be selected. To upgrade this option to the full destination " 35 | "list, select YES to Detect Faxes and select a destination. After clicking " 36 | "submit, this route will be upgraded. This Legacy option will no longer be " 37 | "available after the change, it is provided to handle legacy migrations from " 38 | "previous versions of FreePBX only." 39 | msgstr "" 40 | 41 | #: fax.i18n.php:8 42 | msgid "Adds configurations, options and GUI for inbound faxing" 43 | msgstr "Konfiguracje dodawania, opcje i GUI dla faksów przychodzących" 44 | 45 | #: views/view.form_options.php:213 46 | msgid "Always Generate Detection Code" 47 | msgstr "Zawsze generuj kod wykrywania" 48 | 49 | #: bin/fax2mail.php:107 50 | #, php-format 51 | msgid "At: %s" 52 | msgstr "" 53 | 54 | #: views/view.userman.showpage.php:52 55 | msgid "Attachment Format" 56 | msgstr "format załącznika" 57 | 58 | #: views/view.coreDIDHook.php:54 59 | msgid "Attempt to detect faxes on this DID." 60 | msgstr "Próba wykrycia faksu na tym DID." 61 | 62 | #: Fax.class.php:376 63 | msgid "Author to pass to tiff2pdf's -a option" 64 | msgstr "" 65 | 66 | #: views/view.userman.showpage.php:63 67 | msgid "Both" 68 | msgstr "oba" 69 | 70 | #: Fax.class.php:648 views/view.coreDIDHook.php:83 71 | msgid "Dahdi" 72 | msgstr "" 73 | 74 | #: views/view.form_options.php:36 75 | msgid "Default Fax header" 76 | msgstr "Domyślny tytuł faksu" 77 | 78 | #: views/view.form_options.php:56 79 | msgid "Default Local Station Identifier" 80 | msgstr "Domyślna identyfikacja stacji lokalnej" 81 | 82 | #: views/view.form_options.php:187 83 | msgid "Default Paper Size" 84 | msgstr "Domyślny format papieru" 85 | 86 | #: views/view.coreDIDHook.php:22 87 | msgid "Detect Faxes" 88 | msgstr "Wykrywanie faksu" 89 | 90 | #: Fax.class.php:360 /usr/src/freepbx/fax/fax.i18n.php:12 91 | msgid "Dial System FAX" 92 | msgstr "Płyta systemu faks" 93 | 94 | #: Fax.class.php:380 95 | msgid "Done!" 96 | msgstr "" 97 | 98 | #: Fax.class.php:180 99 | msgid "" 100 | "ERROR: No FAX modules detected!
Fax-related dialplan will NOT be " 101 | "generated.
This module requires spandsp based app_fax (res_fax_spandsp." 102 | "so) to function." 103 | msgstr "" 104 | 105 | #: Fax.class.php:185 106 | msgid "" 107 | "ERROR: No Fax license detected.
Fax-related dialplan will NOT be " 108 | "generated!
This module has detected that Fax for Asterisk is installed " 109 | "without a license.
At least one license is required (it is available for " 110 | "free) and must be installed." 111 | msgstr "" 112 | 113 | #: views/view.form_options.php:99 114 | msgid "Email address" 115 | msgstr "Adres e-mail" 116 | 117 | #: views/view.form_options.php:87 118 | msgid "" 119 | "Email address that faxes appear to come from if 'system default' has been " 120 | "chosen as the default fax extension." 121 | msgstr "" 122 | "Adres e-mail, który pochodzi z systemu domyślnego został wybrany jako " 123 | "domyślne rozszerzenie faksu." 124 | 125 | #: views/view.form_options.php:109 126 | msgid "" 127 | "Email address that faxes are sent to when using the \"Dial System Fax\" " 128 | "feature code. This is also the default email for fax detection in legacy " 129 | "mode, if there are routes still running in this mode that do not have email " 130 | "addresses specified." 131 | msgstr "" 132 | "Adres e-mail, na który wysyłane są faksy podczas użycia kodu funkcji \"Płyty " 133 | "Systemu Faks\". Jest to również domyślny e-mail dla wykrywania faksu w " 134 | "trybie systemowym, jeśli są włączone inne ścieżki w tym module, nie ma " 135 | "sprecyzowanego adresu e-mail." 136 | 137 | #: bin/fax2mail.php:72 138 | #, php-format 139 | msgid "Email-fax dying, file %s not found!" 140 | msgstr "" 141 | 142 | #: bin/fax2mail.php:40 143 | msgid "" 144 | "Email-fax dying, no destination found (User has no email!) and we arent " 145 | "keeping the file!" 146 | msgstr "" 147 | 148 | #: views/quickCreate.php:5 149 | msgid "Enable Fax" 150 | msgstr "Włączyć faks" 151 | 152 | #: views/view.userman.showpage.php:42 153 | msgid "Enable this user to receive faxes" 154 | msgstr "Dodać tego użytkownika do listy odbiorców faksu" 155 | 156 | #: views/view.userman.showpage.php:23 157 | msgid "Enabled" 158 | msgstr "Włączone" 159 | 160 | #: bin/fax2mail.php:125 161 | msgid "Enclosed, please find a new fax" 162 | msgstr "Ograniczono, proszę znaleźć nowy faks" 163 | 164 | #: bin/fax2mail.php:121 165 | #, php-format 166 | msgid "Enclosed, please find a new fax from: %s" 167 | msgstr "Ograniczono, proszę znaleźć nowy faks z: %s" 168 | 169 | #: views/view.form_options.php:119 170 | msgid "Error Correction Mode" 171 | msgstr "Tryb naprawy" 172 | 173 | #: views/view.form_options.php:132 174 | msgid "" 175 | "Error Correction Mode (ECM) option is used to specify whether\n" 176 | "\t\t\t to use ecm mode or not." 177 | msgstr "" 178 | 179 | #: Fax.class.php:194 Fax.class.php:208 Fax.class.php:652 180 | msgid "Fax" 181 | msgstr "faks" 182 | 183 | #: fax.i18n.php:4 /usr/src/freepbx/fax/fax.i18n.php:10 184 | msgid "Fax Configuration" 185 | msgstr "konfiguracja faksu" 186 | 187 | #: Fax.class.php:661 views/view.coreDIDHook.php:191 188 | msgid "Fax Destination" 189 | msgstr "Miejsce docelowe faksu" 190 | 191 | #: Fax.class.php:661 192 | msgid "Fax Detection" 193 | msgstr "wykrywanie faksu" 194 | 195 | #: views/view.coreDIDHook.php:140 196 | msgid "Fax Detection Time" 197 | msgstr "Czas wykrywania faksu" 198 | 199 | #: Fax.class.php:661 200 | msgid "Fax Detection Wait" 201 | msgstr "Oczekiwanie na wykrycie faksu" 202 | 203 | #: views/view.coreDIDHook.php:78 204 | msgid "Fax Detection type" 205 | msgstr "Typ wykrywania faksu" 206 | 207 | #: views/view.coreDIDHook.php:166 208 | msgid "Fax Email Destination" 209 | msgstr "" 210 | 211 | #: Fax.class.php:661 212 | msgid "Fax Enabled" 213 | msgstr "Faks włączony" 214 | 215 | #: views/page.main.php:2 216 | msgid "Fax Options" 217 | msgstr "Opcje faksu" 218 | 219 | #: Fax.class.php:794 bin/fax2mail.php:49 220 | msgid "Fax Recipient" 221 | msgstr "Odbiorca faksu" 222 | 223 | #: views/view.coreDIDHook.php:113 224 | msgid "Fax Ring" 225 | msgstr "" 226 | 227 | #: bin/fax2mail.php:12 228 | msgid "Fax Service" 229 | msgstr "" 230 | 231 | #: Fax.class.php:846 232 | #, php-format 233 | msgid "Fax user %s" 234 | msgstr "Użytkownik faksu %s" 235 | 236 | #: bin/fax2mail.php:111 bin/fax2mail.php:133 237 | #, php-format 238 | msgid "For: %s" 239 | msgstr "" 240 | 241 | #: views/view.userman.showpage.php:72 242 | msgid "Formats to convert incoming fax files to before emailing." 243 | msgstr "Formaty konwersji przychodzących plików faksu na poprzedni e-mail." 244 | 245 | #: views/view.form_options.php:46 246 | msgid "" 247 | "Header information that is passed to remote side of the fax transmission and " 248 | "is printed on top of every page. This usually contains the name of the " 249 | "person or entity sending the fax." 250 | msgstr "" 251 | 252 | #: Fax.class.php:661 253 | msgid "How long to wait and try to detect fax" 254 | msgstr "" 255 | 256 | #: views/view.coreDIDHook.php:152 257 | msgid "" 258 | "How long to wait and try to detect fax. Please note that callers to a Dahdi " 259 | "channel will hear ringing for this amount of time (i.e. the system wont " 260 | "\"answer\" the call, it will just play ringing)." 261 | msgstr "" 262 | 263 | #: Fax.class.php:824 264 | #, php-format 265 | msgid "Inbound Fax Detection: %s (%s)" 266 | msgstr "Wykrywanie faksów przychodzących: %s (%s)" 267 | 268 | #: views/view.userman.showpage.php:32 views/view.userman.showpage.php:58 269 | msgid "Inherit" 270 | msgstr "" 271 | 272 | #: Fax.class.php:896 273 | msgid "Invalid Email for Inbound Fax" 274 | msgstr "" 275 | 276 | #: views/view.coreDIDHook.php:43 277 | msgid "Legacy" 278 | msgstr "" 279 | 280 | #: views/view.coreDIDHook.php:57 281 | msgid "" 282 | "Legacy: Same as YES, only you can enter an email address as the destination. " 283 | "This option is ONLY for supporting migrated legacy fax routes. You should " 284 | "upgrade this route by choosing YES, and selecting a valid destination!" 285 | msgstr "" 286 | 287 | #: views/view.form_options.php:192 288 | msgid "Letter" 289 | msgstr "" 290 | 291 | #: views/view.form_options.php:143 292 | msgid "Maximum transfer rate" 293 | msgstr "Maksymalne wskazania transferu" 294 | 295 | #: assets/js/fax.js:19 296 | msgid "Maximum transfer rate can not be less than Minimum transfer rate" 297 | msgstr "" 298 | 299 | #: views/view.form_options.php:155 300 | msgid "Maximum transfer rate used during fax rate negotiation." 301 | msgstr "" 302 | 303 | #: views/view.form_options.php:165 304 | msgid "Minimum transfer rate" 305 | msgstr "Minimalne wskazania transferu" 306 | 307 | #: views/view.form_options.php:177 308 | msgid "Minimum transfer rate used during fax rate negotiation." 309 | msgstr "" 310 | 311 | #: bin/fax2mail.php:90 312 | #, php-format 313 | msgid "New fax from: %s" 314 | msgstr "Nowy faks od: %s" 315 | 316 | #: bin/fax2mail.php:94 317 | msgid "New fax received" 318 | msgstr "Otrzymano nowy faks" 319 | 320 | #: views/quickCreate.php:12 views/view.coreDIDHook.php:29 321 | #: views/view.coreDIDHook.php:41 views/view.coreDIDHook.php:120 322 | #: views/view.form_options.php:126 views/view.form_options.php:220 323 | #: views/view.userman.showpage.php:29 324 | msgid "No" 325 | msgstr "Nie" 326 | 327 | #: views/view.coreDIDHook.php:246 328 | msgid "" 329 | "No fax detection methods found or no valid license. Faxing cannot be enabled." 330 | msgstr "" 331 | 332 | #: views/view.coreDIDHook.php:57 333 | msgid "" 334 | "No: No attempts are made to auto-determine the call type; all calls sent to " 335 | "destination set in the 'General' tab. Use this option if this DID is used " 336 | "exclusively for voice OR fax." 337 | msgstr "" 338 | 339 | #: views/view.userman.showpage.php:60 340 | msgid "None" 341 | msgstr "" 342 | 343 | #: bin/fax2mail.php:108 bin/fax2mail.php:129 344 | #, php-format 345 | msgid "On: %s" 346 | msgstr "" 347 | 348 | #: views/view.form_options.php:76 349 | msgid "Outgoing Email address" 350 | msgstr "" 351 | 352 | #: bin/fax2mail.php:83 353 | msgid "Outgoing fax results" 354 | msgstr "" 355 | 356 | #: views/view.userman.showpage.php:61 357 | msgid "PDF" 358 | msgstr "PDF" 359 | 360 | #: Fax.class.php:397 361 | #, php-format 362 | msgid "Page Not Found (%s)!!!!" 363 | msgstr "" 364 | 365 | #: Api/Rest/Fax.php:9 366 | msgid "Read fax settings" 367 | msgstr "" 368 | 369 | #: Api/Rest/FaxUsers.php:9 370 | msgid "Read fax user settings" 371 | msgstr "" 372 | 373 | #: bin/fax2mail.php:128 374 | #, php-format 375 | msgid "Received & processed: %s" 376 | msgstr "" 377 | 378 | #: Fax.class.php:612 379 | msgid "Reset" 380 | msgstr "" 381 | 382 | #: views/view.coreDIDHook.php:85 383 | msgid "SIP" 384 | msgstr "" 385 | 386 | #: views/view.form_options.php:200 387 | msgid "" 388 | "Select the default paper size.
This specifies the size that should be " 389 | "used if the document does not specify a size.
If the document does " 390 | "specify a size that size will be used." 391 | msgstr "" 392 | 393 | #: bin/fax2mail.php:105 394 | #, php-format 395 | msgid "Sent to %s" 396 | msgstr "" 397 | 398 | #: fax.i18n.php:6 399 | msgid "Settings" 400 | msgstr "Opcje" 401 | 402 | #: views/view.coreDIDHook.php:99 403 | msgid "" 404 | "Sip: use sip fax detection (t38). Requires asterisk 1.6.2 or greater and " 405 | "'faxdetect=yes' in the sip config files" 406 | msgstr "" 407 | 408 | #: bin/fax2mail.php:106 409 | #, php-format 410 | msgid "Status: %s" 411 | msgstr "" 412 | 413 | #: Fax.class.php:612 414 | msgid "Submit" 415 | msgstr "Zatwierdź" 416 | 417 | #: views/view.userman.showpage.php:62 418 | msgid "TIFF" 419 | msgstr "" 420 | 421 | #: views/view.form_options.php:66 422 | msgid "The outgoing Fax Machine Identifier. This is usually your fax number." 423 | msgstr "" 424 | 425 | #: views/view.form_options.php:88 426 | msgid "" 427 | "This may be formatted as just 'user@example.com', or 'Fax User '. The second option will display 'Fax User' in the 'From' field in most " 429 | "email clients." 430 | msgstr "" 431 | 432 | #: Fax.class.php:661 433 | msgid "Type of fax detection to use (e.g. SIP or DAHDI)" 434 | msgstr "" 435 | 436 | #: views/view.coreDIDHook.php:94 437 | msgid "Type of fax detection to use." 438 | msgstr "" 439 | 440 | #: Fax.class.php:366 441 | msgid "Upgrading configs.." 442 | msgstr "" 443 | 444 | #: Fax.class.php:896 445 | #, php-format 446 | msgid "" 447 | "User Manager users '%s' have the ability to receive faxes but have no email " 448 | "address defined so they will not be able to receive faxes over email," 449 | msgstr "" 450 | 451 | #: bin/fax2mail.php:130 452 | #, php-format 453 | msgid "Via: %s" 454 | msgstr "" 455 | 456 | #: views/view.form_options.php:226 457 | msgid "" 458 | "When no fax modules are detected the module will not generate any detection " 459 | "dialplan by default. If the system is being used with phyical FAX devices, " 460 | "hylafax + iaxmodem, or other outside fax setups you can force the dialplan " 461 | "to be generated here." 462 | msgstr "" 463 | 464 | #: Fax.class.php:661 views/view.coreDIDHook.php:203 465 | msgid "Where to send the faxes" 466 | msgstr "" 467 | 468 | #: views/view.coreDIDHook.php:128 469 | msgid "" 470 | "Whether to ring while attempting to detect fax. If set to no silence will be " 471 | "heard" 472 | msgstr "" 473 | 474 | #: Api/Rest/Fax.php:12 475 | msgid "Write fax settings" 476 | msgstr "" 477 | 478 | #: Api/Rest/FaxUsers.php:12 479 | msgid "Write fax user settings" 480 | msgstr "" 481 | 482 | #: views/quickCreate.php:10 views/view.coreDIDHook.php:28 483 | #: views/view.coreDIDHook.php:40 views/view.coreDIDHook.php:118 484 | #: views/view.form_options.php:124 views/view.form_options.php:218 485 | #: views/view.userman.showpage.php:28 486 | msgid "Yes" 487 | msgstr "Tak" 488 | 489 | #: views/view.coreDIDHook.php:57 490 | msgid "" 491 | "Yes: try to auto determine the type of call; route to the fax destination if " 492 | "call is a fax, otherwise send to regular destination. Use this option if you " 493 | "receive both voice and fax calls on this line" 494 | msgstr "" 495 | 496 | #: views/view.coreDIDHook.php:236 497 | msgid "" 498 | "You have selected Fax Detection on this route. Please select a valid " 499 | "destination to route calls detected as faxes to." 500 | msgstr "" 501 | 502 | #: views/view.form_options.php:25 503 | msgid "" 504 | "Your maximum transfer rate is set to 2400 in certain circumstances this can " 505 | "break faxing" 506 | msgstr "" 507 | 508 | #: views/view.form_options.php:21 509 | msgid "" 510 | "Your minimum transfer rate is set to 2400 in certain circumstances this can " 511 | "break faxing" 512 | msgstr "" 513 | 514 | #: Fax.class.php:648 515 | msgid "Zaptel" 516 | msgstr "" 517 | 518 | #: Fax.class.php:971 519 | #, php-format 520 | msgid "gs not found, not converting %s" 521 | msgstr "" 522 | 523 | #: Fax.class.php:983 524 | #, php-format 525 | msgid "tiff2pdf not found, not converting %s" 526 | msgstr "" 527 | 528 | #~ msgid "" 529 | #~ "\"You have selected Fax Detection on this route. Please select a valid " 530 | #~ "destination to route calls detected as faxes to.\"" 531 | #~ msgstr "" 532 | #~ "Wybrałeś wykrywanie faksu. Proszę wybrać odpowiednie miejsce docelowe do " 533 | #~ "przekierowania połączeń zidentyfikowanych jako faks" 534 | 535 | #~ msgid "Auto generated migrated user for Fax" 536 | #~ msgstr "Automatyczne generowanie migracji użytkownika dla faksu" 537 | 538 | #~ msgid "Finished Migrating fax users to usermanager" 539 | #~ msgstr "Zakończono przenoszenie listy użytkowników faksu do administratora" 540 | 541 | #~ msgid "Inbound Fax Destination Change" 542 | #~ msgstr "Zmiana miejsca docelowego faksów przychodzących" 543 | 544 | #~ msgid "use " 545 | #~ msgstr "użyj " 546 | 547 | #~ msgid "Fax drivers supported by this module are:" 548 | #~ msgstr "Sterowniki faksu wspierane przez ten moduł to:" 549 | 550 | #~ msgid "Fax for Asterisk (res_fax_digium.so) with licence" 551 | #~ msgstr "Faks dla Astriks (res_fax_digium.so) z licencją" 552 | 553 | #~ msgid "%s FAX Migrations Failed" 554 | #~ msgstr "%s Przekierowanie faksu nie powiodło się" 555 | 556 | #~ msgid "%s FAX Migrations Failed, check notification panel for details" 557 | #~ msgstr "" 558 | #~ "%s Przekierowanie faksu nie powiodło się, sprawdź panel powiadomień aby " 559 | #~ "poznać szegóły" 560 | 561 | #~ msgid "Checking for failed migrations.." 562 | #~ msgstr "Sprawdzanie nieudanych przekazów." 563 | 564 | #~ msgid "already done" 565 | #~ msgstr "już zakończone" 566 | 567 | #~ msgid "blank" 568 | #~ msgstr "pusty" 569 | 570 | #~ msgid "done" 571 | #~ msgstr "zakończone" 572 | 573 | #~ msgid "failed" 574 | #~ msgstr "zakończony niepowodzeniem" 575 | 576 | #~ msgid "migrated" 577 | #~ msgstr "przeniesione" 578 | 579 | #~ msgid "not needed" 580 | #~ msgstr "niepotrzebne" 581 | 582 | #~ msgid "removed" 583 | #~ msgstr "usunięto" 584 | 585 | #~ msgid "starting migration" 586 | #~ msgstr "rozpoczęcie przenoszenia" 587 | 588 | #~ msgid "unknown error" 589 | #~ msgstr "nieznany błąd" 590 | 591 | #~ msgid "For User" 592 | #~ msgstr "Dla użytkownika" 593 | -------------------------------------------------------------------------------- /i18n/zh_CN/LC_MESSAGES/fax.po: -------------------------------------------------------------------------------- 1 | # 2 | # FreePBX is free software: you can redistribute it and/or modify 3 | # it under the terms of the GNU General Public License as published by 4 | # the Free Software Foundation, either version 2 of the License, or 5 | # (at your option) any later version. 6 | # 7 | # FreePBX is distributed in the hope that it will be useful, 8 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 9 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 | # GNU General Public License for more details. 11 | # 12 | # You should have received a copy of the GNU General Public License 13 | # along with FreePBX. If not, see . 14 | # 15 | # FreePBX Chimsese language for fax 16 | # Copyright (C) 2008, 2009, 2010 Bandwith.com 17 | # 18 | msgid "" 19 | msgstr "" 20 | "Project-Id-Version: PACKAGE VERSION\n" 21 | "Report-Msgid-Bugs-To: \n" 22 | "POT-Creation-Date: 2023-08-08 06:18+0000\n" 23 | "PO-Revision-Date: 2014-09-11 01:54+0200\n" 24 | "Last-Translator: Andrew \n" 25 | "Language-Team: Simplified Chinese \n" 27 | "Language: zh_CN\n" 28 | "MIME-Version: 1.0\n" 29 | "Content-Type: text/plain; charset=UTF-8\n" 30 | "Content-Transfer-Encoding: 8bit\n" 31 | "Plural-Forms: nplurals=1; plural=0;\n" 32 | "X-Generator: Weblate 1.10-dev\n" 33 | "X-Poedit-Language: Chinese\n" 34 | "X-Poedit-SourceCharset: utf-8\n" 35 | 36 | #: views/view.form_options.php:194 37 | msgid "A4" 38 | msgstr "" 39 | 40 | #: views/view.coreDIDHook.php:178 41 | msgid "" 42 | "Address to email faxes to on fax detection.
PLEASE NOTE: In this " 43 | "version of FreePBX, you can now set the fax destination from a list of " 44 | "destinations. Extensions/Users can be fax enabled in the user/extension " 45 | "screen and set an email address there. This will create a new destination " 46 | "type that can be selected. To upgrade this option to the full destination " 47 | "list, select YES to Detect Faxes and select a destination. After clicking " 48 | "submit, this route will be upgraded. This Legacy option will no longer be " 49 | "available after the change, it is provided to handle legacy migrations from " 50 | "previous versions of FreePBX only." 51 | msgstr "" 52 | 53 | #: fax.i18n.php:8 54 | msgid "Adds configurations, options and GUI for inbound faxing" 55 | msgstr "为呼入传真增加设置,选项,界面" 56 | 57 | #: views/view.form_options.php:213 58 | msgid "Always Generate Detection Code" 59 | msgstr "" 60 | 61 | #: bin/fax2mail.php:107 62 | #, php-format 63 | msgid "At: %s" 64 | msgstr "" 65 | 66 | #: views/view.userman.showpage.php:52 67 | msgid "Attachment Format" 68 | msgstr "" 69 | 70 | #: views/view.coreDIDHook.php:54 71 | msgid "Attempt to detect faxes on this DID." 72 | msgstr "" 73 | 74 | #: Fax.class.php:376 75 | msgid "Author to pass to tiff2pdf's -a option" 76 | msgstr "" 77 | 78 | #: views/view.userman.showpage.php:63 79 | msgid "Both" 80 | msgstr "" 81 | 82 | #: Fax.class.php:648 views/view.coreDIDHook.php:83 83 | msgid "Dahdi" 84 | msgstr "dahdi通道" 85 | 86 | #: views/view.form_options.php:36 87 | msgid "Default Fax header" 88 | msgstr "默认传真头" 89 | 90 | #: views/view.form_options.php:56 91 | msgid "Default Local Station Identifier" 92 | msgstr "默认终端" 93 | 94 | #: views/view.form_options.php:187 95 | msgid "Default Paper Size" 96 | msgstr "" 97 | 98 | #: views/view.coreDIDHook.php:22 99 | msgid "Detect Faxes" 100 | msgstr "检测传真" 101 | 102 | #: Fax.class.php:360 /usr/src/freepbx/fax/fax.i18n.php:12 103 | msgid "Dial System FAX" 104 | msgstr "拨系统传真" 105 | 106 | #: Fax.class.php:380 107 | msgid "Done!" 108 | msgstr "" 109 | 110 | #: Fax.class.php:180 111 | msgid "" 112 | "ERROR: No FAX modules detected!
Fax-related dialplan will NOT be " 113 | "generated.
This module requires spandsp based app_fax (res_fax_spandsp." 114 | "so) to function." 115 | msgstr "" 116 | 117 | #: Fax.class.php:185 118 | msgid "" 119 | "ERROR: No Fax license detected.
Fax-related dialplan will NOT be " 120 | "generated!
This module has detected that Fax for Asterisk is installed " 121 | "without a license.
At least one license is required (it is available for " 122 | "free) and must be installed." 123 | msgstr "" 124 | 125 | #: views/view.form_options.php:99 126 | msgid "Email address" 127 | msgstr "" 128 | 129 | #: views/view.form_options.php:87 130 | msgid "" 131 | "Email address that faxes appear to come from if 'system default' has been " 132 | "chosen as the default fax extension." 133 | msgstr "" 134 | 135 | #: views/view.form_options.php:109 136 | msgid "" 137 | "Email address that faxes are sent to when using the \"Dial System Fax\" " 138 | "feature code. This is also the default email for fax detection in legacy " 139 | "mode, if there are routes still running in this mode that do not have email " 140 | "addresses specified." 141 | msgstr "" 142 | 143 | #: bin/fax2mail.php:72 144 | #, php-format 145 | msgid "Email-fax dying, file %s not found!" 146 | msgstr "" 147 | 148 | #: bin/fax2mail.php:40 149 | msgid "" 150 | "Email-fax dying, no destination found (User has no email!) and we arent " 151 | "keeping the file!" 152 | msgstr "" 153 | 154 | #: views/quickCreate.php:5 155 | msgid "Enable Fax" 156 | msgstr "" 157 | 158 | #: views/view.userman.showpage.php:42 159 | msgid "Enable this user to receive faxes" 160 | msgstr "允许这个用户接收传真" 161 | 162 | #: views/view.userman.showpage.php:23 163 | msgid "Enabled" 164 | msgstr "启用" 165 | 166 | #: bin/fax2mail.php:125 167 | msgid "Enclosed, please find a new fax" 168 | msgstr "" 169 | 170 | #: bin/fax2mail.php:121 171 | #, php-format 172 | msgid "Enclosed, please find a new fax from: %s" 173 | msgstr "" 174 | 175 | #: views/view.form_options.php:119 176 | msgid "Error Correction Mode" 177 | msgstr "错误纠正模式" 178 | 179 | #: views/view.form_options.php:132 180 | msgid "" 181 | "Error Correction Mode (ECM) option is used to specify whether\n" 182 | "\t\t\t to use ecm mode or not." 183 | msgstr "" 184 | 185 | #: Fax.class.php:194 Fax.class.php:208 Fax.class.php:652 186 | msgid "Fax" 187 | msgstr "传真" 188 | 189 | #: fax.i18n.php:4 /usr/src/freepbx/fax/fax.i18n.php:10 190 | msgid "Fax Configuration" 191 | msgstr "传真设置" 192 | 193 | #: Fax.class.php:661 views/view.coreDIDHook.php:191 194 | msgid "Fax Destination" 195 | msgstr "传真目的地" 196 | 197 | #: Fax.class.php:661 198 | msgid "Fax Detection" 199 | msgstr "" 200 | 201 | #: views/view.coreDIDHook.php:140 202 | msgid "Fax Detection Time" 203 | msgstr "传真检测时间" 204 | 205 | #: Fax.class.php:661 206 | msgid "Fax Detection Wait" 207 | msgstr "" 208 | 209 | #: views/view.coreDIDHook.php:78 210 | msgid "Fax Detection type" 211 | msgstr "传真检测格式" 212 | 213 | #: views/view.coreDIDHook.php:166 214 | msgid "Fax Email Destination" 215 | msgstr "传真邮件目的地" 216 | 217 | #: Fax.class.php:661 218 | msgid "Fax Enabled" 219 | msgstr "" 220 | 221 | #: views/page.main.php:2 222 | msgid "Fax Options" 223 | msgstr "传真选项" 224 | 225 | #: Fax.class.php:794 bin/fax2mail.php:49 226 | msgid "Fax Recipient" 227 | msgstr "传真接收者" 228 | 229 | #: views/view.coreDIDHook.php:113 230 | msgid "Fax Ring" 231 | msgstr "" 232 | 233 | #: bin/fax2mail.php:12 234 | msgid "Fax Service" 235 | msgstr "" 236 | 237 | #: Fax.class.php:846 238 | #, php-format 239 | msgid "Fax user %s" 240 | msgstr "传真用户 %s" 241 | 242 | #: bin/fax2mail.php:111 bin/fax2mail.php:133 243 | #, php-format 244 | msgid "For: %s" 245 | msgstr "" 246 | 247 | #: views/view.userman.showpage.php:72 248 | msgid "Formats to convert incoming fax files to before emailing." 249 | msgstr "" 250 | 251 | #: views/view.form_options.php:46 252 | msgid "" 253 | "Header information that is passed to remote side of the fax transmission and " 254 | "is printed on top of every page. This usually contains the name of the " 255 | "person or entity sending the fax." 256 | msgstr "" 257 | 258 | #: Fax.class.php:661 259 | msgid "How long to wait and try to detect fax" 260 | msgstr "" 261 | 262 | #: views/view.coreDIDHook.php:152 263 | msgid "" 264 | "How long to wait and try to detect fax. Please note that callers to a Dahdi " 265 | "channel will hear ringing for this amount of time (i.e. the system wont " 266 | "\"answer\" the call, it will just play ringing)." 267 | msgstr "" 268 | 269 | #: Fax.class.php:824 270 | #, php-format 271 | msgid "Inbound Fax Detection: %s (%s)" 272 | msgstr "传真呼入检测: %s(%s)" 273 | 274 | #: views/view.userman.showpage.php:32 views/view.userman.showpage.php:58 275 | msgid "Inherit" 276 | msgstr "" 277 | 278 | #: Fax.class.php:896 279 | msgid "Invalid Email for Inbound Fax" 280 | msgstr "" 281 | 282 | #: views/view.coreDIDHook.php:43 283 | msgid "Legacy" 284 | msgstr "" 285 | 286 | #: views/view.coreDIDHook.php:57 287 | msgid "" 288 | "Legacy: Same as YES, only you can enter an email address as the destination. " 289 | "This option is ONLY for supporting migrated legacy fax routes. You should " 290 | "upgrade this route by choosing YES, and selecting a valid destination!" 291 | msgstr "" 292 | 293 | #: views/view.form_options.php:192 294 | msgid "Letter" 295 | msgstr "" 296 | 297 | #: views/view.form_options.php:143 298 | msgid "Maximum transfer rate" 299 | msgstr "最大传输速度" 300 | 301 | #: assets/js/fax.js:19 302 | msgid "Maximum transfer rate can not be less than Minimum transfer rate" 303 | msgstr "" 304 | 305 | #: views/view.form_options.php:155 306 | msgid "Maximum transfer rate used during fax rate negotiation." 307 | msgstr "" 308 | 309 | #: views/view.form_options.php:165 310 | msgid "Minimum transfer rate" 311 | msgstr "最小传输速度" 312 | 313 | #: views/view.form_options.php:177 314 | msgid "Minimum transfer rate used during fax rate negotiation." 315 | msgstr "" 316 | 317 | #: bin/fax2mail.php:90 318 | #, php-format 319 | msgid "New fax from: %s" 320 | msgstr "" 321 | 322 | #: bin/fax2mail.php:94 323 | msgid "New fax received" 324 | msgstr "" 325 | 326 | #: views/quickCreate.php:12 views/view.coreDIDHook.php:29 327 | #: views/view.coreDIDHook.php:41 views/view.coreDIDHook.php:120 328 | #: views/view.form_options.php:126 views/view.form_options.php:220 329 | #: views/view.userman.showpage.php:29 330 | msgid "No" 331 | msgstr "否" 332 | 333 | #: views/view.coreDIDHook.php:246 334 | msgid "" 335 | "No fax detection methods found or no valid license. Faxing cannot be enabled." 336 | msgstr "" 337 | 338 | #: views/view.coreDIDHook.php:57 339 | msgid "" 340 | "No: No attempts are made to auto-determine the call type; all calls sent to " 341 | "destination set in the 'General' tab. Use this option if this DID is used " 342 | "exclusively for voice OR fax." 343 | msgstr "" 344 | 345 | #: views/view.userman.showpage.php:60 346 | msgid "None" 347 | msgstr "" 348 | 349 | #: bin/fax2mail.php:108 bin/fax2mail.php:129 350 | #, php-format 351 | msgid "On: %s" 352 | msgstr "" 353 | 354 | #: views/view.form_options.php:76 355 | msgid "Outgoing Email address" 356 | msgstr "" 357 | 358 | #: bin/fax2mail.php:83 359 | msgid "Outgoing fax results" 360 | msgstr "" 361 | 362 | #: views/view.userman.showpage.php:61 363 | msgid "PDF" 364 | msgstr "" 365 | 366 | #: Fax.class.php:397 367 | #, php-format 368 | msgid "Page Not Found (%s)!!!!" 369 | msgstr "" 370 | 371 | #: Api/Rest/Fax.php:9 372 | msgid "Read fax settings" 373 | msgstr "" 374 | 375 | #: Api/Rest/FaxUsers.php:9 376 | msgid "Read fax user settings" 377 | msgstr "" 378 | 379 | #: bin/fax2mail.php:128 380 | #, php-format 381 | msgid "Received & processed: %s" 382 | msgstr "" 383 | 384 | #: Fax.class.php:612 385 | msgid "Reset" 386 | msgstr "" 387 | 388 | #: views/view.coreDIDHook.php:85 389 | msgid "SIP" 390 | msgstr "" 391 | 392 | #: views/view.form_options.php:200 393 | msgid "" 394 | "Select the default paper size.
This specifies the size that should be " 395 | "used if the document does not specify a size.
If the document does " 396 | "specify a size that size will be used." 397 | msgstr "" 398 | 399 | #: bin/fax2mail.php:105 400 | #, php-format 401 | msgid "Sent to %s" 402 | msgstr "" 403 | 404 | #: fax.i18n.php:6 405 | msgid "Settings" 406 | msgstr "" 407 | 408 | #: views/view.coreDIDHook.php:99 409 | msgid "" 410 | "Sip: use sip fax detection (t38). Requires asterisk 1.6.2 or greater and " 411 | "'faxdetect=yes' in the sip config files" 412 | msgstr "" 413 | 414 | #: bin/fax2mail.php:106 415 | #, php-format 416 | msgid "Status: %s" 417 | msgstr "" 418 | 419 | #: Fax.class.php:612 420 | msgid "Submit" 421 | msgstr "提交" 422 | 423 | #: views/view.userman.showpage.php:62 424 | msgid "TIFF" 425 | msgstr "" 426 | 427 | #: views/view.form_options.php:66 428 | msgid "The outgoing Fax Machine Identifier. This is usually your fax number." 429 | msgstr "" 430 | 431 | #: views/view.form_options.php:88 432 | msgid "" 433 | "This may be formatted as just 'user@example.com', or 'Fax User '. The second option will display 'Fax User' in the 'From' field in most " 435 | "email clients." 436 | msgstr "" 437 | 438 | #: Fax.class.php:661 439 | msgid "Type of fax detection to use (e.g. SIP or DAHDI)" 440 | msgstr "" 441 | 442 | #: views/view.coreDIDHook.php:94 443 | msgid "Type of fax detection to use." 444 | msgstr "被使用的传真检测格式" 445 | 446 | #: Fax.class.php:366 447 | msgid "Upgrading configs.." 448 | msgstr "" 449 | 450 | #: Fax.class.php:896 451 | #, php-format 452 | msgid "" 453 | "User Manager users '%s' have the ability to receive faxes but have no email " 454 | "address defined so they will not be able to receive faxes over email," 455 | msgstr "" 456 | 457 | #: bin/fax2mail.php:130 458 | #, php-format 459 | msgid "Via: %s" 460 | msgstr "" 461 | 462 | #: views/view.form_options.php:226 463 | msgid "" 464 | "When no fax modules are detected the module will not generate any detection " 465 | "dialplan by default. If the system is being used with phyical FAX devices, " 466 | "hylafax + iaxmodem, or other outside fax setups you can force the dialplan " 467 | "to be generated here." 468 | msgstr "" 469 | 470 | #: Fax.class.php:661 views/view.coreDIDHook.php:203 471 | msgid "Where to send the faxes" 472 | msgstr "" 473 | 474 | #: views/view.coreDIDHook.php:128 475 | msgid "" 476 | "Whether to ring while attempting to detect fax. If set to no silence will be " 477 | "heard" 478 | msgstr "" 479 | 480 | #: Api/Rest/Fax.php:12 481 | msgid "Write fax settings" 482 | msgstr "" 483 | 484 | #: Api/Rest/FaxUsers.php:12 485 | msgid "Write fax user settings" 486 | msgstr "" 487 | 488 | #: views/quickCreate.php:10 views/view.coreDIDHook.php:28 489 | #: views/view.coreDIDHook.php:40 views/view.coreDIDHook.php:118 490 | #: views/view.form_options.php:124 views/view.form_options.php:218 491 | #: views/view.userman.showpage.php:28 492 | msgid "Yes" 493 | msgstr "是" 494 | 495 | #: views/view.coreDIDHook.php:57 496 | msgid "" 497 | "Yes: try to auto determine the type of call; route to the fax destination if " 498 | "call is a fax, otherwise send to regular destination. Use this option if you " 499 | "receive both voice and fax calls on this line" 500 | msgstr "" 501 | 502 | #: views/view.coreDIDHook.php:236 503 | msgid "" 504 | "You have selected Fax Detection on this route. Please select a valid " 505 | "destination to route calls detected as faxes to." 506 | msgstr "" 507 | 508 | #: views/view.form_options.php:25 509 | msgid "" 510 | "Your maximum transfer rate is set to 2400 in certain circumstances this can " 511 | "break faxing" 512 | msgstr "" 513 | 514 | #: views/view.form_options.php:21 515 | msgid "" 516 | "Your minimum transfer rate is set to 2400 in certain circumstances this can " 517 | "break faxing" 518 | msgstr "" 519 | 520 | #: Fax.class.php:648 521 | msgid "Zaptel" 522 | msgstr "zaptel通道" 523 | 524 | #: Fax.class.php:971 525 | #, php-format 526 | msgid "gs not found, not converting %s" 527 | msgstr "" 528 | 529 | #: Fax.class.php:983 530 | #, php-format 531 | msgid "tiff2pdf not found, not converting %s" 532 | msgstr "" 533 | 534 | #~ msgid "" 535 | #~ " fax detection; requires 'faxdetect=' to be set to 'incoming' or 'both' " 536 | #~ "in " 537 | #~ msgstr "传真检测,要求faxdetect 设置成 incoming 或者 both" 538 | 539 | #~ msgid "use " 540 | #~ msgstr ":使用" 541 | 542 | #~ msgid "%s FAX Migrations Failed" 543 | #~ msgstr "传真合成失败" 544 | 545 | #~ msgid "Checking for failed migrations.." 546 | #~ msgstr "检查失败的合并" 547 | 548 | #~ msgid "Checking if legacy fax needs migrating.." 549 | #~ msgstr "检查如果旧的传真需要合并" 550 | 551 | #~ msgid "No Inbound Routes to migrate" 552 | #~ msgstr "无呼入路由合并" 553 | 554 | #~ msgid "Removing field %s from incoming table.." 555 | #~ msgstr "从呼入的列表中移动值 %s" 556 | 557 | #~ msgid "Updating simu_fax in miscdest table.." 558 | #~ msgstr "正在更新在miscdest列表的sium_fax" 559 | 560 | #~ msgid "all migrations succeeded successfully" 561 | #~ msgstr "所有合并成功" 562 | 563 | #~ msgid "already done" 564 | #~ msgstr "已经完成" 565 | 566 | #~ msgid "blank" 567 | #~ msgstr "空白" 568 | 569 | #~ msgid "done" 570 | #~ msgstr "完成" 571 | 572 | #~ msgid "failed" 573 | #~ msgstr "失败" 574 | 575 | #~ msgid "migrated" 576 | #~ msgstr "合并" 577 | 578 | #~ msgid "migrating defaults.." 579 | #~ msgstr "正在合并默认的" 580 | 581 | #~ msgid "not needed" 582 | #~ msgstr "不需要" 583 | 584 | #~ msgid "not present" 585 | #~ msgstr "当前没有" 586 | 587 | #~ msgid "removed" 588 | #~ msgstr "已移动" 589 | 590 | #~ msgid "starting migration" 591 | #~ msgstr "开始合并" 592 | 593 | #~ msgid "unknown error" 594 | #~ msgstr "不清楚的错误" 595 | 596 | #~ msgid "Always Allow Legacy Mode" 597 | #~ msgstr "总是允许旧的模式" 598 | 599 | #~ msgid "Basic" 600 | #~ msgstr "基本设置" 601 | 602 | #~ msgid "Default Recipient Email address:" 603 | #~ msgstr "默认的接收邮件地址" 604 | 605 | #~ msgid "Default fax instance:" 606 | #~ msgstr "默认传真对象" 607 | 608 | #~ msgid "" 609 | #~ "Email address used if 'system default' has been chosen as the default fax " 610 | #~ "extension." 611 | #~ msgstr "如果系统默认作为默认的传真分机的话,需要有邮件地址" 612 | 613 | #~ msgid "Email address:" 614 | #~ msgstr "邮件地址" 615 | 616 | #~ msgid "" 617 | #~ "Enter an email address where faxes sent to this extension will be " 618 | #~ "delivered." 619 | #~ msgstr "输入分机发送传真的邮件地址" 620 | 621 | #~ msgid "" 622 | #~ "Error Correction Mode (ECM) option is used to specify whether\n" 623 | #~ "\t\t\t\t to use ecm mode or not." 624 | #~ msgstr "错误纠正模式选项是用来检测是否使用ECM的" 625 | 626 | #~ msgid "Fax Detect" 627 | #~ msgstr "传真检测" 628 | 629 | #~ msgid "Fax Email" 630 | #~ msgstr "传真邮件" 631 | 632 | #~ msgid "Fax Feature Code Options" 633 | #~ msgstr "传真快捷键选项" 634 | 635 | #~ msgid "Fax Module Options" 636 | #~ msgstr "传真模块选项" 637 | 638 | #~ msgid "Fax Presentation Options" 639 | #~ msgstr "传真格式选项" 640 | 641 | #~ msgid "Fax Receive Options" 642 | #~ msgstr "传真接收选项" 643 | 644 | #~ msgid "Fax Transport Options" 645 | #~ msgstr "传真传输选项" 646 | 647 | #~ msgid "Modem" 648 | #~ msgstr "modem" 649 | 650 | #~ msgid "Modem Type." 651 | #~ msgstr "modem型号" 652 | 653 | #~ msgid "Outgoing Email address:" 654 | #~ msgstr "出局邮件地址" 655 | 656 | #~ msgid "Please Enter a valid email address for fax delivery." 657 | #~ msgstr "传真发生需要有效的邮件地址" 658 | 659 | #~ msgid "Sip" 660 | #~ msgstr "SIP协议" 661 | 662 | #~ msgid "disabled" 663 | #~ msgstr "关闭" 664 | 665 | #~ msgid "system default" 666 | #~ msgstr "系统默认" 667 | -------------------------------------------------------------------------------- /i18n/ja_JP/LC_MESSAGES/fax.po: -------------------------------------------------------------------------------- 1 | # CREDITS for JAPANESE TRANSLATION 2 | # ================================ 3 | # Current translation & maintenance: QLOOG, Inc. (Kobe, Japan) 4 | # Inquiries: info@qloog.com / www.qloog.com 5 | # 6 | # This translation is a culmination of the hard work of 7 | # several outstanding individuals, which started in 2009 with the 8 | # first-ever Japanese localization of FreePBX by Kenichi Fukaumi 9 | # and Kazuhiro Tokuyama (FreePBX Japanized Project). 10 | # 11 | # Beginning in 2013, with the approval of the original authors, 12 | # QLOOG undertook a large scale overhaul of the translation to 13 | # expand it for compatibility with FreePBX 2.11. Our work is, 14 | # of course, released under the same GPLv2 license as FreePBX. 15 | # We only ask that you kindly retain these credits in honor of 16 | # the time and effort that all of us have contributed. Enjoy! 17 | # 18 | # This file is part of FreePBX. 19 | # 20 | # FreePBX is free software: you can redistribute it and/or modify 21 | # it under the terms of the GNU General Public License as published by 22 | # the Free Software Foundation, either version 2 of the License, or 23 | # (at your option) any later version. 24 | # 25 | # FreePBX is distributed in the hope that it will be useful, 26 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 27 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 28 | # GNU General Public License for more details. 29 | # 30 | # You should have received a copy of the GNU General Public License 31 | # along with FreePBX. If not, see . 32 | # 33 | # FreePBX language template for fax 34 | # Copyright (C) 2008, 2009, 2010 Bandwith.com 35 | # 36 | msgid "" 37 | msgstr "" 38 | "Project-Id-Version: FreePBX 2.10.0.6\n" 39 | "Report-Msgid-Bugs-To: \n" 40 | "POT-Creation-Date: 2023-08-08 06:18+0000\n" 41 | "PO-Revision-Date: 2014-02-25 03:44+0200\n" 42 | "Last-Translator: Chise Mishima \n" 43 | "Language-Team: Japanese \n" 44 | "Language: ja\n" 45 | "MIME-Version: 1.0\n" 46 | "Content-Type: text/plain; charset=UTF-8\n" 47 | "Content-Transfer-Encoding: 8bit\n" 48 | "Plural-Forms: nplurals=1; plural=0;\n" 49 | "X-Generator: Weblate 1.8\n" 50 | 51 | #: views/view.form_options.php:194 52 | msgid "A4" 53 | msgstr "" 54 | 55 | #: views/view.coreDIDHook.php:178 56 | msgid "" 57 | "Address to email faxes to on fax detection.
PLEASE NOTE: In this " 58 | "version of FreePBX, you can now set the fax destination from a list of " 59 | "destinations. Extensions/Users can be fax enabled in the user/extension " 60 | "screen and set an email address there. This will create a new destination " 61 | "type that can be selected. To upgrade this option to the full destination " 62 | "list, select YES to Detect Faxes and select a destination. After clicking " 63 | "submit, this route will be upgraded. This Legacy option will no longer be " 64 | "available after the change, it is provided to handle legacy migrations from " 65 | "previous versions of FreePBX only." 66 | msgstr "" 67 | "fax検知においてfaxをEメール送信する対象アドレス。
注意: このバージョンの" 68 | "FreePBXでは、ここで宛先リストからfaxの宛先を設定することが可能です。内線/ユー" 69 | "ザー は、ユーザー/内線 スクリーン内でfax受信を有効にすることが可能で、そこでE" 70 | "メールアドレスを設定することができます。ここでは新たに選択可能な宛先タイプを" 71 | "作成します。このオプションを全宛先リストにアップグレードするには、「Faxを検" 72 | "知」で「はい」を選択して、宛先を選択します。「送信」を押した後にこのルートは" 73 | "アップグレードされます。このレガシーオプションは変更後は利用できません、前の" 74 | "バージョンのFreePBXからのレガシー移行をサポートするためにだけ提供されていま" 75 | "す。" 76 | 77 | #: fax.i18n.php:8 78 | msgid "Adds configurations, options and GUI for inbound faxing" 79 | msgstr "インバウンドFaxのためのオプションとGUIの設定の追加" 80 | 81 | #: views/view.form_options.php:213 82 | msgid "Always Generate Detection Code" 83 | msgstr "常に検知コードを生成" 84 | 85 | #: bin/fax2mail.php:107 86 | #, php-format 87 | msgid "At: %s" 88 | msgstr "" 89 | 90 | #: views/view.userman.showpage.php:52 91 | msgid "Attachment Format" 92 | msgstr "" 93 | 94 | #: views/view.coreDIDHook.php:54 95 | msgid "Attempt to detect faxes on this DID." 96 | msgstr "このダイヤルインでfax検知を試みる。" 97 | 98 | #: Fax.class.php:376 99 | msgid "Author to pass to tiff2pdf's -a option" 100 | msgstr "" 101 | 102 | #: views/view.userman.showpage.php:63 103 | msgid "Both" 104 | msgstr "" 105 | 106 | #: Fax.class.php:648 views/view.coreDIDHook.php:83 107 | msgid "Dahdi" 108 | msgstr "Dahdi" 109 | 110 | #: views/view.form_options.php:36 111 | msgid "Default Fax header" 112 | msgstr "デフォルトFaxヘッダー" 113 | 114 | #: views/view.form_options.php:56 115 | msgid "Default Local Station Identifier" 116 | msgstr "デフォルトの送信側FAX ID" 117 | 118 | #: views/view.form_options.php:187 119 | msgid "Default Paper Size" 120 | msgstr "" 121 | 122 | #: views/view.coreDIDHook.php:22 123 | msgid "Detect Faxes" 124 | msgstr "Faxを検知" 125 | 126 | #: Fax.class.php:360 /usr/src/freepbx/fax/fax.i18n.php:12 127 | msgid "Dial System FAX" 128 | msgstr "ダイヤルシステムFAX" 129 | 130 | #: Fax.class.php:380 131 | msgid "Done!" 132 | msgstr "" 133 | 134 | #: Fax.class.php:180 135 | msgid "" 136 | "ERROR: No FAX modules detected!
Fax-related dialplan will NOT be " 137 | "generated.
This module requires spandsp based app_fax (res_fax_spandsp." 138 | "so) to function." 139 | msgstr "" 140 | 141 | #: Fax.class.php:185 142 | msgid "" 143 | "ERROR: No Fax license detected.
Fax-related dialplan will NOT be " 144 | "generated!
This module has detected that Fax for Asterisk is installed " 145 | "without a license.
At least one license is required (it is available for " 146 | "free) and must be installed." 147 | msgstr "" 148 | "ERROR: Faxのライセンスを検知できませんでした。
Faxに関連するダイヤルプラ" 149 | "ンが生成されません。
このモジュールで、ライセンスなしのFax for " 150 | "Asteriskがインストールされていることを検知しました。
少なくとも1ライセンス" 151 | "(無料で利用できます)がインストールされている必要があります。" 152 | 153 | #: views/view.form_options.php:99 154 | msgid "Email address" 155 | msgstr "" 156 | 157 | #: views/view.form_options.php:87 158 | msgid "" 159 | "Email address that faxes appear to come from if 'system default' has been " 160 | "chosen as the default fax extension." 161 | msgstr "" 162 | "デフォルトfax内線として、'システムデフォルト'が選択された場合にfax情報を送信" 163 | "するEメールアドレス。" 164 | 165 | #: views/view.form_options.php:109 166 | msgid "" 167 | "Email address that faxes are sent to when using the \"Dial System Fax\" " 168 | "feature code. This is also the default email for fax detection in legacy " 169 | "mode, if there are routes still running in this mode that do not have email " 170 | "addresses specified." 171 | msgstr "" 172 | "\"ダイヤルシステムファックス\"キーコードを使用しているときにFAXが送信される" 173 | "メールアドレス。レガシーモードで起動していて、Eメールアドレスが指定されていな" 174 | "いルートがまだある場合には、fax検知のためのデフォルトのEメールアドレスにもな" 175 | "ります。" 176 | 177 | #: bin/fax2mail.php:72 178 | #, php-format 179 | msgid "Email-fax dying, file %s not found!" 180 | msgstr "" 181 | 182 | #: bin/fax2mail.php:40 183 | msgid "" 184 | "Email-fax dying, no destination found (User has no email!) and we arent " 185 | "keeping the file!" 186 | msgstr "" 187 | 188 | #: views/quickCreate.php:5 189 | msgid "Enable Fax" 190 | msgstr "" 191 | 192 | #: views/view.userman.showpage.php:42 193 | msgid "Enable this user to receive faxes" 194 | msgstr "このユーザーがfaxを受信できるようにする" 195 | 196 | #: views/view.userman.showpage.php:23 197 | msgid "Enabled" 198 | msgstr "有効" 199 | 200 | #: bin/fax2mail.php:125 201 | msgid "Enclosed, please find a new fax" 202 | msgstr "" 203 | 204 | #: bin/fax2mail.php:121 205 | #, php-format 206 | msgid "Enclosed, please find a new fax from: %s" 207 | msgstr "" 208 | 209 | #: views/view.form_options.php:119 210 | msgid "Error Correction Mode" 211 | msgstr "エラー訂正モード" 212 | 213 | #: views/view.form_options.php:132 214 | msgid "" 215 | "Error Correction Mode (ECM) option is used to specify whether\n" 216 | "\t\t\t to use ecm mode or not." 217 | msgstr "" 218 | "エラー転送モード(ECM)オプションは次を指定する為に使用\n" 219 | "\t\t\tecmモードの使用有無。" 220 | 221 | #: Fax.class.php:194 Fax.class.php:208 Fax.class.php:652 222 | msgid "Fax" 223 | msgstr "Fax" 224 | 225 | #: fax.i18n.php:4 /usr/src/freepbx/fax/fax.i18n.php:10 226 | msgid "Fax Configuration" 227 | msgstr "Fax設定" 228 | 229 | #: Fax.class.php:661 views/view.coreDIDHook.php:191 230 | msgid "Fax Destination" 231 | msgstr "Fax宛先" 232 | 233 | #: Fax.class.php:661 234 | msgid "Fax Detection" 235 | msgstr "" 236 | 237 | #: views/view.coreDIDHook.php:140 238 | msgid "Fax Detection Time" 239 | msgstr "Fax検知時間" 240 | 241 | #: Fax.class.php:661 242 | msgid "Fax Detection Wait" 243 | msgstr "" 244 | 245 | #: views/view.coreDIDHook.php:78 246 | msgid "Fax Detection type" 247 | msgstr "Fax検知タイプ" 248 | 249 | #: views/view.coreDIDHook.php:166 250 | msgid "Fax Email Destination" 251 | msgstr "Fax Eメール宛先" 252 | 253 | #: Fax.class.php:661 254 | msgid "Fax Enabled" 255 | msgstr "" 256 | 257 | #: views/page.main.php:2 258 | msgid "Fax Options" 259 | msgstr "Faxオプション" 260 | 261 | #: Fax.class.php:794 bin/fax2mail.php:49 262 | msgid "Fax Recipient" 263 | msgstr "Fax受信者" 264 | 265 | #: views/view.coreDIDHook.php:113 266 | msgid "Fax Ring" 267 | msgstr "" 268 | 269 | #: bin/fax2mail.php:12 270 | msgid "Fax Service" 271 | msgstr "" 272 | 273 | #: Fax.class.php:846 274 | #, php-format 275 | msgid "Fax user %s" 276 | msgstr "Fax ユーザー %s" 277 | 278 | #: bin/fax2mail.php:111 bin/fax2mail.php:133 279 | #, php-format 280 | msgid "For: %s" 281 | msgstr "" 282 | 283 | #: views/view.userman.showpage.php:72 284 | msgid "Formats to convert incoming fax files to before emailing." 285 | msgstr "" 286 | 287 | #: views/view.form_options.php:46 288 | msgid "" 289 | "Header information that is passed to remote side of the fax transmission and " 290 | "is printed on top of every page. This usually contains the name of the " 291 | "person or entity sending the fax." 292 | msgstr "" 293 | "fax転送のリモート側に送出され、全てのページのトップにプリントされるヘッダー情" 294 | "報。通常faxを送信する人の名前や実体の名前を含ませます。" 295 | 296 | #: Fax.class.php:661 297 | msgid "How long to wait and try to detect fax" 298 | msgstr "" 299 | 300 | #: views/view.coreDIDHook.php:152 301 | msgid "" 302 | "How long to wait and try to detect fax. Please note that callers to a Dahdi " 303 | "channel will hear ringing for this amount of time (i.e. the system wont " 304 | "\"answer\" the call, it will just play ringing)." 305 | msgstr "" 306 | 307 | #: Fax.class.php:824 308 | #, php-format 309 | msgid "Inbound Fax Detection: %s (%s)" 310 | msgstr "インバウンド Fax 検知: %s (%s)" 311 | 312 | #: views/view.userman.showpage.php:32 views/view.userman.showpage.php:58 313 | msgid "Inherit" 314 | msgstr "" 315 | 316 | #: Fax.class.php:896 317 | msgid "Invalid Email for Inbound Fax" 318 | msgstr "" 319 | 320 | #: views/view.coreDIDHook.php:43 321 | msgid "Legacy" 322 | msgstr "レガシー" 323 | 324 | #: views/view.coreDIDHook.php:57 325 | msgid "" 326 | "Legacy: Same as YES, only you can enter an email address as the destination. " 327 | "This option is ONLY for supporting migrated legacy fax routes. You should " 328 | "upgrade this route by choosing YES, and selecting a valid destination!" 329 | msgstr "" 330 | "レガシ―: 「はい」と同じですが、宛先としてEメールアドレスのみを入力することが" 331 | "できます。このオプションは、移行した従来のファクスルートをサポートするための" 332 | "みで使用されます。「はい」を選択し、有効な宛先を選択することにより、このルー" 333 | "トをアップグレードする必要があります" 334 | 335 | #: views/view.form_options.php:192 336 | msgid "Letter" 337 | msgstr "" 338 | 339 | #: views/view.form_options.php:143 340 | msgid "Maximum transfer rate" 341 | msgstr "最大転送レート" 342 | 343 | #: assets/js/fax.js:19 344 | msgid "Maximum transfer rate can not be less than Minimum transfer rate" 345 | msgstr "" 346 | 347 | #: views/view.form_options.php:155 348 | msgid "Maximum transfer rate used during fax rate negotiation." 349 | msgstr "faxレートネゴシエーション中に使用される最大転送レート" 350 | 351 | #: views/view.form_options.php:165 352 | msgid "Minimum transfer rate" 353 | msgstr "最小転送レート" 354 | 355 | #: views/view.form_options.php:177 356 | msgid "Minimum transfer rate used during fax rate negotiation." 357 | msgstr "faxレートネゴシエーション中に使用される最小転送レート" 358 | 359 | #: bin/fax2mail.php:90 360 | #, php-format 361 | msgid "New fax from: %s" 362 | msgstr "" 363 | 364 | #: bin/fax2mail.php:94 365 | msgid "New fax received" 366 | msgstr "" 367 | 368 | #: views/quickCreate.php:12 views/view.coreDIDHook.php:29 369 | #: views/view.coreDIDHook.php:41 views/view.coreDIDHook.php:120 370 | #: views/view.form_options.php:126 views/view.form_options.php:220 371 | #: views/view.userman.showpage.php:29 372 | msgid "No" 373 | msgstr "いいえ" 374 | 375 | #: views/view.coreDIDHook.php:246 376 | msgid "" 377 | "No fax detection methods found or no valid license. Faxing cannot be enabled." 378 | msgstr "fax検知方法又は有効なライセンスが見つかりません。Faxが有効になりません" 379 | 380 | #: views/view.coreDIDHook.php:57 381 | msgid "" 382 | "No: No attempts are made to auto-determine the call type; all calls sent to " 383 | "destination set in the 'General' tab. Use this option if this DID is used " 384 | "exclusively for voice OR fax." 385 | msgstr "" 386 | 387 | #: views/view.userman.showpage.php:60 388 | msgid "None" 389 | msgstr "" 390 | 391 | #: bin/fax2mail.php:108 bin/fax2mail.php:129 392 | #, php-format 393 | msgid "On: %s" 394 | msgstr "" 395 | 396 | #: views/view.form_options.php:76 397 | msgid "Outgoing Email address" 398 | msgstr "" 399 | 400 | #: bin/fax2mail.php:83 401 | msgid "Outgoing fax results" 402 | msgstr "" 403 | 404 | #: views/view.userman.showpage.php:61 405 | msgid "PDF" 406 | msgstr "" 407 | 408 | #: Fax.class.php:397 409 | #, php-format 410 | msgid "Page Not Found (%s)!!!!" 411 | msgstr "" 412 | 413 | #: Api/Rest/Fax.php:9 414 | msgid "Read fax settings" 415 | msgstr "" 416 | 417 | #: Api/Rest/FaxUsers.php:9 418 | msgid "Read fax user settings" 419 | msgstr "" 420 | 421 | #: bin/fax2mail.php:128 422 | #, php-format 423 | msgid "Received & processed: %s" 424 | msgstr "" 425 | 426 | #: Fax.class.php:612 427 | msgid "Reset" 428 | msgstr "" 429 | 430 | #: views/view.coreDIDHook.php:85 431 | msgid "SIP" 432 | msgstr "" 433 | 434 | #: views/view.form_options.php:200 435 | msgid "" 436 | "Select the default paper size.
This specifies the size that should be " 437 | "used if the document does not specify a size.
If the document does " 438 | "specify a size that size will be used." 439 | msgstr "" 440 | 441 | #: bin/fax2mail.php:105 442 | #, php-format 443 | msgid "Sent to %s" 444 | msgstr "" 445 | 446 | #: fax.i18n.php:6 447 | msgid "Settings" 448 | msgstr "設定" 449 | 450 | #: views/view.coreDIDHook.php:99 451 | msgid "" 452 | "Sip: use sip fax detection (t38). Requires asterisk 1.6.2 or greater and " 453 | "'faxdetect=yes' in the sip config files" 454 | msgstr "" 455 | "Sip: sip fax検知(t38)を使用します。asterisk 1.6.2以降と、sip設定ファイルで " 456 | "'faxdetect=yes' とする必要があります。" 457 | 458 | #: bin/fax2mail.php:106 459 | #, php-format 460 | msgid "Status: %s" 461 | msgstr "" 462 | 463 | #: Fax.class.php:612 464 | msgid "Submit" 465 | msgstr "送信" 466 | 467 | #: views/view.userman.showpage.php:62 468 | msgid "TIFF" 469 | msgstr "" 470 | 471 | #: views/view.form_options.php:66 472 | msgid "The outgoing Fax Machine Identifier. This is usually your fax number." 473 | msgstr "送信するFAXのID。通常あなたのfax番号。" 474 | 475 | #: views/view.form_options.php:88 476 | msgid "" 477 | "This may be formatted as just 'user@example.com', or 'Fax User '. The second option will display 'Fax User' in the 'From' field in most " 479 | "email clients." 480 | msgstr "" 481 | 482 | #: Fax.class.php:661 483 | msgid "Type of fax detection to use (e.g. SIP or DAHDI)" 484 | msgstr "" 485 | 486 | #: views/view.coreDIDHook.php:94 487 | msgid "Type of fax detection to use." 488 | msgstr "使用されるfax検知タイプ" 489 | 490 | #: Fax.class.php:366 491 | msgid "Upgrading configs.." 492 | msgstr "" 493 | 494 | #: Fax.class.php:896 495 | #, php-format 496 | msgid "" 497 | "User Manager users '%s' have the ability to receive faxes but have no email " 498 | "address defined so they will not be able to receive faxes over email," 499 | msgstr "" 500 | 501 | #: bin/fax2mail.php:130 502 | #, php-format 503 | msgid "Via: %s" 504 | msgstr "" 505 | 506 | #: views/view.form_options.php:226 507 | msgid "" 508 | "When no fax modules are detected the module will not generate any detection " 509 | "dialplan by default. If the system is being used with phyical FAX devices, " 510 | "hylafax + iaxmodem, or other outside fax setups you can force the dialplan " 511 | "to be generated here." 512 | msgstr "" 513 | "faxモジュールが検知されなかった場合、モジュールはデフォルトで検知ダイヤルプラ" 514 | "ンを生成しません。もしシステムが物理的なFAXデバイスや、、hylafax + iaxmodem" 515 | "や、他の外部fax設定と一緒に使用されている場合、ここで生成されるダイヤルプラン" 516 | "を強制実行することができます。" 517 | 518 | #: Fax.class.php:661 views/view.coreDIDHook.php:203 519 | msgid "Where to send the faxes" 520 | msgstr "" 521 | 522 | #: views/view.coreDIDHook.php:128 523 | msgid "" 524 | "Whether to ring while attempting to detect fax. If set to no silence will be " 525 | "heard" 526 | msgstr "" 527 | 528 | #: Api/Rest/Fax.php:12 529 | msgid "Write fax settings" 530 | msgstr "" 531 | 532 | #: Api/Rest/FaxUsers.php:12 533 | msgid "Write fax user settings" 534 | msgstr "" 535 | 536 | #: views/quickCreate.php:10 views/view.coreDIDHook.php:28 537 | #: views/view.coreDIDHook.php:40 views/view.coreDIDHook.php:118 538 | #: views/view.form_options.php:124 views/view.form_options.php:218 539 | #: views/view.userman.showpage.php:28 540 | msgid "Yes" 541 | msgstr "はい" 542 | 543 | #: views/view.coreDIDHook.php:57 544 | msgid "" 545 | "Yes: try to auto determine the type of call; route to the fax destination if " 546 | "call is a fax, otherwise send to regular destination. Use this option if you " 547 | "receive both voice and fax calls on this line" 548 | msgstr "" 549 | "はい: コールタイプの自動決定を試みます; コールがfaxの場合はfax宛先にルーティ" 550 | "ングし、それ以外の場合は通常の宛先に送信します。この回線上のコールで音声もfax" 551 | "も受信する場合にこのオプションを使用します。" 552 | 553 | #: views/view.coreDIDHook.php:236 554 | msgid "" 555 | "You have selected Fax Detection on this route. Please select a valid " 556 | "destination to route calls detected as faxes to." 557 | msgstr "" 558 | 559 | #: views/view.form_options.php:25 560 | msgid "" 561 | "Your maximum transfer rate is set to 2400 in certain circumstances this can " 562 | "break faxing" 563 | msgstr "" 564 | 565 | #: views/view.form_options.php:21 566 | msgid "" 567 | "Your minimum transfer rate is set to 2400 in certain circumstances this can " 568 | "break faxing" 569 | msgstr "" 570 | 571 | #: Fax.class.php:648 572 | msgid "Zaptel" 573 | msgstr "Zaptel" 574 | 575 | #: Fax.class.php:971 576 | #, php-format 577 | msgid "gs not found, not converting %s" 578 | msgstr "" 579 | 580 | #: Fax.class.php:983 581 | #, php-format 582 | msgid "tiff2pdf not found, not converting %s" 583 | msgstr "" 584 | 585 | #~ msgid "" 586 | #~ " fax detection; requires 'faxdetect=' to be set to 'incoming' or 'both' " 587 | #~ "in " 588 | #~ msgstr "" 589 | #~ " fax 検知; 'faxdetect=' を 'incoming' もしくは 'both' に設定する必要があり" 590 | #~ "ます。" 591 | 592 | #~ msgid "" 593 | #~ "\"You have selected Fax Detection on this route. Please select a valid " 594 | #~ "destination to route calls detected as faxes to.\"" 595 | #~ msgstr "" 596 | #~ "\"あなたはこの経路でFax検知を選択しました。faxとして検知されたコールをルー" 597 | #~ "ティングする有効な宛先を選択してください。\"" 598 | 599 | #~ msgid "use " 600 | #~ msgstr "使用" 601 | 602 | #~ msgid "" 603 | #~ "NV Fax Detect: Use NV Fax Detection; Requires NV Fax Detect to be " 604 | #~ "installed and recognized by asterisk" 605 | #~ msgstr "" 606 | #~ "NV Fax検知: NV Fax検知を使用します; NV Fax検知がインストールされ、asterisk" 607 | #~ "に認識されている必要があります。" 608 | 609 | #~ msgid "NVFax" 610 | #~ msgstr "NVFax" 611 | 612 | #~ msgid "%s FAX Migrations Failed" 613 | #~ msgstr "%s FAX マイグレーション失敗" 614 | 615 | #~ msgid "%s FAX Migrations Failed, check notification panel for details" 616 | #~ msgstr "" 617 | #~ "%s FAX マイグレーションは失敗しました。詳しい情報はパネル通知をチェックし" 618 | #~ "てください。" 619 | 620 | #~ msgid "Checking for failed migrations.." 621 | #~ msgstr "失敗した移行の確認.." 622 | 623 | #~ msgid "Checking if legacy fax needs migrating.." 624 | #~ msgstr "レガシーfaxに移行が必要かどうかをチェック中.." 625 | 626 | #~ msgid "" 627 | #~ "Migrating faxemail field in the fax_users table to allow longer emails..." 628 | #~ msgstr "" 629 | #~ "長いEメールを可能にする為に、fax_usersテーブルのfaxemailフィールドを移行" 630 | #~ "中..." 631 | 632 | #~ msgid "Moving simu_fax feature code from core.." 633 | #~ msgstr "simu_faxキーコードをコアから移動中.." 634 | 635 | #~ msgid "No Inbound Routes to migrate" 636 | #~ msgstr "移行するインバウンドルートがありません。" 637 | 638 | #~ msgid "Removing field %s from incoming table.." 639 | #~ msgstr "incoming テーブルからフィールド %s を削除する.." 640 | 641 | #~ msgid "Removing old globals.." 642 | #~ msgstr "古いglobalsを削除.." 643 | 644 | #~ msgid "Successfully migrated faxemail field" 645 | #~ msgstr "faxemailフィールドの移行に成功しました" 646 | 647 | #~ msgid "" 648 | #~ "The following Inbound Routes had FAX processing that failed migration " 649 | #~ "because they were accessing a device with no associated user. They have " 650 | #~ "been disabled and will need to be updated. Click delete icon on the right " 651 | #~ "to remove this notice." 652 | #~ msgstr "" 653 | #~ "以下のインバウンドルートは、関連付けられたユーザーなしでデバイスにアクセス" 654 | #~ "していたため、移行に失敗したFAXの処理があります。それらは無効になってい" 655 | #~ "て、更新する必要があります。この通知を削除するには右側にある削除アイコンを" 656 | #~ "クリックしてください。" 657 | 658 | #~ msgid "Updating simu_fax in miscdest table.." 659 | #~ msgstr "miscdestテーブル内のsimu_faxを更新中.." 660 | 661 | #~ msgid "WARNING: Failed migration. Email length is limited to 50 characters." 662 | #~ msgstr "警告: 移行に失敗しました。Eメールは50文字の制限があります。" 663 | 664 | #~ msgid "all migrations succeeded successfully" 665 | #~ msgstr "全ての移行に成功しました。" 666 | 667 | #~ msgid "already done" 668 | #~ msgstr "既に実行済み" 669 | 670 | #~ msgid "blank" 671 | #~ msgstr "空白" 672 | 673 | #~ msgid "done" 674 | #~ msgstr "完了" 675 | 676 | #~ msgid "duplicate, removing old from core.." 677 | #~ msgstr "重複しています、古いのをコアから削除.." 678 | 679 | #~ msgid "failed" 680 | #~ msgstr "失敗" 681 | 682 | #~ msgid "migrated" 683 | #~ msgstr "移行しました。" 684 | 685 | #~ msgid "migrating defaults.." 686 | #~ msgstr "デフォルトの移行中.." 687 | 688 | #~ msgid "not needed" 689 | #~ msgstr "必要なし" 690 | 691 | #~ msgid "not present" 692 | #~ msgstr "存在しません。" 693 | 694 | #~ msgid "removed" 695 | #~ msgstr "削除済み" 696 | 697 | #~ msgid "starting migration" 698 | #~ msgstr "移行を開始" 699 | 700 | #~ msgid "unknown error" 701 | #~ msgstr "不明なエラー" 702 | 703 | #~ msgid "" 704 | #~ " channel will hear ringing for this amount of time (i.e. the system wont " 705 | #~ "\"answer\" the call, it will just play ringing)" 706 | #~ msgstr "" 707 | #~ "チャネルへの発信者がここで指定した時間、リングトーンを聞くことになることに" 708 | #~ "注意してください。(すなわちシステムはコールに応答せずに、リング音だけ再生" 709 | #~ "します。)" 710 | 711 | #~ msgid "Always Allow Legacy Mode" 712 | #~ msgstr "常にレガシーモードを許可" 713 | 714 | #~ msgid "Default Recipient Email address:" 715 | #~ msgstr "デフォルト受信 Eメールアドレス:" 716 | 717 | #~ msgid "Default fax instance:" 718 | #~ msgstr "デフォルトFaxインスタンス:" 719 | 720 | #~ msgid "" 721 | #~ "ERROR: No FAX modules detected!
Fax-related dialplan will NOT " 722 | #~ "be generated.
This module requires Fax for Asterisk or spandsp based " 723 | #~ "app_fax or app_rxfax to function." 724 | #~ msgstr "" 725 | #~ "ERROR: Faxモジュールを検知できませんでした!
Faxに関連するダイヤルプラ" 726 | #~ "ンが生成されません。
このモジュールが機能するには、Fax for " 727 | #~ "Astersik又はspandspベースの app_faxか、app_rxfaxが必要です。" 728 | 729 | #~ msgid "" 730 | #~ "Email address used if 'system default' has been chosen as the default fax " 731 | #~ "extension." 732 | #~ msgstr "" 733 | #~ "デフォルトのFax内線として'システムデフォルト'が選択された際に使用するEメー" 734 | #~ "ルアドレス。" 735 | 736 | #~ msgid "Email address:" 737 | #~ msgstr "Eメールアドレス:" 738 | 739 | #~ msgid "" 740 | #~ "Enter an email address where faxes sent to this extension will be " 741 | #~ "delivered." 742 | #~ msgstr "" 743 | #~ "この内線に送信されたfaxが配送されるEメールアドレスを入力してください。" 744 | 745 | #~ msgid "Fax Detect" 746 | #~ msgstr "Fax検知" 747 | 748 | #~ msgid "Fax Email" 749 | #~ msgstr "Fax Email" 750 | 751 | #~ msgid "Fax Feature Code Options" 752 | #~ msgstr "Faxキーコードオプション" 753 | 754 | #~ msgid "Fax Module Options" 755 | #~ msgstr "Fax モジュールオプション" 756 | 757 | #~ msgid "Fax Presentation Options" 758 | #~ msgstr "Faxプレゼンテーションオプション" 759 | 760 | #~ msgid "Fax Receive Options" 761 | #~ msgstr "Fax受信オプション" 762 | 763 | #~ msgid "Fax Transport Options" 764 | #~ msgstr "Fax転送オプション" 765 | 766 | #~ msgid "" 767 | #~ "How long to wait and try to detect fax. Please note that callers to a " 768 | #~ msgstr "どれぐらいの間待ち、fax検知を試みるか。" 769 | 770 | #~ msgid "" 771 | #~ "In earlier versions, it was possible to provide an email address with the " 772 | #~ "incoming FAX detection to route faxes that were being handled by fax-to-" 773 | #~ "email detection. This has been deprecated in favor of Extension/User FAX " 774 | #~ "destinations where an email address can be provided. During migration, " 775 | #~ "the old email address remains present for routes configured this way but " 776 | #~ "goes away once 'properly' configured. This options forces the Legacy Mode " 777 | #~ "to always be present as an option." 778 | #~ msgstr "" 779 | #~ "以前のバージョンでは、「ファックスから電子メール検知」によって処理される" 780 | #~ "FAXをルーティングするための「着信FAX検知」に使用されるメールアドレスを提供" 781 | #~ "することが可能でした。これは、電子メールアドレスを提供することができる 内" 782 | #~ "線/ユーザFAXの宛先 の採用により廃止されました。移行中は、古いメールアドレ" 783 | #~ "スは、このように設定されたルートのために存在したままとなりますが、一度 " 784 | #~ "\"適切に\"設定されると消えます。このオプションは強制的にレガシーモードを常" 785 | #~ "にオプションとして存在させます。" 786 | 787 | #~ msgid "Migrating fax_incoming table..." 788 | #~ msgstr "fax_incomingテーブルを移行中..." 789 | 790 | #~ msgid "Modem" 791 | #~ msgstr "モデム" 792 | 793 | #~ msgid "Modem Type." 794 | #~ msgstr "モデムタイプ。" 795 | 796 | #~ msgid "" 797 | #~ "No: No attempts are made to auto-determine the call type; all calls sent " 798 | #~ "to destination below. Use this option if this DID is used exclusively for " 799 | #~ "voice OR fax." 800 | #~ msgstr "" 801 | #~ "いいえ: コールタイプの自動決定に対して何の試みもおこなわない; 以下の宛先に" 802 | #~ "送信される全てのコール。もしこのダイヤルイン番号が排他的に音声もしくはfax" 803 | #~ "に使用される場合にこのオプションを使用します。" 804 | 805 | #~ msgid "Outgoing Email address:" 806 | #~ msgstr "送信Eメールアドレス:" 807 | 808 | #~ msgid "Please Enter a valid email address for fax delivery." 809 | #~ msgstr "faxが配送される有効なEメールアドレスを入力してください。" 810 | 811 | #~ msgid "" 812 | #~ "Select 'system default' to have the system act as a fax instance. You can " 813 | #~ "then route faxes to this instance and avoid having to route faxes to an " 814 | #~ "instance associated with a specific entity. This can be the system using " 815 | #~ "Asterisk's internal capabilities or it can be an external extension, such " 816 | #~ "as a physical fax machine" 817 | #~ msgstr "" 818 | #~ "システムがfaxインスタンスとして動作する'システムデフォルト'を選択します。" 819 | #~ "これによりfaxをこのインスタンスにルーティングし、特定のエンティティに結び" 820 | #~ "付けられたインスタンスへfaxをルーティングすることを回避することができま" 821 | #~ "す。これは、Asteriskの内部的な機能で実装することができ、また物理的なfax装" 822 | #~ "置のように外部の内線を使用することができます。" 823 | 824 | #~ msgid "Sip" 825 | #~ msgstr "Sip" 826 | 827 | #~ msgid "Successfully migrated fax_incoming table!" 828 | #~ msgstr "fax_incomingテーブルの移行に成功しました!" 829 | 830 | #~ msgid "WARNING: fax_incoming table may still be using the 2.6 schema!" 831 | #~ msgstr "警告: fax_incoming テーブルはまだ 2.6のスキーマを使用しています!" 832 | 833 | #~ msgid "Where to send the call if we detect that its a fax" 834 | #~ msgstr "faxを検出した際にコールを送信する宛先" 835 | 836 | #~ msgid "disabled" 837 | #~ msgstr "無効" 838 | 839 | #~ msgid "system default" 840 | #~ msgstr "システムデフォルト" 841 | -------------------------------------------------------------------------------- /i18n/fa_IR/LC_MESSAGES/fax.po: -------------------------------------------------------------------------------- 1 | # This file is part of FreePBX. 2 | # 3 | # For licensing information, please see the file named LICENSE located in the module directory 4 | # 5 | # FreePBX language template for fax 6 | # Copyright (C) 2008-2015 Sangoma, Inc. 7 | # 8 | msgid "" 9 | msgstr "" 10 | "Project-Id-Version: PACKAGE VERSION\n" 11 | "Report-Msgid-Bugs-To: \n" 12 | "POT-Creation-Date: 2023-08-08 06:18+0000\n" 13 | "PO-Revision-Date: 2016-08-26 03:04+0200\n" 14 | "Last-Translator: Media \n" 15 | "Language-Team: Persian (Iran) \n" 17 | "Language: fa_IR\n" 18 | "MIME-Version: 1.0\n" 19 | "Content-Type: text/plain; charset=UTF-8\n" 20 | "Content-Transfer-Encoding: 8bit\n" 21 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 22 | "X-Generator: Weblate 2.4\n" 23 | 24 | #: views/view.form_options.php:194 25 | msgid "A4" 26 | msgstr "A4" 27 | 28 | #: views/view.coreDIDHook.php:178 29 | msgid "" 30 | "Address to email faxes to on fax detection.
PLEASE NOTE: In this " 31 | "version of FreePBX, you can now set the fax destination from a list of " 32 | "destinations. Extensions/Users can be fax enabled in the user/extension " 33 | "screen and set an email address there. This will create a new destination " 34 | "type that can be selected. To upgrade this option to the full destination " 35 | "list, select YES to Detect Faxes and select a destination. After clicking " 36 | "submit, this route will be upgraded. This Legacy option will no longer be " 37 | "available after the change, it is provided to handle legacy migrations from " 38 | "previous versions of FreePBX only." 39 | msgstr "" 40 | "آدرسی که فکسهای دریافتی به آن ایمیل میشود.
PLEASE NOTE: In this version " 41 | "of FreePBX, you can now set the fax destination from a list of destinations. " 42 | "Extensions/Users can be fax enabled in the user/extension screen and set an " 43 | "email address there. This will create a new destination type that can be " 44 | "selected. To upgrade this option to the full destination list, select YES to " 45 | "Detect Faxes and select a destination. After clicking submit, this route " 46 | "will be upgraded. This Legacy option will no longer be available after the " 47 | "change, it is provided to handle legacy migrations from previous versions of " 48 | "FreePBX only." 49 | 50 | #: fax.i18n.php:8 51 | msgid "Adds configurations, options and GUI for inbound faxing" 52 | msgstr "افزودن تنظیمات، گزینه ها و رابط گرافیکی برای دورنگار دریافتی" 53 | 54 | #: views/view.form_options.php:213 55 | msgid "Always Generate Detection Code" 56 | msgstr "تولید همیشگی کد تشخیص" 57 | 58 | #: bin/fax2mail.php:107 59 | #, php-format 60 | msgid "At: %s" 61 | msgstr "" 62 | 63 | #: views/view.userman.showpage.php:52 64 | msgid "Attachment Format" 65 | msgstr "فرمت پیوست" 66 | 67 | #: views/view.coreDIDHook.php:54 68 | msgid "Attempt to detect faxes on this DID." 69 | msgstr "تلاش برای تشخیص دورنگار در این داخلی مستقیم." 70 | 71 | #: Fax.class.php:376 72 | msgid "Author to pass to tiff2pdf's -a option" 73 | msgstr "" 74 | 75 | #: views/view.userman.showpage.php:63 76 | msgid "Both" 77 | msgstr "هردو" 78 | 79 | #: Fax.class.php:648 views/view.coreDIDHook.php:83 80 | msgid "Dahdi" 81 | msgstr "دهدی (Dahdi)" 82 | 83 | #: views/view.form_options.php:36 84 | msgid "Default Fax header" 85 | msgstr "سربرگ پیشفرض دورنگار" 86 | 87 | #: views/view.form_options.php:56 88 | msgid "Default Local Station Identifier" 89 | msgstr "شناسه پیشفرض ایستگاه محلی" 90 | 91 | #: views/view.form_options.php:187 92 | msgid "Default Paper Size" 93 | msgstr "اندازه پیشفرض کاغذ" 94 | 95 | #: views/view.coreDIDHook.php:22 96 | msgid "Detect Faxes" 97 | msgstr "تشخیص دورنگار" 98 | 99 | #: Fax.class.php:360 /usr/src/freepbx/fax/fax.i18n.php:12 100 | msgid "Dial System FAX" 101 | msgstr "سیستم شماره گیری دورنگار" 102 | 103 | #: Fax.class.php:380 104 | msgid "Done!" 105 | msgstr "" 106 | 107 | #: Fax.class.php:180 108 | msgid "" 109 | "ERROR: No FAX modules detected!
Fax-related dialplan will NOT be " 110 | "generated.
This module requires spandsp based app_fax (res_fax_spandsp." 111 | "so) to function." 112 | msgstr "" 113 | 114 | #: Fax.class.php:185 115 | msgid "" 116 | "ERROR: No Fax license detected.
Fax-related dialplan will NOT be " 117 | "generated!
This module has detected that Fax for Asterisk is installed " 118 | "without a license.
At least one license is required (it is available for " 119 | "free) and must be installed." 120 | msgstr "" 121 | "خطا: مجوز استفاده از امکان فکس پیدا نشد.
Fax-related dialplan will " 122 | "NOT be generated!
This module has detected that Fax for Asterisk " 123 | "is installed without a license.
At least one license is required (it is " 124 | "available for free) and must be installed." 125 | 126 | #: views/view.form_options.php:99 127 | msgid "Email address" 128 | msgstr "آدرس ایمیل" 129 | 130 | #: views/view.form_options.php:87 131 | msgid "" 132 | "Email address that faxes appear to come from if 'system default' has been " 133 | "chosen as the default fax extension." 134 | msgstr "" 135 | "آدرس ایمیلی که دورنگارها به آن ارسال میشوند اگر 'پیشفرض سیستم' به عنوان " 136 | "شماره داخلی پیشفرض دورنگار انتخاب شده باشد." 137 | 138 | #: views/view.form_options.php:109 139 | msgid "" 140 | "Email address that faxes are sent to when using the \"Dial System Fax\" " 141 | "feature code. This is also the default email for fax detection in legacy " 142 | "mode, if there are routes still running in this mode that do not have email " 143 | "addresses specified." 144 | msgstr "" 145 | "آدرس ایمیلی که فکس ها در صورت استفاده از کد ویژه \"Dial System Fax\" به آن " 146 | "ارسال میشوند.همچنین از این آدرس برای حالت موروثی نیز استفاده خواهد شد، " 147 | "درصورتی که مسیرهایی در این حالت وجود داشته و آدرس ایمیلی برای ایشان لحاظ " 148 | "نشده باشد." 149 | 150 | #: bin/fax2mail.php:72 151 | #, php-format 152 | msgid "Email-fax dying, file %s not found!" 153 | msgstr "" 154 | 155 | #: bin/fax2mail.php:40 156 | msgid "" 157 | "Email-fax dying, no destination found (User has no email!) and we arent " 158 | "keeping the file!" 159 | msgstr "" 160 | 161 | #: views/quickCreate.php:5 162 | msgid "Enable Fax" 163 | msgstr "فعال سازی دورنگار" 164 | 165 | #: views/view.userman.showpage.php:42 166 | msgid "Enable this user to receive faxes" 167 | msgstr "دریافت دورنگار را برای کاربر فعال کن" 168 | 169 | #: views/view.userman.showpage.php:23 170 | msgid "Enabled" 171 | msgstr "فعال" 172 | 173 | #: bin/fax2mail.php:125 174 | msgid "Enclosed, please find a new fax" 175 | msgstr "محصور, یک دورنگار جدید پیدا کنید" 176 | 177 | #: bin/fax2mail.php:121 178 | #, php-format 179 | msgid "Enclosed, please find a new fax from: %s" 180 | msgstr "محصور, لطفا یک دورنگار جدید پیدا کنید از:%s" 181 | 182 | #: views/view.form_options.php:119 183 | msgid "Error Correction Mode" 184 | msgstr "حالت تصحیح خطا" 185 | 186 | #: views/view.form_options.php:132 187 | msgid "" 188 | "Error Correction Mode (ECM) option is used to specify whether\n" 189 | "\t\t\t to use ecm mode or not." 190 | msgstr "" 191 | "Error Correction Mode (ECM) option is used to specify whether\n" 192 | "\\t\\t\\t to use ecm mode or not.Error Correction Mode (ECM) option is used " 193 | "to specify whether\n" 194 | "\\t\\t\\t to use ecm mode or not." 195 | 196 | #: Fax.class.php:194 Fax.class.php:208 Fax.class.php:652 197 | msgid "Fax" 198 | msgstr "دورنگار" 199 | 200 | #: fax.i18n.php:4 /usr/src/freepbx/fax/fax.i18n.php:10 201 | msgid "Fax Configuration" 202 | msgstr "تنظیمات دورنگار" 203 | 204 | #: Fax.class.php:661 views/view.coreDIDHook.php:191 205 | msgid "Fax Destination" 206 | msgstr "مقصد دورنگار" 207 | 208 | #: Fax.class.php:661 209 | msgid "Fax Detection" 210 | msgstr "تشخیص دورنگار" 211 | 212 | #: views/view.coreDIDHook.php:140 213 | msgid "Fax Detection Time" 214 | msgstr "زمان تشخیص دورنگار" 215 | 216 | #: Fax.class.php:661 217 | msgid "Fax Detection Wait" 218 | msgstr "انتظار برای تشخیص دورنگار" 219 | 220 | #: views/view.coreDIDHook.php:78 221 | msgid "Fax Detection type" 222 | msgstr "تشخیص نوع دورنگار" 223 | 224 | #: views/view.coreDIDHook.php:166 225 | msgid "Fax Email Destination" 226 | msgstr "ایمیل مقصد فکس" 227 | 228 | #: Fax.class.php:661 229 | msgid "Fax Enabled" 230 | msgstr "دورنگار فعال" 231 | 232 | #: views/page.main.php:2 233 | msgid "Fax Options" 234 | msgstr "گزینه های دورنگار" 235 | 236 | #: Fax.class.php:794 bin/fax2mail.php:49 237 | msgid "Fax Recipient" 238 | msgstr "گیرنده دورنگار" 239 | 240 | #: views/view.coreDIDHook.php:113 241 | msgid "Fax Ring" 242 | msgstr "زنگ فکس" 243 | 244 | #: bin/fax2mail.php:12 245 | msgid "Fax Service" 246 | msgstr "" 247 | 248 | #: Fax.class.php:846 249 | #, php-format 250 | msgid "Fax user %s" 251 | msgstr "دورنگار کاربر %s" 252 | 253 | #: bin/fax2mail.php:111 bin/fax2mail.php:133 254 | #, php-format 255 | msgid "For: %s" 256 | msgstr "" 257 | 258 | #: views/view.userman.showpage.php:72 259 | msgid "Formats to convert incoming fax files to before emailing." 260 | msgstr "" 261 | "فرمت هایی که دورنگارهای دریافتی باید ب آنها تبدیل شده سپس به ایمیل ارسال " 262 | "شوند." 263 | 264 | #: views/view.form_options.php:46 265 | msgid "" 266 | "Header information that is passed to remote side of the fax transmission and " 267 | "is printed on top of every page. This usually contains the name of the " 268 | "person or entity sending the fax." 269 | msgstr "" 270 | "اطلاعات سربرگ که در بالای تمامی فکسهای ارسالی چاپ میشود.معمولا شامل اطلاعات " 271 | "شخص و یا شرکت ارسال کننده فکس میباشد." 272 | 273 | #: Fax.class.php:661 274 | msgid "How long to wait and try to detect fax" 275 | msgstr "مدت زمان انتظار برای شناسایی دورنگار" 276 | 277 | #: views/view.coreDIDHook.php:152 278 | msgid "" 279 | "How long to wait and try to detect fax. Please note that callers to a Dahdi " 280 | "channel will hear ringing for this amount of time (i.e. the system wont " 281 | "\"answer\" the call, it will just play ringing)." 282 | msgstr "" 283 | "مدت زمان انتظار برای تشخیص فکس. لطفا توجه کنید تماس گیرنده در کانال دهدی " 284 | "صدای زنگ خوردن را در این زمان خواهد شنید (i.e. the system wont \"answer\" " 285 | "the call, it will just play ringing)." 286 | 287 | #: Fax.class.php:824 288 | #, php-format 289 | msgid "Inbound Fax Detection: %s (%s)" 290 | msgstr "تشخیص فکس های ورودی: %s (%s)" 291 | 292 | #: views/view.userman.showpage.php:32 views/view.userman.showpage.php:58 293 | msgid "Inherit" 294 | msgstr "ارثی" 295 | 296 | #: Fax.class.php:896 297 | msgid "Invalid Email for Inbound Fax" 298 | msgstr "ایمیل نادرست برای ارسال دورنگار دریافتی" 299 | 300 | #: views/view.coreDIDHook.php:43 301 | msgid "Legacy" 302 | msgstr "میراث" 303 | 304 | #: views/view.coreDIDHook.php:57 305 | msgid "" 306 | "Legacy: Same as YES, only you can enter an email address as the destination. " 307 | "This option is ONLY for supporting migrated legacy fax routes. You should " 308 | "upgrade this route by choosing YES, and selecting a valid destination!" 309 | msgstr "" 310 | "ارثی: انند بله، فقط میتواند یک آدرس ایمیل به عنوان مقصد وارد شود. این گزینه " 311 | "فقط برای انتقال مسیر فکس های قدیمی استفاده میشود. شما با انتخاب گزینه بله " 312 | "باید مسیر را به روزکنید، و یک مسیر معتبر انتخاب کنید!" 313 | 314 | #: views/view.form_options.php:192 315 | msgid "Letter" 316 | msgstr "نامه" 317 | 318 | #: views/view.form_options.php:143 319 | msgid "Maximum transfer rate" 320 | msgstr "بیشترین امتیاز انتقال" 321 | 322 | #: assets/js/fax.js:19 323 | msgid "Maximum transfer rate can not be less than Minimum transfer rate" 324 | msgstr "" 325 | 326 | #: views/view.form_options.php:155 327 | msgid "Maximum transfer rate used during fax rate negotiation." 328 | msgstr "بیشترین سرعت استفاده شده برای تبادل فکس." 329 | 330 | #: views/view.form_options.php:165 331 | msgid "Minimum transfer rate" 332 | msgstr "حداقل سرعت تبادل اطلاعات" 333 | 334 | #: views/view.form_options.php:177 335 | msgid "Minimum transfer rate used during fax rate negotiation." 336 | msgstr "کمترین سرعت استفاده شده برای تبادل فکس." 337 | 338 | #: bin/fax2mail.php:90 339 | #, php-format 340 | msgid "New fax from: %s" 341 | msgstr "دورنگار جدید از:%s" 342 | 343 | #: bin/fax2mail.php:94 344 | msgid "New fax received" 345 | msgstr "دورنگار جدید دریافت شد" 346 | 347 | #: views/quickCreate.php:12 views/view.coreDIDHook.php:29 348 | #: views/view.coreDIDHook.php:41 views/view.coreDIDHook.php:120 349 | #: views/view.form_options.php:126 views/view.form_options.php:220 350 | #: views/view.userman.showpage.php:29 351 | msgid "No" 352 | msgstr "خیر" 353 | 354 | #: views/view.coreDIDHook.php:246 355 | msgid "" 356 | "No fax detection methods found or no valid license. Faxing cannot be enabled." 357 | msgstr "" 358 | "روش درستی برای تشخیص فکس انتخاب نشد و یا مجوز قانونی وجود نداشت. عملیات فکس " 359 | "نمیتواند فعال شود." 360 | 361 | #: views/view.coreDIDHook.php:57 362 | msgid "" 363 | "No: No attempts are made to auto-determine the call type; all calls sent to " 364 | "destination set in the 'General' tab. Use this option if this DID is used " 365 | "exclusively for voice OR fax." 366 | msgstr "" 367 | "خیر: تلاشی برای تشخیص خودکار نوع تماس انجام نشد; تمامی تماس ها به مقصد تعیین " 368 | "شده در تب 'عمومی' فرستاده میشود. این گزینه برای DIDهایی استفاده میشود که " 369 | "انحصارا به عنوان فکس و یا تماس ساده استفاده میشوند." 370 | 371 | #: views/view.userman.showpage.php:60 372 | msgid "None" 373 | msgstr "" 374 | 375 | #: bin/fax2mail.php:108 bin/fax2mail.php:129 376 | #, php-format 377 | msgid "On: %s" 378 | msgstr "" 379 | 380 | #: views/view.form_options.php:76 381 | msgid "Outgoing Email address" 382 | msgstr "آدرس ایمیل ارسال فکس" 383 | 384 | #: bin/fax2mail.php:83 385 | msgid "Outgoing fax results" 386 | msgstr "نتایج فکس ارسالی" 387 | 388 | #: views/view.userman.showpage.php:61 389 | msgid "PDF" 390 | msgstr "PDF" 391 | 392 | #: Fax.class.php:397 393 | #, php-format 394 | msgid "Page Not Found (%s)!!!!" 395 | msgstr "" 396 | 397 | #: Api/Rest/Fax.php:9 398 | msgid "Read fax settings" 399 | msgstr "" 400 | 401 | #: Api/Rest/FaxUsers.php:9 402 | msgid "Read fax user settings" 403 | msgstr "" 404 | 405 | #: bin/fax2mail.php:128 406 | #, php-format 407 | msgid "Received & processed: %s" 408 | msgstr "رسیده و پردازش شده: %s" 409 | 410 | #: Fax.class.php:612 411 | msgid "Reset" 412 | msgstr "بازنشانی" 413 | 414 | #: views/view.coreDIDHook.php:85 415 | msgid "SIP" 416 | msgstr "SIP" 417 | 418 | #: views/view.form_options.php:200 419 | msgid "" 420 | "Select the default paper size.
This specifies the size that should be " 421 | "used if the document does not specify a size.
If the document does " 422 | "specify a size that size will be used." 423 | msgstr "" 424 | "انتخاب اندازه برگه پیشفرض.
این اندازه برای مدارکی که سایز مشخصی ندارند " 425 | "لحاظ میشود.
اگر مدرکی سایز مشخصی داشت همان سایز استفاده میشود." 426 | 427 | #: bin/fax2mail.php:105 428 | #, php-format 429 | msgid "Sent to %s" 430 | msgstr "" 431 | 432 | #: fax.i18n.php:6 433 | msgid "Settings" 434 | msgstr "تنظیمات" 435 | 436 | #: views/view.coreDIDHook.php:99 437 | msgid "" 438 | "Sip: use sip fax detection (t38). Requires asterisk 1.6.2 or greater and " 439 | "'faxdetect=yes' in the sip config files" 440 | msgstr "" 441 | "Sip: use sip fax detection (t38). Requires asterisk 1.6.2 or greater and " 442 | "'faxdetect=yes' in the sip config files" 443 | 444 | #: bin/fax2mail.php:106 445 | #, php-format 446 | msgid "Status: %s" 447 | msgstr "" 448 | 449 | #: Fax.class.php:612 450 | msgid "Submit" 451 | msgstr "ارسال" 452 | 453 | #: views/view.userman.showpage.php:62 454 | msgid "TIFF" 455 | msgstr "TIFF" 456 | 457 | #: views/view.form_options.php:66 458 | msgid "The outgoing Fax Machine Identifier. This is usually your fax number." 459 | msgstr "شناسه ماشین فکس خارجی. به طور معمول شماره فکس شماست." 460 | 461 | #: views/view.form_options.php:88 462 | msgid "" 463 | "This may be formatted as just 'user@example.com', or 'Fax User '. The second option will display 'Fax User' in the 'From' field in most " 465 | "email clients." 466 | msgstr "" 467 | 468 | #: Fax.class.php:661 469 | msgid "Type of fax detection to use (e.g. SIP or DAHDI)" 470 | msgstr "نوع شناسایی فکس مورد استفاده (e.g. SIP or DAHDI)" 471 | 472 | #: views/view.coreDIDHook.php:94 473 | msgid "Type of fax detection to use." 474 | msgstr "نوع شناسایی فکس مورد استفاده." 475 | 476 | #: Fax.class.php:366 477 | msgid "Upgrading configs.." 478 | msgstr "" 479 | 480 | #: Fax.class.php:896 481 | #, php-format 482 | msgid "" 483 | "User Manager users '%s' have the ability to receive faxes but have no email " 484 | "address defined so they will not be able to receive faxes over email," 485 | msgstr "" 486 | "در مدیریت کاربران کاربران '%s' میتوانند فکسها را دریافت کنند اما آدرس ایمیلی " 487 | "برایشان تعریف نشده بنا بر این آنها نمیتوانند فکس را در ایمیلشان داشته باشند،" 488 | 489 | #: bin/fax2mail.php:130 490 | #, php-format 491 | msgid "Via: %s" 492 | msgstr "" 493 | 494 | #: views/view.form_options.php:226 495 | msgid "" 496 | "When no fax modules are detected the module will not generate any detection " 497 | "dialplan by default. If the system is being used with phyical FAX devices, " 498 | "hylafax + iaxmodem, or other outside fax setups you can force the dialplan " 499 | "to be generated here." 500 | msgstr "" 501 | "وفتی ماژول فکسی وجود ندارد هیچ نقشه تماسی به صورت خودکار تولید نمیشود.اگر از " 502 | "دستگاه فکس، hylafax + iaxmodem ،یا دیگر پلتفرم ها استفاده میکنید میتوانید " 503 | "نقشه تماس را به صورت دستی تولید کرده و در اینجا قرار دهید." 504 | 505 | #: Fax.class.php:661 views/view.coreDIDHook.php:203 506 | msgid "Where to send the faxes" 507 | msgstr "محلی که دورنگارها به آنجا ارسال میشوند" 508 | 509 | #: views/view.coreDIDHook.php:128 510 | msgid "" 511 | "Whether to ring while attempting to detect fax. If set to no silence will be " 512 | "heard" 513 | msgstr "چگونگی زنگ خوردن در حال شناسایی فکس.اگر بدون صدا تنظیم نشده باشد" 514 | 515 | #: Api/Rest/Fax.php:12 516 | msgid "Write fax settings" 517 | msgstr "" 518 | 519 | #: Api/Rest/FaxUsers.php:12 520 | msgid "Write fax user settings" 521 | msgstr "" 522 | 523 | #: views/quickCreate.php:10 views/view.coreDIDHook.php:28 524 | #: views/view.coreDIDHook.php:40 views/view.coreDIDHook.php:118 525 | #: views/view.form_options.php:124 views/view.form_options.php:218 526 | #: views/view.userman.showpage.php:28 527 | msgid "Yes" 528 | msgstr "بله" 529 | 530 | #: views/view.coreDIDHook.php:57 531 | msgid "" 532 | "Yes: try to auto determine the type of call; route to the fax destination if " 533 | "call is a fax, otherwise send to regular destination. Use this option if you " 534 | "receive both voice and fax calls on this line" 535 | msgstr "" 536 | "بله:تلاش برای تشخیص خودکار نوع تماس; مسیریابی به مقصد فکس برای این دست تماس " 537 | "ها، درغیراینصورت تماس به مقصد معمول فرستاده میشود. از این گزینه وقتی استفاده " 538 | "میکنیم که از یک خط برای دریافت تماس و فکس استفاده میشود" 539 | 540 | #: views/view.coreDIDHook.php:236 541 | msgid "" 542 | "You have selected Fax Detection on this route. Please select a valid " 543 | "destination to route calls detected as faxes to." 544 | msgstr "" 545 | 546 | #: views/view.form_options.php:25 547 | msgid "" 548 | "Your maximum transfer rate is set to 2400 in certain circumstances this can " 549 | "break faxing" 550 | msgstr "بالاترین سرعت جابجایی شما روی 2400 تنظیم شده است" 551 | 552 | #: views/view.form_options.php:21 553 | msgid "" 554 | "Your minimum transfer rate is set to 2400 in certain circumstances this can " 555 | "break faxing" 556 | msgstr "پایین ترین سرعت جابجایی شما روی 2400 تنظیم شده است" 557 | 558 | #: Fax.class.php:648 559 | msgid "Zaptel" 560 | msgstr "زپتل" 561 | 562 | #: Fax.class.php:971 563 | #, php-format 564 | msgid "gs not found, not converting %s" 565 | msgstr "" 566 | 567 | #: Fax.class.php:983 568 | #, php-format 569 | msgid "tiff2pdf not found, not converting %s" 570 | msgstr "" 571 | 572 | #~ msgid "" 573 | #~ " fax detection; requires 'faxdetect=' to be set to 'incoming' or 'both' " 574 | #~ "in " 575 | #~ msgstr "" 576 | #~ " تشخیص دورنگار؛ ملزومات 'faxdetect='باید تنظیم شود 'ورودی' یا 'هر دو' در " 577 | 578 | #~ msgid "" 579 | #~ "\"You have selected Fax Detection on this route. Please select a valid " 580 | #~ "destination to route calls detected as faxes to.\"" 581 | #~ msgstr "" 582 | #~ "\"شما تشخیص دورنگار را برای این مسیر تنطیم کرده اید.لطفا یک مقصد برای " 583 | #~ "تشخیص دورنگار تعیین کنید.\"" 584 | 585 | #~ msgid "Auto generated migrated user for Fax" 586 | #~ msgstr "جابجایی خودکار کاربر برای دورنگار" 587 | 588 | #~ msgid "Finished Migrating fax users to usermanager" 589 | #~ msgstr "اتمام انتقال دورنگار کاربران به مدیریت کاربر" 590 | 591 | #~ msgid "For" 592 | #~ msgstr "برای" 593 | 594 | #~ msgid "Inbound Fax Destination Change" 595 | #~ msgstr "تغییر مقصد دورنگار ورودی" 596 | 597 | #~ msgid "" 598 | #~ "Inbound faxes now use User Manager users. Therefore you will need to re-" 599 | #~ "assign all of your destinations that used 'Fax Recipients' to point to " 600 | #~ "User Manager users. You may see broken destinations until this is resolved" 601 | #~ msgstr "" 602 | #~ "Inbound faxes now use User Manager users. Therefore you will need to re-" 603 | #~ "assign all of your destinations that used 'Fax Recipients' to point to " 604 | #~ "User Manager users. You may see broken destinations until this is resolved" 605 | 606 | #~ msgid "" 607 | #~ "Migrated user %s but unable to set email address to %s because an email " 608 | #~ "[%s] was already set for User Manager User %s" 609 | #~ msgstr "" 610 | #~ "Migrated user %s but unable to set email address to %s because an email " 611 | #~ "[%s] was already set for User Manager User %s" 612 | 613 | #~ msgid "Migrating all fax users to usermanager" 614 | #~ msgstr "انتقال تمام کاربران فکس به مدیریت کاربران" 615 | 616 | #~ msgid "On" 617 | #~ msgstr "روشن" 618 | 619 | #~ msgid "" 620 | #~ "Unable to migrate %s, because [%s]. Please check your 'Fax Recipients' " 621 | #~ "destinations" 622 | #~ msgstr "عدم امکان انتقال %s، به دلیل [%s]. لطفا 'گیرنده فکس' را بررسی کنید" 623 | 624 | #~ msgid "Via" 625 | #~ msgstr "با" 626 | 627 | #~ msgid "use " 628 | #~ msgstr "استفاده " 629 | 630 | #~ msgid "" 631 | #~ "NV Fax Detect: Use NV Fax Detection; Requires NV Fax Detect to be " 632 | #~ "installed and recognized by asterisk" 633 | #~ msgstr "" 634 | #~ "NV Fax Detect: Use NV Fax Detection; Requires NV Fax Detect to be " 635 | #~ "installed and recognized by asterisk" 636 | 637 | #~ msgid "" 638 | #~ "ERROR: No FAX modules detected!
Fax-related dialplan will NOT " 639 | #~ "be generated.
This module requires Fax for Asterisk (res_fax_digium." 640 | #~ "so) or spandsp based app_fax (res_fax_spandsp.so) to function." 641 | #~ msgstr "" 642 | #~ "خطا: ماژول فکس پیدا نشد!
Fax-related dialplan will NOT be " 643 | #~ "generated.
This module requires Fax for Asterisk (res_fax_digium.so) " 644 | #~ "or spandsp based app_fax (res_fax_spandsp.so) to function." 645 | 646 | #~ msgid "Fax drivers supported by this module are:" 647 | #~ msgstr "درایورهای دورنگار پشتیبانی شده با این ماژول :" 648 | 649 | #~ msgid "Fax for Asterisk (res_fax_digium.so) with licence" 650 | #~ msgstr "دورنگار برای استریسک (res_fax_digium.so) با مجوز" 651 | 652 | #~ msgid "NVFax" 653 | #~ msgstr "فکس NV" 654 | 655 | #~ msgid "Spandsp based app_fax (res_fax_spandsp.so)" 656 | #~ msgstr "Spandsp based app_fax (res_fax_spandsp.so)" 657 | 658 | #~ msgid "%s FAX Migrations Failed" 659 | #~ msgstr "%s جابجایی دورنگار ناموفق" 660 | 661 | #~ msgid "%s FAX Migrations Failed, check notification panel for details" 662 | #~ msgstr "%s جابجایی دورنگار ناموفق.برای توضیح بیشتر به پنل هشدارها بروید" 663 | 664 | #~ msgid "Checking for failed migrations.." 665 | #~ msgstr "بررسی برای جابجایی ناموفق.." 666 | 667 | #~ msgid "Checking if legacy fax needs migrating.." 668 | #~ msgstr "بررسی جابجایی دورنگار در صورت نیاز.." 669 | 670 | #~ msgid "" 671 | #~ "Migrating faxemail field in the fax_users table to allow longer emails..." 672 | #~ msgstr "انتقال فیلد فکس میل در جدول fax_users برای ایمیل های طولانی تر..." 673 | 674 | #~ msgid "Moving simu_fax feature code from core.." 675 | #~ msgstr "انتقال کد ویژه simu_fax از هسته.." 676 | 677 | #~ msgid "No Inbound Routes to migrate" 678 | #~ msgstr "مسیر ورودی برای انتقال وجود ندارد" 679 | 680 | #~ msgid "Removing field %s from incoming table.." 681 | #~ msgstr "حذف فیلد %s از جدول ورودی.." 682 | 683 | #~ msgid "Removing old globals.." 684 | #~ msgstr "حذف سراسری های قبلی.." 685 | 686 | #~ msgid "Successfully migrated faxemail field" 687 | #~ msgstr "فیلد فکس میل با موفقیت منتقل شد" 688 | 689 | #~ msgid "" 690 | #~ "The following Inbound Routes had FAX processing that failed migration " 691 | #~ "because they were accessing a device with no associated user. They have " 692 | #~ "been disabled and will need to be updated. Click delete icon on the right " 693 | #~ "to remove this notice." 694 | #~ msgstr "" 695 | #~ "The following Inbound Routes had FAX processing that failed migration " 696 | #~ "because they were accessing a device with no associated user. They have " 697 | #~ "been disabled and will need to be updated. Click delete icon on the right " 698 | #~ "to remove this notice." 699 | 700 | #~ msgid "Updating simu_fax in miscdest table.." 701 | #~ msgstr "به روزرسانی جدول simu_fax در مقاصدمختلف.." 702 | 703 | #~ msgid "WARNING: Failed migration. Email length is limited to 50 characters." 704 | #~ msgstr "هشدار: انتقال ناموفق. طول ایمیل نباید بیشتر از 50 کاراکتر باشد." 705 | 706 | #~ msgid "all migrations succeeded successfully" 707 | #~ msgstr "تمامی انتقالات با موفقیت انجام شد" 708 | 709 | #~ msgid "already done" 710 | #~ msgstr "انجام شد" 711 | 712 | #~ msgid "blank" 713 | #~ msgstr "خالی" 714 | 715 | #~ msgid "done" 716 | #~ msgstr "انجام شد" 717 | 718 | #~ msgid "duplicate, removing old from core.." 719 | #~ msgstr "چند گانه، نتایج قدیمی حذف میشوند.." 720 | 721 | #~ msgid "failed" 722 | #~ msgstr "نا موفق" 723 | 724 | #~ msgid "migrated" 725 | #~ msgstr "انتقال داده شده" 726 | 727 | #~ msgid "migrating defaults.." 728 | #~ msgstr "پیشفرضهای انتقال.." 729 | 730 | #~ msgid "not needed" 731 | #~ msgstr "لازم نیست" 732 | 733 | #~ msgid "not present" 734 | #~ msgstr "موجود نیست" 735 | 736 | #~ msgid "removed" 737 | #~ msgstr "حذف شده" 738 | 739 | #~ msgid "starting migration" 740 | #~ msgstr "شروع عملیات انتقال" 741 | 742 | #~ msgid "unknown error" 743 | #~ msgstr "خطای تعریف نشده" 744 | 745 | #~ msgid "Fax Attach Format" 746 | #~ msgstr "فرمت ضمیمه دورنگار" 747 | 748 | #~ msgid "Fax Attach Format (e.g. pdf, tif, both)" 749 | #~ msgstr "فرمت ضمیمه دورنگار (pdf,tif)" 750 | 751 | #~ msgid "For User" 752 | #~ msgstr "برای کاربر" 753 | 754 | #~ msgid "For extension" 755 | #~ msgstr "داخلی دورنگار" 756 | 757 | #~ msgid "Migrating fax_incoming table..." 758 | #~ msgstr "انتقال جدول فکس ورودی..." 759 | 760 | #~ msgid "Migrating fax_users table to add faxattachformat..." 761 | #~ msgstr "انتقال جدول fax_users و افزودن فرمت ضمیمه فکس..." 762 | 763 | #~ msgid "Successfully migrated fax_incoming table!" 764 | #~ msgstr "جدول fax_incoming با موفقیت منتقل شد!" 765 | 766 | #~ msgid "Successfully migrated fax_users table!" 767 | #~ msgstr "جدول fax_users با موفقیت منتقل شد!" 768 | 769 | #~ msgid "" 770 | #~ "User Manager users '%s' have the ability to receive faxes but have no " 771 | #~ "email address defined so they will not be able to receive faxes." 772 | #~ msgstr "" 773 | #~ "کاربر بخش مدیریت کاربری '%s' امکان دریافت فکس را دارد ولی آدرس ایمیلی " 774 | #~ "برای آن تنظیم نشده است به همین دلیل نمیتواند فکس را به درستی دریافت کند." 775 | 776 | #~ msgid "WARINING: fax_users table may still be using the old schema!" 777 | #~ msgstr "" 778 | #~ "هشدار: جدول fax_users ممکن است به وسیله طرح قبلی مورد استفاده قرار گرفته " 779 | #~ "باشد!" 780 | 781 | #~ msgid "WARNING: fax_incoming table may still be using the 2.6 schema!" 782 | #~ msgstr "" 783 | #~ "هشدار: جدول fax_incoming ممکن است به وسیله طرح 2.6 مورد استفاده قرار " 784 | #~ "گرفته باشد!" 785 | --------------------------------------------------------------------------------